mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 15:00:00 +00:00
29 lines
785 B
TypeScript
29 lines
785 B
TypeScript
import { getRepository, Repository } from "typeorm";
|
|
import { BaseGuildRepository } from "./BaseGuildRepository";
|
|
import { StatValue } from "./entities/StatValue";
|
|
|
|
export class GuildStats extends BaseGuildRepository {
|
|
private stats: Repository<StatValue>;
|
|
|
|
constructor(guildId) {
|
|
super(guildId);
|
|
this.stats = getRepository(StatValue);
|
|
}
|
|
|
|
async saveValue(source: string, key: string, value: number): Promise<void> {
|
|
await this.stats.insert({
|
|
guild_id: this.guildId,
|
|
source,
|
|
key,
|
|
value,
|
|
});
|
|
}
|
|
|
|
async deleteOldValues(source: string, cutoff: string): Promise<void> {
|
|
await this.stats
|
|
.createQueryBuilder()
|
|
.where("source = :source", { source })
|
|
.andWhere("created_at < :cutoff", { cutoff })
|
|
.delete();
|
|
}
|
|
}
|