smartsocket/ts/smartsocket.classes.socketrole.ts

54 lines
1.7 KiB
TypeScript
Raw Normal View History

2018-03-15 01:29:40 +00:00
import * as plugins from './smartsocket.plugins';
2016-08-07 12:58:20 +00:00
2019-08-12 20:31:40 +00:00
2016-08-07 16:59:39 +00:00
// import classes
import { Objectmap } from '@pushrocks/lik';
2018-03-15 01:29:40 +00:00
import { SocketFunction } from './smartsocket.classes.socketfunction';
2019-08-12 20:31:40 +00:00
import { Smartsocket } from './smartsocket.classes.smartsocket';
import { SmartsocketClient } from './smartsocket.classes.smartsocketclient';
import { ISocketConnectionAuthenticationObject } from './smartsocket.classes.socketconnection';
2016-08-08 16:20:00 +00:00
2016-08-07 12:58:20 +00:00
/**
2016-08-07 13:37:52 +00:00
* interface for class SocketRole
2016-08-07 12:58:20 +00:00
*/
2016-08-07 13:37:52 +00:00
export interface SocketRoleOptions {
2018-03-15 01:29:40 +00:00
name: string;
passwordHash: string;
2016-08-07 13:37:52 +00:00
}
/**
* A socketrole defines access to certain routines.
*/
export class SocketRole {
2019-08-12 20:31:40 +00:00
// STATIC
public static getSocketRoleByName(
referenceSmartsocket: Smartsocket | SmartsocketClient,
socketRoleNameArg: string,
): SocketRole{
return referenceSmartsocket.socketRoles.find(socketRoleArg => {
return socketRoleArg.name === socketRoleNameArg;
});
}
public static checkPasswordForRole (
dataArg: ISocketConnectionAuthenticationObject,
referenceSmartsocket: Smartsocket | SmartsocketClient
): boolean {
const targetPasswordHash = SocketRole.getSocketRoleByName(referenceSmartsocket, dataArg.role).passwordHash;
const computedCompareHash = plugins.smarthash.sha256FromStringSync(dataArg.password);
return targetPasswordHash === computedCompareHash;
}
// INSTANCE
public name: string;
public passwordHash: string;
public allowedFunctions = new Objectmap<SocketFunction>();
2018-03-15 01:29:40 +00:00
constructor(optionsArg: SocketRoleOptions) {
this.name = optionsArg.name;
this.passwordHash = optionsArg.passwordHash;
}
2019-08-12 20:31:40 +00:00
public addSocketFunction(socketFunctionArg: SocketFunction) {
2018-03-15 01:29:40 +00:00
this.allowedFunctions.add(socketFunctionArg);
}
}