2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { ID } from '../../../../../misc/cafy-id';
|
2019-02-05 14:14:23 +09:00
|
|
|
import { publishUserListStream } from '../../../../../services/stream';
|
2018-12-19 07:22:01 +09:00
|
|
|
import define from '../../../define';
|
2019-02-22 11:46:58 +09:00
|
|
|
import { ApiError } from '../../../error';
|
2019-02-22 14:02:56 +09:00
|
|
|
import { getUser } from '../../../common/getters';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { UserLists, UserListJoinings, Users } from '../../../../../models';
|
2018-12-19 07:22:01 +09:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定したユーザーリストから指定したユーザーを削除します。',
|
|
|
|
'en-US': 'Remove a user to a user list.'
|
|
|
|
},
|
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['lists', 'users'],
|
|
|
|
|
2018-12-19 07:22:01 +09:00
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'write:account',
|
2018-12-19 07:22:01 +09:00
|
|
|
|
|
|
|
params: {
|
|
|
|
listId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
|
|
|
}
|
|
|
|
},
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchList: {
|
|
|
|
message: 'No such list.',
|
|
|
|
code: 'NO_SUCH_LIST',
|
|
|
|
id: '7f44670e-ab16-43b8-b4c1-ccd2ee89cc02'
|
|
|
|
},
|
|
|
|
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: '588e7f72-c744-4a61-b180-d354e912bda2'
|
|
|
|
}
|
2018-12-19 07:22:01 +09:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, me) => {
|
2018-12-19 07:22:01 +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-12-19 07:22:01 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
if (userList == null) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new ApiError(meta.errors.noSuchList);
|
2018-12-19 07:22:01 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch the user
|
2019-02-22 14:02:56 +09: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-12-19 07:22:01 +09:00
|
|
|
});
|
|
|
|
|
2018-12-20 02:47:24 +09:00
|
|
|
// Pull the user
|
2019-04-07 21:50:36 +09:00
|
|
|
await UserListJoinings.delete({ userId: user.id });
|
2018-12-19 07:22:01 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
publishUserListStream(userList.id, 'userRemoved', await Users.pack(user));
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|