summary refs log tree commit diff
path: root/src/api/routes/users/@me/relationships.ts
blob: 0c32f27cc107de72e57253521b98c6cdf99c727a (plain) (blame)
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
	Copyright (C) 2023 Spacebar and Spacebar Contributors
	
	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU Affero General Public License as published
	by the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.
	
	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU Affero General Public License for more details.
	
	You should have received a copy of the GNU Affero General Public License
	along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/

import { route } from "@spacebar/api";
import {
	Config,
	DiscordApiErrors,
	PublicUserProjection,
	Relationship,
	RelationshipAddEvent,
	RelationshipRemoveEvent,
	RelationshipType,
	User,
	emitEvent,
} from "@spacebar/util";
import { Request, Response, Router } from "express";
import { HTTPError } from "lambert-server";

const router = Router();

const userProjection: (keyof User)[] = [
	"relationships",
	...PublicUserProjection,
];

router.get("/", route({}), async (req: Request, res: Response) => {
	const user = await User.findOneOrFail({
		where: { id: req.user_id },
		relations: ["relationships", "relationships.to"],
		select: ["id", "relationships"],
	});

	//TODO DTO
	const related_users = user.relationships.map((r) => {
		return {
			id: r.to.id,
			type: r.type,
			nickname: null,
			user: r.to.toPublicUser(),
		};
	});

	return res.json(related_users);
});

router.put(
	"/:id",
	route({ requestBody: "RelationshipPutSchema" }),
	async (req: Request, res: Response) => {
		return await updateRelationship(
			req,
			res,
			await User.findOneOrFail({
				where: { id: req.params.id },
				relations: ["relationships", "relationships.to"],
				select: userProjection,
			}),
			req.body.type ?? RelationshipType.friends,
		);
	},
);

router.post(
	"/",
	route({ requestBody: "RelationshipPostSchema" }),
	async (req: Request, res: Response) => {
		return await updateRelationship(
			req,
			res,
			await User.findOneOrFail({
				relations: ["relationships", "relationships.to"],
				select: userProjection,
				where: {
					discriminator: String(req.body.discriminator).padStart(
						4,
						"0",
					), //Discord send the discriminator as integer, we need to add leading zeroes
					username: req.body.username,
				},
			}),
			req.body.type,
		);
	},
);

router.delete("/:id", route({}), async (req: Request, res: Response) => {
	const { id } = req.params;
	if (id === req.user_id)
		throw new HTTPError("You can't remove yourself as a friend");

	const user = await User.findOneOrFail({
		where: { id: req.user_id },
		select: userProjection,
		relations: ["relationships"],
	});
	const friend = await User.findOneOrFail({
		where: { id: id },
		select: userProjection,
		relations: ["relationships"],
	});

	const relationship = user.relationships.find((x) => x.to_id === id);
	const friendRequest = friend.relationships.find(
		(x) => x.to_id === req.user_id,
	);

	if (!relationship)
		throw new HTTPError("You are not friends with the user", 404);
	if (relationship?.type === RelationshipType.blocked) {
		// unblock user

		await Promise.all([
			Relationship.delete({ id: relationship.id }),
			emitEvent({
				event: "RELATIONSHIP_REMOVE",
				user_id: req.user_id,
				data: relationship.toPublicRelationship(),
			} as RelationshipRemoveEvent),
		]);
		return res.sendStatus(204);
	}
	if (friendRequest && friendRequest.type !== RelationshipType.blocked) {
		await Promise.all([
			Relationship.delete({ id: friendRequest.id }),
			await emitEvent({
				event: "RELATIONSHIP_REMOVE",
				data: friendRequest.toPublicRelationship(),
				user_id: id,
			} as RelationshipRemoveEvent),
		]);
	}

	await Promise.all([
		Relationship.delete({ id: relationship.id }),
		emitEvent({
			event: "RELATIONSHIP_REMOVE",
			data: relationship.toPublicRelationship(),
			user_id: req.user_id,
		} as RelationshipRemoveEvent),
	]);

	return res.sendStatus(204);
});

export default router;

async function updateRelationship(
	req: Request,
	res: Response,
	friend: User,
	type: RelationshipType,
) {
	const id = friend.id;
	if (id === req.user_id)
		throw new HTTPError("You can't add yourself as a friend");

	const user = await User.findOneOrFail({
		where: { id: req.user_id },
		relations: ["relationships", "relationships.to"],
		select: userProjection,
	});

	let relationship = user.relationships.find((x) => x.to_id === id);
	const friendRequest = friend.relationships.find(
		(x) => x.to_id === req.user_id,
	);

	// TODO: you can add infinitely many blocked users (should this be prevented?)
	if (type === RelationshipType.blocked) {
		if (relationship) {
			if (relationship.type === RelationshipType.blocked)
				throw new HTTPError("You already blocked the user");
			relationship.type = RelationshipType.blocked;
			await relationship.save();
		} else {
			relationship = await Relationship.create({
				to_id: id,
				type: RelationshipType.blocked,
				from_id: req.user_id,
			}).save();
		}

		if (friendRequest && friendRequest.type !== RelationshipType.blocked) {
			await Promise.all([
				Relationship.delete({ id: friendRequest.id }),
				emitEvent({
					event: "RELATIONSHIP_REMOVE",
					data: friendRequest.toPublicRelationship(),
					user_id: id,
				} as RelationshipRemoveEvent),
			]);
		}

		await emitEvent({
			event: "RELATIONSHIP_ADD",
			data: relationship.toPublicRelationship(),
			user_id: req.user_id,
		} as RelationshipAddEvent);

		return res.sendStatus(204);
	}

	const { maxFriends } = Config.get().limits.user;
	if (user.relationships.length >= maxFriends)
		throw DiscordApiErrors.MAXIMUM_FRIENDS.withParams(maxFriends);

	let incoming_relationship = Relationship.create({
		nickname: undefined,
		type: RelationshipType.incoming,
		to: user,
		from: friend,
	});
	let outgoing_relationship = Relationship.create({
		nickname: undefined,
		type: RelationshipType.outgoing,
		to: friend,
		from: user,
	});

	if (friendRequest) {
		if (friendRequest.type === RelationshipType.blocked)
			throw new HTTPError("The user blocked you");
		if (friendRequest.type === RelationshipType.friends)
			throw new HTTPError("You are already friends with the user");
		// accept friend request
		incoming_relationship = friendRequest;
		incoming_relationship.type = RelationshipType.friends;
	}

	if (relationship) {
		if (relationship.type === RelationshipType.outgoing)
			throw new HTTPError("You already sent a friend request");
		if (relationship.type === RelationshipType.blocked)
			throw new HTTPError(
				"Unblock the user before sending a friend request",
			);
		if (relationship.type === RelationshipType.friends)
			throw new HTTPError("You are already friends with the user");
		outgoing_relationship = relationship;
		outgoing_relationship.type = RelationshipType.friends;
	}

	await Promise.all([
		incoming_relationship.save(),
		outgoing_relationship.save(),
		emitEvent({
			event: "RELATIONSHIP_ADD",
			data: outgoing_relationship.toPublicRelationship(),
			user_id: req.user_id,
		} as RelationshipAddEvent),
		emitEvent({
			event: "RELATIONSHIP_ADD",
			data: {
				...incoming_relationship.toPublicRelationship(),
				should_notify: true,
			},
			user_id: id,
		} as RelationshipAddEvent),
	]);

	return res.sendStatus(204);
}