-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
429 lines (393 loc) · 11.8 KB
/
server.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
/*jslint node: true, plusplus: true, white: true*/
"use strict";
var startTime = new Date().getTime();
var express = require('express'),
path = require('path'),
storage = require('node-persist'),
shortId = require('shortid'),
bodyParser = require('body-parser'),
xss = require('xss'),
APP_PORT = 3000;
var Sanitizer = (function () {
return {
sanitizeString: function (s) {
if (typeof s !== 'string') {
return '';
}
return xss(s);
},
sanitizetBoolean: function (b) {
return !!b;
}
};
}());
var Note = function (title, color, items, creationDate) {
function sanitizeItem(item) {
return {
id: item.id,
label: Sanitizer.sanitizeString(item.label),
isDone: Sanitizer.sanitizetBoolean(item.isDone)
};
}
function sanitizeItems(items) {
var result = [],
i;
if (items instanceof Array) {
for (i = 0; i < items.length; i++) {
result.push(sanitizeItem(items[i]));
}
}
return result;
}
this.title = Sanitizer.sanitizeString(title);
this.color = Note.COLOR.sanitize(color);
this.items = sanitizeItems(items);
var now = new Date().getTime();
this.creationDate = creationDate || now;
};
Note.COLOR = {
yellow: 'yellow',
green: 'green',
blue: 'blue',
red: 'red'
};
Note.COLOR.DEFAULT = Note.COLOR.yellow;
Note.COLOR.sanitize = function (color) {
return Note.COLOR[color] || Note.COLOR.DEFAULT;
};
Note.prototype.setColor = function (color) {
this.color = Note.COLOR.sanitize(color);
};
Note.prototype.addNewItem = function (id) {
var newItem = {
id: id,
label: '',
isDone: false
};
this.items.push(newItem);
return newItem;
};
Note.prototype.updateItemLabel = function (i, value) {
if (0 <= i && i < this.items.length) {
this.items[i].label = Sanitizer.sanitizeString(value);
}
};
Note.prototype.setTitle = function (title) {
this.title = Sanitizer.sanitizeString(title);
};
var db = (function () {
var NOTE_KEY = 'note';
function getItemIndexById(id, arr) {
var i,
isFound = false;
for (i = 0; i < arr.length && !isFound; i++) {
if (arr[i].id === id) {
isFound = true;
}
}
if (isFound) {
return [i - 1];
} else {
return -1;
}
}
function updateNote(note) {
storage.setItem(NOTE_KEY, note);
}
return {
init: function () {
storage.initSync({
//logging: true,
dir: 'db/'
});
console.log('Database initialized');
},
createNote: function (note) {
var i,
err;
try {
if (note instanceof Note) {
for (i = 0; i < note.items.length; i++) {
note.items[i].id = shortId.generate();
}
storage.setItem(NOTE_KEY, note);
console.log('Note created.');
} else {
err = "The parameter is not an instance of Note!";
console.error(err);
throw new Error(err);
}
} catch (e) {
console.error(e);
throw new Error('Error while creating the note!');
}
},
getNote: function () {
try {
var note = storage.getItem(NOTE_KEY);
if (note) {
return new Note(note.title, note.color, note.items, note.creationDate);
} else {
return null;
}
} catch (e) {
console.error(e);
throw new Error('Error while retrieving the note!');
}
},
clear: function () {
try {
storage.clear();
console.log('Database cleared');
} catch (e) {
console.error(e);
throw new Error('Error in clearing the database!');
}
},
updateTitle: function (title) {
try {
var note = db.getNote();
note.setTitle(title);
updateNote(note);
console.log('Title updated');
} catch (e) {
console.error(e);
throw new Error('Couldn\'t update the title.');
}
},
updateColor: function (color) {
try {
var note = db.getNote();
note.setColor(color);
updateNote(note);
console.log('Title updated');
} catch (e) {
console.error(e);
throw new Error('Couldn\'t update the color.');
}
},
updateItemIsDone: function (itemId, isDone) {
var note = db.getNote(),
itemIdx;
if (note && note.items) {
itemIdx = getItemIndexById(itemId, note.items);
if (itemIdx >= 0) {
note.items[itemIdx].isDone = (isDone === 'true');
updateNote(note);
console.log('Item status updated to ' + (note.items[itemIdx].isDone ? 'done' : 'not done'));
return note.items[itemIdx];
} else {
throw new Error('The item with id "' + itemId + '" couldn\'t be found.');
}
} else {
throw new Error('No note could be found in the database!');
}
},
deleteItem: function (itemId) {
var note = db.getNote(),
itemIdx;
if (note && note.items) {
itemIdx = getItemIndexById(itemId, note.items);
if (itemIdx >= 0) {
note.items.splice(itemIdx, 1);
updateNote(note);
console.log('Item deleted');
} else {
throw new Error('The item with id "' + itemId + '" couldn\'t be found.');
}
} else {
throw new Error('No note could be found in the database!');
}
},
getNewItem: function () {
try {
var note = db.getNote(),
newItem = note.addNewItem(shortId.generate());
updateNote(note);
console.log('New item created');
return newItem;
} catch (e) {
console.error(e);
throw new Error('Error while creating a new item!');
}
},
updateItem: function (itemId, value) {
var note = db.getNote(),
itemIdx;
if (note && note.items) {
itemIdx = getItemIndexById(itemId, note.items);
if (itemIdx >= 0) {
note.updateItemLabel(itemIdx, value);
updateNote(note);
console.log('Item label updated');
} else {
throw new Error('The item with id "' + itemId + '" couldn\'t be found.');
}
} else {
throw new Error('No note could be found in the database!');
}
}
};
}());
var messenger = (function () {
function send(res, data, statusCode) {
res.status(statusCode).send(data);
}
return {
sendMessage: function (res, data) {
send(res, data, 200);
},
sendError: function (res, data, statusCode) {
send(res, data, statusCode || 500);
}
};
}());
db.init();
if (process.argv[2] === 'init') {
db.clear();
db.createNote(new Note('TODO list', Note.COLOR.yellow, [
{
label: 'Buy beer',
isDone: false
},
{
label: 'Clean the room',
isDone: false
},
{
label: 'Call the plumber',
isDone: true
},
{
label: 'Throw the garbage out',
isDone: false
},
{
label: 'Feed the dog',
isDone: true
},
{
label: 'Buy a car',
isDone: false
},
{
label: 'Visit the Taj Mahal',
isDone: false
},
{
label: 'See the Northern Lights',
isDone: false
},
{
label: 'Fly over the Great Barrier Reef',
isDone: false
},
{
label: 'Read "JavaScript - The Good Parts"',
isDone: true
},
{
label: 'Read "Learning JavaScript Design Patterns"',
isDone: false
},
{
label: 'Read "CSS: The Definitive Guide"',
isDone: false
},
{
label: 'Watch the Gotfather',
isDone: false
},
{
label: 'Watch The Equalizer',
isDone: false
},
{
label: 'Watch Star Wars',
isDone: false
}
]));
} else if (process.argv[2] === 'fresh') {
db.clear();
db.createNote(new Note());
}
if (!db.getNote()) {
console.log('No note could be found in the database, autocreating...');
db.createNote(new Note());
}
var app = express();
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static(path.join(__dirname, 'web')));
app.get('/note/get', function (req, res) {
try {
var result = db.getNote(),
errorMessage;
if (!result) {
errorMessage = 'No note could be found in the database.';
console.error(errorMessage);
messenger.sendError(res, errorMessage, 404);
} else {
messenger.sendMessage(res, result);
}
} catch (e) {
console.error(e.message);
messenger.sendError(res, 'Couldn\'t get the note. Please check back later.');
}
});
app.post('/note/updateColor', function (req, res) {
try {
db.updateColor(req.body.color);
messenger.sendMessage(res);
} catch (e) {
console.error(e);
messenger.sendError(res, 'Couldn\'t update the color.');
}
});
app.post('/note/:id/updateItemIsDone', function (req, res) {
try {
var item = db.updateItemIsDone(req.params.id, req.body.isDone);
messenger.sendMessage(res, item);
} catch (e) {
console.error(e);
messenger.sendError(res, 'Couldn\'t update the item.');
}
});
app.post('/note/:id/delete', function (req, res) {
try {
db.deleteItem(req.params.id);
messenger.sendMessage(res);
} catch (e) {
console.error(e);
messenger.sendError(res, 'An error occurred when deleting the item.');
}
});
app.get('/note/newItem', function (req, res) {
try {
var newItem = db.getNewItem();
messenger.sendMessage(res, newItem);
} catch (e) {
console.error(e);
messenger.sendError(res, 'Couldn\'t create a new item. What a shame.');
}
});
app.post('/note/updateTitle', function (req, res) {
try {
db.updateTitle(req.body.value);
messenger.sendMessage(res);
} catch (e) {
console.error(e);
messenger.sendError(res, 'Error while updating the title.');
}
});
app.post('/note/:id/updateItem', function (req, res) {
try {
db.updateItem(req.params.id, req.body.value);
messenger.sendMessage(res);
} catch (e) {
console.error(e);
messenger.sendError(res, 'Cound\'t update the item.');
}
});
app.listen(APP_PORT);
console.log('Server startup in ' + (new Date().getTime() - startTime) + 'ms');
console.log('Server running on http://localhost:' + APP_PORT);