-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
511 lines (440 loc) · 12.4 KB
/
index.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
const redis = require("redis");
const rejson = require("redis-rejson");
const { v4: uuidv4 } = require("uuid");
const { promisify } = require('util');
const crypto = require('crypto');
const express = require('express');
const cors = require("cors");
const bodyparser = require("body-parser");
rejson(redis);
const client = redis.createClient({
port : 0, // database port,
host : "", // database url,
password : "", // database password
});
client.on("error", function(error) {
console.error(error);
});
const app = express();
const port = 3000;
app.use(bodyparser.urlencoded({ extended: true }));
app.use(bodyparser.json());
app.use(express.static(__dirname));
app.use(cors());
app.get('/', (req, res) => {
res.sendFile(__dirname + "/html/homepage.html");
})
app.get('/login', async (req, res) => {
var name = req.query.name;
var pwd = req.query.pwd;
console.log(name);
var token = await login(name, pwd);
console.log(token);
res.send(token);
})
app.get('/logout', async (req, res) => {
var token = req.query.token;
await logout(token);
res.send("OK");
})
app.get('/authUser', async (req, res) => {
var token = req.query.token;
var name = await authUser(token);
res.send(name);
})
app.get('/userInfo', async (req, res) => {
var name = req.query.name;
const hmget = promisify(client.hmget).bind(client);
var user = await hmget(name, 'id', 'description', 'image');
res.send([name, ...user]);
})
app.get('/postInfo', async (req, res) => {
var pid = req.query.pid;
var post = await findPostByID(pid);
res.send(post);
})
app.post('/addUser', async (req, res) => {
var params = req.body;
await addUser(params.name, params.pwd, params.description, params.image);
res.send("OK");
})
app.post('/setField', async (req, res) => {
var params = req.body;
console.log(params);
await setField(params.token, params.field, params.value);
res.send("OK");
})
app.post('/editPost', async (req, res) => {
var params = req.body;
await editPost(params.token, params.pid, params.title, params.description, params.image, params.recipe, params.steps, params.visibility);
res.send("OK");
})
app.post('/addPost', async (req, res) => {
var params = req.body;
var name = await authUser(params.token);
await addPost(params.token, params.title, params.description, name, params.image, params.recipe, params.steps, params.visibility);
res.send("OK");
})
app.post('/addComment', async (req, res) => {
var params = req.body;
await addComment(params.token, params.pid, params.comment, params.date, params.time);
res.send("OK");
})
app.get('/findPost', async (req, res) => {
var pid = req.query.pid;
var post = await findPostByID(pid);
res.send(post);
})
app.get('/deletePost', async (req, res) => {
var token = req.query.token;
var pid = req.query.pid;
await deletePost(token, pid);
res.send("OK");
})
app.get('/allPosts', async (req, res) => {
var name = req.query.name;
const hget = promisify(client.hget).bind(client);
const lr = promisify(client.lrange).bind(client);
const hgetall = promisify(client.hgetall).bind(client);
const json_get = promisify(client.json_get).bind(client);
var id = await hget([name, 'id']);
var posts = await json_get(id);
posts = JSON.parse(posts);
var newposts = {"posts": []};
if (posts != null) {
for (var i = 0; i < posts.length; i++) {
var p = posts[i];
if (p["visibility"] === "on") {
newposts["posts"].push(p);
}
}
}
console.log(newposts);
res.send(newposts);
})
app.get('/allGlobalPosts', async (req, res) => {
const hget = promisify(client.hget).bind(client);
const lr = promisify(client.lrange).bind(client);
const hgetall = promisify(client.hgetall).bind(client);
const json_get = promisify(client.json_get).bind(client);
var posts = await json_get('globalPosts');
posts = JSON.parse(posts);
var newposts = {"posts": []};
if (posts != null) {
for (var i = 0; i < posts.length; i++) {
var p = posts[i];
newposts["posts"].push(p);
}
}
console.log(newposts);
res.send(newposts);
})
app.get('/allDrafts', async (req, res) => {
var name = req.query.name;
const hget = promisify(client.hget).bind(client);
const lr = promisify(client.lrange).bind(client);
const hgetall = promisify(client.hgetall).bind(client);
const json_get = promisify(client.json_get).bind(client);
var id = await hget([name, 'id']);
var posts = await json_get(id);
posts = JSON.parse(posts);
var newposts = {"posts": []};
if (posts != null) {
for (var i = 0; i < posts.length; i++) {
var p = posts[i];
if (p["visibility"] === "off") {
newposts["posts"].push(p);
}
}
}
console.log(newposts);
res.send(newposts);
})
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
async function addUser(name, password, description, image) {
const sadd = promisify(client.sadd).bind(client);
var result = await sadd(['users', name]);
if (result != null) {
var id = uuidv4();
const hash = crypto.createHash('sha256');
hash.update(password);
var pwd = hash.digest('hex');
const hmset = promisify(client.hmset).bind(client);
await hmset(name, 'id', id, 'pwd', pwd, 'description', description, 'image', image);
console.log("User added");
}
}
async function login(name, password) {
if (client.sismember(['users', name])) {
const hash = crypto.createHash('sha256');
hash.update(password);
var pwdhash = hash.digest('hex');
const hget = promisify(client.hget).bind(client);
var pwd = await hget([name, 'pwd']);
if (pwdhash === pwd) {
console.log("Successful sign-in");
var token = uuidv4();
const hset = promisify(client.hset).bind(client);
await hset(['active', token, name]);
return token;
} else {
console.log("Incorrect password");
return null;
}
} else {
console.log("Account does not exist");
return null;
}
}
async function logout(token) {
var name = await authUser(token);
console.log(token);
console.log(name);
if (name == null) {
console.log("Not signed in");
} else {
const hdel = promisify(client.hdel).bind(client);
await hdel(['active', token]);
console.log("Successful logout");
}
}
async function findUser(name) {
const hget = promisify(client.hgetall).bind(client);
var user = await hget(name);
return user;
}
async function authUser(token) {
const hget = promisify(client.hget).bind(client);
var name = await hget(['active', token]);
if (name == null) {
console.log("Not authenticated.");
}
return name;
}
async function setField(token, field, value) {
var name = await authUser(token);
const hmset = promisify(client.hmset).bind(client);
await hmset(name, field, value);
}
async function editPost(token, pid, title, description, image, recipe, steps, visibility) {
var name = await authUser(token);
const hget = promisify(client.hget).bind(client);
const json_get = promisify(client.json_get).bind(client);
const json_set = promisify(client.json_set).bind(client);
var id = await hget([name, 'id']);
var posts = await json_get(id, ".");
var globalPosts = await json_get('globalPosts', ".");
posts = JSON.parse(posts);
globalPosts = JSON.parse(globalPosts);
console.log(posts);
const newpost = {
pid: pid,
title: title,
description: description,
author: "",
image: image,
recipe: recipe,
steps: steps,
comments: [],
visibility: visibility
}
var vis;
if (posts != null) {
for (var i = 0; i < posts.length; i++) {
if (posts[i]["pid"] === pid) {
vis = posts[i]["visibility"];
newpost.author = posts[i]["author"];
newpost.comments = posts[i]["comments"];
posts[i] = newpost;
break;
}
}
}
if (vis === "on") {
if (globalPosts != null) {
for (var i = 0; i < globalPosts.length; i++) {
if (globalPosts[i]["pid"] === pid) {
globalPosts[i] = newpost;
if (visibility === "off") {
globalPosts.splice(i, 1);
} else if (visibility === "on") {
globalPosts[i] = newpost;
}
break;
}
}
}
} else {
if (visibility === "on") {
globalPosts.push(newpost);
}
}
await json_set(id, '.', JSON.stringify(posts));
await json_set('globalPosts', '.', JSON.stringify(globalPosts));
console.log("Post edited");
}
async function addPost(token, title, description, author, image, recipe, steps, visibility) {
var name = await authUser(token);
const hget = promisify(client.hget).bind(client);
var id = await hget([name, 'id']);
var pid = uuidv4();
const post = {
pid: pid,
title: title,
description: description,
author: author,
image: image,
recipe: recipe,
steps: steps,
comments: [],
visibility: visibility
}
const json_get = promisify(client.json_get).bind(client);
const json_set = promisify(client.json_set).bind(client);
var posts = await json_get(id, ".");
posts = JSON.parse(posts);
console.log(posts);
if (posts == null) {
posts = [];
}
posts.push(post);
await json_set(id, '.', JSON.stringify(posts));
if (visibility === "on") {
var posts = await json_get('globalPosts', ".");
posts = JSON.parse(posts);
if (posts == null) {
posts = [];
}
posts.push(post);
await json_set('globalPosts', '.', JSON.stringify(posts));
}
console.log("Post added");
}
async function addComment(token, pid, comment, date, time) {
var author = await authUser(token);
console.log(author);
const json_get = promisify(client.json_get).bind(client);
const json_set = promisify(client.json_set).bind(client);
const hget = promisify(client.hget).bind(client);
var post = await findPostByID(pid);
var id = await hget([post.author, 'id']);
var posts = await json_get(id, ".");
var globalPosts = await json_get('globalPosts', ".");
posts = JSON.parse(posts);
globalPosts = JSON.parse(globalPosts);
console.log(posts);
if (posts != null) {
for (var i = 0; i < posts.length; i++) {
if (posts[i]["pid"] === pid) {
const com = {
'author': author,
'comment': comment,
'date': date,
'time': time
}
posts[i]["comments"].push(com);
break;
}
}
}
if (globalPosts != null) {
for (var i = 0; i < globalPosts.length; i++) {
console.log(globalPosts[i]);
if (globalPosts[i]["pid"] === pid) {
const com = {
'author': author,
'comment': comment,
'date': date,
'time': time
}
globalPosts[i]["comments"].push(com);
break;
}
}
}
await json_set(id, '.', JSON.stringify(posts));
await json_set('globalPosts', '.', JSON.stringify(globalPosts));
console.log("Comment added");
}
async function findPostByID(pid) {
const hget = promisify(client.hget).bind(client);
const lr = promisify(client.lrange).bind(client);
const hgetall = promisify(client.hgetall).bind(client);
const json_get = promisify(client.json_get).bind(client);
var posts = await json_get('globalPosts', ".");
posts = JSON.parse(posts);
console.log(posts);
var newpost;
if (posts != null) {
for (var i = 0; i < posts.length; i++) {
if (posts[i]["pid"] === pid) {
newpost = posts[i];
break;
}
}
}
console.log(newpost);
return newpost;
}
async function findSteps(id) {
const hgetall = promisify(client.hgetall).bind(client);
var obj = await hgetall(id);
console.log("Steps found");
return obj;
}
async function findRecipe(id) {
const smembers = promisify(client.smembers).bind(client);
var obj = await smembers(id);
console.log("Recipe found");
return obj;
}
async function findComments(id) {
const lrange = promisify(client.lrange).bind(client);
var obj = await lrange(id, 0, -1);
const hgetall = promisify(client.hgetall).bind(client);
var comments = [];
for (var i = 0; i < obj.length; i++) {
var com = await hgetall(obj[i]);
comments.push(com);
}
console.log("Comments found");
return comments;
}
async function deletePost(token, pid) {
var name = await authUser(token);
const hget = promisify(client.hget).bind(client);
var id = await hget([name, 'id']);
const json_get = promisify(client.json_get).bind(client);
const json_set = promisify(client.json_set).bind(client);
var posts = await json_get(id, ".");
posts = JSON.parse(posts);
console.log(posts);
if (posts == null) {
posts = [];
}
var vis;
for (var i = 0; i < posts.length; i++) {
if (posts[i]["pid"] == pid) {
vis = posts[i]["visibility"];
posts.splice(i, 1);
break;
}
}
await json_set(id, '.', JSON.stringify(posts));
if (vis === "on") {
var posts = await json_get('globalPosts', ".");
posts = JSON.parse(posts);
if (posts == null) {
posts = [];
}
for (var i = 0; i < posts.length; i++) {
if (posts[i]["pid"] == pid) {
posts.splice(i, 1);
break;
}
}
await json_set('globalPosts', '.', JSON.stringify(posts));
}
}