2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 12:50:09 -06:00
|
|
|
import $ from 'cafy';
|
2018-02-03 23:52:33 -06:00
|
|
|
import User, { isValidName, isValidDescription, isValidLocation, isValidBirthday, pack } from '../../models/user';
|
2016-12-28 16:49:51 -06:00
|
|
|
import event from '../../event';
|
2017-01-16 20:11:22 -06:00
|
|
|
import config from '../../../conf';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update myself
|
|
|
|
*
|
2017-03-01 02:37:01 -06:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @param {any} _
|
2016-12-28 16:49:51 -06:00
|
|
|
* @param {boolean} isSecure
|
2017-03-01 02:37:01 -06:00
|
|
|
* @return {Promise<any>}
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
2017-03-03 13:28:38 -06:00
|
|
|
module.exports = async (params, user, _, isSecure) => new Promise(async (res, rej) => {
|
2016-12-28 16:49:51 -06:00
|
|
|
// Get 'name' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [name, nameErr] = $(params.name).optional.string().pipe(isValidName).$;
|
2017-03-02 17:56:07 -06:00
|
|
|
if (nameErr) return rej('invalid name param');
|
2017-03-02 18:15:38 -06:00
|
|
|
if (name) user.name = name;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-02-23 02:19:52 -06:00
|
|
|
// Get 'description' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [description, descriptionErr] = $(params.description).optional.nullable.string().pipe(isValidDescription).$;
|
2017-03-02 18:24:17 -06:00
|
|
|
if (descriptionErr) return rej('invalid description param');
|
|
|
|
if (description !== undefined) user.description = description;
|
2017-02-23 02:19:52 -06:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// Get 'location' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [location, locationErr] = $(params.location).optional.nullable.string().pipe(isValidLocation).$;
|
2017-03-02 18:24:17 -06:00
|
|
|
if (locationErr) return rej('invalid location param');
|
2017-03-05 12:50:27 -06:00
|
|
|
if (location !== undefined) user.profile.location = location;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-01-06 00:35:07 -06:00
|
|
|
// Get 'birthday' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [birthday, birthdayErr] = $(params.birthday).optional.nullable.string().pipe(isValidBirthday).$;
|
2017-03-02 18:24:17 -06:00
|
|
|
if (birthdayErr) return rej('invalid birthday param');
|
2017-03-05 12:50:27 -06:00
|
|
|
if (birthday !== undefined) user.profile.birthday = birthday;
|
2017-01-06 00:35:07 -06:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// Get 'avatar_id' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [avatarId, avatarIdErr] = $(params.avatar_id).optional.id().$;
|
2017-03-02 18:24:17 -06:00
|
|
|
if (avatarIdErr) return rej('invalid avatar_id param');
|
|
|
|
if (avatarId) user.avatar_id = avatarId;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Get 'banner_id' parameter
|
2017-03-08 12:50:09 -06:00
|
|
|
const [bannerId, bannerIdErr] = $(params.banner_id).optional.id().$;
|
2017-03-02 18:24:17 -06:00
|
|
|
if (bannerIdErr) return rej('invalid banner_id param');
|
|
|
|
if (bannerId) user.banner_id = bannerId;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-02-08 10:37:50 -06:00
|
|
|
await User.update(user._id, {
|
2017-02-08 11:20:47 -06:00
|
|
|
$set: {
|
|
|
|
name: user.name,
|
2017-02-23 02:19:52 -06:00
|
|
|
description: user.description,
|
2017-02-08 11:20:47 -06:00
|
|
|
avatar_id: user.avatar_id,
|
2017-02-21 21:43:15 -06:00
|
|
|
banner_id: user.banner_id,
|
2018-02-22 11:06:35 -06:00
|
|
|
profile: user.profile
|
2017-02-08 11:20:47 -06:00
|
|
|
}
|
2017-02-08 10:37:50 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
// Serialize
|
2018-02-01 17:21:30 -06:00
|
|
|
const iObj = await pack(user, user, {
|
2016-12-28 16:49:51 -06:00
|
|
|
detail: true,
|
|
|
|
includeSecrets: isSecure
|
2017-01-21 00:30:40 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06: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
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|