-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.js
67 lines (59 loc) · 1.67 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
const spicedPg = require("spiced-pg");
const db = spicedPg(
process.env.DATABASE_URL ||
`postgres:postgres:postgres@localhost:5432/imageboard`
);
//also did a new version of getImages to give the first three also the id!
exports.getImages = () => {
return db.query(
`SELECT *, (
SELECT id FROM images
ORDER BY id ASC
LIMIT 1
) AS "lowestId" FROM images
ORDER BY id DESC
LIMIT 3;`
);
};
exports.getMoreImages = (lowestIdOnScreen) => {
return db.query(
`SELECT *, (
SELECT id FROM images
ORDER BY id ASC
LIMIT 1
) AS "lowestId" FROM images
WHERE id < $1
ORDER BY id DESC
LIMIT 3;`,
[lowestIdOnScreen]
);
};
exports.addImage = (url, username, title, description) => {
return db.query(
`INSERT INTO images (url, username, title, description)
VALUES ($1, $2, $3, $4) RETURNING *`,
[url, username, title, description]
);
};
exports.getSelectetImageInformation = () => {
return db.query(`SELECT * FROM images;`);
};
exports.getSelectetImageData = (id) => {
return db.query(`SELECT * FROM images WHERE id = $1;`, [id]);
};
exports.insertComment = (image_id, username, comment) => {
return db.query(
`INSERT INTO comments (image_id, username, comment)
VALUES ($1, $2, $3) RETURNING *`,
[image_id, username, comment]
);
};
exports.getComments = (imageId) => {
return db.query(
`SELECT * FROM comments WHERE image_id = $1 ORDER BY id ASC;`,
[imageId]
);
};
exports.getAllIds = () => {
return db.query(`SELECT id FROM images;`);
};