2019-10-26 13:07:05 -04:00
|
|
|
import { Client } from '..';
|
2019-10-26 00:01:49 -04:00
|
|
|
|
2020-01-03 10:55:23 -05:00
|
|
|
let interval: NodeJS.Timeout;
|
|
|
|
|
|
|
|
export default function checkLock(client: Client) {
|
|
|
|
interval = setInterval(async () => {
|
2019-10-26 00:01:49 -04:00
|
|
|
try {
|
|
|
|
const moderations = await client.db.Moderation.find();
|
|
|
|
moderations.forEach(async (moderation) => {
|
|
|
|
if (!moderation.expiration) return;
|
|
|
|
if (moderation.expiration.processed) return;
|
|
|
|
if (new Date() > moderation.expiration.date) {
|
|
|
|
const account = await client.db.Account.findOne({ username: moderation.username });
|
|
|
|
if (!account) return;
|
|
|
|
await client.util.exec(`unlock ${account.username}`);
|
2019-10-28 16:21:04 -04:00
|
|
|
await moderation.updateOne({ 'expiration.processed': true });
|
|
|
|
await account.updateOne({ locked: false });
|
2019-10-29 14:20:51 -04:00
|
|
|
await client.util.createModerationLog(account.userID, client.user, 3, 'Auto');
|
2019-10-28 16:21:04 -04:00
|
|
|
client.signale.complete(`Unlocked account ${account.username} | Queue date at ${moderation.expiration.date.toLocaleString('en-us')}`);
|
2019-10-26 00:01:49 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
await client.util.handleError(error);
|
|
|
|
}
|
2019-10-28 16:21:04 -04:00
|
|
|
}, 10000);
|
2020-01-03 10:55:23 -05:00
|
|
|
return interval;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function clear() {
|
|
|
|
clearInterval(interval);
|
2019-10-26 00:01:49 -04:00
|
|
|
}
|