2018-03-19 09:00:11 +00:00
|
|
|
import * as plugins from './smartsocket.plugins';
|
|
|
|
|
|
|
|
// used in case no other server is supplied
|
|
|
|
import * as http from 'http';
|
2019-09-01 16:07:52 +00:00
|
|
|
import * as https from 'https';
|
2018-03-19 09:00:11 +00:00
|
|
|
import { Smartsocket } from './smartsocket.classes.smartsocket';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* class socketServer
|
|
|
|
* handles the attachment of socketIo to whatever server is in play
|
|
|
|
*/
|
|
|
|
export class SocketServer {
|
|
|
|
private smartsocket: Smartsocket;
|
2019-09-01 16:07:52 +00:00
|
|
|
private httpServer: http.Server | https.Server;
|
2018-03-19 09:00:11 +00:00
|
|
|
// wether httpServer is standalone
|
|
|
|
private standaloneServer = false;
|
|
|
|
private expressServer: any;
|
|
|
|
|
|
|
|
constructor(smartSocketInstance: Smartsocket) {
|
|
|
|
this.smartsocket = smartSocketInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* starts the server with another server
|
|
|
|
* also works with an express style server
|
|
|
|
*/
|
2019-04-26 15:35:15 +00:00
|
|
|
public async setExternalServer(
|
|
|
|
serverType: 'smartexpress',
|
|
|
|
serverArg: plugins.smartexpress.Server
|
|
|
|
) {
|
2019-04-24 15:10:51 +00:00
|
|
|
await serverArg.startedPromise;
|
|
|
|
this.httpServer = serverArg.httpServer;
|
2018-03-19 09:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gets the server for socket.io
|
|
|
|
*/
|
|
|
|
public getServerForSocketIo() {
|
|
|
|
if (this.httpServer) {
|
|
|
|
return this.httpServer;
|
2019-04-24 15:10:51 +00:00
|
|
|
} else {
|
2018-03-19 09:00:11 +00:00
|
|
|
this.httpServer = new http.Server();
|
|
|
|
this.standaloneServer = true;
|
|
|
|
return this.httpServer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* starts listening to incoming sockets:
|
|
|
|
*/
|
|
|
|
public async start() {
|
2019-01-30 02:14:02 +00:00
|
|
|
const done = plugins.smartpromise.defer();
|
2018-03-19 09:00:11 +00:00
|
|
|
|
|
|
|
// handle http servers
|
2019-04-24 13:47:28 +00:00
|
|
|
// in case an external server has been set "this.standaloneServer" should be false
|
2018-03-19 09:00:11 +00:00
|
|
|
if (this.httpServer && this.standaloneServer) {
|
2019-04-24 13:47:28 +00:00
|
|
|
if (!this.smartsocket.options.port) {
|
2019-08-13 13:58:08 +00:00
|
|
|
plugins.smartlog.defaultLogger.log('error', 'there should be a port specifed for smartsocket!');
|
2019-04-26 15:35:15 +00:00
|
|
|
throw new Error('there should be a port specified for smartsocket');
|
2019-04-24 13:47:28 +00:00
|
|
|
}
|
2018-03-19 09:00:11 +00:00
|
|
|
this.httpServer.listen(this.smartsocket.options.port, () => {
|
2019-08-13 13:58:08 +00:00
|
|
|
plugins.smartlog.defaultLogger.log('success', `Server started in standalone mode on ${this.smartsocket.options.port}`);
|
2018-03-19 09:00:11 +00:00
|
|
|
done.resolve();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
done.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
// nothing else to do if express server is set
|
|
|
|
await done.promise;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* closes the server
|
|
|
|
*/
|
|
|
|
public async stop() {}
|
|
|
|
}
|