yumechi-no-kuni/src/server/api/endpoints/i/update_home.ts

30 lines
647 B
TypeScript
Raw Normal View History

2017-11-08 08:43:47 -06:00
import $ from 'cafy';
2018-06-17 19:54:53 -05:00
import User, { ILocalUser } from '../../../../models/user';
2018-07-29 17:20:27 -05:00
import { publishUserStream } from '../../../../stream';
2017-11-08 08:43:47 -06:00
2018-07-16 14:36:44 -05:00
export const meta = {
requireCredential: true,
secure: true
};
2018-07-05 12:58:29 -05:00
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2017-11-08 08:43:47 -06:00
// Get 'home' parameter
2018-07-07 05:19:00 -05:00
const [home, homeErr] = $.arr($.obj({
name: $.str,
id: $.str,
place: $.str,
data: $.obj()
}).strict()).get(params.home);
2017-11-08 08:43:47 -06:00
if (homeErr) return rej('invalid home param');
await User.update(user._id, {
$set: {
'clientSettings.home': home
}
});
2017-11-08 08:43:47 -06:00
res();
2017-11-11 12:04:04 -06:00
2018-07-29 17:20:27 -05:00
publishUserStream(user._id, 'home_updated', home);
2017-11-08 08:43:47 -06:00
});