-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
executable file
·106 lines (91 loc) · 2.99 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
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
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var bodyParser = require('body-parser');
var cors = require('cors');
var fs = require('fs');
var mongoose = require('mongoose');
var routes = require('./routes/routes');
var app = express();
// mongoose setup
mongoose.Promise = require('bluebird');
var dbHost = process.env.DB_HOST || 'localhost';
var dbName = process.env.DB_NAME;
var dbUser = process.env.DB_USERNAME;
var dbPass = process.env.DB_PASSWORD;
var dbPort = process.env.DB_PORT || "27017";
mongoose
.connect("mongodb://" + dbUser + ":" + dbPass + "@" + dbHost + ":" + dbPort + "/" + dbName, { promiseLibrary: require("bluebird"), useNewUrlParser: true })
.then(() => console.log("connection succesful"))
.catch(err => console.error(err));
app.use(logger('dev'));
// app.use(bodyParser.json());
app.use(bodyParser.json({ limit: '250kb' }));
// app.use(bodyParser.urlencoded({limit: '500kb', extended: true}));
// app.use(bodyParser.urlencoded({'extended':'false'}));
if (process.env.REACT_APP_SERVER_ENVIORNMENT !== 'dev') {
app.use(favicon(path.join(__dirname, 'build/favicon.ico')));
}
app.use(express.static(path.join(__dirname, 'build')));
app.use(cors());
app.get("/static/*.js", function (req, res, next) {
req.url = req.url + ".gz";
res.set("Content-Encoding", "gzip");
res.set("Content-Type", "text/javascript");
next();
});
app.get("/pdf/*", function (req, res) {
res.sendFile(req.url);
});
app.get("/uploads/*", function (req, res) {
if (req.url.indexOf('?') > 0) {
req.url = req.url.substring(0, req.url.indexOf('?'));
}
fs.readFile(`.${req.url}`, function (err, content) {
if (err) {
res.writeHead(400, { 'Content-type': 'text/html' })
res.end("No such image");
} else {
res.writeHead(200, { 'Content-type': 'image/jpg' });
res.end(content);
}
});
});
app.get("/getFonts/*", function (req, res) {
if (req.url.indexOf('?') > 0) {
req.url = req.url.substring(0, req.url.indexOf('?'));
}
fs.readFile(`.${req.url}`, function (err, content) {
if (err) {
res.writeHead(400, { 'Content-type': 'text/html' })
res.end("No such font");
} else {
res.writeHead(200, { 'Content-type': 'application/x-font-ttf' });
res.end(content);
}
});
});
// app.get('/static/*.css', function (req, res, next) {
// req.url = req.url + '.gz';
// res.set('Content-Encoding', 'gzip');
// res.set('Content-Type', 'text/css');
// next();
// });
app.use('/', routes);
// catch 404 and forward to error handler
app.use(function (req, res, next) {
var err = new Error("Not Found");
err.status = 404;
next(err);
});
// error handler
app.use(function (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.render("error");
});
module.exports = app;