generated from web-tech-tw/template.recv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
54 lines (44 loc) · 1.43 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
"use strict";
// Import config
const {
runLoader,
getMust,
getEnvironmentOverview,
} = require("./src/config");
// Load config
runLoader();
// Import constants
const constant = require("./src/init/const");
// Import StatusCodes
const {StatusCodes} = require("http-status-codes");
// Import useApp
const {useApp} = require("./src/init/express");
// Initialize application
const app = useApp();
// Redirect / to INDEX_REDIRECT_URL
app.get("/", (_, res) => {
const redirectCode = getMust("INDEX_REDIRECT_TYPE") === "permanent" ?
StatusCodes.MOVED_PERMANENTLY :
StatusCodes.MOVED_TEMPORARILY;
const redirectUrl = getMust("INDEX_REDIRECT_URL");
res.redirect(redirectCode, redirectUrl);
});
// The handler for robots.txt (deny all friendly robots)
app.get("/robots.txt", (_, res) => {
res.type("txt").send("User-agent: *\nDisallow: /");
});
// Map routes
require("./src/routes/index")();
// Show banner message
(() => {
const {APP_NAME: appName} = constant;
const {node, runtime} = getEnvironmentOverview();
const statusMessage = `(environment: ${node}, ${runtime})`;
console.info(appName, statusMessage, "\n====");
})();
// Mount application and execute it
require("./src/execute")(app, ({type, hostname, port}) => {
const protocol = type === "general" ? "http" : "https";
console.info(`Protocol "${protocol}" is listening at`);
console.info(`${protocol}://${hostname}:${port}`);
});