Sharkey/src/server/api/endpoints/i/update_home.ts

30 lines
647 B
TypeScript
Raw Normal View History

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