2022-03-20 08:56:28 +00:00
|
|
|
import express from "express";
|
|
|
|
import http from "http";
|
|
|
|
import { Server } from "socket.io";
|
|
|
|
import { SocketServer } from "./api_server";
|
|
|
|
import yargs from "yargs";
|
|
|
|
import { hideBin } from "yargs/helpers";
|
2022-03-21 14:21:34 +00:00
|
|
|
import { System } from "../plugbox/runtime";
|
|
|
|
import { SilverBulletHooks } from "../common/manifest";
|
|
|
|
import { ExpressServer } from "./express_server";
|
|
|
|
import { DiskPlugLoader } from "../plugbox/plug_loader";
|
2022-03-20 08:56:28 +00:00
|
|
|
|
|
|
|
let args = yargs(hideBin(process.argv))
|
|
|
|
.option("debug", {
|
|
|
|
type: "boolean",
|
|
|
|
})
|
|
|
|
.option("port", {
|
|
|
|
type: "number",
|
|
|
|
default: 3000,
|
|
|
|
})
|
|
|
|
.parse();
|
|
|
|
|
2022-03-21 14:21:34 +00:00
|
|
|
const pagesPath = args._[0] as string;
|
|
|
|
|
2022-03-20 08:56:28 +00:00
|
|
|
const app = express();
|
|
|
|
const server = http.createServer(app);
|
2022-03-21 14:21:34 +00:00
|
|
|
const system = new System<SilverBulletHooks>();
|
|
|
|
|
2022-03-20 08:56:28 +00:00
|
|
|
const io = new Server(server, {
|
|
|
|
cors: {
|
|
|
|
methods: "GET,HEAD,PUT,OPTIONS,POST,DELETE",
|
|
|
|
preflightContinue: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const port = args.port;
|
|
|
|
const distDir = `${__dirname}/../webapp`;
|
|
|
|
|
|
|
|
app.use("/", express.static(distDir));
|
|
|
|
|
2022-03-21 14:21:34 +00:00
|
|
|
let socketServer = new SocketServer(pagesPath, io, system);
|
|
|
|
socketServer.init().catch((e) => {
|
|
|
|
console.error(e);
|
2022-03-20 08:56:28 +00:00
|
|
|
});
|
2022-03-21 14:21:34 +00:00
|
|
|
|
|
|
|
const expressServer = new ExpressServer(app, pagesPath, distDir, system);
|
|
|
|
expressServer
|
|
|
|
.init()
|
|
|
|
.then(async () => {
|
|
|
|
let plugLoader = new DiskPlugLoader(
|
|
|
|
system,
|
|
|
|
`${__dirname}/../../plugs/dist`
|
|
|
|
);
|
|
|
|
await plugLoader.loadPlugs();
|
|
|
|
plugLoader.watcher();
|
|
|
|
server.listen(port, () => {
|
|
|
|
console.log(`Server listening on port ${port}`);
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
});
|