-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.js
More file actions
116 lines (105 loc) · 2.92 KB
/
Copy pathdb.js
File metadata and controls
116 lines (105 loc) · 2.92 KB
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
const spicedPg = require("spiced-pg");
const db = spicedPg(
process.env.DATABASE_URL ||
"postgres:postgres:postgres@localhost:5432/imageboard"
);
/////////////////////////////////////GETTING ALL IMAGES FROM THE DATABASE///////////////////////////////////////////
exports.getImages = function() {
return db.query(`
SELECT *
FROM images
ORDER BY created_at DESC
LIMIT 9`);
};
///////////////////INSERTING AN UPLOADED IMAGE IN THE DATABASE////////////////////////////////////////
exports.insertImage = function(url, username, title, description) {
return db.query(
`
INSERT INTO images (url, username, title, description)
VALUES ($1, $2, $3, $4)
RETURNING id, url, username, title, description`,
[url, username, title, description]
);
};
//////////////////////GETTING A SINGLE IMAGE////////////////////////////
////////////////////////////////////////////////////////////////////////
exports.getImageById = function(id) {
return db.query(
`
SELECT *, (
SELECT id FROM images
WHERE id > $1
LIMIT 1
) AS next_id,
(
SELECT id FROM images
WHERE id < $1
ORDER BY id DESC
LIMIT 1
) AS prev_id
FROM images
WHERE id=$1`,
[id]
);
};
// LAG(id) OVER(ORDER BY id) prev_code,
// LEAD(id) OVER(ORDER BY id) next_code
/////////////////////INSERT A COMMENT INTO THE TABLE//////////////
exports.addComment = function(comment, username, imageID) {
return db.query(
`
INSERT INTO comments (comment, username, image_id)
VALUES ($1, $2, $3)
RETURNING *`,
[comment, username, imageID]
);
};
//////////////////GETTING ALL THE COMMENTS////////////////
exports.getAllComments = function(image_id) {
return db.query(
`
SELECT *
FROM comments
WHERE image_id=$1
ORDER BY created_at DESC`,
[image_id]
);
};
/////////////////////GETTING MORE IMAGES//////////////////////
exports.getMoreImages = function(lastID) {
return db.query(
`
SELECT *
FROM images
WHERE id < $1
ORDER BY id DESC
LIMIT 8`,
[lastID]
);
};
////////////////////ADDING A REPLY/////////////////////
exports.addReply = function(reply, username, imageID, commentID) {
return db.query(
`
INSERT INTO replies (reply, username, image_id, comment_id)
VALUES ($1, $2, $3, $4)
RETURNING *`,
[reply, username, imageID, commentID]
);
};
//////////////GETTING THE REPLIES////////////
exports.getAllReplies = function(image_id) {
return db.query(
`
SELECT *
FROM replies
WHERE image_id=$1
ORDER BY created_at DESC`,
[image_id]
);
};
//// ,
// (SELECT id FROM images
// AS last_id
// ORDER BY id ASC
// LIMIT 1)