2021-09-25 21:33:59 +03:00
|
|
|
import moment from "moment-timezone";
|
|
|
|
import { Brackets, getRepository, Repository } from "typeorm";
|
|
|
|
import { Mute } from "./entities/Mute";
|
2021-10-17 20:12:42 +03:00
|
|
|
import { DAYS, DBDateFormat } from "../utils";
|
2021-09-25 21:33:59 +03:00
|
|
|
import { BaseRepository } from "./BaseRepository";
|
|
|
|
|
2021-10-17 20:12:42 +03:00
|
|
|
const OLD_EXPIRED_MUTE_THRESHOLD = 7 * DAYS;
|
|
|
|
|
2021-09-25 21:33:59 +03:00
|
|
|
export class Mutes extends BaseRepository {
|
|
|
|
private mutes: Repository<Mute>;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.mutes = getRepository(Mute);
|
|
|
|
}
|
|
|
|
|
|
|
|
async getSoonExpiringMutes(threshold: number): Promise<Mute[]> {
|
|
|
|
const thresholdDateStr = moment.utc().add(threshold, "ms").format(DBDateFormat);
|
|
|
|
return this.mutes
|
|
|
|
.createQueryBuilder("mutes")
|
|
|
|
.andWhere("expires_at IS NOT NULL")
|
|
|
|
.andWhere("expires_at <= :date", { date: thresholdDateStr })
|
|
|
|
.getMany();
|
|
|
|
}
|
2021-10-17 20:12:42 +03:00
|
|
|
|
|
|
|
async clearOldExpiredMutes(): Promise<void> {
|
|
|
|
const thresholdDateStr = moment.utc().subtract(OLD_EXPIRED_MUTE_THRESHOLD, "ms").format(DBDateFormat);
|
|
|
|
await this.mutes
|
|
|
|
.createQueryBuilder("mutes")
|
|
|
|
.andWhere("expires_at IS NOT NULL")
|
|
|
|
.andWhere("expires_at <= :date", { date: thresholdDateStr })
|
|
|
|
.delete()
|
|
|
|
.execute();
|
|
|
|
}
|
2021-09-25 21:33:59 +03:00
|
|
|
}
|