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

93 lines
2.8 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';
2016-12-29 00:49:51 +02:00
import User from '../../models/user';
2018-02-02 03:31:17 +02:00
import { isValidName, isValidDescription, isValidLocation, isValidBirthday }, { pack } from '../../models/user';
2016-12-29 00:49:51 +02:00
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-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');
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-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');
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-08 20:50:09 +02:00
const [avatarId, avatarIdErr] = $(params.avatar_id).optional.id().$;
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-08 20:50:09 +02:00
const [bannerId, bannerIdErr] = $(params.banner_id).optional.id().$;
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-11-08 16:43:47 +02:00
// Get 'show_donation' parameter
const [showDonation, showDonationErr] = $(params.show_donation).optional.boolean().$;
if (showDonationErr) return rej('invalid show_donation param');
if (showDonation) user.client_settings.show_donation = showDonation;
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,
2017-11-08 16:43:47 +02:00
profile: user.profile,
'client_settings.show_donation': user.client_settings.show_donation
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
}
});
}
});