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

98 lines
3 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2018-03-29 14:32:18 +03:00
import User, { isValidName, isValidDescription, isValidLocation, isValidBirthday, pack } from '../../../../models/user';
2018-04-02 06:58:53 +03:00
import event from '../../../../event';
2018-04-02 07:15:53 +03:00
import config from '../../../../config';
2016-12-29 00:49:51 +02:00
/**
* Update myself
*
2017-03-01 10:37:01 +02:00
* @param {any} params
* @param {any} user
* @param {any} _
2016-12-29 00:49:51 +02:00
* @param {boolean} isSecure
2017-03-01 10:37:01 +02:00
* @return {Promise<any>}
2016-12-29 00:49:51 +02:00
*/
2017-03-03 21:28:38 +02:00
module.exports = async (params, user, _, isSecure) => new Promise(async (res, rej) => {
2016-12-29 00:49:51 +02:00
// Get 'name' parameter
2017-03-08 20:50:09 +02:00
const [name, nameErr] = $(params.name).optional.string().pipe(isValidName).$;
2017-03-03 01:56:07 +02:00
if (nameErr) return rej('invalid name param');
2017-03-03 02:15:38 +02:00
if (name) user.name = name;
2016-12-29 00:49:51 +02:00
2017-02-23 10:19:52 +02:00
// Get 'description' parameter
2017-03-08 20:50:09 +02:00
const [description, descriptionErr] = $(params.description).optional.nullable.string().pipe(isValidDescription).$;
2017-03-03 02:24:17 +02:00
if (descriptionErr) return rej('invalid description param');
if (description !== undefined) user.description = description;
2017-02-23 10:19:52 +02:00
2016-12-29 00:49:51 +02:00
// Get 'location' parameter
2017-03-08 20:50:09 +02:00
const [location, locationErr] = $(params.location).optional.nullable.string().pipe(isValidLocation).$;
2017-03-03 02:24:17 +02:00
if (locationErr) return rej('invalid location param');
if (location !== undefined) user.account.profile.location = location;
2016-12-29 00:49:51 +02:00
2017-01-06 08:35:07 +02:00
// Get 'birthday' parameter
2017-03-08 20:50:09 +02:00
const [birthday, birthdayErr] = $(params.birthday).optional.nullable.string().pipe(isValidBirthday).$;
2017-03-03 02:24:17 +02:00
if (birthdayErr) return rej('invalid birthday param');
if (birthday !== undefined) user.account.profile.birthday = birthday;
2017-01-06 08:35:07 +02:00
2018-03-29 08:48:47 +03:00
// Get 'avatarId' parameter
const [avatarId, avatarIdErr] = $(params.avatarId).optional.id().$;
if (avatarIdErr) return rej('invalid avatarId param');
if (avatarId) user.avatarId = avatarId;
2016-12-29 00:49:51 +02:00
2018-03-29 08:48:47 +03:00
// Get 'bannerId' parameter
const [bannerId, bannerIdErr] = $(params.bannerId).optional.id().$;
if (bannerIdErr) return rej('invalid bannerId param');
if (bannerId) user.bannerId = bannerId;
2016-12-29 00:49:51 +02:00
2018-03-29 08:48:47 +03:00
// Get 'isBot' parameter
const [isBot, isBotErr] = $(params.isBot).optional.boolean().$;
if (isBotErr) return rej('invalid isBot param');
if (isBot != null) user.account.isBot = isBot;
2018-03-01 23:26:31 +02:00
2018-03-29 08:48:47 +03:00
// Get 'autoWatch' parameter
const [autoWatch, autoWatchErr] = $(params.autoWatch).optional.boolean().$;
if (autoWatchErr) return rej('invalid autoWatch param');
if (autoWatch != null) user.account.settings.autoWatch = autoWatch;
2018-03-05 01:07:09 +02:00
2017-02-08 18:37:50 +02:00
await User.update(user._id, {
2017-02-08 19:20:47 +02:00
$set: {
name: user.name,
2017-02-23 10:19:52 +02:00
description: user.description,
2018-03-29 08:48:47 +03:00
avatarId: user.avatarId,
bannerId: user.bannerId,
'account.profile': user.account.profile,
2018-03-29 08:48:47 +03:00
'account.isBot': user.account.isBot,
'account.settings': user.account.settings
2017-02-08 19:20:47 +02:00
}
2017-02-08 18:37:50 +02:00
});
2016-12-29 00:49:51 +02:00
// Serialize
2018-02-02 01:21:30 +02:00
const iObj = await pack(user, 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);
// Publish i updated event
event(user._id, 'i_updated', iObj);
// Update search index
if (config.elasticsearch.enable) {
const es = require('../../../db/elasticsearch');
es.index({
index: 'misskey',
type: 'user',
id: user._id.toString(),
body: {
name: user.name,
bio: user.bio
}
});
}
});