hippofish/src/server/api/endpoints/users/lists/push.ts

82 lines
1.8 KiB
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-24 13:58:29 +02:00
import UserList from '../../../../../models/user-list';
2018-11-02 05:47:44 +01:00
import define from '../../../define';
import { ApiError } from '../../../error';
2019-02-22 06:02:56 +01:00
import { getUser } from '../../../common/getters';
2019-03-11 11:57:50 +01:00
import { pushUserToUserList } from '../../../../../services/user-list/push';
2018-04-24 13:58:29 +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': 'Add a user to a user list.'
2018-07-16 21:36:44 +02:00
},
tags: ['lists', 'users'],
2018-07-16 21:36:44 +02:00
requireCredential: true,
2018-11-01 19:32:24 +01:00
kind: 'account-write',
params: {
listId: {
validator: $.type(ID),
transform: transform,
},
userId: {
validator: $.type(ID),
transform: transform,
2018-11-03 14:49:36 +01:00
desc: {
'ja-JP': '対象のユーザーのID',
'en-US': 'Target user ID'
}
2018-11-01 19:32:24 +01:00
},
},
errors: {
noSuchList: {
message: 'No such list.',
code: 'NO_SUCH_LIST',
id: '2214501d-ac96-4049-b717-91e42272a711'
},
noSuchUser: {
message: 'No such user.',
code: 'NO_SUCH_USER',
id: 'a89abd3d-f0bc-4cce-beb1-2f446f4f1e6a'
},
alreadyAdded: {
message: 'That user has already been added to that list.',
code: 'ALREADY_ADDED',
id: '1de7c884-1595-49e9-857e-61f12f4d4fc5'
}
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-24 13:58:29 +02:00
// Fetch the list
const userList = await UserList.findOne({
2018-11-01 19:32:24 +01:00
_id: ps.listId,
2018-04-24 13:58:29 +02:00
userId: me._id,
});
if (userList == null) {
throw new ApiError(meta.errors.noSuchList);
2018-04-24 13:58:29 +02:00
}
// Fetch the user
2019-02-22 06:02:56 +01:00
const user = await getUser(ps.userId).catch(e => {
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
throw e;
2018-04-24 13:58:29 +02:00
});
if (userList.userIds.map(id => id.toHexString()).includes(user._id.toHexString())) {
throw new ApiError(meta.errors.alreadyAdded);
2018-04-24 13:58:29 +02:00
}
// Push the user
2019-03-11 11:57:50 +01:00
pushUserToUserList(user, userList);
});