* enhance(server): Improve user block
* Update CHANGELOG.md
* ユーザーリスト対応
* 相手から見れなくなるように
* Update 1629004542760-chart-reindex.ts
2365761ba5 (commitcomment-54919821)
* update test
* add test
* add todos
* Update 1629004542760-chart-reindex.ts
92 lines
2 KiB
TypeScript
92 lines
2 KiB
TypeScript
import $ from 'cafy';
|
|
import { ID } from '@/misc/cafy-id';
|
|
import define from '../../../define';
|
|
import { ApiError } from '../../../error';
|
|
import { getUser } from '../../../common/getters';
|
|
import { pushUserToUserList } from '../../../../../services/user-list/push';
|
|
import { UserLists, UserListJoinings, Blockings } from '../../../../../models';
|
|
|
|
export const meta = {
|
|
tags: ['lists', 'users'],
|
|
|
|
requireCredential: true as const,
|
|
|
|
kind: 'write:account',
|
|
|
|
params: {
|
|
listId: {
|
|
validator: $.type(ID),
|
|
},
|
|
|
|
userId: {
|
|
validator: $.type(ID),
|
|
},
|
|
},
|
|
|
|
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'
|
|
},
|
|
|
|
youHaveBeenBlocked: {
|
|
message: 'You cannot push this user because you have been blocked by this user.',
|
|
code: 'YOU_HAVE_BEEN_BLOCKED',
|
|
id: '990232c5-3f9d-4d83-9f3f-ef27b6332a4b'
|
|
},
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, me) => {
|
|
// Fetch the list
|
|
const userList = await UserLists.findOne({
|
|
id: ps.listId,
|
|
userId: me.id,
|
|
});
|
|
|
|
if (userList == null) {
|
|
throw new ApiError(meta.errors.noSuchList);
|
|
}
|
|
|
|
// Fetch the user
|
|
const user = await getUser(ps.userId).catch(e => {
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
throw e;
|
|
});
|
|
|
|
// Check blocking
|
|
if (user.id !== me.id) {
|
|
const block = await Blockings.findOne({
|
|
blockerId: user.id,
|
|
blockeeId: me.id,
|
|
});
|
|
if (block) {
|
|
throw new ApiError(meta.errors.youHaveBeenBlocked);
|
|
}
|
|
}
|
|
|
|
const exist = await UserListJoinings.findOne({
|
|
userListId: userList.id,
|
|
userId: user.id
|
|
});
|
|
|
|
if (exist) {
|
|
throw new ApiError(meta.errors.alreadyAdded);
|
|
}
|
|
|
|
// Push the user
|
|
await pushUserToUserList(user, userList);
|
|
});
|