-
Notifications
You must be signed in to change notification settings - Fork 0
/
borga-data-db.js
457 lines (379 loc) · 9.81 KB
/
borga-data-db.js
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
'use strict';
const errors = require('./borga-errors');
const crypto = require('crypto');
const fetch = require('node-fetch');
module.exports = function (
es_url,
idx_prefix
) {
const tokensUri = `${es_url}/${idx_prefix}_tokens`;
const usersUri = `${es_url}/${idx_prefix}_users`;
const gamesUri = `${es_url}/${idx_prefix}_games`;
const userGroupsUri = (userId) => `${usersUri}_${userId}_groups`;
const groupGamesUri = (userId, groupId) => `${userGroupsUri(userId)}_${groupId}_games`;
// ------------------------- Tokens -------------------------
/**
* Return the userId associated with the given token.
* @param {String} token
* @returns the userId associated with the given token
*/
async function tokenToUserId(token) {
try {
const response = await fetch(`${tokensUri}/_doc/${token}`);
if (response.status == 200)
return (await response.json())._source.userId;
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
return null;
}
/**
* Creates a token, randomly generated, associating it to a userId.
* Uses crypto.randomUUID() for random token generation.
* @param {String} token
* @returns the created token
*/
async function createToken(userId) {
const token = crypto.randomUUID();
try {
const response = await fetch(
`${tokensUri}/_doc/${token}?refresh=wait_for`,
{
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
userId
})
}
);
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
return token;
}
/**
* Gets an user token.
* @param {String} userId
* @returns the user token
* @throws NOT_FOUND if the token doesn't exist
*/
async function getToken(userId) {
try {
const response = await fetch(`${tokensUri}/_search`);
const tokens = (await response.json()).hits.hits;
for (const token of tokens) {
if (token._source.userId == userId)
return token._id;
}
if (response.status == 400)
throw (await response.json()).error;
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
throw errors.NOT_FOUND({ 'token for user': userId });
}
// ------------------------- Users Functions -------------------------
/**
* Creates a new user given its id and name.
* @param {String} userId
* @param {String} userName
* @param {String} passwordHash
* @returns an object with the new user information
* @throws ALREADY_EXISTS if the user with userId already exists
*/
async function createNewUser(userId, userName, passwordHash) {
let found = true;
try { await getUser(userId) }
catch (err) {
if (err.name == "NOT_FOUND") found = false
else throw err
}
if (found) throw errors.ALREADY_EXISTS({ userId });
try {
const response = await fetch(
`${usersUri}/_doc/${userId}?refresh=wait_for`,
{
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
userName,
passwordHash
})
}
);
if (response.status != 201)
throw (await response.json()).error;
const token = await createToken(userId);
return { userId, token, userName };
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
}
/**
* Gets an user.
* @param {String} userId
* @returns the user object
* @throws NOT_FOUND if the user doesn't exist
*/
async function getUser(userId) {
try {
const response = await fetch(`${usersUri}/_doc/${userId}`);
if (response.status == 200)
return (await response.json())._source;
if (response.status == 400)
throw (await response.json()).error;
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
throw errors.NOT_FOUND({ userId });
}
// ------------------------- Groups Functions -------------------------
/**
* Writes a new group to the user.
* @param {String} userId
* @param {String} groupId
* @param {String} groupName
* @param {String} groupDescription
* @returns an object with the wrote group information
*/
async function writeGroup(userId, groupId, groupName, groupDescription) {
await getUser(userId);
try {
const response = await fetch(
`${userGroupsUri(userId)}/_doc/${groupId}?refresh=wait_for`,
{
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
name: groupName,
description: groupDescription
})
}
);
if (response.status != 200 && response.status != 201)
throw (await response.json()).error;
return {
id: groupId,
name: groupName,
description: groupDescription
};
}
catch (err) {
throw errors.FAIL(err);
}
}
// Creates a group
const createGroup = writeGroup;
/**
* Edits a group by changing its name and description.
* @param {String} userId
* @param {String} groupId
* @param {String} newGroupName
* @param {String} newGroupDescription
* @returns an object with the edited group information
*/
async function editGroup(userId, groupId, newGroupName, newGroupDescription) {
const group = await getGroup(userId, groupId);
return await writeGroup(
userId,
groupId,
newGroupName ? newGroupName : group.name,
newGroupDescription ? newGroupDescription : group.description
);
}
/**
* Returns the group object of a group.
* @param {String} userId
* @param {String} groupId
* @returns group object
* @throws NOT_FOUND if the group doesn't exist
*/
async function getGroup(userId, groupId) {
await getUser(userId);
try {
const response = await fetch(`${userGroupsUri(userId)}/_doc/${groupId}`);
if (response.status == 200)
return (await response.json())._source;
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
throw errors.NOT_FOUND({ groupId });
}
/**
* Lists all groups from a user.
* @param {String} userId
* @returns object containing all group objects associated with their id
*/
async function listUserGroups(userId) {
await getUser(userId);
try {
const response = await fetch(`${userGroupsUri(userId)}/_search`);
if (response.status == 200) {
const answer = await response.json();
return Object.fromEntries(answer.hits.hits.map(hit => [hit._id, hit._source]));
}
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
return {};
}
/**
* Deletes the group with the specified groupId.
* @param {String} userId
* @param {String} groupId
* @returns an object with the deleted group information
*/
async function deleteGroup(userId, groupId) {
const group = await getGroup(userId, groupId);
try {
const response1 = await fetch(
`${userGroupsUri(userId)}/_doc/${groupId}?refresh=wait_for`,
{
method: 'DELETE'
}
);
const response2 = await fetch(
`${groupGamesUri(userId, groupId)}`,
{
method: 'DELETE'
}
);
if (response1.status == 200)
return {
id: groupId,
name: group.name,
description: group.description
};
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
throw errors.NOT_FOUND({ groupId });
}
// ------------------------- Games Functions -------------------------
/**
* Gets the details of a group, including a list of game ids.
* @param {Object} userId
* @param {Object} groupId
* @returns an object containing the details of a group
*/
async function getGroupDetails(userId, groupId) {
const group = await getGroup(userId, groupId);
let games = {};
try {
const response = await fetch(`${groupGamesUri(userId, groupId)}/_search`);
if (response.status == 200) {
const answer = await response.json();
games = Object.fromEntries(answer.hits.hits.map(hit => [hit._id, hit._source.name]));
}
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
return {
id: groupId,
name: group.name,
description: group.description,
games
};
}
/**
* Adds a new game to a group.
* @param {String} userId
* @param {String} groupId
* @param {String} gameObj
* @return the id of the added game
*/
async function addGameToGroup(userId, groupId, gameObj) {
await getGroup(userId, groupId);
try {
const response1 = await fetch(
`${gamesUri}/_doc/${gameObj.id}?refresh=wait_for`,
{
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(gameObj)
}
);
if (response1.status != 200 && response1.status != 201)
throw (await response1.json()).error;
const response2 = await fetch(
`${groupGamesUri(userId, groupId)}/_doc/${gameObj.id}?refresh=wait_for`,
{
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
name: gameObj.name
})
}
);
if (response2.status != 200 && response2.status != 201)
throw (await response2.json()).error;
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
return gameObj;
}
/**
* Removes a game from a group given its id.
* @param {String} userId
* @param {String} groupId
* @param {String} gameId
* @return the removed game object
*/
async function removeGameFromGroup(userId, groupId, gameId) {
await getGroup(userId, groupId);
try {
const gamesResponse = await fetch(`${gamesUri}/_doc/${gameId}`);
const answer = await gamesResponse.json();
const groupGamesResponse = await fetch(
`${groupGamesUri(userId, groupId)}/_doc/${gameId}?refresh=wait_for`,
{
method: 'DELETE'
}
);
if (groupGamesResponse.status == 200)
return answer._source;
}
catch (err) {
console.log(err);
throw errors.FAIL(err);
}
throw errors.NOT_FOUND({ gameId });
}
return {
//-- User --
createNewUser,
getUser,
//-- Group --
createGroup,
editGroup,
listUserGroups,
deleteGroup,
getGroupDetails,
//-- Game --
addGameToGroup,
removeGameFromGroup,
//-- Tokens --
tokenToUserId,
getToken
};
}