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

88 lines
2.5 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
2017-03-05 05:00:39 +02:00
import it from 'cafy';
2016-12-29 00:49:51 +02:00
import User from '../../models/user';
2017-03-03 02:24:17 +02:00
import { isValidName, isValidDescription, isValidLocation, isValidBirthday } from '../../models/user';
2016-12-29 00:49:51 +02:00
import serialize from '../../serializers/user';
import event from '../../event';
2017-01-17 04:11:22 +02:00
import config from '../../../conf';
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-05 05:00:39 +02:00
const [name, nameErr] = it(params.name).expect.string().validate(isValidName).get();
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-05 05:00:39 +02:00
const [description, descriptionErr] = it(params.description).expect.nullable.string().validate(isValidDescription).get();
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-05 05:00:39 +02:00
const [location, locationErr] = it(params.location).expect.nullable.string().validate(isValidLocation).get();
2017-03-03 02:24:17 +02:00
if (locationErr) return rej('invalid location param');
2017-03-05 20:50:27 +02:00
if (location !== undefined) user.profile.location = location;
2016-12-29 00:49:51 +02:00
2017-01-06 08:35:07 +02:00
// Get 'birthday' parameter
2017-03-05 05:00:39 +02:00
const [birthday, birthdayErr] = it(params.birthday).expect.nullable.string().validate(isValidBirthday).get();
2017-03-03 02:24:17 +02:00
if (birthdayErr) return rej('invalid birthday param');
2017-03-05 20:50:27 +02:00
if (birthday !== undefined) user.profile.birthday = birthday;
2017-01-06 08:35:07 +02:00
2016-12-29 00:49:51 +02:00
// Get 'avatar_id' parameter
2017-03-05 05:00:39 +02:00
const [avatarId, avatarIdErr] = it(params.avatar_id).expect.id().get();
2017-03-03 02:24:17 +02:00
if (avatarIdErr) return rej('invalid avatar_id param');
if (avatarId) user.avatar_id = avatarId;
2016-12-29 00:49:51 +02:00
// Get 'banner_id' parameter
2017-03-05 05:00:39 +02:00
const [bannerId, bannerIdErr] = it(params.banner_id).expect.id().get();
2017-03-03 02:24:17 +02:00
if (bannerIdErr) return rej('invalid banner_id param');
if (bannerId) user.banner_id = bannerId;
2016-12-29 00:49:51 +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,
2017-02-08 19:20:47 +02:00
avatar_id: user.avatar_id,
2017-02-22 05:43:15 +02:00
banner_id: user.banner_id,
profile: user.profile
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
const iObj = await serialize(user, user, {
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
}
});
}
});