2018-02-22 11:06:35 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import $ from 'cafy';
|
2018-03-29 06:32:18 -05:00
|
|
|
import User, { pack } from '../../../../models/user';
|
2018-02-22 11:06:35 -06:00
|
|
|
import event from '../../event';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update myself
|
|
|
|
*
|
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
|
|
|
*/
|
|
|
|
module.exports = async (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'name' parameter
|
|
|
|
const [name, nameErr] = $(params.name).string().$;
|
|
|
|
if (nameErr) return rej('invalid name param');
|
|
|
|
|
|
|
|
// Get 'value' parameter
|
|
|
|
const [value, valueErr] = $(params.value).nullable.any().$;
|
|
|
|
if (valueErr) return rej('invalid value param');
|
|
|
|
|
|
|
|
const x = {};
|
2018-03-29 00:48:47 -05:00
|
|
|
x[`account.clientSettings.${name}`] = value;
|
2018-02-22 11:06:35 -06:00
|
|
|
|
|
|
|
await User.update(user._id, {
|
|
|
|
$set: x
|
|
|
|
});
|
|
|
|
|
|
|
|
// Serialize
|
2018-03-29 00:48:47 -05:00
|
|
|
user.account.clientSettings[name] = value;
|
2018-02-22 11:06:35 -06:00
|
|
|
const iObj = await pack(user, user, {
|
|
|
|
detail: true,
|
|
|
|
includeSecrets: true
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res(iObj);
|
|
|
|
|
|
|
|
// Publish i updated event
|
|
|
|
event(user._id, 'i_updated', iObj);
|
|
|
|
});
|