Sharkey/src/server/api/endpoints/users/lists/create.ts

38 lines
785 B
TypeScript
Raw Normal View History

2018-04-24 12:13:06 +03:00
import $ from 'cafy';
import UserList, { pack } from '../../../../../models/user-list';
2018-06-18 03:54:53 +03:00
import { ILocalUser } from '../../../../../models/user';
2018-11-02 05:49:08 +02:00
import getParams from '../../../get-params';
2018-04-24 12:13:06 +03:00
2018-07-16 22:36:44 +03:00
export const meta = {
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'ユーザーリストを作成します。',
'en-US': 'Create a user list'
2018-07-16 22:36:44 +03:00
},
requireCredential: true,
2018-11-02 05:49:08 +02:00
kind: 'account-write',
params: {
title: {
validator: $.str.range(1, 100)
}
}
2018-07-16 22:36:44 +03:00
};
2018-07-05 20:58:29 +03:00
export default async (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2018-11-02 05:49:08 +02:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2018-04-24 12:13:06 +03:00
// insert
const userList = await UserList.insert({
createdAt: new Date(),
userId: user._id,
2018-11-02 05:49:08 +02:00
title: ps.title,
2018-04-24 12:13:06 +03:00
userIds: []
});
// Response
res(await pack(userList));
});