mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-21 12:44:58 +05:00
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
/**
|
|
*
|
|
* @param {import("../base/Client")} client
|
|
*/
|
|
async function checkReminds(client) {
|
|
client.usersData.find({ reminds: { $gt: [] } }).then(users => {
|
|
for (const user of users) {
|
|
if (!client.users.cache.has(user.id)) client.users.fetch(user.id);
|
|
|
|
client.databaseCache.usersReminds.set(user.id, user);
|
|
}
|
|
});
|
|
|
|
client.databaseCache.usersReminds.forEach(async user => {
|
|
const cachedUser = client.users.cache.get(user.id);
|
|
|
|
if (cachedUser) {
|
|
const dateNow = Math.floor(Date.now() / 1000),
|
|
reminds = user.reminds,
|
|
mustSent = reminds.filter(r => r.sendAt < dateNow);
|
|
|
|
if (mustSent.length > 0) {
|
|
mustSent.forEach(r => {
|
|
const embed = client.embed({
|
|
author: client.translate("general/remindme:EMBED_TITLE"),
|
|
fields: [
|
|
{
|
|
name: client.translate("general/remindme:EMBED_CREATED"),
|
|
value: `<t:${r.createdAt}:f>`,
|
|
inline: true,
|
|
},
|
|
{
|
|
name: client.translate("general/remindme:EMBED_TIME"),
|
|
value: `<t:${r.sendAt}:f>`,
|
|
inline: true,
|
|
},
|
|
{
|
|
name: client.translate("common:MESSAGE"),
|
|
value: r.message,
|
|
},
|
|
],
|
|
});
|
|
|
|
cachedUser.send({
|
|
embeds: [embed],
|
|
});
|
|
});
|
|
|
|
user.reminds = user.reminds.filter(r => r.sendAt >= dateNow);
|
|
|
|
await user.save();
|
|
|
|
if (user.reminds.length === 0) client.databaseCache.usersReminds.delete(user.id);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports.init = async client => setInterval(async () => await checkReminds(client), 1000);
|
|
module.exports.run = async client => await checkReminds(client);
|