-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtweetbank.js
99 lines (80 loc) · 2.02 KB
/
tweetbank.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
'use strict';
const pg = require('pg');
const client = new pg.Client(process.env.DATABASE_URL);
client.connect(function(err) {
console.log(err);
});
// function sync(cb) {
// var sql = require('./seed');
// client.query(sql, null, function(err) {
// if (err) return cb(err);
// cb(null);
// });
// }
function findUserId(name, cb) {
var sql = `
SELECT id
FROM users
WHERE name = $1
`;
client.query(sql, [name], function(err, result) {
if (err) cb(err);
// create user if doesn't exist
if (!result.rows.length) {
client.query('INSERT INTO users(name, picture_url) VALUES ($1, $2) RETURNING id', [ name, "https://avatars0.githubusercontent.com/u/1026488" ], function(err ,result) {
if (err) return cb(err);
cb(null, result.rows[0].id);
});
}
else {
cb(null, result.rows[0].id);
}
});
}
function add(name, content, cb) {
findUserId(name, function(err, result) {
if (err) cb(err);
var userId = result;
var sql = `
INSERT INTO tweets (user_id, content)
VALUES ($1, $2)
RETURNING id
`;
client.query(sql, [ userId, content ], function(err, result) {
if (err) return cb(err);
cb(null, { id: result.rows[0].id, content, name });
});
});
}
function list(cb) {
var sql = `
SELECT tweets.id, content, name, picture_url
FROM users
JOIN tweets
ON tweets.user_id = users.id
`;
client.query(sql, null, function(err, result) {
if (err) return cb(err);
cb(null, result.rows);
});
}
function find(properties, cb) {
var sql = `
SELECT tweets.id, content, name, picture_url
FROM users
JOIN tweets
ON tweets.user_id = users.id
`;
if (properties.name) {
sql = `${sql} WHERE name = $1`;
}
if (properties.id) {
sql = `${sql} WHERE tweets.id = $1`;
}
var prop = properties.name || properties.id;
client.query(sql, [ prop ], function(err, result) {
if (err) return cb(err);
cb(null, result.rows);
});
}
module.exports = { add, list, find };