summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/blocking/delete.ts
blob: 8caa3efc88b4f76a85ab35750997548a48fd346d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
import $ from 'cafy';
import { ID } from '@/misc/cafy-id';
import * as ms from 'ms';
import deleteBlocking from '../../../../services/blocking/delete';
import define from '../../define';
import { ApiError } from '../../error';
import { getUser } from '../../common/getters';
import { Blockings, Users } from '../../../../models';

export const meta = {
	desc: {
		'ja-JP': '指定したユーザーのブロックを解除します。',
		'en-US': 'Unblock a user.'
	},

	tags: ['account'],

	limit: {
		duration: ms('1hour'),
		max: 100
	},

	requireCredential: true as const,

	kind: 'write:blocks',

	params: {
		userId: {
			validator: $.type(ID),
			desc: {
				'ja-JP': '対象のユーザーのID',
				'en-US': 'Target user ID'
			}
		}
	},

	errors: {
		noSuchUser: {
			message: 'No such user.',
			code: 'NO_SUCH_USER',
			id: '8621d8bf-c358-4303-a066-5ea78610eb3f'
		},

		blockeeIsYourself: {
			message: 'Blockee is yourself.',
			code: 'BLOCKEE_IS_YOURSELF',
			id: '06f6fac6-524b-473c-a354-e97a40ae6eac'
		},

		notBlocking: {
			message: 'You are not blocking that user.',
			code: 'NOT_BLOCKING',
			id: '291b2efa-60c6-45c0-9f6a-045c8f9b02cd'
		},
	},

	res: {
		type: 'object' as const,
		optional: false as const, nullable: false as const,
		properties: {
			id: {
				type: 'string' as const,
				optional: false as const, nullable: false as const,
				format: 'id',
				description: 'The unique identifier for this blocking.',
				example: 'xxxxxxxxxx',
			},
			name: {
				type: 'string' as const,
				optional: false as const, nullable: true as const
			},
			username: {
				type: 'string' as const,
				optional: false as const, nullable: false as const
			},
			host: {
				type: 'string' as const,
				optional: false as const, nullable: true as const
			},
			avatarUrl: {
				type: 'string' as const,
				optional: false as const, nullable: false as const,
				format: 'url'
			},
			avatarBlurhash: {
				type: 'string' as const,
				optional: false as const, nullable: true as const
			},
			avatarColor: {
				type: 'any' as const,
				optional: false as const, nullable: true as const
			},
			emojis: {
				type: 'array' as const,
				optional: false as const, nullable: false as const,
				items: {
					type: 'object' as const,
					nullable: false as const, optional: false as const,
					properties: {
						name: {
							type: 'string' as const,
							nullable: false as const, optional: false as const
						},
						host: {
							type: 'string' as const,
							nullable: true as const, optional: false as const
						},
						url: {
							type: 'string' as const,
							nullable: false as const, optional: false as const,
							format: 'url'
						},
						aliases: {
							type: 'array' as const,
							nullable: false as const, optional: false as const,
							items: {
								type: 'string' as const,
								nullable: false as const, optional: false as const
							}
						}
					}
				}
			}
		}
	}
};

export default define(meta, async (ps, user) => {
	const blocker = await Users.findOneOrFail(user.id);

	// Check if the blockee is yourself
	if (user.id === ps.userId) {
		throw new ApiError(meta.errors.blockeeIsYourself);
	}

	// Get blockee
	const blockee = await getUser(ps.userId).catch(e => {
		if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
		throw e;
	});

	// Check not blocking
	const exist = await Blockings.findOne({
		blockerId: blocker.id,
		blockeeId: blockee.id
	});

	if (exist == null) {
		throw new ApiError(meta.errors.notBlocking);
	}

	// Delete blocking
	await deleteBlocking(blocker, blockee);

	return await Users.pack(blockee.id, blocker, {
		detail: true
	});
});