-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquries.js
467 lines (447 loc) · 12.7 KB
/
quries.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
var promise = require('bluebird');
var cs = require('./connectionString');
var jwt = require('jsonwebtoken');
var User = require('./models/user');
var Host = require('./models/host');
var statics = require('./statics');
var options = {
promiseLib: promise
};
var pgp = require('pg-promise')(options);
var connectionString = process.env.DATABASE_URL || cs.connection;
var db = pgp(connectionString);
function singleUser(req, res, next){
const uid = req.body.id || req.query.id;
if (!uid){
return res.status(403).send({
success: false,
message: 'id missing'
});
}
db.one('select firstname, lastname, gender, phone, bio, image, location from hmfs where id = $1', [uid])
.then((user)=>{
return res.status(200).json({
success: true,
message: "N/A",
data: user
});
})
.catch((err)=>{
return res.status(403).send({
success: false,
message: 'cant get stats'
});
})
}
function userStats(req, res, next){
const email = req.decoded;
const uid = req.body.uid || req.query.uid;
var token = statics.getToken(email);
var stats = {
host : {
upcoming : [],
old: []
},
guest: {
upcoming: [],
old: []
}
};
db.any('select f.id, f.title, f.datetime, f.location, f.noofguest, (select count(*) from hostfeast where fid =f.id) joined from feasts f where datetime >=now() and f.uid = (select id from hmfs where email = $1) order by datetime asc;', [email])
.then( (upcoming)=> {
stats.host.upcoming = upcoming;
return db.any('select f.id, f.title, f.datetime, f.location, f.noofguest, (select count(*) from hostfeast where fid =f.id) joined from feasts f where datetime < now() and f.uid = (select id from hmfs where email = $1) order by datetime desc;', [email]);
}).then ( (old)=> {
stats.host.old = old;
return db.any('select f.id, f.title, f.datetime, f.location, f.noofguest, (select count(*) from hostfeast where fid =f.id) joined from feasts f where f.datetime >= now() and f.id in (select fid from hostfeast where uid = (select id from hmfs where email = $1)) order by f.datetime asc', [email]);
}).then ((upcoming)=>{
stats.guest.upcoming = upcoming;
return db.any('select f.id, f.title, f.datetime, f.location, f.noofguest, (select count(*) from hostfeast where fid =f.id) joined from feasts f where f.datetime < now() and f.id in (select fid from hostfeast where uid = (select id from hmfs where email = $1)) order by f.datetime desc', [email]);
}).then ((old)=>{
stats.guest.old = old;
return res.status(200).json({
success: true,
message: token,
data: stats
});
}).catch( ()=>{
return res.status(403).send({
success: false,
message: 'cant get stats'
});
})
}
function removeJoin(req, res, next){
const email = req.decoded;
const hostId = req.body.id || req.query.id;
const uid = req.body.uid || req.query.uid;
var token = statics.getToken(email);
if (!hostId){
return res.status(403).send({
success: false,
message: 'id missing'
});
}
// User hasn't passed the id, remove him if he is already ...
if (!uid) {
db.result('delete from hostfeast where fid = $1 and uid = (select id from hmfs where email = $2)',[hostId, email])
.then ((result)=>{
var success = result.rowCount == 1;
var message = !success ? 'You havent joined' : 'removed';
return res.status(200).json({
success: success,
message: token,
data: message
});
})
.catch(()=>{
return res.status(403).send({
success: false,
message: 'id missing'
});
});
}else {
db.any("select * from hmfs h, feasts f where f.id = $1 and h.email = $2 and f.uid = h.id",[hostId, email])
.then ((rec)=>{
if (!rec.length){
return res.status(403).send({
success: false,
message: 'You cant do this dude'
});
}
db.result('delete from hostfeast where fid=$1 and uid=$2', [hostId, uid]).
then((result)=> {
var success = result.rowCount == 1;
var message = !success ? 'user hasnt joined' : 'removed';
return res.status(200).json({
success: success,
message: token,
data: message
});
})
.catch(()=>{
return res.status(403).send({
success: false,
message: 'something went wrong'
});
});
})
.catch(()=>{
return res.status(403).send({
success: false,
message: 'something went wrong'
});
});
}
}
function joinHost(req, res, next){
const email = req.decoded;
const hostId = req.body.id || req.query.id;
if (!hostId){
return res.status(403).send({
success: false,
message: 'id missing'
});
}
var noofguest;
var userid;
var token = statics.getToken(email);
db.any("select h.id uid, f.noofguest from hmfs h, feasts f where f.id=$1 and h.id = f.uid;",[hostId])
.then((record)=>{
if (!record.length){
return res.status(403).send({
success: false,
message: 'Feast not found'
});
}
noofguest = record[0].noofguest;
return db.any('select f.noofguest, h.id as uid from hmfs h, feasts f where h.email=$1 and f.id = $2 and f.uid = h.id', [email, hostId]);
})
.then((record)=>{
if (!(record instanceof Array)){
return record;
}
if(record.length){
return res.status(403).send({
success: false,
message: 'you cant join your own feast'
});
}
return db.any('select count(*) as joining from hostfeast where fid=$1', [hostId]);
})
.then((record)=>{
if (!(record instanceof Array)){
return record;
}
if (parseInt(record[0].joining) >= noofguest){
if(record.length){
return res.status(403).send({
success: false,
message: 'feast full'
});
}
}
return db.any('insert into hostfeast (uid, fid, approved) values ((select id from hmfs where email=$1),$2,$3) returning fid;', [email, hostId, (1 >>> 0).toString(2)]);
})
.then(record=>{
if (!(record instanceof Array)){
return record;
}
return res.status(200).json({
success: true,
message: token,
data: "Joined"
});
})
.catch(()=>{
return res.status(403).send({
success: false,
message: 'Can\'t join'
});
});
}
function getOneHost(req, res, next){
const email = req.decoded;
const hostId = req.query.id;
if (!hostId){
return res.status(403).send({
success: false,
message: 'id missing'
});
}
var token = statics.getToken(email);
var response = {};
db.one('select f.id, f.description, f.title, f.location, f.tags, f.created_at, f.datetime, f.noofguest, (select id from hmfs where email = $2) as uid, h.id as userid, h.firstname, h.lastname, h.email from feasts f, hmfs h where f.id=$1 and h.id = f.uid', [hostId, email])
.then((hf)=>{
response = hf;
return db.one('select (select count(*) from hostfeast where fid=$1) as joining, (select count(*) from hostfeast where fid=$1 and uid=$2) as joined', [hostId, hf.uid]);
})
.then(hf=>{
delete response.uid;
response.joining = hf.joining;
response.ishost = response.email === email;
if (response.email != email){
console.log("not a host");
delete response.email;
response.canjoin = parseInt(hf.joining) < parseInt(response.noofguest) && parseInt(hf.joined) == 0;
response.hasjoined = parseInt(hf.joined) == 1;
return res.status(200).json({
success: true,
message: token,
data: response
});
}
return db.any('select h.firstname, h.lastname, hf.uid, hf.created_at as joined from hostfeast hf, hmfs h where hf.fid=$1 and h.id = hf.uid order by joined asc', [hostId]);
}).then((guests)=>{
if (!(guests instanceof Array)){
return guests;
}
response.canjoin = false;
response.hasjoined = false;
response.guests = guests;
return res.status(200).json({
success: true,
message: token,
data: response
});
})
.catch((err)=>{
return res.status(403).send({
success: false,
message: 'nothing to show'
});
});
}
function getHosts(req, res, next){
var user = new User();
user.getLocation(req).then((loc) => {
var location = loc;
db.any('select f.id, f.uid, f.description, f.title, f.location, f.tags, f.created_at, f.datetime, f.noofguest, (select count(*) from hostfeast where fid =f.id) joined from feasts f where datetime >= now();')
.then((feasts)=>{
var data = user.getFeastByLocation(feasts,loc);
return res.status(200).json({
success: true,
message: 'N/a',
data: data
});
}).catch(()=>{
return res.status(403).send({
success: false,
message: 'no data dude'
});
});
}).catch(()=>{
return res.status(403).send({
success: false,
message: 'cant get location dude.'
});
});
}
function deleteHost(req, res, next){
const email = req.decoded;
const hostId = req.body.id;
db.one('select * from feasts f, hmfs h where h.email = $1 and f.id = $2', [email, hostId]).
then((hfs)=>{
if (hfs.email != email){
return res.status(403).send({
success: false,
message: 'cant delete'
});
}
db.none('delete from feasts where id=$1', [hostId]).then(()=>{
var token = statics.getToken(email);
return res.status(200).json({
success: true,
message: token,
data: 'deleted'
});
});
}).catch((err)=>{
console.log(err);
return res.status(403).send({
success: false,
message: 'cant delete'
});
});
}
function createHost(req, res, next) {
var host = new Host();
var email = req.decoded;
// TODO: CHeck when did the user create a host last and prevent spamming.
var r = host.create(req);
if (!r.succ){
return res.status(403).send({
success: false,
message: 'cant create1'
});
}
db.task(t => {
return t.one('select * from hmfs where email=$1', [email] )
.then(user => {
host.uid = user.id;
return t.one('insert into feasts(title, description, location, noofguest, datetime, tags, uid) values ($1, $2, $3, $4, $5, $6, $7) returning ID', host.getArray()).then((h)=>{
host.id = h.id;
});
});
}).then(()=>{
var token = statics.getToken(email);
return res.status(200).json({
success: true,
message: token,
data: host
});
}).catch((err)=>{
console.log(err);
return res.status(403).send({
success: false,
message: 'cant create'
});
});
}
function setUser(req, res, next){
var user = new User();
user.getFromReq(req);
user.isValidUser().then((record)=>{
db.none('insert into hmfs(email, password, phone, firstName, lastName, gender) values ($1, $2, $3, $4, $5, $6)', record)
.then(()=>{
var token = statics.getToken(record[0]);
return res.status(200).send({
success: true,
message: token
});
})
.catch(err => {
var message = "user not added";
if (err.code ==='23505'){
message = err.detail;
}
return res.status(403).send({
success: false,
message: message
});
})
}).catch((err)=>{
console.log(err);
return res.status(203).json({
success: false,
message: err
});
});
}
function getUser(req, res, next) {
const email = req.body.email;
const password = req.body.password;
if (!email || !password){
return res.status(403).send({
success: false,
message: 'Wrong Email or Password'
});
}
db.one('select * from hmfs where email=$1 and password=$2', [email, password] )
.then(function (data) {
var user = new User();
user.getFromRes(data);
var token = statics.getToken(email);
return res.status(200).json({
success: true,
message: token,
data: user.userForResponse()
});
}).catch(function (err) {
console.log(err);
return res.status(403).send({
success: false,
message: 'Wrong Email or Password'
});
});
}
function updateUser(req, res, next){
var email = req.decoded;
var user = new User();
db.task(t => {
return t.one('select * from hmfs where email=$1', [email] )
.then(data => {
var tsk = t;
user.getFromRes(data);
user.update(req).then(()=>{
return db.none('update hmfs set bio = $1, location = $2, image = $3, password =$4 where id = $5', [user.bio, user.location, user.image, user.password, user.id]);
}).catch(err=>{
console.log(err);
return res.status(403).send({
success: false,
message: 'cant update user'
});
});
});
}).then(() => {
var token = statics.getToken(email);
return res.status(200).json({
success: true,
message: token,
data: user.userForResponse()
});
}).catch(function (err) {
console.log(err);
return res.status(403).send({
success: false,
message: 'cant update user'
});
});
}
module.exports = {
hosts: {
get: getHosts,
set: createHost,
remove: deleteHost,
getOne: getOneHost,
join: joinHost,
removeJoin: removeJoin
},
users: {
get: getUser,
set: setUser,
update: updateUser,
stats: userStats,
one: singleUser
}
};