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

190 lines
5.3 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';
2018-09-01 14:17:30 +03:00
import { publishToFollowers } from '../../../../services/i/update';
2018-09-09 20:21:16 +03:00
import getParams from '../../get-params';
2016-12-29 00:49:51 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'アカウント情報を更新します。',
'en-US': 'Update myself'
2018-07-16 22:36:44 +03:00
},
requireCredential: true,
2018-09-09 20:21:16 +03:00
kind: 'account-write',
params: {
name: $.str.optional.nullable.pipe(isValidName).note({
desc: {
'ja-JP': '名前(ハンドルネームやニックネーム)'
}
}),
description: $.str.optional.nullable.pipe(isValidDescription).note({
desc: {
'ja-JP': 'アカウントの説明や自己紹介'
}
}),
location: $.str.optional.nullable.pipe(isValidLocation).note({
desc: {
'ja-JP': '住んでいる地域、所在'
}
}),
birthday: $.str.optional.nullable.pipe(isValidBirthday).note({
desc: {
'ja-JP': '誕生日 (YYYY-MM-DD形式)'
}
}),
avatarId: $.type(ID).optional.nullable.note({
desc: {
'ja-JP': 'アイコンに設定する画像のドライブファイルID'
}
}),
bannerId: $.type(ID).optional.nullable.note({
desc: {
'ja-JP': 'バナーに設定する画像のドライブファイルID'
}
}),
wallpaperId: $.type(ID).optional.nullable.note({
desc: {
'ja-JP': '壁紙に設定する画像のドライブファイルID'
}
}),
isLocked: $.bool.optional.note({
desc: {
'ja-JP': '鍵アカウントか否か'
}
}),
isBot: $.bool.optional.note({
desc: {
'ja-JP': 'Botか否か'
}
}),
isCat: $.bool.optional.note({
desc: {
'ja-JP': '猫か否か'
}
}),
autoWatch: $.bool.optional.note({
desc: {
'ja-JP': '投稿の自動ウォッチをするか否か'
}
}),
alwaysMarkNsfw: $.bool.optional.note({
desc: {
'ja-JP': 'アップロードするメディアをデフォルトで「閲覧注意」として設定するか'
}
}),
2018-09-09 20:21:16 +03:00
}
2018-07-16 22:36:44 +03:00
};
2018-07-05 20:58:29 +03:00
export default async (params: any, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
2018-09-09 20:21:16 +03:00
const [ps, psErr] = getParams(meta, params);
if (psErr) throw psErr;
const isSecure = user != null && app == null;
2018-05-31 16:56:02 +03:00
const updates = {} as any;
2018-09-09 20:21:16 +03:00
if (ps.name !== undefined) updates.name = ps.name;
if (ps.description !== undefined) updates.description = ps.description;
if (ps.location !== undefined) updates['profile.location'] = ps.location;
if (ps.birthday !== undefined) updates['profile.birthday'] = ps.birthday;
if (ps.avatarId !== undefined) updates.avatarId = ps.avatarId;
if (ps.bannerId !== undefined) updates.bannerId = ps.bannerId;
if (ps.wallpaperId !== undefined) updates.wallpaperId = ps.wallpaperId;
if (typeof ps.isLocked == 'boolean') updates.isLocked = ps.isLocked;
if (typeof ps.isBot == 'boolean') updates.isBot = ps.isBot;
if (typeof ps.isCat == 'boolean') updates.isCat = ps.isCat;
if (typeof ps.autoWatch == 'boolean') updates['settings.autoWatch'] = ps.autoWatch;
if (typeof ps.alwaysMarkNsfw == 'boolean') updates['settings.alwaysMarkNsfw'] = ps.alwaysMarkNsfw;
2018-09-09 20:21:16 +03:00
if (ps.avatarId) {
const avatar = await DriveFile.findOne({
2018-09-09 20:21:16 +03:00
_id: ps.avatarId
});
2018-07-28 01:52:48 +03:00
if (avatar == null) return rej('avatar not found');
2018-09-09 20:09:33 +03:00
if (!avatar.contentType.startsWith('image/')) return rej('avatar not an image');
2018-07-28 01:52:48 +03:00
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;
}
}
2018-09-09 20:21:16 +03:00
if (ps.bannerId) {
const banner = await DriveFile.findOne({
2018-09-09 20:21:16 +03:00
_id: ps.bannerId
});
2018-07-28 01:52:48 +03:00
if (banner == null) return rej('banner not found');
2018-09-09 20:09:33 +03:00
if (!banner.contentType.startsWith('image/')) return rej('banner not an image');
2018-07-28 01:52:48 +03:00
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-09-09 20:21:16 +03:00
if (ps.wallpaperId !== undefined) {
if (ps.wallpaperId === null) {
2018-08-18 22:01:10 +03:00
updates.wallpaperUrl = null;
updates.wallpaperColor = null;
} else {
const wallpaper = await DriveFile.findOne({
2018-09-09 20:21:16 +03:00
_id: ps.wallpaperId
2018-08-18 22:01:10 +03:00
});
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
// 鍵垢を解除したとき、溜まっていたフォローリクエストがあるならすべて承認
2018-09-09 20:21:16 +03:00
if (user.isLocked && ps.isLocked === false) {
2018-05-31 16:56:02 +03:00
acceptAllFollowRequests(user);
}
2018-09-01 14:17:30 +03:00
// フォロワーにUpdateを配信
publishToFollowers(user._id);
2016-12-29 00:49:51 +02:00
});