2016-12-28 15:49:51 -07:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 03:13:06 -06:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-03-29 05:32:18 -06:00
|
|
|
import User, { isValidName, isValidDescription, isValidLocation, isValidBirthday, pack } from '../../../../models/user';
|
2018-04-01 22:33:46 -06:00
|
|
|
import event from '../../../../publishers/stream';
|
2018-05-06 03:04:37 -06:00
|
|
|
import DriveFile from '../../../../models/drive-file';
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update myself
|
|
|
|
*/
|
2018-04-11 02:40:01 -06:00
|
|
|
module.exports = async (params, user, app) => new Promise(async (res, rej) => {
|
|
|
|
const isSecure = user != null && app == null;
|
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
// Get 'name' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [name, nameErr] = $.str.optional().nullable().pipe(isValidName).get(params.name);
|
2017-03-02 16:56:07 -07:00
|
|
|
if (nameErr) return rej('invalid name param');
|
2017-03-02 17:15:38 -07:00
|
|
|
if (name) user.name = name;
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2017-02-23 01:19:52 -07:00
|
|
|
// Get 'description' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [description, descriptionErr] = $.str.optional().nullable().pipe(isValidDescription).get(params.description);
|
2017-03-02 17:24:17 -07:00
|
|
|
if (descriptionErr) return rej('invalid description param');
|
|
|
|
if (description !== undefined) user.description = description;
|
2017-02-23 01:19:52 -07:00
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
// Get 'location' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [location, locationErr] = $.str.optional().nullable().pipe(isValidLocation).get(params.location);
|
2017-03-02 17:24:17 -07:00
|
|
|
if (locationErr) return rej('invalid location param');
|
2018-04-07 12:58:11 -06:00
|
|
|
if (location !== undefined) user.profile.location = location;
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2017-01-05 23:35:07 -07:00
|
|
|
// Get 'birthday' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [birthday, birthdayErr] = $.str.optional().nullable().pipe(isValidBirthday).get(params.birthday);
|
2017-03-02 17:24:17 -07:00
|
|
|
if (birthdayErr) return rej('invalid birthday param');
|
2018-04-07 12:58:11 -06:00
|
|
|
if (birthday !== undefined) user.profile.birthday = birthday;
|
2017-01-05 23:35:07 -07:00
|
|
|
|
2018-03-28 23:48:47 -06:00
|
|
|
// Get 'avatarId' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [avatarId, avatarIdErr] = $.type(ID).optional().get(params.avatarId);
|
2018-03-28 23:48:47 -06:00
|
|
|
if (avatarIdErr) return rej('invalid avatarId param');
|
|
|
|
if (avatarId) user.avatarId = avatarId;
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-03-28 23:48:47 -06:00
|
|
|
// Get 'bannerId' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [bannerId, bannerIdErr] = $.type(ID).optional().get(params.bannerId);
|
2018-03-28 23:48:47 -06:00
|
|
|
if (bannerIdErr) return rej('invalid bannerId param');
|
|
|
|
if (bannerId) user.bannerId = bannerId;
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-03-28 23:48:47 -06:00
|
|
|
// Get 'isBot' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [isBot, isBotErr] = $.bool.optional().get(params.isBot);
|
2018-03-28 23:48:47 -06:00
|
|
|
if (isBotErr) return rej('invalid isBot param');
|
2018-04-07 12:58:11 -06:00
|
|
|
if (isBot != null) user.isBot = isBot;
|
2018-03-01 14:26:31 -07:00
|
|
|
|
2018-05-20 20:08:08 -06:00
|
|
|
// Get 'isCat' parameter
|
|
|
|
const [isCat, isCatErr] = $.bool.optional().get(params.isCat);
|
|
|
|
if (isCatErr) return rej('invalid isCat param');
|
|
|
|
if (isCat != null) user.isCat = isCat;
|
|
|
|
|
2018-03-28 23:48:47 -06:00
|
|
|
// Get 'autoWatch' parameter
|
2018-05-02 03:06:16 -06:00
|
|
|
const [autoWatch, autoWatchErr] = $.bool.optional().get(params.autoWatch);
|
2018-03-28 23:48:47 -06:00
|
|
|
if (autoWatchErr) return rej('invalid autoWatch param');
|
2018-04-07 12:58:11 -06:00
|
|
|
if (autoWatch != null) user.settings.autoWatch = autoWatch;
|
2018-03-04 16:07:09 -07:00
|
|
|
|
2018-05-06 03:04:37 -06:00
|
|
|
if (avatarId) {
|
|
|
|
const avatar = await DriveFile.findOne({
|
|
|
|
_id: avatarId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (avatar != null && avatar.metadata.properties.avgColor) {
|
|
|
|
user.avatarColor = avatar.metadata.properties.avgColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bannerId) {
|
|
|
|
const banner = await DriveFile.findOne({
|
|
|
|
_id: bannerId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (banner != null && banner.metadata.properties.avgColor) {
|
|
|
|
user.bannerColor = banner.metadata.properties.avgColor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 09:37:50 -07:00
|
|
|
await User.update(user._id, {
|
2017-02-08 10:20:47 -07:00
|
|
|
$set: {
|
|
|
|
name: user.name,
|
2017-02-23 01:19:52 -07:00
|
|
|
description: user.description,
|
2018-03-28 23:48:47 -06:00
|
|
|
avatarId: user.avatarId,
|
2018-05-06 03:04:37 -06:00
|
|
|
avatarColor: user.avatarColor,
|
2018-03-28 23:48:47 -06:00
|
|
|
bannerId: user.bannerId,
|
2018-05-06 03:04:37 -06:00
|
|
|
bannerColor: user.bannerColor,
|
2018-04-07 14:02:50 -06:00
|
|
|
profile: user.profile,
|
|
|
|
isBot: user.isBot,
|
2018-05-20 20:08:08 -06:00
|
|
|
isCat: user.isCat,
|
2018-04-07 14:02:50 -06:00
|
|
|
settings: user.settings
|
2017-02-08 10:20:47 -07:00
|
|
|
}
|
2017-02-08 09:37:50 -07:00
|
|
|
});
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Serialize
|
2018-02-01 16:21:30 -07:00
|
|
|
const iObj = await pack(user, 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);
|
|
|
|
|
|
|
|
// Publish i updated event
|
|
|
|
event(user._id, 'i_updated', iObj);
|
|
|
|
});
|