1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-22 13:29:22 +00:00

Start to implement WebSockets route system

This commit is contained in:
Pierre HUBERT 2020-03-31 14:42:53 +02:00
parent 92486a01ac
commit d4b624e519
3 changed files with 56 additions and 2 deletions

View File

@ -19,14 +19,14 @@ interface PendingRequests {
token: string token: string
} }
interface ActiveClient { export interface ActiveClient {
socketID: string, socketID: string,
clientID: number, clientID: number,
userID: number, userID: number,
ws: ws ws: ws
} }
interface WsMessage { export interface WsMessage {
id: string, id: string,
title: string, title: string,
data: any data: any

View File

@ -0,0 +1,17 @@
/**
* User Websocket requests route
*
* Note : this implementation requires the
* user to be signed in to perform requests
*
* @author Pierre Hubert
*/
import { UserWebSocketRequestsHandler } from "../entities/WebSocketRequestHandler";
export interface UserWebSocketRoute {
title: string,
handler: (h: UserWebSocketRequestsHandler) => Promise<void>
}
export const UserWebSocketRoutes: UserWebSocketRoute[] = []

View File

@ -0,0 +1,37 @@
/**
* User Web Sockets requests handler implementation
*
* @author Pierre Hubert
*/
import { BaseRequestsHandler } from "./BaseRequestsHandler";
import { ActiveClient, WsMessage } from "../controllers/UserWebSocketController";
export class UserWebSocketRequestsHandler extends BaseRequestsHandler {
constructor(private wsClient: ActiveClient, private req: WsMessage) {
super();
}
protected get userID(): number {
return this.wsClient.userID;
}
protected getPostParam(name: string) {
throw new Error("Method not implemented.");
}
public hasPostParameter(name: string): boolean {
throw new Error("Method not implemented.");
}
public error(code: number, message: string): void {
throw new Error("Method not implemented.");
}
public success(message: string): void {
throw new Error("Method not implemented.");
}
public send(data: any): void {
throw new Error("Method not implemented.");
}
}