-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
69 lines (55 loc) · 1.7 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
'use strict';
var express = require('express');
var bodyParser = require('body-parser');
var expect = require('chai').expect;
var cors = require('cors');
var apiRoutes = require('./routes/api.js');
var fccTestingRoutes = require('./routes/fcctesting.js');
var runner = require('./test-runner');
let helmet = require('helmet')
var app = express();
app.use('/public', express.static(process.cwd() + '/public'));
app.use(cors({origin: '*'})); //For FCC testing purposes only
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
// added helmet's CSP w/ directives object with script and style objects with arrays set to only accept from project's domain
app.use(helmet.contentSecurityPolicy({
directives:{
scriptSrc: ["'self'"],
styleSrc: ["'self'"]
}
}))
//allows us to get true IP addresses for users liking stocks
app.enable('trust proxy')
//Index page (static HTML)
app.route('/')
.get(function (req, res) {
res.sendFile(process.cwd() + '/views/index.html');
});
//For FCC testing purposes
fccTestingRoutes(app);
//Routing for API
apiRoutes(app);
//404 Not Found Middleware
app.use(function(req, res, next) {
res.status(404)
.type('text')
.send('Not Found');
});
//Start our server and tests
app.listen(process.env.PORT || 3000, function () {
console.log("Listening on port " + process.env.PORT);
if(process.env.NODE_ENV==='test') {
console.log('Running Tests...');
setTimeout(function () {
try {
runner.run();
} catch(e) {
var error = e;
console.log('Tests are not valid:');
console.log(error);
}
}, 3500);
}
});
module.exports = app; //for testing