Sharkey/src/server/api/endpoints/i/update.ts

148 lines
4.9 KiB
TypeScript
Raw Normal View History

2018-07-07 13:19:00 +03:00
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
2018-06-18 03:54:53 +03:00
import User, { isValidName, isValidDescription, isValidLocation, isValidBirthday, pack, ILocalUser } from '../../../../models/user';
2018-07-30 01:20:27 +03:00
import { publishUserStream } from '../../../../stream';
import DriveFile from '../../../../models/drive-file';
2018-06-01 18:15:17 +03:00
import acceptAllFollowRequests from '../../../../services/following/requests/accept-all';
2018-06-18 03:54:53 +03:00
import { IApp } from '../../../../models/app';
2018-07-28 01:52:48 +03:00
import config from '../../../../config';
2016-12-29 00:49:51 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
desc: {
ja: 'アカウント情報を更新します。',
en: 'Update myself'
},
requireCredential: true,
kind: 'account-write'
};
2018-07-05 20:58:29 +03:00
export default async (params: any, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
const isSecure = user != null && app == null;
2018-05-31 16:56:02 +03:00
const updates = {} as any;
2016-12-29 00:49:51 +02:00
// Get 'name' parameter
2018-07-05 17:36:07 +03:00
const [name, nameErr] = $.str.optional.nullable.pipe(isValidName).get(params.name);
2017-03-03 01:56:07 +02:00
if (nameErr) return rej('invalid name param');
2018-05-31 16:56:02 +03:00
if (name) updates.name = name;
2016-12-29 00:49:51 +02:00
2017-02-23 10:19:52 +02:00
// Get 'description' parameter
2018-07-05 17:36:07 +03:00
const [description, descriptionErr] = $.str.optional.nullable.pipe(isValidDescription).get(params.description);
2017-03-03 02:24:17 +02:00
if (descriptionErr) return rej('invalid description param');
2018-05-31 16:56:02 +03:00
if (description !== undefined) updates.description = description;
2017-02-23 10:19:52 +02:00
2016-12-29 00:49:51 +02:00
// Get 'location' parameter
2018-07-05 17:36:07 +03:00
const [location, locationErr] = $.str.optional.nullable.pipe(isValidLocation).get(params.location);
2017-03-03 02:24:17 +02:00
if (locationErr) return rej('invalid location param');
2018-06-02 10:27:24 +03:00
if (location !== undefined) updates['profile.location'] = location;
2016-12-29 00:49:51 +02:00
2017-01-06 08:35:07 +02:00
// Get 'birthday' parameter
2018-07-05 17:36:07 +03:00
const [birthday, birthdayErr] = $.str.optional.nullable.pipe(isValidBirthday).get(params.birthday);
2017-03-03 02:24:17 +02:00
if (birthdayErr) return rej('invalid birthday param');
2018-06-02 10:27:24 +03:00
if (birthday !== undefined) updates['profile.birthday'] = birthday;
2017-01-06 08:35:07 +02:00
2018-03-29 08:48:47 +03:00
// Get 'avatarId' parameter
2018-07-05 17:36:07 +03:00
const [avatarId, avatarIdErr] = $.type(ID).optional.nullable.get(params.avatarId);
2018-03-29 08:48:47 +03:00
if (avatarIdErr) return rej('invalid avatarId param');
2018-06-02 10:27:24 +03:00
if (avatarId !== undefined) updates.avatarId = avatarId;
2016-12-29 00:49:51 +02:00
2018-03-29 08:48:47 +03:00
// Get 'bannerId' parameter
2018-07-05 17:36:07 +03:00
const [bannerId, bannerIdErr] = $.type(ID).optional.nullable.get(params.bannerId);
2018-03-29 08:48:47 +03:00
if (bannerIdErr) return rej('invalid bannerId param');
2018-06-02 10:27:24 +03:00
if (bannerId !== undefined) updates.bannerId = bannerId;
2018-05-31 16:56:02 +03:00
2018-06-06 23:14:37 +03:00
// Get 'wallpaperId' parameter
2018-07-05 17:36:07 +03:00
const [wallpaperId, wallpaperIdErr] = $.type(ID).optional.nullable.get(params.wallpaperId);
2018-06-06 23:14:37 +03:00
if (wallpaperIdErr) return rej('invalid wallpaperId param');
if (wallpaperId !== undefined) updates.wallpaperId = wallpaperId;
2018-05-31 16:56:02 +03:00
// Get 'isLocked' parameter
2018-07-05 17:36:07 +03:00
const [isLocked, isLockedErr] = $.bool.optional.get(params.isLocked);
2018-05-31 16:56:02 +03:00
if (isLockedErr) return rej('invalid isLocked param');
if (isLocked != null) updates.isLocked = isLocked;
2016-12-29 00:49:51 +02:00
2018-03-29 08:48:47 +03:00
// Get 'isBot' parameter
2018-07-05 17:36:07 +03:00
const [isBot, isBotErr] = $.bool.optional.get(params.isBot);
2018-03-29 08:48:47 +03:00
if (isBotErr) return rej('invalid isBot param');
2018-05-31 16:56:02 +03:00
if (isBot != null) updates.isBot = isBot;
2018-03-01 23:26:31 +02:00
2018-05-21 05:08:08 +03:00
// Get 'isCat' parameter
2018-07-05 17:36:07 +03:00
const [isCat, isCatErr] = $.bool.optional.get(params.isCat);
2018-05-21 05:08:08 +03:00
if (isCatErr) return rej('invalid isCat param');
2018-05-31 16:56:02 +03:00
if (isCat != null) updates.isCat = isCat;
2018-05-21 05:08:08 +03:00
2018-03-29 08:48:47 +03:00
// Get 'autoWatch' parameter
2018-07-05 17:36:07 +03:00
const [autoWatch, autoWatchErr] = $.bool.optional.get(params.autoWatch);
2018-03-29 08:48:47 +03:00
if (autoWatchErr) return rej('invalid autoWatch param');
2018-06-02 10:27:24 +03:00
if (autoWatch != null) updates['settings.autoWatch'] = autoWatch;
2018-03-05 01:07:09 +02:00
if (avatarId) {
const avatar = await DriveFile.findOne({
_id: avatarId
});
2018-07-28 01:52:48 +03:00
if (avatar == null) return rej('avatar not found');
updates.avatarUrl = avatar.metadata.thumbnailUrl || avatar.metadata.url || `${config.drive_url}/${avatar._id}`;
2018-07-28 01:52:48 +03:00
if (avatar.metadata.properties.avgColor) {
2018-05-31 16:56:02 +03:00
updates.avatarColor = avatar.metadata.properties.avgColor;
}
}
if (bannerId) {
const banner = await DriveFile.findOne({
_id: bannerId
});
2018-07-28 01:52:48 +03:00
if (banner == null) return rej('banner not found');
updates.bannerUrl = banner.metadata.url || `${config.drive_url}/${banner._id}`;
if (banner.metadata.properties.avgColor) {
2018-05-31 16:56:02 +03:00
updates.bannerColor = banner.metadata.properties.avgColor;
}
}
2018-08-18 22:01:10 +03:00
if (wallpaperId !== undefined) {
if (wallpaperId === null) {
updates.wallpaperUrl = null;
updates.wallpaperColor = null;
} else {
const wallpaper = await DriveFile.findOne({
_id: wallpaperId
});
if (wallpaper == null) return rej('wallpaper not found');
updates.wallpaperUrl = wallpaper.metadata.url || `${config.drive_url}/${wallpaper._id}`;
if (wallpaper.metadata.properties.avgColor) {
updates.wallpaperColor = wallpaper.metadata.properties.avgColor;
}
2018-06-06 23:14:37 +03:00
}
}
2017-02-08 18:37:50 +02:00
await User.update(user._id, {
2018-05-31 16:56:02 +03:00
$set: updates
2017-02-08 18:37:50 +02:00
});
2016-12-29 00:49:51 +02:00
// Serialize
2018-06-02 10:27:24 +03:00
const iObj = await pack(user._id, user, {
2016-12-29 00:49:51 +02:00
detail: true,
includeSecrets: isSecure
2017-01-21 08:30:40 +02:00
});
2016-12-29 00:49:51 +02:00
// Send response
res(iObj);
2018-06-02 10:27:24 +03:00
// Publish meUpdated event
2018-07-30 01:20:27 +03:00
publishUserStream(user._id, 'meUpdated', iObj);
2018-05-31 16:56:02 +03:00
// 鍵垢を解除したとき、溜まっていたフォローリクエストがあるならすべて承認
if (user.isLocked && isLocked === false) {
acceptAllFollowRequests(user);
}
2016-12-29 00:49:51 +02:00
});