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