forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebServer.ts
More file actions
153 lines (143 loc) · 6.76 KB
/
Copy pathWebServer.ts
File metadata and controls
153 lines (143 loc) · 6.76 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
import * as os from "os";
import * as path from "path";
import * as http from "http";
import * as https from "https";
import * as express from "express";
import * as compression from "compression";
import * as cookieParser from "cookie-parser";
import * as cookieSession from "cookie-session";
import * as flash from "flash";
import * as morgan from "morgan";
import { SamlProvider } from "./SamlProvider";
import { LoginProvider } from "./LoginProvider";
import { Config } from "./Config";
import { NoderedUtil } from "@openiap/openflow-api";
const { RateLimiterMemory } = require('rate-limiter-flexible')
import * as url from "url";
import { WebSocketServer } from "./WebSocketServer";
import { WebSocketServerClient } from "./WebSocketServerClient";
import { Span } from "@opentelemetry/api";
import { Logger } from "./Logger";
var _hostname = "";
const BaseRateLimiter = new RateLimiterMemory({
points: Config.api_rate_limit_points,
duration: Config.api_rate_limit_duration,
});
const rateLimiter = (req: express.Request, res: express.Response, next: express.NextFunction): void => {
BaseRateLimiter
.consume(WebServer.remoteip(req))
.then((e) => {
// console.info("API_O_RATE_LIMIT consumedPoints: " + e.consumedPoints + " remainingPoints: " + e.remainingPoints);
next();
})
.catch((e) => {
const route = url.parse(req.url).pathname;
// if (!NoderedUtil.IsNullUndefinded(websocket_rate_limit)) websocket_rate_limit.bind({ ...Logger.otel.defaultlabels, route: route }).update(e.consumedPoints);
console.warn("API_RATE_LIMIT consumedPoints: " + e.consumedPoints + " remainingPoints: " + e.remainingPoints + " msBeforeNext: " + e.msBeforeNext);
res.status(429).json({ response: 'RATE_LIMIT' });
});
};
// let websocket_rate_limit: BaseObserver = null;
export class WebServer {
public static remoteip(req: express.Request) {
let remoteip: string = req.socket.remoteAddress;
if (req.headers["X-Forwarded-For"] != null) remoteip = req.headers["X-Forwarded-For"] as string;
if (req.headers["X-real-IP"] != null) remoteip = req.headers["X-real-IP"] as string;
if (req.headers["x-forwarded-for"] != null) remoteip = req.headers["x-forwarded-for"] as string;
if (req.headers["x-real-ip"] != null) remoteip = req.headers["x-real-ip"] as string;
return remoteip;
}
public static app: express.Express;
static async configure(baseurl: string, parent: Span): Promise<http.Server> {
const span: Span = Logger.otel.startSubSpan("WebServer.configure", parent);
try {
if (!NoderedUtil.IsNullUndefinded(Logger.otel)) {
// websocket_rate_limit = Logger.otel.meter.createUpDownSumObserver("openflow_webserver_rate_limit_count", {
// description: 'Total number of rate limited web request'
// }) // "route"
}
this.app = express();
this.app.disable("x-powered-by");
const loggerstream = {
write: function (message, encoding) {
Logger.instanse.silly(message);
}
};
this.app.use("/", express.static(path.join(__dirname, "/public")));
this.app.use(morgan('combined', { stream: loggerstream }));
this.app.use(compression());
this.app.use(express.urlencoded({ extended: true }));
this.app.use(express.json());
this.app.use(cookieParser());
this.app.set('trust proxy', 1)
this.app.use(cookieSession({
name: "session", secret: Config.cookie_secret, httpOnly: true
}));
this.app.use(flash());
if (Config.api_rate_limit) this.app.use(rateLimiter);
this.app.get("/livenessprobe", (req: any, res: any, next: any): void => {
if (NoderedUtil.IsNullEmpty(_hostname)) _hostname = (Config.getEnv("HOSTNAME", undefined) || os.hostname()) || "unknown";
res.end(JSON.stringify({ "success": "true", "hostname": _hostname }));
res.end();
});
// Add headers
this.app.use(function (req, res, next) {
// Website you wish to allow to connect
res.setHeader('Access-Control-Allow-Origin', '*');
// Request methods you wish to allow
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
// Request headers you wish to allow
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');
// Set to true if you need the website to include cookies in the requests sent
// to the API (e.g. in case you use sessions)
res.setHeader('Access-Control-Allow-Credentials', "true");
// Pass to next layer of middleware
next();
});
span?.addEvent("Configure LoginProvider");
await LoginProvider.configure(this.app, baseurl);
span?.addEvent("Configure SamlProvider");
await SamlProvider.configure(this.app, baseurl);
let server: http.Server = null;
if (Config.tls_crt != '' && Config.tls_key != '') {
let options: any = {
cert: Config.tls_crt,
key: Config.tls_key
};
if (Config.tls_crt.indexOf("---") == -1) {
options = {
cert: Buffer.from(Config.tls_crt, 'base64').toString('ascii'),
key: Buffer.from(Config.tls_key, 'base64').toString('ascii')
};
}
let ca: string = Config.tls_ca;
if (ca !== "") {
if (ca.indexOf("---") === -1) {
ca = Buffer.from(Config.tls_ca, 'base64').toString('ascii');
}
options.ca = ca;
}
if (Config.tls_passphrase !== "") {
options.passphrase = Config.tls_passphrase;
}
server = https.createServer(options, this.app);
} else {
server = http.createServer(this.app);
}
await Config.db.connect(span);
const port = Config.port;
server.listen(port).on('error', function (error) {
Logger.instanse.error(error);
// server.close();
// process.exit(404);
});
return server;
} catch (error) {
span?.recordException(error);
Logger.instanse.error(error);
return null;
} finally {
Logger.otel.endSpan(span);
}
}
}