blob: 0059898b68af949ec632bcfec6ebba87748348e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import { DataTypes, Sequelize } from 'sequelize';
import { BaseModel } from './BaseModel';
import { NEVER_USED } from './__helpers';
export interface StatModel {
environment: 'production' | 'development' | 'beta';
commandsUsed: bigint;
}
export interface StatModelCreationAttributes {
environment: 'production' | 'development' | 'beta';
commandsUsed?: bigint;
}
export class Stat extends BaseModel<StatModel, StatModelCreationAttributes> implements StatModel {
/**
* The bot's environment.
*/
public get environment(): 'production' | 'development' | 'beta' {
throw new Error(NEVER_USED);
}
public set environment(_: 'production' | 'development' | 'beta') {
throw new Error(NEVER_USED);
}
/**
* The number of commands used
*/
public get commandsUsed(): bigint {
throw new Error(NEVER_USED);
}
public set commandsUsed(_: bigint) {
throw new Error(NEVER_USED);
}
public static initModel(sequelize: Sequelize): void {
Stat.init(
{
environment: {
type: DataTypes.STRING,
primaryKey: true
},
commandsUsed: {
type: DataTypes.TEXT,
allowNull: false,
get: function (): bigint {
return BigInt(this.getDataValue('commandsUsed') as unknown as string);
},
set: function (val: bigint) {
return this.setDataValue('commandsUsed', `${val}` as any);
},
defaultValue: '0'
}
},
{ sequelize }
);
}
}
|