aboutsummaryrefslogtreecommitdiff
path: root/src/tasks.ts
blob: d728636253a11de875383d76e234b82d04881519 (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
import chalk from 'chalk';
import { DiscordAPIError } from 'discord.js';
import { Op } from 'sequelize';
import { BotClient } from './lib/extensions/BotClient';
import { Ban } from './lib/models';

export const BanTask = async (client: BotClient): Promise<void> => {
	const rows = await Ban.findAll({
		where: {
			[Op.and]: [
				{
					expires: {
						[Op.lt]: new Date() // Find all rows with an expiry date before now
					}
				}
			]
		}
	});
	client.logger.verbose(
		chalk.cyan(`Queried bans, found ${rows.length} expired bans.`)
	);
	for (const row of rows) {
		const guild = client.guilds.cache.get(row.guild);
		if (!guild) {
			await row.destroy();
			continue;
		}
		try {
			await guild.members.unban(
				row.user,
				`Unbanning user because tempban expired`
			);
		} catch (e) {
			if (e instanceof DiscordAPIError) {
				// Member not banned, ignore
			} else throw e;
		}
		await row.destroy();
		client.logger.verbose(chalk.cyan('Unbanned user'));
	}
};