-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhandlers_admin.js
219 lines (203 loc) · 7.83 KB
/
handlers_admin.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
const fs = require('fs');
const path = require('path');
const querystring = require('querystring');
const mysql = require('mysql');
// Database connection setup
const connection = mysql.createConnection({
multipleStatements: true,
host: 'localhost',
user: 'root',
password: 'password',
database: 'project',
});
connection.connect(err => {
if (err) {
console.error('Error connecting to the database: ' + err.stack);
return;
}
console.log('Connected to the database');
});
exports.serveIndex = (req, res) => {
const indexPath = path.join(__dirname, 'public_admin', 'index.html');
serveFile(res, indexPath, 'text/html');
};
// Function to serve static files
exports.serveStaticFiles = (req, res, filePath) => {
const fullPath = path.join(__dirname, 'public_admin', filePath);
const extname = String(path.extname(filePath)).toLowerCase();
const mimeTypes = {
'.html': 'text/html',
'.css': 'text/css',
'.js': 'text/javascript',
// Add other mime types as needed
};
const contentType = mimeTypes[extname] || 'application/octet-stream';
serveFile(res, fullPath, contentType);
};
function serveFile(res, filePath, contentType) {
fs.readFile(filePath, (error, content) => {
if (error) {
if (error.code == 'ENOENT') {
res.writeHead(404, { 'Content-Type': 'text/html' });
res.end('404 Not Found');
} else {
res.writeHead(500);
res.end('Internal Server Error: ' + error.code);
}
} else {
res.writeHead(200, { 'Content-Type': contentType });
res.end(content, 'utf-8');
}
});
};
exports.getWaitApproval = (req, res) => {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
let body = '';
req.on('data', (chunk) => {
body += chunk;
});
req.on('end', () => {
const sql = 'select * from wait_approval';
connection.query(sql, (err, result) => {
if (err) {
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Error fetching data from the database');
console.error('Error fetching data from the database: ' + err);
} else {
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify(result));
}
});
});
};
exports.processApprovals = (req, res) => {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
let body = '';
req.on('data', chunk => {
body += chunk.toString();
});
req.on('end', () => {
const data = JSON.parse(body);
const approvals = data.approvals;
// Begin transaction
connection.beginTransaction(err => {
if (err) {
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Error starting transaction');
return;
}
// Process approvals - insert into 'faq' table
approvals.forEach(a_id => {
const sql = `INSERT INTO faq (question, answer) SELECT question, answer FROM wait_approval WHERE a_id = ${a_id}`;
connection.query(sql, (err, result) => {
if (err) {
connection.rollback(() => {
console.error('Error inserting into faq: ' + err);
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Error processing approvals');
});
return;
}
});
});
// Delete all from 'wait_approval'
const deleteSql = `DELETE FROM wait_approval`;
connection.query(deleteSql, (err, result) => {
if (err) {
connection.rollback(() => {
console.error('Error deleting from wait_approval: ' + err);
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Error processing approvals');
});
return;
}
// Commit transaction
connection.commit(err => {
if (err) {
connection.rollback(() => {
console.error('Error committing transaction: ' + err);
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Error processing approvals');
});
return;
}
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Approvals processed successfully');
});
});
});
});
};
exports.handleNotFound = (req, res) => {
res.writeHead(404, { 'Content-Type': 'text/plain' });
res.end('Not Found');
};
exports.getStatisticsAndQueries = (req, res) => {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
// Second query for detailed queries
const querySql = `
SELECT
sb.UserId,
c.FirstName,
c.LastName,
AVG(fb.serv_rating) AS avg_serv_rating,
AVG(fb.time_rating) AS avg_time_rating,
SUM(fb.solved) / COUNT(fb.solved) * 100 AS solved_percentage
FROM
solved_by sb
JOIN
feedback fb ON sb.query_id = fb.query_id
JOIN
customer c ON sb.UserId = c.UserID
GROUP BY
sb.UserId;
`;
connection.query(querySql, (err, queryResults) => {
if (err) {
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Error fetching query details from the database');
return;
}
// Send combined results
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({queries: queryResults }));
});
};
exports.addrep = (req,res)=>{
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
// Handle POST request to '/queries'
let body = '';
req.on('data', chunk => {
body += chunk.toString();
});
req.on('end', () => {
const formData = querystring.parse(body);
const insertQuerySql = `update customer set userType="Customer Representative" where UserID=${formData.id};`;
console.log(insertQuerySql);
// First, insert into 'queries'
connection.query(insertQuerySql, (err, result) => {
if (err) {
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end('Error inserting data into the queries table');
console.error('Error inserting data into the queries table: ' + err);
}else {
if (result.affectedRows === 0) {
// No rows affected, user ID does not exist
res.writeHead(404, { 'Content-Type': 'text/plain' });
res.end('User ID not found');
}else{
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Query submitted successfully');
}
}
});
});
};