forked from gaskij/rpicampusmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
253 lines (213 loc) · 6.96 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
const http = require('http');
const express = require('express');
const request = require('request');
const dotenv = require('dotenv');
const mongodb = require('mongodb');
const MongoClient = require('mongodb').MongoClient;
const bodyParser = require('body-parser');
const jsonParser = bodyParser.json();
const locations = require('./machine_sites.json');
const app = express();
app.use(express.static(__dirname))
.use(bodyParser.urlencoded({extended: true}))
.use(bodyParser.json());
dotenv.config({path: './.env'});
/* =========================== DATABASE CONNECTION INFO ============================== */
const user = process.env.DB_USER;
const pass = process.env.DB_PASS;
const uri = `mongodb+srv://${user}:${pass}@rpicampusmap-fwvzb.gcp.mongodb.net/test?retryWrites=true`;
const options = {useNewUrlParser: true};
/* =================================================================================== */
/* ================================= SERVER START ==================================== */
const port = process.env.PORT;
MongoClient.connect(uri, options, function(err, db) {
if (err) {
throw err;
}
else {
console.log("Database connected in route '/'!");
let dbo = db.db("forgemill");
// Populate Database with locations if need be (ONLY FOR USERS WITH WRITE ACCESS).
// console.log(locations);
// dbo.collection("locations").insertMany(locations, {ordered: false})
// .then(function(success) {
// console.log("Successfully added to database");
// })
// .catch(function(err) {
// console.error("ERROR:", err);
// });
// Download initial location data from database before starting server
dbo.collection('locations').find().toArray()
.then(function(result) {
// console.log(result);
var locationData = result;
// Start server after initial database connection
app.listen(port);
console.log('Listening on port ' + port);
db.close();
})
.catch(function(err) {
if (err) throw err;
});
}
});
/* =================================================================================== */
/* =================================== HOMEPAGE ====================================== */
app.get('/', function(req, res) {
/*
MongoClient.connect(uri, options, function(err, db) {
if (err) {
throw err;
}
else {
console.log("Database connected in route '/index'!");
let dbo = db.db("locations");
}
db.close();
});
console.log("here")
*/
res.sendFile(__dirname + '/public/views/index.html');
})
app.route('/index')
.get(function(req, res) {
/*
MongoClient.connect(uri, options, function(err, db) {
if (err) {
throw err;
}
else {
console.log("Database connected in route '/index'!");
let dbo = db.db("locations");
}
db.close();
});
console.log("here")
*/
res.sendFile(__dirname + '/public/views/index.html');
})
.post(jsonParser, function(req, res) {
//get the location to highlight
const query = req.body.query;
const machine = req.body.machine;
console.log(req.body);
console.log("Query:", query);
console.log("Machine:", machine);
MongoClient.connect(uri, options, function(err, db) {
if (err)
throw err;
else {
console.log("Database connected in route '/index'!")
let dbo = db.db("rpicampusmap");
// switch database if necessary
if (machine == "true")
dbo = db.db("forgemill");
dbo.collection("locations").find({'id': query}).toArray()
.then(function(result) {
console.log("Results:\n", result);
res.send(result);
})
.catch(function(err) {
if (err)
console.error("ERROR:", err);
});
db.close();
}
});
});
/* =================================================================================== */
/* ==================================== SEARCH ======================================= */
app.route('/search')
.get(function(req, res) {
console.log("Get search results!");
res.sendFile(__dirname + '/public/views/searchResults.html');
})
.post(jsonParser, function(req, res) {
const query = req.body.query;
console.log("Query:", query);
MongoClient.connect(uri, options, function(err, db) {
if (err)
throw err;
else {
console.log("Database connected in route '/search'!")
let db1 = db.db("rpicampusmap");
let db2 = db.db("forgemill");
let results = [];
// Search the database for locations matching the given regular expression
// Search by name and by nickname for any match of the substring
db1.collection("locations").find({'$or': [
{'properties.name': {'$regex': query, '$options': 'i'} },
{'properties.nick': {'$regex': query, '$options': 'i'} }
// add here to look through machines
]}).toArray()
.then(function(result1) {
console.log("Result1:\n", result1);
results = results.concat(result1);
})
.catch(function(err) {
if (err)
console.error("ERROR:", err);
});
db2.collection("locations").find({'$or': [
{'properties.name': {'$regex': query, '$options': 'i'} },
{'properties.nick': {'$regex': query, '$options': 'i'} },
{'contents.machines': {'$regex': query, '$options': 'i'} }
]}).toArray()
.then(function(result2) {
console.log("Result2:\n", result2);
results = results.concat(result2);
console.log("Results:\n", results);
res.send(results);
})
.catch(function(err) {
if (err)
console.error("ERROR:", err);
});
db.close();
}
});
});
/* ===================================== INFO ======================================== */
app.route('/info')
.get(function (req, res) {
res.sendFile(__dirname + '/public/views/machine_sites_info.html')
})
.post(jsonParser, function(req, res) {
const query = req.body.query;
const machine = req.body.machine;
console.log(req.body);
console.log("Query:", query);
console.log("Machine:", machine);
MongoClient.connect(uri, options, function(err, db) {
if (err)
throw err;
else {
console.log("Database connected in route '/info'!")
let dbo = db.db("rpicampusmap");
// switch database if necessary
if (machine == "true"){
dbo = db.db("forgemill");
}
dbo.collection("locations").find({'id': query}).toArray()
.then(function(result) {
console.log("Results:\n", result);
res.send(result);
})
.catch(function(err) {
if (err)
console.error("ERROR:", err);
});
db.close();
}
});
});
/* ================================================================================== */
// Handle 404
app.use(function(req, res) {
res.status(404)
.sendFile(__dirname + '/public/views/notfound.html', {error: '404: Page not Found'});
});
// Handle 500
app.use(function(error, req, res, next) {
res.status(500).send('Error 500: Internal Server Error');
});