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

40 lines
897 B
TypeScript
Raw Normal View History

2018-11-02 03:32:24 +09:00
import $ from 'cafy'; import ID, { transform } from '../../../../../misc/cafy-id';
2018-04-25 19:53:16 +09:00
import UserList, { pack } from '../../../../../models/user-list';
2018-06-18 09:54:53 +09:00
import { ILocalUser } from '../../../../../models/user';
2018-11-02 03:32:24 +09:00
import getParams from '../../../get-params';
2018-04-25 19:53:16 +09:00
2018-07-17 04:36:44 +09:00
export const meta = {
desc: {
2018-08-29 06:59:43 +09:00
'ja-JP': '指定したユーザーリストの情報を取得します。',
'en-US': 'Show a user list.'
2018-07-17 04:36:44 +09:00
},
requireCredential: true,
2018-11-02 03:32:24 +09:00
kind: 'account-read',
params: {
listId: {
validator: $.type(ID),
transform: transform,
},
}
2018-07-17 04:36:44 +09:00
};
2018-07-06 02:58:29 +09:00
export default async (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
2018-11-02 03:32:24 +09:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2018-04-25 19:53:16 +09:00
// Fetch the list
const userList = await UserList.findOne({
2018-11-02 03:32:24 +09:00
_id: ps.listId,
2018-04-25 19:53:16 +09:00
userId: me._id,
});
if (userList == null) {
return rej('list not found');
}
res(await pack(userList));
});