This repository has been archived on 2021-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
RealtimeDB-OLD/src/connection.ts

98 lines
3.4 KiB
TypeScript
Raw Normal View History

2019-09-18 19:54:28 +00:00
import * as io from "socket.io";
import { Server } from "http";
import { DatabaseManager } from "./database/database";
import Logging from "@hibas123/logging";
import Query from "./database/query";
import Session from "./database/session";
import shortid = require("shortid");
2019-09-18 19:54:28 +00:00
type QueryTypes = "get" | "set" | "push" | "subscribe" | "unsubscribe";
export class ConnectionManager {
static server: io.Server;
2019-09-18 19:54:28 +00:00
static bind(server: Server) {
this.server = io(server);
this.server.on("connection", this.onConnection.bind(this));
}
private static onConnection(socket: io.Socket) {
Logging.debug("New Connection:", socket.id);
2019-09-18 19:54:28 +00:00
const reqMap = new Map<string, [number, number]>();
const stored = new Map<string, Query>();
const session = new Session();
2019-09-18 19:54:28 +00:00
const answer = (id: string, data: any, err: boolean = false) => {
let time = process.hrtime(reqMap.get(id));
reqMap.delete(id);
// Logging.debug(`Sending answer for ${id} with data`, data, err ? "as error" : "", "Took", time[1] / 1000, "us");
2019-09-18 19:54:28 +00:00
socket.emit("message", id, err, data);
}
socket.on("login", (id: string) => {
//TODO: implement
})
socket.on("query", async (id: string, type: QueryTypes, database: string, path: string[], data: any) => {
Logging.debug(`Request with id '${id}' from type '${type}' for database '${database}' and path '${path}' with data`, data)
2019-09-18 19:54:28 +00:00
reqMap.set(id, process.hrtime());
try {
const db = DatabaseManager.getDatabase(database);
const perms = db.rules.hasPermission(path, session);
const noperm = new Error("No permisison!");
2019-09-18 19:54:28 +00:00
if (!db)
answer(id, "Database not found!", true);
else {
const query = stored.get(id) || db.getQuery(path);
2019-09-18 19:54:28 +00:00
switch (type) {
case "get":
if (!perms.read)
throw noperm;
2019-09-18 19:54:28 +00:00
answer(id, await query.get());
return;
2019-09-18 19:54:28 +00:00
case "set":
if (!perms.write)
throw noperm;
2019-09-18 19:54:28 +00:00
answer(id, await query.set(data));
return;
2019-09-18 19:54:28 +00:00
case "push":
if (!perms.write)
throw noperm;
2019-09-18 19:54:28 +00:00
answer(id, await query.push(data));
return;
2019-09-18 19:54:28 +00:00
case "subscribe":
if (!perms.read)
throw noperm;
let subscriptionID = shortid.generate();
query.subscribe(data, (data) => {
socket.emit("event", subscriptionID, data);
});
stored.set(id, query);
answer(id, subscriptionID);
return;
2019-09-18 19:54:28 +00:00
case "unsubscribe":
query.unsubscribe();
stored.delete(id);
answer(id, true);
return;
2019-09-18 19:54:28 +00:00
}
answer(id, "Invalid request!", true);
2019-09-18 19:54:28 +00:00
}
} catch (err) {
Logging.error(err);
answer(id, err.message, true);
}
})
socket.on("disconnect", () => {
reqMap.clear();
stored.clear();
socket.removeAllListeners();
2019-09-18 19:54:28 +00:00
})
}
}