5 changed files with 95 additions and 25 deletions
@ -1,19 +1,34 @@ |
|||
export interface Ban { |
|||
id: number; |
|||
steam_id: string; |
|||
account_id: number; |
|||
player_name: string; |
|||
ban_length: number; |
|||
ban_length_seconds: number; |
|||
ban_reason: string; |
|||
banned_by: string; |
|||
banned_by_id: string; |
|||
ip: string; |
|||
timestamp: Date; |
|||
ban_utime: number; |
|||
active: boolean; |
|||
unbanned_by_id: string; |
|||
unbanned_timestamp: Date; |
|||
export class Ban { |
|||
id: number = 0; |
|||
steam_id: string|undefined; |
|||
account_id: number|undefined; |
|||
player_name: string|undefined; |
|||
ban_length: number=0; |
|||
ban_length_seconds: number = 0; |
|||
ban_reason: string|undefined; |
|||
banned_by: string|undefined; |
|||
banned_by_id: string|undefined; |
|||
ip: string|undefined; |
|||
timestamp: Date|undefined; |
|||
ban_utime: number = 0; |
|||
active: boolean|undefined; |
|||
unbanned_by_id: string = ""; |
|||
unbanned_timestamp: Date|undefined; |
|||
admin_info: any; |
|||
unbanned_admin_info: any; |
|||
|
|||
static createFakeBanObject(reason: string, id: number = Number.MAX_VALUE) { |
|||
const b = new Ban(); |
|||
b.id = id; |
|||
b.ban_reason = reason; |
|||
return b; |
|||
} |
|||
|
|||
unbannedAfterTime(): boolean { |
|||
return this.unbanned_by_id == "STEAM_0:0:0"; |
|||
} |
|||
|
|||
unbannedByModerator(): boolean { |
|||
return !this.unbannedAfterTime(); |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue