-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
273 lines (258 loc) · 5.4 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
const express = require("express");
const app = express();
const cors = require("cors");
const fs = require("fs");
const csvParser = require("csv-parser");
const { Football } = require("./footballData");
const { connectDatabase } = require("./connectDB");
connectDatabase();
app.use(cors());
app.use(express.json());
const addTeam = async (a) => {
await Football.create({
team: a["Team"],
gamesPlayed: a["Games Played"],
win: a["Win"],
draw: a["Draw"],
loss: a["Loss"],
goalsFor: a["Goals For"],
goalsAgainst: a["Goals Against"],
points: a["Points"],
year: a["Year"],
});
};
// add csv data to mongodb
app.post("/init", (req, res) => {
result = [];
fs.createReadStream("./football_data.csv")
.pipe(csvParser())
.on("data", (data) => {
result.push(data);
})
.on("end", () => {
result.forEach((team) => {
addTeam(team);
});
res.end();
});
});
// add team
app.post("/football/add", async (req, res) => {
try {
const {
team,
gamesPlayed,
win,
draw,
loss,
goalsFor,
goalsAgainst,
points,
year,
} = req.body;
await Football.create({
team,
gamesPlayed,
win,
draw,
loss,
goalsFor,
goalsAgainst,
points,
year,
});
return res.status(200).json({
success: true,
});
} catch (error) {
return res.status(500).json({
success: false,
error: {
field: "server",
message: "Internal server error.",
statusCode: 500,
},
});
}
});
// get all
app.post("/football/team/get", async (req, res) => {
try {
const { year } = req.body;
const team = await Football.find({ year });
const sum = await Football.aggregate([
{
$match: {
year,
},
},
{
$group: {
_id: null,
averageGoalsFor: { $avg: "$goalsFor" },
},
},
]);
if (sum.length == 0) {
return res.json({
success: true,
result: team,
averageGoalsFor: 0,
});
}
return res.json({
success: true,
result: team,
averageGoalsFor: sum[0].averageGoalsFor.toFixed(2),
});
} catch (error) {
return res.status(500).json({
success: false,
error: {
field: "server",
message: "Internal server error.",
statusCode: 500,
},
});
}
});
// get single team details by name
app.get("/football/team/get/:name", async (req, res) => {
try {
const teamName = req.params.name;
const team = await Football.find({ team: teamName });
if (!team) {
return res.status(200).json({
success: false,
error: "Record not found",
});
}
return res.json({
success: true,
result: team,
});
} catch (error) {
return res.status(500).json({
success: false,
error: {
field: "server",
message: "Internal server error.",
statusCode: 500,
},
});
}
});
app.post("/football/team/update/:id", async (req, res) => {
try {
const {
team,
gamesPlayed,
win,
draw,
loss,
goalsFor,
goalsAgainst,
points,
year,
} = req.body;
await Football.findByIdAndUpdate(req.params.id, {
$set: {
team,
gamesPlayed,
win,
draw,
loss,
goalsFor,
goalsAgainst,
points,
year,
},
});
res.json({
success: true,
});
} catch (error) {
return res.status(500).json({
success: false,
error: {
field: "server",
message: "Internal server error.",
statusCode: 500,
},
});
}
});
// delete by id
app.post("/football/team/delete/:id", async (req, res) => {
try {
await Football.findByIdAndDelete(req.params.id);
res.json({
success: true,
});
} catch (error) {
return res.status(500).json({
success: false,
error: {
field: "server",
message: "Internal server error.",
statusCode: 500,
},
});
}
});
// stats by team & year
app.get("/football/stats/:team/:year", async (req, res) => {
try {
const { team, year } = req.params;
const result = await Football.find({ year, team }).select(
"team gamesPlayed win draw"
);
if (result.length == 0) {
return res.status(200).json({
success: false,
error: "Record not found",
});
}
res.json({
success: true,
result: result[0],
});
} catch (error) {
return res.status(500).json({
success: false,
error: {
field: "server",
message: "Internal server error.",
statusCode: 500,
},
});
}
});
app.post("/football/team/get/thresholdwin", async (req, res) => {
try {
const { threshold } = req.body;
const result = await Football.find({ win: { $gte: threshold } }).limit(10);
// if (result.length == 0) {
// return res.status(200).json({
// success: false,
// error: "Record not found",
// });
// }
return res.json({
success: true,
result,
});
} catch (error) {
return res.status(500).json({
success: false,
error: {
field: "server",
message: "Internal server error.",
statusCode: 500,
},
});
}
});
app.listen(5000, () => {
console.log("Server listening at 5000");
});