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

40 lines
897 B
TypeScript
Raw Normal View History

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