aboutsummaryrefslogtreecommitdiff
path: root/src/tasks/updateCache.ts
blob: 5babb5e859648c8a886e0f8f005bacc1056e32e7 (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
import { BushClient, BushTask, Global } from '../lib';
import * as config from './../config/options';

export class UpdateCacheTask extends BushTask {
	public constructor() {
		super('updateCache', {
			delay: 300_000, // 5 minutes
			runOnStart: false // done in preinit task
		});
	}
	async exec(): Promise<void> {
		await this.updateCache(this.client);
		await this.client.logger.verbose(`UpdateCache`, `Updated cache.`);
	}

	async init(client: BushClient): Promise<void> {
		await this.updateCache(client);
	}

	async updateCache(client: BushClient): Promise<void> {
		const environment = config.dev ? 'development' : 'production';
		const row =
			(await Global.findByPk(environment)) ||
			(await Global.create({
				environment,
				superUsers: [],
				blacklistedChannels: [],
				blacklistedGuilds: [],
				blacklistedUsers: [],
				disabledCommands: []
			}));

		for (const option in row) {
			if (client.cache[option]) this.client.cache[option] = row[option];
		}
	}
}