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

52 lines
973 B
TypeScript
Raw Normal View History

2019-02-05 03:48:08 +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-11-02 05:47:44 +01:00
import define from '../../../define';
import { ApiError } from '../../../error';
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
},
tags: ['lists', 'account'],
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,
},
},
2019-02-24 19:35:45 +01:00
res: {
type: 'UserList'
},
errors: {
noSuchList: {
message: 'No such list.',
code: 'NO_SUCH_LIST',
id: '7bc05c21-1d7a-41ae-88f1-66820f4dc686'
},
2018-11-01 19:32:24 +01:00
}
2018-07-16 21:36:44 +02:00
};
export default define(meta, async (ps, me) => {
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) {
throw new ApiError(meta.errors.noSuchList);
2018-04-25 12:53:16 +02:00
}
return await pack(userList);
});