-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
307 lines (277 loc) · 10.5 KB
/
app.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
const mysql = require('mysql');
const express = require('express');
const bodyParser = require('body-parser');
const port = 8080;
const db = mysql.createConnection({
host: 'localhost',
user: 'admin',
database: 'budgetapp'
});
const app = express();
app.use(express.static('static'));
const parser = bodyParser.urlencoded({extended: false});
app.put('/month/:month/:year/:planned_income', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
const planned_income = parseInt(request.params.planned_income);
if (month > 0 && month <= 12 && year > 0 && planned_income >= 0) {
db.query(`update MONTH set planned_income = ${planned_income} where month = ${month} and year = ${year}`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.send("Success.");
console.log(`Updated month: ${month}, ${year}, ${planned_income}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.put('/category/:month/:year/:name/:planned_expenses', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
const planned_expenses = parseInt(request.params.planned_expenses);
const name = ("" + request.params.name).replace(/[^A-Za-z0-9 ]/g, "");
if (month > 0 && month <= 12 && year > 0 && name.length > 0 && planned_expenses >= 0) {
db.query(`update CATEGORY set planned_expenses = ${planned_expenses} where name = "${name}" and month = ${month} and year = ${year}`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.send("Success.");
console.log(`Updated category: ${month}, ${year}, ${name}, ${planned_expenses}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.put('/item/:id/:month/:year/:category/:cost/:day/:name', (request, response) => {
const id = parseInt(request.params.id);
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
const day = parseInt(request.params.day);
const cost = parseInt(request.params.cost);
const category = ("" + request.params.category).replace(/[^A-Za-z0-9 ]/g, "");
const name = ("" + request.params.name).replace(/[^A-Za-z0-9 ]/g, "");
if (id && month > 0 && month <= 12 && year > 0 && cost >= 0 && day > 0 && category.length > 0 && name.length > 0) {
db.query(`update ITEM set month = ${month}, year = ${year}, category_name = "${category}", cost = ${cost}, day = ${day}, name = "${name}" where id = ${id}`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.send("Success.");
console.log(`Updated item: ${id}, ${month}, ${year}, ${category}, ${cost}, ${day}, ${name}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.delete('/category/:month/:year/:name', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
const name = ("" + request.params.name).replace(/[^a-zA-Z0-9 ]/g, "");
if (month > 0 && month <= 12 && year > 0 && name.length > 0) {
db.query(`delete from CATEGORY where month = ${month} and year = ${year} and name = "${name}"`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.send("Success.");
console.log(`Deleted category: ${month}, ${year}, ${name}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.delete('/item/:id', (request, response) => {
const id = parseInt(request.params.id);
if (id) {
db.query(`delete from ITEM where id = ${id}`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.send("Success.");
console.log(`Deleted item: ${id}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.delete('/month/:month/:year', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
if (month > 0 && month <= 12 && year > 0) {
db.query(`delete from MONTH where month = ${month} and year = ${year}`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.send("Success.");
console.log(`Deleted month: ${month}, ${year}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.post('/month/:month/:year/:planned_income', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
const planned_income = parseInt(request.params.planned_income);
if (month > 0 && month <= 12 && year > 0 && planned_income >= 0) {
db.query(`insert into MONTH (month, year, planned_income) values (${month}, ${year}, ${planned_income})`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.send("Success.");
console.log(`Added month: ${month}, ${year}, ${planned_income}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.post('/category/:month/:year/:name/:planned_expenses', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
const planned_expenses = parseInt(request.params.planned_expenses);
const name = ("" + request.params.name).replace(/[^A-Za-z0-9 ]/g, "");
if (month > 0 && month <= 12 && year > 0 && name.length > 0 && planned_expenses >= 0) {
db.query(`insert into CATEGORY (month, year, name, planned_expenses) values (${month}, ${year}, "${name}", ${planned_expenses})`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.send("Success.");
console.log(`Added category: ${month}, ${year}, ${name}, ${planned_expenses}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.post('/item/:month/:year/:category/:cost/:day/:name', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
const day = parseInt(request.params.day);
const cost = parseInt(request.params.cost);
const category = ("" + request.params.category).replace(/[^A-Za-z0-9 ]/g, "");
const name = ("" + request.params.name).replace(/[^A-Za-z0-9 ]/g, "");
if (month > 0 && month <= 12 && year > 0 && cost >= 0 && day > 0 && category.length > 0 && name.length > 0) {
db.query(`insert into ITEM (month, year, category_name, cost, day, name) values (${month}, ${year}, "${category}", ${cost}, ${day}, "${name}")`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.json(results.insertId);
console.log(`Added item ${results.insertId}: ${month}, ${year}, ${category}, ${cost}, ${day}, ${name}`);
}
});
} else {
response.status(400);
response.send("Invalid data.");
}
});
app.get('/months', (request, response) => {
db.query('select * from MONTH', (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.json(results);
}
});
});
app.get('/item/:id', (request, response) => {
const id = parseInt(request.params.id);
if (id && id > 0) {
db.query(`select * from ITEM where id = ${id}`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else if (results.length == 0) {
response.status(404);
response.send("No record found.");
} else {
response.json(results[0]);
}
});
} else {
response.status(400);
response.send("Invalid id, must be positive integer!");
}
});
app.get('/items/:month/:year', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
if (month && year && month > 0 && year > 0 && month <= 12) {
db.query(`select * from ITEM where month = ${month} and year = ${year}`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.json(results);
}
});
} else {
response.status(400);
response.send("Invalid month and/or year!");
}
});
app.get('/items/:month/:year/:category', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
const category = ("" + request.params.category).replace(/[^A-Za-z0-9 ]/g, "");
if (month && year && month > 0 && year > 0 && month <= 12 && category.length > 0) {
db.query(`select * from ITEM where month = ${month} and year = ${year} and category_name = "${category}"`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.json(results);
}
});
} else {
response.status(400);
response.send("Invalid month, year, and/or category!");
}
});
app.get('/categories/:month/:year', (request, response) => {
const month = parseInt(request.params.month);
const year = parseInt(request.params.year);
if (month && year && month > 0 && year > 0 && month <= 12) {
db.query(`select * from CATEGORY where month = ${month} and year = ${year}`, (error, results) => {
if (error) {
response.status(500);
response.send(error);
} else {
response.json(results);
}
});
} else {
response.status(400);
response.send("Invalid month, and/or year!");
}
});
app.listen(port, error => {
if (error) {
console.log("Something went wrong :(");
} else {
console.log(`Server listening on port ${port}`);
}
});