2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 18:33:41 +09:00
|
|
|
import { ID } from '@/misc/cafy-id.js';
|
|
|
|
|
import define from '../../../define.js';
|
|
|
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
|
import { UserLists } from '@/models/index.js';
|
2018-04-25 19:53:16 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['lists', 'account'],
|
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'read:account',
|
2018-11-02 03:32:24 +09:00
|
|
|
|
|
|
|
|
params: {
|
|
|
|
|
listId: {
|
|
|
|
|
validator: $.type(ID),
|
|
|
|
|
},
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
|
2019-02-25 03:35:45 +09:00
|
|
|
res: {
|
2019-06-27 18:04:09 +09:00
|
|
|
type: 'object' as const,
|
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 22:35:26 +09:00
|
|
|
ref: 'UserList',
|
2019-02-25 03:35:45 +09:00
|
|
|
},
|
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
errors: {
|
|
|
|
|
noSuchList: {
|
|
|
|
|
message: 'No such list.',
|
|
|
|
|
code: 'NO_SUCH_LIST',
|
|
|
|
|
id: '7bc05c21-1d7a-41ae-88f1-66820f4dc686'
|
|
|
|
|
},
|
2018-11-02 03:32:24 +09:00
|
|
|
}
|
2018-07-17 04:36:44 +09:00
|
|
|
};
|
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, me) => {
|
2018-04-25 19:53:16 +09:00
|
|
|
// Fetch the list
|
2019-04-07 21:50:36 +09:00
|
|
|
const userList = await UserLists.findOne({
|
|
|
|
|
id: ps.listId,
|
|
|
|
|
userId: me.id,
|
2018-04-25 19:53:16 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (userList == null) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new ApiError(meta.errors.noSuchList);
|
2018-04-25 19:53:16 +09:00
|
|
|
}
|
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
return await UserLists.pack(userList);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|