-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
132 lines (110 loc) · 4.66 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
'use strict';
const express = require('express'),
createError = require('http-errors'),
http = require('https'),
logger = require('morgan'),
mongoose = require('mongoose'),
path = require('path');
require('dotenv').config();
const School = require('./database/models').School;
const immunizationRouter = require('./routes/immunization'),
reasonRouter = require('./routes/reason'),
schoolRouter = require('./routes/school');
const MONGOLAB_URI = process.env.MONGOLAB_URI,
SOCRATA_API_KEY = process.env.SOCRATA_API_KEY;
const app = express();
// The port (4000) in the “proxy” line, which goes in the create-react-app's package.json file in the client folder, must match the port that your Express server is running on!
app.set('port', process.env.PORT || 4000);
// morgan provides http request terminal logging output
app.use(logger('dev'));
app.use(express.json());
// express || body-parser middleware parses request to make it accessible to req.body
app.use(express.urlencoded({ extended: false }));
// This line tells Express(Node.js) to use the provided CSS, Image files. Serve static files from the React app, `express.static` is in charge of sending static files requests to the client.
app.use(express.static(path.join(__dirname, 'client/build')));
app.use('/immunization', immunizationRouter);
app.use('/school', schoolRouter);
app.use('/reason', reasonRouter);
// Function is a catch all for routes that get missed.
app.get('/*', (req, res) => {
res.sendFile(path.join(__dirname, 'client/build/index.html'), (err) => {
if (err) { res.status(500).send(err); }
});
});
/* Database Connection ********************************************************************/
mongoose.connect(MONGOLAB_URI || 'mongodb://localhost:27017/api', { autoIndex: false, useNewUrlParser: true });
// Create a variable to hold the database connection object.
const database = mongoose.connection;
database.on('error', (error) => {
// set terminal stdout color red for error message
console.log('\n \x1b[41m%s\x1b[0m', '-----------------Error Connecting to Database. Connection Failed------------------------'); // eslint-disable-line no-console
console.error('\x1b[31m%s\x1b[0m', (error.message.slice(0, 81) + ']')); // eslint-disable-line no-console
});
database.once('open', () => {
console.log('\n \x1b[42m%s\x1b[0m', '-----------------Database Connection Successfully Opened------------------------'); // eslint-disable-line no-console
});
/* Data Handling *******************************************************/
const socrataView = {};
socrataView.fetchAll = function() {
const socrata = 'https://data.wa.gov/resource/ndsp-2k9r.json?';
const url = `${socrata}&$limit=3000&$$app_token=${SOCRATA_API_KEY}`;
http.get(url, (res) => {
var body = '';
res.on('data', (chunk) => {
body += chunk;
});
res.on('end', () => {
var data = JSON.parse(body);
data.map( (eachSchool) => {
var school = new School(eachSchool);
school.save( (error) => {
if(error) return (error);
});
});
}).on('error', (e) => {
console.error('Error fetching the data: ', e); //eslint-disable-line no-console
});
});
};
socrataView.checkMLabDBForData = function () {
// This function will drop the collection from the mLab database & re-fetch it from Socrata.
database.dropCollection('schools');
console.log(':: Collection has been dropped ::');
// Query checks mLab DB if data is already saved
School.countDocuments({ }, (err, count) => {
// --if not, then fetch data from socrata
if (!count) {
console.log('Express fetched the data');
socrataView.fetchAll();
}
});
};
socrataView.checkMLabDBForData();
/* Error Handling *************************************************************/
// catch 404 and forward to error handler
app.use((req, res, next) => {
next(createError(404));
});
// Catches requests that fall through w/out triggering any route handlers, send 404 if no other route matched
app.use((req, res, next) => {
let error = new Error('Something went wrong. API Route Not Found.');
error.status = 404;
next(error);
});
// global error handler { "error": {} }
app.use((err, req, res, next) => {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.send({
err: err,
status: err.status,
message: err.message
});
});
// start listening on our port, log message to stdout
const server = app.listen(app.get('port'), () => {
console.log('\n \x1b[45m%s\x1b[0m', `The wastate_immunization server is listening on port ${server.address().port}`, '\n'); // eslint-disable-line no-console
});