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

25 lines
637 B
TypeScript
Raw Normal View History

2018-04-25 12:53:16 +02:00
import $ from 'cafy'; import ID from '../../../../../cafy-id';
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
/**
* Show a user list
*/
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));
});