-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.js
430 lines (396 loc) · 11.9 KB
/
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
const { Pool } = require('pg');
const pool = new Pool({
connectionString: process.env.DATABASE_URL,
ssl: {
rejectUnauthorized: false // TODO: Vulnerability? MITM attack?
}
});
// const pool = new Pool({
// connectionString: process.env.DATABASE_URL || 'postgres://postgres:@localhost:5432/todos',
// ssl: process.env.DATABASE_URL ? true : false
// })
pool.query(`CREATE EXTENSION IF NOT EXISTS pg_trgm`, (err) => {
if (err) {
console.error('Error creating "pg_trgm" extension:', err);
}
});
pool.query(`
CREATE TABLE IF NOT EXISTS users (
id SERIAL PRIMARY KEY,
username TEXT UNIQUE NOT NULL,
hashed_password BYTEA,
salt BYTEA,
name TEXT,
handle BYTEA UNIQUE
)
`, (err) => {
if (err) {
console.error('Error creating "users" table:', err);
}
});
pool.query(`
CREATE TABLE IF NOT EXISTS public_key_credentials (
id SERIAL PRIMARY KEY,
user_id INTEGER NOT NULL REFERENCES users(id) ON DELETE CASCADE,
external_id TEXT UNIQUE,
public_key TEXT
)
`, (err) => {
if (err) {
console.error('Error creating "public_key_credentials" table:', err);
}
});
// TODO: Delete all todos functionality
pool.query(`
CREATE TABLE IF NOT EXISTS todos (
id SERIAL PRIMARY KEY,
owner_id INTEGER NOT NULL REFERENCES users(id) ON DELETE CASCADE,
title TEXT NOT NULL,
completed INTEGER
)
`, (err) => {
if (err) {
console.error('Error creating "todos" table:', err);
}
});
pool.query(`
CREATE TABLE IF NOT EXISTS profiles (
user_id INTEGER PRIMARY KEY NOT NULL REFERENCES users(id) ON DELETE CASCADE,
username TEXT UNIQUE NOT NULL,
first_name TEXT,
last_name TEXT,
balance DECIMAL(15,2) DEFAULT 500.00
)
`, (err) => {
if (err) {
console.error('Error creating "profiles" table:', err);
}
});
pool.query(`
CREATE TABLE IF NOT EXISTS transactions (
id SERIAL PRIMARY KEY,
actor_id INTEGER NOT NULL,
target_id INTEGER NOT NULL,
amount REAL NOT NULL,
action TEXT NOT NULL,
status TEXT NOT NULL,
note TEXT NOT NULL,
date_created BIGINT NOT NULL,
date_completed BIGINT,
audience TEXT NOT NULL
)
`, (err) => {
if (err) {
console.error('Error creating "transactions" table:', err);
}
});
pool.query(`
CREATE TABLE IF NOT EXISTS friends (
user1_id INTEGER NOT NULL REFERENCES users(id) ON DELETE CASCADE,
user2_id INTEGER NOT NULL REFERENCES users(id) ON DELETE CASCADE,
relationship TEXT NOT NULL
)
`, (err) => {
if (err) {
console.error('Error creating "friends" table:', err);
}
});
// TODO: Implement comments
// pool.query(`
// CREATE TABLE IF NOT EXISTS comments (
//
// )
// `);
// Functions for querying the database
async function getUserByID(id) { // TODO: verify that this works
try {
const res = await pool.query(`SELECT * FROM users WHERE id = $1`, [id]);
return res.rows[0];
} catch (error) {
console.error(error);
return null
}
};
async function updateProfile(id, firstName = null, lastName = null) {
try {
await pool.query(`UPDATE profiles SET first_name = $1, last_name = $2 WHERE user_id = $3`, [firstName, lastName, id]);
} catch (error) {
console.error(error);
}
}
async function getProfileByID(id) {
try {
const res = await pool.query(`SELECT * FROM profiles WHERE user_id = $1`, [id]);
return res.rows[0];
} catch (error) {
console.error(error);
return null
}
};
async function getFriendsByID(id) {
try {
const res = await pool.query(`SELECT * FROM friends WHERE (user1_id = $1 OR user2_id = $1) AND relationship = 'friend'`, [id]);
return res.rows;
} catch (error) {
console.error(error);
return null;
}
};
async function getRelationshipRow(id1, id2) {
if (id1 > id2) {
return getRelationshipRow(id2, id1);
}
try {
const res = await pool.query(`SELECT * FROM friends WHERE user1_id = $1 AND user2_id = $2`, [id1, id2]);
return res.rows[0];
} catch (error) {
console.error(error);
return null;
}
};
async function upsertRelationshipRow(requesterId, requestedId, relationship) {
let user1_id = requesterId, user2_id = requestedId;
let swapped = false;
if (requesterId > requestedId) {
user1_id = requestedId;
user2_id = requesterId;
swapped = true;
}
let dbRelationship;
if (relationship === "request") {
if (!swapped) {
dbRelationship = "user1Requested";
} else {
dbRelationship = "user2Requested";
}
} else {
dbRelationship = "friend";
}
try {
await pool.query(`INSERT INTO friends (user1_id, user2_id, relationship) VALUES ($1, $2, $3)
ON CONFLICT (user1_id, user2_id) DO UPDATE
SET relationship = $3`, [user1_id, user2_id, dbRelationship]);
} catch (error) {
console.error(error);
}
};
async function deleteRelationshipRow(id1, id2) {
if (id1 > id2) {
deleteRelationshipRow(id2, id1);
return
}
try {
await pool.query(`DELETE FROM friends WHERE user1_id = $1 AND user2_id = $2`, [id1, id2]);
} catch (error) {
console.error(error);
}
};
// TODO: friend results first
async function searchProfiles(query, limit) {
try {
const res = await pool.query(`
SELECT
username,
similarity(username, $1) AS exact_similarity
FROM
profiles
WHERE
username % $1
ORDER BY
CASE
WHEN username = $1 THEN 1
WHEN username ILIKE $1 || '%' THEN 2
ELSE 3
END,
similarity(username, $1) DESC
LIMIT $2
`, [query, limit]);
return res.rows;
} catch (error) {
console.error(error);
return null;
}
};
async function insertTransaction(actor_id, target_id, amount, action, status, note, audience = "public") {
let date_created = Date.now() / 1000;
let date_completed = null;
if (action === "pay") {
date_completed = Date.now() / 1000;
}
try {
const res = await pool.query(`INSERT INTO transactions
(actor_id, target_id, amount, action, status, note, date_created, date_completed, audience)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)
RETURNING id, date_created, date_completed`,
[actor_id, target_id, amount, action, status, note, date_created, date_completed, audience]);
return res.rows[0];
} catch (error) {
console.error(error);
return null;
}
};
async function updateBalance(id, newBalance) {
try {
const res = await pool.query(`UPDATE profiles SET balance = $1 WHERE user_id = $2`, [newBalance, id]);
return res.rows[0];
} catch (error) {
console.error(error);
return null;
}
};
async function getTransactionsForFriendsFeed(friendIDs, myID, before = null, after = null, limit, lastTransactionID = null) {
try {
const res = await pool.query(`
SELECT *
FROM transactions
WHERE (((actor_id = ANY ($1::integer[]) OR target_id = ANY ($1::integer[])) AND (audience = 'friends' OR audience = 'public' OR actor_id = $2 OR target_id = $2))
OR (actor_id = $2 OR target_id = $2))
AND status = 'settled'
AND ($6::integer IS NULL OR id < $6)
AND ($3::integer IS NULL OR date_completed < $3)
AND ($4::integer IS NULL OR date_completed > $4)
ORDER BY id DESC NULLS LAST
LIMIT $5
`, [friendIDs, myID, before, after, limit, lastTransactionID]); // OR actor_id = $2 OR target_id = $2
return res.rows;
} catch (error) {
console.error(error);
return null;
}
};
async function getMyRecentTransactions(myID, before = null, after = null, limit, lastTransactionID = null) {
try {
const res = await pool.query(`
SELECT *
FROM transactions
WHERE (actor_id = $1 OR target_id = $1)
AND status = 'settled'
AND ($5::integer IS NULL OR id < $5)
AND ($2::integer IS NULL OR date_completed < $2)
AND ($3::integer IS NULL OR date_completed > $3)
ORDER BY id DESC NULLS LAST
LIMIT $4
`, [myID, before, after, limit, lastTransactionID]);
return res.rows;
} catch (error) {
console.error(error);
return null;
}
};
async function getTransactionFeedOfFriend(myID, friendID, before = null, after = null, limit, lastTransactionID = null) {
try {
const res = await pool.query(`
SELECT *
FROM transactions
WHERE (audience = 'friends' OR audience = 'public' OR (actor_id = $1 AND target_id = $2) OR (actor_id = $2 AND target_id = $1))
AND status = 'settled'
AND ($6::integer IS NULL OR id < $6)
AND ($3::integer IS NULL OR date_completed < $3)
AND ($4::integer IS NULL OR date_completed > $4)
ORDER BY id DESC NULLS LAST
LIMIT $5
`, [myID, friendID, before, after, limit, lastTransactionID]);
return res.rows;
} catch (error) {
console.error(error);
return null;
}
};
async function getTransactionFeedOfUser(myID, partyID, before = null, after = null, limit, lastTransactionID = null) {
try {
const res = await pool.query(`
SELECT *
FROM transactions
WHERE (audience = 'public' OR (actor_id = $1 AND target_id = $2) OR (actor_id = $2 AND target_id = $1))
AND status = 'settled'
AND ($6::integer IS NULL OR id < $6)
AND ($3::integer IS NULL OR date_completed < $3)
AND ($4::integer IS NULL OR date_completed > $4)
ORDER BY id DESC NULLS LAST
LIMIT $5
`, [myID, partyID, before, after, limit, lastTransactionID]);
return res.rows;
} catch (error) {
console.error(error);
return null;
}
};
async function getTransactionsBetweenUsers(myID, partyID, before = null, after = null, limit, lastTransactionID = null) {
try {
const res = await pool.query(`
SELECT *
FROM transactions
WHERE (actor_id = $1 AND target_id = $2) OR (actor_id = $2 AND target_id = $1)
AND status = 'settled'
AND ($6::integer IS NULL OR id < $6)
AND ($3::integer IS NULL OR date_completed < $3)
AND ($4::integer IS NULL OR date_completed > $4)
ORDER BY id DESC NULLS LAST
LIMIT $5
`, [myID, partyID, before, after, limit, lastTransactionID]);
return res.rows;
} catch (error) {
console.error(error);
return null;
}
};
async function getOutstandingTransactions(myID, before = null, after = null, limit, lastTransactionID = null) {
try {
const res = await pool.query(`
SELECT *
FROM transactions
WHERE (actor_id = $1 OR target_id = $1)
AND status = 'pending'
AND ($5::integer IS NULL OR id < $5)
AND ($2::integer IS NULL OR date_completed < $2)
AND ($3::integer IS NULL OR date_completed > $3)
ORDER BY id DESC NULLS LAST
LIMIT $4
`, [myID, before, after, limit, lastTransactionID]);
return res.rows;
} catch (error) {
console.error(error);
return null;
}
};
async function getTransactionByID(id) {
try {
const res = await pool.query(`SELECT * FROM transactions WHERE id = $1`, [id]);
return res.rows[0];
} catch (error) {
console.error(error);
return null;
}
};
async function completeTransaction(id, status) {
const dateCompleted = Date.now() / 1000;
try {
const res = await pool.query(`UPDATE transactions SET status = $1, date_completed = $2 WHERE id = $3`,
[status, dateCompleted, id]);
return res.rows[0];
} catch (error) {
console.error(error);
return null;
}
};
module.exports = {
pool: pool,
getUserByID: getUserByID,
updateProfile: updateProfile,
getProfileByID: getProfileByID,
getFriendsByID: getFriendsByID,
getRelationshipRow: getRelationshipRow,
upsertRelationshipRow: upsertRelationshipRow,
deleteRelationshipRow: deleteRelationshipRow,
searchProfiles: searchProfiles,
insertTransaction: insertTransaction,
updateBalance: updateBalance,
getTransactionsForFriendsFeed: getTransactionsForFriendsFeed,
getMyRecentTransactions: getMyRecentTransactions,
getTransactionFeedOfFriend: getTransactionFeedOfFriend,
getTransactionFeedOfUser: getTransactionFeedOfUser,
getTransactionsBetweenUsers: getTransactionsBetweenUsers,
getOutstandingTransactions: getOutstandingTransactions,
getTransactionByID: getTransactionByID,
completeTransaction: completeTransaction,
};