This commit is contained in:
zhangzheng
2026-02-27 18:35:40 +08:00
parent adef8b4cce
commit 1bb1fee5cc
265 changed files with 104076 additions and 92 deletions

105
WebApp/src/index.ts Normal file
View File

@@ -0,0 +1,105 @@
import { Command } from 'commander';
import * as express from 'express';
import * as https from 'https';
import { Server } from 'http';
import * as fs from 'fs';
import * as os from 'os';
import { createServer } from './server';
import { AddressInfo } from 'net';
import WSSignaling from './websocket';
import Options from './class/options';
export class RenderStreaming {
public static run(argv: string[]): RenderStreaming {
const program = new Command();
const readOptions = (): Options => {
if (Array.isArray(argv)) {
program
.usage('[options] <apps...>')
.option('-p, --port <n>', 'Port to start the server on.', process.env.PORT || `80`)
.option('-s, --secure', 'Enable HTTPS (you need server.key and server.cert).', process.env.SECURE || false)
.option('-k, --keyfile <path>', 'https key file.', process.env.KEYFILE || 'server.key')
.option('-c, --certfile <path>', 'https cert file.', process.env.CERTFILE || 'server.cert')
.option('-t, --type <type>', 'Type of signaling protocol, Choose websocket or http.', process.env.TYPE || 'websocket')
.option('-m, --mode <type>', 'Choose Communication mode public or private.', process.env.MODE || 'public')
.option('-l, --logging <type>', 'Choose http logging type combined, dev, short, tiny or none.', process.env.LOGGING || 'dev')
.parse(argv);
const option = program.opts();
return {
port: option.port,
secure: option.secure == undefined ? false : option.secure,
keyfile: option.keyfile,
certfile: option.certfile,
type: option.type == undefined ? 'websocket' : option.type,
mode: option.mode,
logging: option.logging,
};
}
};
const options = readOptions();
return new RenderStreaming(options);
}
public app: express.Application;
public server?: Server;
public options: Options;
constructor(options: Options) {
this.options = options;
this.app = createServer(this.options);
if (this.options.secure) {
this.server = https.createServer({
key: fs.readFileSync(options.keyfile),
cert: fs.readFileSync(options.certfile),
}, this.app).listen(this.options.port, () => {
const { port } = this.server.address() as AddressInfo;
const addresses = this.getIPAddress();
for (const address of addresses) {
console.log(`https://${address}:${port}`);
}
});
} else {
this.server = this.app.listen(this.options.port, () => {
const { port } = this.server.address() as AddressInfo;
const addresses = this.getIPAddress();
for (const address of addresses) {
console.log(`http://${address}:${port}`);
}
});
}
if (this.options.type == 'http') {
console.log(`Use http polling for signaling server.`);
}
else if(this.options.type != 'websocket') {
console.log(`signaling type should be set "websocket" or "http". ${this.options.type} is not supported.`);
console.log(`Changing signaling type to websocket.`);
this.options.type = 'websocket';
}
if (this.options.type == 'websocket') {
console.log(`Use websocket for signaling server ws://${this.getIPAddress()[0]}`);
//Start Websocket Signaling server
new WSSignaling(this.server, this.options.mode);
}
console.log(`start as ${this.options.mode} mode`);
}
getIPAddress(): string[] {
const interfaces = os.networkInterfaces();
const addresses: string[] = [];
for (const k in interfaces) {
for (const k2 in interfaces[k]) {
const address = interfaces[k][k2];
if (address.family === 'IPv4') {
addresses.push(address.address);
}
}
}
return addresses;
}
}
RenderStreaming.run(process.argv);