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

116 lines
2.4 KiB
JavaScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
'use strict';
/**
* Module dependencies
*/
import * as mongo from 'mongodb';
import User from '../../models/user';
2017-01-06 08:35:07 +02:00
import { 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
*
* @param {Object} params
* @param {Object} user
* @param {Object} _
* @param {boolean} isSecure
* @return {Promise<object>}
*/
module.exports = async (params, user, _, isSecure) =>
new Promise(async (res, rej) =>
{
// Get 'name' parameter
const name = params.name;
if (name !== undefined && name !== null) {
if (name.length > 50) {
return rej('too long name');
}
user.name = name;
}
2017-02-23 10:19:52 +02:00
// Get 'description' parameter
const description = params.description;
if (description !== undefined && description !== null) {
if (description.length > 500) {
return rej('too long description');
}
user.description = description;
}
2016-12-29 00:49:51 +02:00
// Get 'location' parameter
const location = params.location;
if (location !== undefined && location !== null) {
if (location.length > 50) {
return rej('too long location');
}
2017-02-22 05:43:15 +02:00
user.profile.location = location;
2016-12-29 00:49:51 +02:00
}
2017-01-06 08:35:07 +02:00
// Get 'birthday' parameter
const birthday = params.birthday;
if (birthday != null) {
2017-02-22 05:43:15 +02:00
if (!isValidBirthday(birthday)) {
return rej('invalid birthday');
2017-01-26 04:50:32 +02:00
}
2017-02-22 05:43:15 +02:00
user.profile.birthday = birthday;
} else {
user.profile.birthday = null;
2017-01-06 08:35:07 +02:00
}
2016-12-29 00:49:51 +02:00
// Get 'avatar_id' parameter
const avatar = params.avatar_id;
if (avatar !== undefined && avatar !== null) {
user.avatar_id = new mongo.ObjectID(avatar);
}
// Get 'banner_id' parameter
const banner = params.banner_id;
if (banner !== undefined && banner !== null) {
user.banner_id = new mongo.ObjectID(banner);
}
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
}
});
}
});