modelling/lib/DatabaseModel.ts

39 lines
942 B
TypeScript
Raw Normal View History

2020-05-02 19:40:53 +02:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of Modelling which is released under MIT.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, May 2020
*/
2020-04-23 17:09:14 +02:00
export abstract class DatabaseModel {
2020-05-02 20:00:41 +02:00
protected data: Record<string, string|number|boolean> = {};
public get id (): number {
2020-05-02 20:04:14 +02:00
return this.data.id as number;
2020-05-02 20:00:41 +02:00
}
public set id (val: number) {
this.data.id = val;
}
2020-04-23 17:09:14 +02:00
2020-05-02 21:14:54 +02:00
public get object (): Record<string, string|number|boolean> {
2020-05-02 21:01:08 +02:00
return this.data;
}
2020-05-02 20:04:14 +02:00
public constructor (id: number) {
2020-05-02 20:03:14 +02:00
this.id = id;
2020-04-23 17:09:14 +02:00
}
2020-05-02 21:07:15 +02:00
public get (key: string): string|number|boolean {
return this.data[key];
}
public set (key: string, value: string|number|boolean): void {
this.data[key] = value;
}
2020-04-23 17:09:14 +02:00
2020-05-02 21:20:01 +02:00
public abstract async read(): Promise<boolean>;
public abstract async write(): Promise<boolean>;
2020-05-02 21:26:51 +02:00
public abstract async delete(): Promise<boolean>;
2020-04-23 17:09:14 +02:00
}