59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import * as plugins from './smartsocket.plugins';
|
|
|
|
// import classes
|
|
import { Objectmap } from '@pushrocks/lik';
|
|
import { SocketFunction } from './smartsocket.classes.socketfunction';
|
|
import { Smartsocket } from './smartsocket.classes.smartsocket';
|
|
import { SmartsocketClient } from './smartsocket.classes.smartsocketclient';
|
|
import { ISocketConnectionAuthenticationObject } from './smartsocket.classes.socketconnection';
|
|
|
|
/**
|
|
* interface for class SocketRole
|
|
*/
|
|
export interface ISocketRoleOptions {
|
|
name: string;
|
|
passwordHash: string;
|
|
}
|
|
|
|
/**
|
|
* A socketrole defines access to certain routines.
|
|
*/
|
|
export class SocketRole {
|
|
// 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<any>>();
|
|
constructor(optionsArg: ISocketRoleOptions) {
|
|
this.name = optionsArg.name;
|
|
this.passwordHash = optionsArg.passwordHash;
|
|
}
|
|
|
|
/**
|
|
* adds the socketfunction to the socketrole
|
|
* @param socketFunctionArg
|
|
*/
|
|
public addSocketFunction(socketFunctionArg: SocketFunction<any>) {
|
|
this.allowedFunctions.add(socketFunctionArg);
|
|
}
|
|
}
|