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

24 lines
565 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';
/**
* Show a user list
*/
module.exports = async (params, me) => new Promise(async (res, rej) => {
// 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));
});