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

33 lines
802 B
TypeScript
Raw Normal View History

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