linebridge/src/server/index.js

323 lines
10 KiB
JavaScript
Executable File

const path = require("path")
const fs = require("fs")
const net = require("corenode/net")
const HyperExpress = require("hyper-express")
const io = require("socket.io")
const packageJSON = require(path.resolve(module.path, "../../package.json"))
global.LINEBRIDGE_SERVER_VERSION = packageJSON.version
const tokenizer = require("corenode/libs/tokenizer")
const { randomWord } = require("@corenode/utils")
const { serverManifest } = require("../lib")
global.LOCALHOST_ADDRESS = net.ip.getHostAddress() ?? "localhost"
global.FIXED_HTTP_METHODS = {
"delete": "del",
}
global.VALID_HTTP_METHODS = ["get", "post", "put", "patch", "del", "delete", "trace", "head", "any", "options", "ws"]
global.DEFAULT_HEADERS = {
"Access-Control-Allow-Headers": "Origin, X-Requested-With, Content-Type, Accept, Authorization",
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, OPTIONS, PUT, PATCH, DELETE, DEL",
"Access-Control-Allow-Credentials": "true",
}
const defaultMiddlewares = [
require('cors')({
"origin": "*",
"methods": DEFAULT_HEADERS["Access-Control-Allow-Methods"],
"preflightContinue": false,
"optionsSuccessStatus": 204
}),
]
const FixedMethods = {
"delete": "del",
}
if (process.env.NODE_ENV !== "production") {
defaultMiddlewares.push(require("morgan")("dev"))
}
class Server {
constructor(params = {}, controllers = [], middlewares = {}) {
this.params = { ...params }
this.controllers = [...controllers]
this.middlewares = { ...middlewares }
this.headers = { ...DEFAULT_HEADERS, ...this.params.headers }
this.endpointsMap = {}
this.WSListenPort = this.params.wsPort ?? 3020
this.HTTPlistenPort = this.params.port ?? 3010
// TODO: Handle HTTPS and WSS
this.HTTPAddress = `http://${LOCALHOST_ADDRESS}:${this.HTTPlistenPort}`
this.WSAddress = `ws://${LOCALHOST_ADDRESS}:${this.WSListenPort}`
//* set server basics
this.httpInterface = global.httpInterface = new HyperExpress.Server()
this.wsInterface = global.wsInterface = {
io: new io.Server(this.WSListenPort),
map: {},
eventsChannels: [],
}
//? check if origin.server exists
if (!fs.existsSync(serverManifest.filepath)) {
serverManifest.create()
}
//? check origin.server integrity
const MANIFEST_DATA = global.MANIFEST_DATA = serverManifest.get()
const MANIFEST_STAT = global.MANIFEST_STAT = serverManifest.stat()
if (typeof MANIFEST_DATA.created === "undefined") {
console.warn("Server generation file not contains an creation date")
serverManifest.write({ created: Date.parse(MANIFEST_STAT.birthtime) })
}
if (typeof MANIFEST_DATA.serverToken === "undefined") {
console.warn("Missing server token!")
serverManifest.create()
}
this.id = this.params.id ?? randomWord.generate() ?? "unavailable"
this.usid = tokenizer.generateUSID()
this.oskid = serverManifest.get("serverToken")
serverManifest.write({ lastStart: Date.now() })
return this
}
initialize = async () => {
this.httpInterface.use((req, res, next) => {
Object.keys(this.headers).forEach((key) => {
res.setHeader(key, this.headers[key])
})
next()
})
const useMiddlewares = [...defaultMiddlewares, ...(this.params.middlewares ?? [])]
useMiddlewares.forEach((middleware) => {
if (typeof middleware === "function") {
this.httpInterface.use(middleware)
}
})
await this.registerBaseEndpoints()
await this.initializeControllers()
// initialize socket.io
this.wsInterface.io.on("connection", this.handleWSClientConnection)
// initialize http server
await this.httpInterface.listen(this.HTTPlistenPort, this.params.listen ?? "0.0.0.0")
// output server info
console.log(`✅ Server is up and running!`)
this.consoleOutputServerInfo()
// handle exit events
process.on("SIGTERM", this.cleanupProcess)
process.on("SIGINT", this.cleanupProcess)
process.on("exit", this.cleanupProcess)
}
handleWSClientConnection = async (socket) => {
socket.res = (...args) => {
socket.emit("response", ...args)
}
socket.err = (...args) => {
socket.emit("responseError", ...args)
}
if (typeof this.params.onWSClientConnection === "function") {
await this.params.onWSClientConnection(socket)
}
for await (const [nsp, on, dispatch] of this.wsInterface.eventsChannels) {
socket.on(on, async (...args) => {
try {
await dispatch(socket, ...args).catch((error) => {
socket.err({
message: error.message,
})
})
} catch (error) {
socket.err({
message: error.message,
})
}
})
}
socket.on("ping", () => {
socket.emit("pong")
})
socket.on("disconnect", async () => {
if (typeof this.params.onWSClientDisconnect === "function") {
await this.params.onWSClientDisconnect(socket)
}
})
}
initializeControllers = async () => {
for await (let controller of this.controllers) {
if (typeof controller !== "function") {
throw new Error(`Controller must use the controller class!`)
}
try {
const ControllerInstance = new controller()
const HTTPEndpoints = ControllerInstance.getEndpoints()
const WSEndpoints = ControllerInstance.getWSEndpoints()
HTTPEndpoints.forEach((endpoint) => {
this.registerHTTPEndpoint(endpoint, ...this.resolveMiddlewares(controller.useMiddlewares))
})
WSEndpoints.forEach((endpoint) => {
this.registerWSEndpoint(endpoint)
})
} catch (error) {
console.error(`🆘 [${controller.refName}] Failed to initialize controller: ${error.message}`)
}
}
}
registerHTTPEndpoint = (endpoint, ...execs) => {
// check and fix method
endpoint.method = endpoint.method?.toLowerCase() ?? "get"
if (FixedMethods[endpoint.method]) {
endpoint.method = FixedMethods[endpoint.method]
}
let middlewares = [...execs]
if (endpoint.middlewares) {
middlewares = [...middlewares, ...this.resolveMiddlewares(endpoint.middlewares)]
}
if (typeof this.endpointsMap[endpoint.method] !== "object") {
this.endpointsMap[endpoint.method] = {}
}
this.endpointsMap[endpoint.method] = {
...this.endpointsMap[endpoint.method],
[endpoint.route]: {
route: endpoint.route,
enabled: endpoint.enabled ?? true,
},
}
this.httpInterface[endpoint.method](endpoint.route, ...middlewares, async (req, res) => {
try {
// check if endpoint is disabled
if (!this.endpointsMap[endpoint.method][endpoint.route].enabled) {
throw new Error("Endpoint is disabled!")
}
return await endpoint.fn(req, res)
} catch (error) {
if (typeof this.params.onRouteError === "function") {
return this.params.onRouteError(req, res, error)
} else {
return res.status(500).json({
"error": error.message
})
}
}
})
}
registerWSEndpoint = (endpoint, ...execs) => {
endpoint.nsp = endpoint.nsp ?? "/main"
this.wsInterface.eventsChannels.push([endpoint.nsp, endpoint.on, endpoint.dispatch])
this.wsInterface.map[endpoint.on] = {
nsp: endpoint.nsp,
channel: endpoint.on,
}
}
resolveMiddlewares = (middlewares) => {
middlewares = Array.isArray(middlewares) ? middlewares : [middlewares]
const middlewaresArray = []
middlewares.forEach((middleware) => {
if (typeof middleware === "string") {
if (typeof this.middlewares[middleware] !== "function") {
throw new Error(`Middleware ${middleware} not found!`)
}
middlewaresArray.push(this.middlewares[middleware])
}
if (typeof middleware === "function") {
middlewaresArray.push(middleware)
}
})
return middlewaresArray
}
registerBaseEndpoints() {
this.registerHTTPEndpoint({
method: "get",
route: "/",
fn: (req, res) => {
return res.json({
LINEBRIDGE_SERVER_VERSION: LINEBRIDGE_SERVER_VERSION,
id: this.id,
usid: this.usid,
oskid: this.oskid,
requestTime: new Date().getTime(),
endpointsMap: this.endpointsMap,
wsEndpointsMap: this.wsInterface.map,
})
}
})
}
consoleOutputServerInfo = () => {
console.log(`🌐 Server info:`)
console.table({
"ID": this.id,
"Version": LINEBRIDGE_SERVER_VERSION,
"HTTP address": this.HTTPAddress,
"WS address": this.WSAddress,
"WS port": this.WSListenPort,
"HTTP port": this.HTTPlistenPort,
})
}
cleanupProcess = () => {
console.log("🔴 Stopping server...")
this.httpInterface.close()
this.wsInterface.io.close()
}
toogleEndpointReachability = (method, route, enabled) => {
if (typeof this.endpointsMap[method] !== "object") {
throw new Error(`Cannot toogle endpoint, method [${method}] not set!`)
}
if (typeof this.endpointsMap[method][route] !== "object") {
throw new Error(`Cannot toogle endpoint [${route}], is not registered!`)
}
this.endpointsMap[method][route].enabled = enabled ?? !this.endpointsMap[method][route].enabled
}
}
module.exports = Server