-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
73 lines (61 loc) · 2.12 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
const express = require("express");
const validation = require("./validators/datavalidator");
const model = require("./models/schoolModel");
const geolib = require("geolib");
const cors = require("cors");
require("dotenv").config();
const PORT = process.env.PORT || 4000;
const app = express();
app.use(cors());
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.get("/", (req, res) => {
res.sendFile(__dirname + "/views/index.html");
});
// POST REQUEST - to add schools
app.post("/addschool", async (req, res) => {
try {
// Validating the data
const { error, value } = await validation(req.body);
if (error) {
return res.status(400).json({ message: "Please provide valid details" });
}
// Creating a school record in the database
await model.create(value);
res.status(201).json({ message: "School added successfully" });
} catch (err) {
console.error("Error adding school:", err);
res.status(500).json({ message: "Internal Server Error" });
}
});
// GET REQUEST - to fetch all the schools based on proximity to the user's location
app.get("/listSchools", async (req, res) => {
const { lat, long } = req.query;
if (!lat || !long) {
return res.status(400).json({ message: "Please provide user location" });
}
try {
// Fetches all the schools from the database
const results = await model.find();
if(!results){
return res.status(404).json({message:'No Data Found Please add schools'});
}
// Calculating the distance between two points using geolib
const sortedSchools = results
.map((school) => {
const distance = geolib.getDistance(
{ latitude: lat, longitude: long },
{ latitude: school.latitude, longitude: school.longitude }
);
return { ...school, distance };
})
.sort((a, b) => a.distance - b.distance);
res.json(sortedSchools);
} catch (err) {
console.error("Error retrieving schools:", err);
res.status(500).json({ message: "Internal Server Error" });
}
});
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});