-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
227 lines (203 loc) · 5.53 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
const express = require("express");
const { open } = require("sqlite");
const sqlite3 = require("sqlite3");
const path = require("path");
const bcrypt = require("bcrypt");
const jwt = require("jsonwebtoken");
const dbPath = path.join(__dirname, "covid19IndiaPortal.db");
const app = express();
app.use(express.json());
let db = null;
const convertDbObjectToResponseObject = (dbObject) => {
return {
stateId: dbObject.state_id,
stateName: dbObject.state_name,
population: dbObject.population,
};
};
const convertDistrictDbObjectToResponseObject = (dbObject) => {
return {
districtId: dbObject.district_id,
districtName: dbObject.district_name,
stateId: dbObject.state_id,
cases: dbObject.cases,
cured: dbObject.cases,
active: dbObject.active,
deaths: dbObject.deaths,
};
};
const initializeDBAndServer = async () => {
try {
db = await open({ filename: dbPath, driver: sqlite3.Database });
app.listen(3000, () => {
console.log("Server is Running at http://localhost:3000/");
});
} catch (error) {
console.log(`DB Error: ${error.message}`);
process.exit(-1);
}
};
initializeDBAndServer();
// const logger = (request, response, next) => {
// console.log(request.query);
// next();
// };
// API 1
const authenticateToken = (request, response, next) => {
let jwtToken;
const authHeader = request.headers["authorization"];
if (authHeader !== undefined) {
jwtToken = authHeader.split(" ")[1];
}
if (authHeader === undefined) {
response.status(401).send("Invalid JWT Token");
} else {
jwt.verify(jwtToken, "my_secret_token", async (error, payload) => {
if (error) {
response.status(401).send("Invalid JWT Token");
} else {
// request.username = payload.username;
next();
}
});
}
};
// API 1
// Get Login API
app.post("/login/", async (request, response) => {
const { username, password } = request.body;
const selectUserQuery = `
SELECT *
FROM user
WHERE username = '${username}'`;
const dbUser = await db.get(selectUserQuery);
if (dbUser === undefined) {
response.status(400);
response.send("Invalid user");
} else {
const isPasswordMatched = await bcrypt.compare(password, dbUser.password);
if (isPasswordMatched === true) {
const payload = { username: username };
const jwtToken = jwt.sign(payload, "my_secret_token");
response.send({ jwtToken });
} else {
response.status(400).send("Invalid password");
}
}
});
// API 2
app.get("/states/", authenticateToken, async (request, response) => {
const selectStatesQuery = `
SELECT *
FROM state
`;
const stateArray = await db.all(selectStatesQuery);
response.send(
stateArray.map((eachState) => convertDbObjectToResponseObject(eachState))
);
});
//API 3
app.get("/states/:stateId", authenticateToken, async (request, response) => {
const { stateId } = request.params;
const selectStateQuery = `
SELECT*
FROM state
WHERE state_id = ${stateId}`;
const stateResponse = await db.get(selectStateQuery);
response.send(convertDbObjectToResponseObject(stateResponse));
});
// API 5
app.get(
"/districts/:districtId/",
authenticateToken,
async (request, response) => {
const { districtId } = request.params;
const selectDistrictQuery = `
SELECT
*
FROM district
WHERE district_id = ${districtId}`;
const districtResponse = await db.get(selectDistrictQuery);
response.send(convertDistrictDbObjectToResponseObject(districtResponse));
}
);
// API 4
// Create a district in District table
app.post("/districts/", authenticateToken, async (request, response) => {
const { stateId, districtName, cases, cured, active, deaths } = request.body;
const addDistrictQuery = `
INSERT INTO
district (state_id,district_name, cases, cured, active, deaths)
VALUES(
${stateId},
'${districtName}',
${cases},
${cured},
${active},
${deaths} )`;
await db.run(addDistrictQuery);
response.send("District Successfully Added");
});
// API 6
app.delete(
"/districts/:districtId/",
authenticateToken,
async (request, response) => {
const { districtId } = request.params;
const removeDistrictQuery = `
DELETE
FROM district
WHERE district_id = ${districtId}`;
await db.run(removeDistrictQuery);
response.send("District Removed");
}
);
// API 7
app.put(
"/districts/:districtId/",
authenticateToken,
async (request, response) => {
const { districtId } = request.params;
const {
districtName,
stateId,
cases,
cured,
active,
deaths,
} = request.body;
const updateDistrictQuery = `
UPDATE district
SET
district_name = '${districtName}',
state_id = ${stateId},
cases = ${cases},
cured = ${cured},
active = ${active},
deaths = ${deaths}
WHERE
district_id = ${districtId}`;
await db.run(updateDistrictQuery);
response.send("District Details Updated");
}
);
// API 8
app.get(
"/states/:stateId/stats/",
authenticateToken,
async (request, response) => {
const { stateId } = request.params;
const totalStatisticsQuery = `
SELECT
SUM(cases) as totalCases,
SUM(cured) as totalCured,
SUM(active) as totalActive,
SUM(deaths) as totalDeaths
FROM district
WHERE
state_id = ${stateId}`;
const totalStatsResponse = await db.get(totalStatisticsQuery);
response.send(totalStatsResponse);
}
);
module.exports = app;