-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.js
More file actions
238 lines (206 loc) · 6.7 KB
/
server.js
File metadata and controls
238 lines (206 loc) · 6.7 KB
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
const fs = require('fs');
const express = require('express'); // Import the ExpressJS framework
const pool = require('./Db/database.js');
const papa = require('papaparse');
let table = 'timelog'; //MySQL table name
var limit = 100; //Number of records to display in main page
//Express.js connection:
const hostname = "127.0.0.1";
const app = express();
const port = 3000;
// Function to clear records older than 5 years
async function clearOldRecords() {
const deleteQuery = `DELETE FROM ${table} WHERE date < DATE_SUB(NOW(), INTERVAL 5 YEAR)`;
pool.query(deleteQuery, (error, results) => {
if (error) {
console.error('Error deleting old records:', error.message);
return;
}
if (results.affectedRows > 0) {
console.log(results.affectedRows, 'old records deleted.');
}
});
}
clearOldRecords();
app.set('view engine', 'ejs');
//Display the log table in main page
app.get('/', (req, res) => {
const selectQuery =
`SELECT *
FROM ${table}
ORDER BY date DESC, logID DESC
LIMIT ${limit}`;
const queryMachineList = `SELECT DISTINCT MachineType FROM ${table}`;
pool.query(selectQuery, (err, results, fields) => {
if (err) {
console.error(err.message);
res.status(500).send(`Internal Server Error! Cannot query Database ${table}.`);
return;
}
pool.query(queryMachineList, (err, machines, fields) => {
if (err) {
console.error(err.message);
res.status(500).send(`Internal Server Error! Cannot query Database ${table}.`);
return;
}
// Combine the data into a single object
const templateData = {
results,
machines,
limit
};
// Render the template with the combined data
res.render('index', templateData);
});
});
});
//Search bar
app.get('/api/search', (req, res) => {
const search = req.query.searchString;
if (!search) {
res.status(400).send('Missing required query parameter: search');
return;
}
let bool = -1;
if (search === 'yes') {
bool = 1;
} else if (search === 'no') {
bool = 0;
}
const selectQuery = `SELECT * FROM ${table} WHERE machineType LIKE ? OR userID LIKE ? OR adminStatus LIKE ? ORDER BY date DESC, logID DESC LIMIT ${limit}`;
//Prevent SQL injection
pool.query(selectQuery, ['%' + search + '%', '%' + search + '%', '%' + bool + '%'], (err, results, fields) => {
if (err) {
console.error(err.message);
res.status(500).send('SQL Server Query Error.');
return;
}
//Send the filtered data to client (as JSON)
res.send(results);
});
});
//Go to home page
app.get('/api/home', (req, res) => {
const selectQuery = `SELECT * FROM ${table} ORDER BY date DESC, logID DESC LIMIT ${limit}`;
pool.query(selectQuery, (err, results, fields) => {
if (err) {
console.error(err.message);
res.status(500).send('SQL Server Query Error.');
return;
}
res.json(results);
});
});
//Sort by machine type
app.get('/api/filterByMachineType', (req, res) => {
const machineType = req.query.machineType;
if (!machineType) {
res.status(400).send('Missing required query parameter: machineType');
return;
}
const selectQuery = `SELECT * FROM ${table} WHERE MachineType='${machineType}' ORDER BY date DESC, logID DESC LIMIT ${limit}`;
pool.query(selectQuery, (err, results, fields) => {
if (err) {
console.error(err.message);
res.status(500).send('SQL Server Query Error.');
return;
}
//Send the filtered data to client (as JSON)
res.send(results);
});
});
//Sort by month and day
app.get('/api/filterByDate', (req, res) => {
const month = req.query.month;
const day = req.query.day;
if (!month || !day) {
res.status(400).send('Missing required query parameter: month or day');
return;
}
const selectQuery = `SELECT * FROM ${table} WHERE
DATE = '${new Date().getFullYear()}-${month}-${day}' ORDER BY logID DESC`;
pool.query(selectQuery, (err, results, fields) => {
if (err) {
console.error(err.message);
res.status(500).send('SQL Server Query Error.');
return;
}
//Send the filtered data to client (as JSON)
res.send(results);
});
});
//Delete machine type
app.get('/api/deleteMachine', (req, res) => {
const machineType = req.query.machineType;
if (!machineType) {
res.status(400).send('Missing required query parameter: machineType');
return;
}
const deleteQuery = `DELETE FROM ${table} WHERE MachineType='${machineType}'`;
pool.query(deleteQuery, (err, results, fields) => {
if (err) {
console.error(err.message);
res.status(500).send('SQL Server Query Error.');
return;
}
if (results.affectedRows === 0) {
//send bad response to client (popup alert that delete failed)
res.json({ success: false });
}
else {
const queryMachineList = `SELECT DISTINCT MachineType FROM ${table}`;
pool.query(queryMachineList, (err, results, fields) => {
// Send a response with the updated machine list
if (err) {
console.error(err.message);
res.json({ success: false });
return;
}
res.json({ success: true, machines: results});
});
}
});
});
//Download CSV
app.get('/api/downloadCSV', (req, res) => {
const machineType = req.query.machineType;
const date = req.query.date;
let selectQuery;
if (machineType) {
selectQuery = `SELECT * FROM ${table} WHERE MachineType='${machineType}' ORDER BY Date DESC, logID DESC`;
} else if (date) {
const month = date.split('-')[1];
const day = date.split('-')[2];
selectQuery = `SELECT * FROM ${table} WHERE DATE = '${new Date().getFullYear()}-${month}-${day}' ORDER BY logID DESC`;
} else {
selectQuery = `SELECT * FROM ${table} ORDER BY Date DESC, logID DESC`;
}
pool.query(selectQuery, (err, results, fields) => {
if (err) {
console.error(err.message);
res.status(500).send('SQL Server Query Error.');
return;
}
//Using papaparse to convert query result to csv file
const csv = papa.unparse(results);
res.setHeader('Content-Type', 'text/csv');
res.setHeader('Content-Disposition', 'attachment; filename=\"Fablab_Log.csv\"');
//Send CSV to client
res.status(200).send(csv);
});
});
app.use(express.static(__dirname + '/public'));
app.listen(port, () => {
console.log(`Server is listening at http://${hostname}:${port}`);
});
// Close the MySQL connection when the application is shutting down (Ctrl + C on terminal)
process.on('SIGINT', () => {
pool.end((err) => {
if (err) {
console.error('Error closing MySQL connection:', err);
process.exit(1);
}
console.log('MySQL connection closed');
process.exit(0);
});
});