generated from lighthouse-labs/node-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.js
515 lines (471 loc) · 12.4 KB
/
database.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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
const db = require("./server");
const bcrypt = require("bcrypt");
const queryHelpers = require("./queryHelpers");
// ------------------------------------ Users table queries ------------------------------------
// Return a user with a given email
const getUserWithEmail = function(email) {
return db
.query(
`
SELECT * FROM users
WHERE email = $1
`,
[email]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.getUserWithEmail = getUserWithEmail;
// Return a user with a given id
const getUserWithId = function(id) {
return db
.query(
`
SELECT * FROM users
WHERE id = $1
`,
[id]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.getUserWithId = getUserWithId;
// Add a user to the database with all of the provided information
const addUser = function(user) {
const { name, email, password } = user;
return db
.query(
`
INSERT INTO users (name, email, password)
VALUES($1, $2, $3) RETURNING *
`,
[name, email, password]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.addUser = addUser;
// Updates the database with a new password for the logged in user
const updateUserPasswordByUserId = function(userId, newPassword) {
return db
.query(
`
UPDATE users
SET password = $2
WHERE id = $1 RETURNING *
`,
[userId, newPassword]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.updateUserPasswordByUserId = updateUserPasswordByUserId;
// Get 'public' information of a user by a given id
const getPublicInfoUserById = function(userId) {
return db
.query(
`
SELECT users.name, users.email, users.join_date, users.profile_pic_url, users.phone_number, listings.*
FROM users
LEFT JOIN listings ON users.id = owner_id
WHERE users.id = $1
`,
[userId]
)
.then((res) => res.rows)
.catch((e) => null);
};
exports.getPublicInfoUserById = getPublicInfoUserById;
// Checks for changes in any of the currently logged in user data
// and updates it in the databse
const updateUserById = function(user, changes) {
const { name, phone, email } = changes;
const { id } = user;
const initQuery = `
UPDATE users
SET name = $1, phone_number = $2, email = $3
`;
if (changes.newpassword !== "") {
initQuery += `, password = ${bcrypt.hashSync(changes.newpassword, 12)}`;
}
endQuery = `
WHERE id = $4
RETURNING *
`;
let finalQuery = initQuery.concat(endQuery);
return db
.query(finalQuery, [name, phone, email, id])
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.updateUserById = updateUserById;
// Selects the reset token from the database for a given user
const getUserByResetToken = function(token) {
return db
.query(
`
SELECT * FROM users
WHERE token = $1
`,
[token]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.getUserByResetToken = getUserByResetToken;
// Updates the user's forget password token and sets
// it in the database
const updateUserTokenById = function(id, token) {
return db
.query(
`
UPDATE users
SET token = $1
WHERE id = $2
RETURNING *
`,
[token, id]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.updateUserTokenById = updateUserTokenById;
// Allows the user to update their profile picture and
// updates the database with the selected image
const addUserPicture = function(userId, imgUrl) {
return db
.query(
`
UPDATE users
SET profile_pic_url = $1
WHERE id = $2
RETURNING *
`,
[imgUrl, userId]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.addUserPicture = addUserPicture;
// ------------------------------------ Listing table queries ------------------------------------
// Create a new listing and insert into table
const createNewListing = function(listing) {
const {
title,
category,
owner_id,
description,
isTrade,
price,
postal_code,
} = listing;
return db
.query(
`
INSERT INTO listings (title, category, owner_id, description, isTrade, price, postal_code)
VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING *
`,
[
title,
category,
owner_id,
description,
isTrade,
Number(price),
postal_code,
]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.createNewListing = createNewListing;
// Get all listings based on search parameters (i.e category, price etc.)
const getListings = function(data) {
let value = null;
let finalQuery = null;
// If no category is selected
if (data.q === "" && data.category === "Categories...") {
const { min, max } = data;
finalQuery = `
SELECT * FROM listings
WHERE sold = 'f'
AND price BETWEEN $1 AND $2
ORDER BY creation_date DESC
`;
return db
.query(finalQuery, [min, max])
.then((res) => res.rows)
.catch((e) => null);
// If there is text in the search bar
} else if (data.q) {
const {min, max} = data;
let q = data.q;
if(q.split(' ').length === 1){
q = q.split(' ')[0]
}else if (q.split(' ').length === 2) {
q1 = q.split(' ')[0];
q2 = q.split(' ')[1];
q = `${q1} & ${q2}`
}else{
q1 = q.split(' ')[0];
q2 = q.split(' ')[1];
q3 = q.split(' ')[2]
q = `${q1} & ${q2} & ${q3}`
}
const finalQuery = queryHelpers.checkCategories(data);
return db
.query(finalQuery, [q, min, max])
.then((res) => res.rows)
.catch((e) => null);
// If a category is selected
} else if (data.category) {
const {category, min, max} = data;
value = data.category;
finalQuery = `
SELECT * FROM listings
WHERE category = $1
AND sold = 'f'
`;
return db
.query(finalQuery, [category])
.then((res) => res.rows)
.catch((e) => null);
} else {
const { min, max } = data;
finalQuery = `
SELECT * FROM listings
WHERE sold = 'f'
AND price BETWEEN $1 AND $2
`;
return db
.query(finalQuery, [min, max])
.then((res) => res.rows)
.catch((e) => null);
}
};
exports.getListings = getListings;
// Get the listings favourited by the currently logged in user
const getFavouritesListings = function(userId) {
return db
.query(
`
SELECT * FROM user_favourites
JOIN users ON users.id = user_id
JOIN listings ON listings.id = listing_id
WHERE users.id = $1
`,
[userId]
)
.then((res) => res.rows)
.catch((e) => null);
};
exports.getFavouritesListings = getFavouritesListings;
// Once a user clicks on a listing link, this will return that
// single listing from the database
const getSingleListing = function(id) {
return db
.query(
`
SELECT listings.*, users.join_date, users.name, users.phone_number, users.email
FROM listings
JOIN users ON users.id = owner_id
WHERE listings.id = $1
`,
[id]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.getSingleListing = getSingleListing;
// Checks the listings viewed while logged in and returns
// those listings from the database
const getRecentlyViewedListings = function(arrayOfId) {
let finalArr = [...new Set(arrayOfId)].splice(0, 4);
const queryStart = queryHelpers.checkHowManyRecentlyViewed(finalArr);
return db
.query(queryStart, finalArr)
.then((res) => res.rows)
.catch((e) => null);
};
exports.getRecentlyViewedListings = getRecentlyViewedListings;
// Delete user with a given id from the database
const deleteListingById = function(listingId) {
return db
.query(
`
DELETE FROM listings
WHERE id = $1
RETURNING *
`,
[listingId]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.deleteListingById = deleteListingById;
// Updates a selected listing with the changed data
const updateSingleListing = function(id, changes) {
const sold = changes.sold ? true : false;
const { title, description, price, category } = changes;
const finalQuery = queryHelpers.checkIfListingCategoryChaged(category);
return db
.query(finalQuery, [title, description, Number(price), sold, category, id])
.then((res) => res.rows[0])
.catch((e) => {
null;
});
};
exports.updateSingleListing = updateSingleListing;
// Allows the user to "like" a listing and updates the database with
// the user id and listing id
const likeListing = function(userId, listingId) {
return db
.query(
`
INSERT INTO user_favourites(user_id, listing_id)
VALUES($1, $2)
`,
[userId, listingId]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.likeListing = likeListing;
// Returns a list of listings already liked by the user
const listingsLikedByUser = function(userId) {
return db
.query(
`
SELECT * FROM user_favourites
WHERE user_id = $1
`,
[userId]
)
.then((res) => {
return res.rows;
})
.catch((e) => null);
};
exports.listingsLikedByUser = listingsLikedByUser;
// Allows the user to add up to 4 images to their listing
// which are then stored in the database
const addImagesForListing = function(listingId, images) {
// const finalQuery = checkNumberOfImages(images)
let middleQuery = null;
let value = [];
if (images.length === 1) {
middleQuery = `UPDATE listings SET picture_1 = $2 WHERE id = $1`;
value = [listingId, `/uploads/${images[0].name}`];
} else if (images.length === 2) {
middleQuery = `UPDATE listings SET picture_1 = $2, picture_2 = $3 WHERE id = $1`;
value = [
listingId,
`/uploads/${images[0].name}`,
`/uploads/${images[1].name}`,
];
} else if (images.length === 3) {
middleQuery = `UPDATE listings SET picture_1 = $2, picture_2 = $3, picture_3 = $4 WHERE id = $1`;
value = [
listingId,
`/uploads/${images[0].name}`,
`/uploads/${images[1].name}`,
`/uploads/${images[3].name}`,
];
}
const finalQuery = middleQuery.concat(" RETURNING *");
return db
.query(finalQuery, value)
.then((res) => {
res.rows;
})
.catch((e) => {
null;
});
};
exports.addImagesForListing = addImagesForListing;
// Allows the user to add a main image to their listing
// and stores in the database
const addMainImageToListing = function(listingId, image) {
return db
.query(
`
UPDATE listings
SET main_image = $2
WHERE id = $1
`,
[listingId, image]
)
.then((res) => res.rows[0])
.catch((e) => null);
};
exports.addMainImageToListing = addMainImageToListing;
// ------------------------------------ Messages table queries ------------------------------------
const getMessagesFromUser = function(userId) {
return db
.query(
`
SELECT * FROM message_thread
JOIN listings ON listing_id = listings.id
JOIN user_message ON thread_id = message_thread.id
WHERE owner_id = $1 OR sender_id = $1
ORDER BY send_date DESC;
`,
[userId]
)
.then((res) => res)
.catch((e) => null);
};
exports.getMessagesFromUser = getMessagesFromUser;
const getMessageThreadById = function(threadId) {
return db
.query(
`
SELECT user_message.*, message_thread.*, listings.*, users.name FROM user_message
JOIN message_thread on thread_id = message_thread.id
JOIN listings ON listing_id = listings.id
JOIN users ON sender_id = users.id
WHERE thread_id = $1
ORDER BY send_date;
`,
[threadId]
)
.then((res) => res)
.catch((e) => null);
};
exports.getMessageThreadById = getMessageThreadById;
const createAMessage = function(thread_id, user_id, message) {
return db.query(
`
INSERT INTO user_message (thread_id, sender_id, content)
VALUES ($1, $2, $3)
RETURNING *
`,
[thread_id, user_id, message]
);
};
exports.createAMessage = createAMessage;
const createNewThread = function(listingId) {
return db
.query(
`
INSERT INTO message_thread (listing_id)
VALUES ($1)
RETURNING *;
`,
[listingId]
)
.then((res) => res.rows)
.catch((e) => null);
};
exports.createNewThread = createNewThread;
const insertIntoCreatedThread = function(threadId, userId, message) {
return db.query(
`
INSERT INTO user_message (thread_id, sender_id, content)
VALUES ($1, $2, $3)
RETURNING *;
`,
[threadId, userId, message]
);
};
exports.insertIntoCreatedThread = insertIntoCreatedThread;