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