-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
92 lines (80 loc) · 2.12 KB
/
index.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
const express = require("express");
const chalk = require("chalk");
const http = require("http");
const https = require("https");
const config = require("./config");
const HTTP_PORT = config.HTTP_PORT;
const HTTPS_PORT = config.HTTPS_PORT;
const SERVER_CERT = config.SERVER_CERT;
const SERVER_KEY = config.SERVER_KEY;
const app = express();
const Middleware = require("./middleware");
const ErrorHandlingMiddleware = require("./middleware/error-handling");
const AuthenticationMiddleware = require("./middleware/auth-middleware");
const MainController = require("./controllers");
Middleware(app);
AuthenticationMiddleware(app);
app.use("", MainController);
ErrorHandlingMiddleware(app);
app.set("port", HTTPS_PORT);
/**
* Create HTTPS Server
*/
const server = https.createServer(
{
key: SERVER_KEY,
cert: SERVER_CERT
},
app
);
const onError = error => {
if (error.syscall !== "listen") {
throw error;
}
const bind =
typeof HTTPS_PORT === "string"
? "Pipe " + HTTPS_PORT
: "Port " + HTTPS_PORT;
switch (error.code) {
case "EACCES":
console.error(chalk.red(`[-] ${bind} requires elevated privileges`));
process.exit(1);
break;
case "EADDRINUSE":
console.error(chalk.red(`[-] ${bind} is already in use`));
process.exit(1);
break;
default:
throw error;
}
};
const onListening = () => {
const addr = server.address();
const bind = typeof addr === "string" ? `pipe ${addr}` : `port ${addr.port}`;
console.log(chalk.yellow(`[!] Listening on HTTPS ${bind}`));
};
server.listen(HTTPS_PORT);
server.on("error", onError);
server.on("listening", onListening);
/**
* Create HTTP Server (HTTP requests will be 301 redirected to HTTPS)
*/
http
.createServer((req, res) => {
res.writeHead(301, {
Location:
"https://" +
req.headers["host"].replace(
HTTP_PORT.toString(),
HTTPS_PORT.toString()
) +
req.url
});
res.end();
})
.listen(HTTP_PORT)
.on("error", onError)
.on("listening", () =>
console.log(chalk.yellow(`[!] Listening on HTTP port ${HTTP_PORT}`))
);
module.exports = app;