1
0
Fork 0
cloudservices/src/functions/checkLock.ts

53 lines
2.1 KiB
TypeScript
Raw Normal View History

2019-10-26 13:07:05 -04:00
import uuid from 'uuid/v4';
import { Client } from '..';
import { RichEmbed } from '../class';
export default function checkLock(client: Client) {
2019-10-28 16:21:04 -04:00
setInterval(async () => {
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-26 13:07:05 -04:00
const mod = new client.db.Moderation({
username: account.username,
userID: account.userID,
logID: uuid(),
moderatorID: client.user.id,
reason: 'Auto',
type: 3,
date: new Date(),
});
await mod.save();
const embed = new RichEmbed();
2019-10-26 13:07:05 -04:00
embed.setTitle('Account Infraction | Unlock');
embed.setColor(3066993);
embed.addField('User', `${account.username} | <@${account.userID}>`, true);
embed.addField('Supervisor', 'SYSTEM', true);
embed.addField('Reason', 'Auto', true);
embed.setFooter(client.user.username, client.user.avatarURL);
embed.setTimestamp();
client.getDMChannel(account.userID).then((user) => {
// @ts-ignore
user.createMessage({ embed });
});
// @ts-ignore
client.createMessage('580950455581147146', { embed });
2019-10-29 14:20:51 -04:00
*/
2019-10-28 16:21:04 -04:00
client.signale.complete(`Unlocked account ${account.username} | Queue date at ${moderation.expiration.date.toLocaleString('en-us')}`);
}
});
} catch (error) {
await client.util.handleError(error);
}
2019-10-28 16:21:04 -04:00
}, 10000);
}