5 changed files with 95 additions and 25 deletions
@ -1,19 +1,34 @@ |
|||||
export interface Ban { |
export class Ban { |
||||
id: number; |
id: number = 0; |
||||
steam_id: string; |
steam_id: string|undefined; |
||||
account_id: number; |
account_id: number|undefined; |
||||
player_name: string; |
player_name: string|undefined; |
||||
ban_length: number; |
ban_length: number=0; |
||||
ban_length_seconds: number; |
ban_length_seconds: number = 0; |
||||
ban_reason: string; |
ban_reason: string|undefined; |
||||
banned_by: string; |
banned_by: string|undefined; |
||||
banned_by_id: string; |
banned_by_id: string|undefined; |
||||
ip: string; |
ip: string|undefined; |
||||
timestamp: Date; |
timestamp: Date|undefined; |
||||
ban_utime: number; |
ban_utime: number = 0; |
||||
active: boolean; |
active: boolean|undefined; |
||||
unbanned_by_id: string; |
unbanned_by_id: string = ""; |
||||
unbanned_timestamp: Date; |
unbanned_timestamp: Date|undefined; |
||||
admin_info: any; |
admin_info: any; |
||||
unbanned_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