2018-03-15 01:29:40 +00:00
|
|
|
import * as plugins from './smartsocket.plugins';
|
2016-08-09 09:42:21 +00:00
|
|
|
|
|
|
|
// import interfaces
|
2018-03-15 01:29:40 +00:00
|
|
|
import { ISocketFunctionCall } from './smartsocket.classes.socketfunction';
|
|
|
|
import { ISocketRequestDataObject } from './smartsocket.classes.socketrequest';
|
2016-08-09 09:42:21 +00:00
|
|
|
|
|
|
|
// import classes
|
2018-03-15 01:29:40 +00:00
|
|
|
import { SocketConnection } from './smartsocket.classes.socketconnection';
|
|
|
|
import { SocketFunction } from './smartsocket.classes.socketfunction';
|
|
|
|
import { SocketRequest } from './smartsocket.classes.socketrequest';
|
2016-08-07 12:58:20 +00:00
|
|
|
/**
|
|
|
|
* interface for class SmartsocketClient
|
|
|
|
*/
|
|
|
|
export interface ISmartsocketClientOptions {
|
2018-03-15 01:29:40 +00:00
|
|
|
port: number;
|
|
|
|
url: string;
|
|
|
|
alias: string; // an alias makes it easier to identify this client in a multo client environment
|
|
|
|
role: string;
|
|
|
|
password: string; // by setting a password access to functions can be limited
|
2016-08-07 12:58:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class SmartsocketClient {
|
2018-03-15 01:29:40 +00:00
|
|
|
alias: string;
|
|
|
|
role: string;
|
|
|
|
socketConnection: SocketConnection;
|
|
|
|
serverUrl: string;
|
|
|
|
serverPort: number;
|
|
|
|
serverPassword: string;
|
2017-07-07 20:02:19 +00:00
|
|
|
constructor(optionsArg: ISmartsocketClientOptions) {
|
2018-03-15 01:29:40 +00:00
|
|
|
this.alias = optionsArg.alias;
|
|
|
|
this.role = optionsArg.role;
|
|
|
|
this.serverUrl = optionsArg.url;
|
|
|
|
this.serverPort = optionsArg.port;
|
|
|
|
this.serverPassword = optionsArg.password;
|
2017-07-07 20:02:19 +00:00
|
|
|
}
|
2016-08-11 23:32:57 +00:00
|
|
|
|
2017-07-07 20:02:19 +00:00
|
|
|
/**
|
|
|
|
* connect the client to the server
|
|
|
|
*/
|
2018-03-15 01:29:40 +00:00
|
|
|
connect() {
|
|
|
|
let done = plugins.smartq.defer();
|
|
|
|
plugins.beautylog.log('trying to connect...');
|
|
|
|
let socketUrl = `${this.serverUrl}:${this.serverPort}`;
|
2017-07-07 20:02:19 +00:00
|
|
|
this.socketConnection = new SocketConnection({
|
|
|
|
alias: this.alias,
|
|
|
|
authenticated: false,
|
|
|
|
role: undefined,
|
|
|
|
side: 'client',
|
|
|
|
smartsocketHost: null,
|
|
|
|
socket: plugins.socketIoClient(socketUrl, { multiplex: false })
|
2018-03-15 01:29:40 +00:00
|
|
|
});
|
2017-07-07 20:02:19 +00:00
|
|
|
this.socketConnection.socket.on('requestAuth', () => {
|
2018-03-15 01:29:40 +00:00
|
|
|
console.log('server requested authentication');
|
2017-07-07 20:02:19 +00:00
|
|
|
this.socketConnection.socket.emit('dataAuth', {
|
|
|
|
role: this.role,
|
|
|
|
password: this.serverPassword,
|
|
|
|
alias: this.alias
|
2018-03-15 01:29:40 +00:00
|
|
|
});
|
2017-07-07 20:02:19 +00:00
|
|
|
this.socketConnection.socket.on('authenticated', () => {
|
2018-03-15 01:29:40 +00:00
|
|
|
console.log('client is authenticated');
|
|
|
|
this.socketConnection.authenticated = true;
|
|
|
|
this.socketConnection.listenToFunctionRequests();
|
|
|
|
done.resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return done.promise;
|
2017-07-07 20:02:19 +00:00
|
|
|
}
|
2017-10-09 08:28:18 +00:00
|
|
|
|
2018-03-15 01:29:40 +00:00
|
|
|
disconnect() {
|
|
|
|
let done = plugins.smartq.defer();
|
|
|
|
this.socketConnection.socket.disconnect();
|
|
|
|
this.socketConnection = undefined;
|
|
|
|
plugins.beautylog.ok('disconnected!');
|
|
|
|
done.resolve();
|
|
|
|
return done.promise;
|
2017-07-07 20:02:19 +00:00
|
|
|
}
|
2018-03-15 01:29:40 +00:00
|
|
|
|
|
|
|
serverCall(functionNameArg: string, dataArg: any) {
|
|
|
|
let done = plugins.smartq.defer();
|
2017-07-07 20:02:19 +00:00
|
|
|
let socketRequest = new SocketRequest({
|
|
|
|
side: 'requesting',
|
|
|
|
originSocketConnection: this.socketConnection,
|
|
|
|
shortId: plugins.shortid.generate(),
|
|
|
|
funcCallData: {
|
|
|
|
funcName: functionNameArg,
|
|
|
|
funcDataArg: dataArg
|
|
|
|
}
|
2018-03-15 01:29:40 +00:00
|
|
|
});
|
|
|
|
socketRequest.dispatch().then((dataArg: ISocketFunctionCall) => {
|
|
|
|
done.resolve(dataArg.funcDataArg);
|
|
|
|
});
|
|
|
|
return done.promise;
|
2017-07-07 20:02:19 +00:00
|
|
|
}
|
|
|
|
}
|