JaBa/helpers/birthdays.js

62 lines
1.9 KiB
JavaScript
Raw Normal View History

const { CronJob } = require("cron"),
{ EmbedBuilder } = require("discord.js");
2022-01-04 02:18:28 +05:00
module.exports.init = async function (client) {
new CronJob("0 5 * * *", async function () {
2022-01-04 02:18:28 +05:00
client.guilds.cache.forEach(async (guild) => {
const date = new Date(),
currentDay = date.getDate(),
currentMonth = date.getMonth(),
currentYear = date.getFullYear(),
guildData = await client.findOrCreateGuild({
id: guild.id
});
2022-01-04 02:18:28 +05:00
if (guildData.plugins.birthdays) {
const channel = client.channels.cache.get(guildData.plugins.birthdays);
if (channel) {
client.usersData
.find({ birthdate: { $gt: 1 } })
.then(async (users) => {
for (const user of users) {
const userDate = new Date(user.birthdate);
const day = userDate.getDate();
const month = userDate.getMonth();
const year = userDate.getFullYear();
const age = currentYear - year;
if (currentMonth === month && currentDay === day) {
const embed = new EmbedBuilder()
.setAuthor({
name: client.user.username,
iconURL: client.user.displayAvatarURL({
size: 512,
format: "png"
})
})
2022-01-04 02:18:28 +05:00
.setColor(client.config.embed.color)
.setFooter({
text: client.config.embed.footer
})
.addFields([
{
name: client.translate("economy/birthdate:HAPPY_BIRTHDAY"),
value: client.translate("economy/birthdate:HAPPY_BIRTHDAY_MESSAGE", {
name: user.username,
user: user.id,
age: `**${age}** ${client.getNoun(age, client.translate("misc:NOUNS:AGE:1"), client.translate("misc:NOUNS:AGE:2"), client.translate("misc:NOUNS:AGE:5"))}`
})
}
]);
const msg = await channel.send({
embeds: [embed]
});
2022-01-04 02:18:28 +05:00
await msg.react("🎉");
2022-01-13 00:26:23 +05:00
}
}
2022-01-04 02:18:28 +05:00
});
2022-01-13 00:26:23 +05:00
}
}
2022-01-04 02:18:28 +05:00
});
}, null, true, "Europe/Moscow");
};