-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
140 lines (120 loc) · 3.59 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
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
"use strict";
// Load external plugins
const debug = require("debug");
const dotenv = require("dotenv");
const http = require("http");
const https = require("https");
const express = require("express");
const fs = require("fs");
const path = require("path");
const favicon = require("serve-favicon");
const logger = require("morgan");
const cookieParser = require("cookie-parser");
const bodyParser = require("body-parser");
const { createTerminus } = require("@godaddy/terminus")
// Load local plugins
const winston = require("./src/logger").winston;
const routes = require("./routes/index");
const geoip = require("./routes/geoip");
var meLogger = winston(process.env.LOG_LEVEL);
// ExpressJS App Setup
var app = express();
// Load Environment Variables from the Config File
const args = process.argv;
const fileName = path.dirname(fs.realpathSync(__filename));
// Work on the Args
if (args.length > 2) {
var objEnv = args[2];
if (objEnv === "prod") {
dotenv.config({ path: path.join(fileName, "./config/prod.env") });
}
else {
dotenv.config({ path: path.join(fileName, "./config/dev.env") });
}
}
else {
dotenv.config({ path: path.join(fileName, "./config/dev.env") });
}
// View Engine Setup
app.set("views", path.join(__dirname, "views"));
app.set("view engine", "ejs");
// Middlewave Setup
app.use(favicon(__dirname + "/public/images/favicon.ico"));
app.use(logger("dev"));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, "public")));
// WebApp and API Route Setup
app.use("/", routes);
app.use("/api", geoip);
// 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 handlers
// development error handler will print stacktrace
if (app.get("env") === "development") {
app.use(function (err, req, res, next) {
res.status(err.status || 500);
res.render("error", {
title: "Error",
message: err.message,
error: err
});
});
}
// production error handler no stacktraces leaked to user
app.use(function (err, req, res, next) {
res.status(err.status || 500);
res.render("error", {
title: "Error",
message: err.message,
error: {}
});
});
// Port Setup fallback to 3000
app.set("port", process.env.PORT || 3000);
/*
// HttpOptions to accept https connections!
const httpsOptions = {
key: fs.readFileSync(path.join(path.dirname(fs.realpathSync(__filename)), "./security/private.key")),
cert: fs.readFileSync(path.join(path.dirname(fs.realpathSync(__filename)), "./security/primary.crt")),
requestCert: false,
rejectUnauthorized: false
}
const server = https.createServer(app);
*/
const server = http.createServer(app);
// Health Check
const onSignal = () => {
meLogger.log("server is starting cleanup");
return Promise.all([
// your clean logic, like closing database connections
]);
}
const onHealthCheck = async ({ state }) => {
if (!state.isShuttingDown) {
return Promise.resolve(
"All Systems Go!"
)
}
else {
return Promise.reject(
"Server is shutting down!"
)
}
}
createTerminus(server, {
signal: "SIGINT",
healthChecks: { "/healthcheck": onHealthCheck },
onSignal
});
// ExpressJS Server Setup
server.listen(app.get("port"), function () {
meLogger.info("Express server listening on port " + server.address().port);
});
// Return ExpressJS Server
module.exports = server