JaBa/helpers/birthdays.js

67 lines
2.1 KiB
JavaScript
Raw Normal View History

const { CronJob } = require("cron"),
{ EmbedBuilder } = require("discord.js");
2022-01-04 02:18:28 +05:00
2022-08-30 14:26:56 +05:00
/**
*
* @param {import("../base/JaBa")} client
*/
module.exports.init = async function (client) {
2023-10-15 15:05:10 +05:00
const cronjob = new CronJob("0 5 * * *", async function () {
client.guilds.cache.forEach(async guild => {
2023-10-15 15:05:10 +05:00
const guildData = await client.findOrCreateGuild(guild.id);
2022-01-04 02:18:28 +05:00
if (guildData.plugins.birthdays) {
2023-10-15 15:05:10 +05:00
const channel = client.channels.cache.get(guildData.plugins.birthdays) || await client.channels.fetch(guildData.plugins.birthdays),
2023-10-10 20:44:42 +05:00
date = new Date(),
currentDay = date.getDate(),
currentMonth = date.getMonth(),
currentYear = date.getFullYear();
2022-01-04 02:18:28 +05:00
if (channel) {
2023-07-05 00:58:06 +05:00
client.usersData.find({ birthdate: { $gt: 1 } }).then(async users => {
for (const user of users) {
2023-10-10 20:44:42 +05:00
if (!guild.members.cache.find(m => m.id === user.id)) return;
const userDate = new Date(user.birthdate),
day = userDate.getDate(),
month = userDate.getMonth(),
year = userDate.getFullYear(),
age = currentYear - year;
2022-01-04 02:18:28 +05:00
2023-10-10 20:44:42 +05:00
if (currentMonth === month && currentDay === day) {
const embed = new EmbedBuilder()
.setAuthor({
name: client.user.getUsername(),
iconURL: client.user.displayAvatarURL(),
})
.setColor(client.config.embed.color)
.setFooter(client.config.embed.footer)
.addFields([
{
name: client.translate("economy/birthdate:HAPPY_BIRTHDAY", null, guildData.language),
value: client.translate("economy/birthdate:HAPPY_BIRTHDAY_MESSAGE", {
name: user.username,
user: user.id,
age: `**${age}** ${client.functions.getNoun(age, client.translate("misc:NOUNS:AGE:1", null, guildData.language), client.translate("misc:NOUNS:AGE:2", null, guildData.language), client.translate("misc:NOUNS:AGE:5", null, guildData.language))}`,
}, guildData.language),
},
]);
2023-10-10 20:44:42 +05:00
const msg = await channel.send({
embeds: [embed],
});
await msg.react("🎉");
2022-01-13 00:26:23 +05:00
}
2023-07-05 00:58:06 +05:00
}
});
2022-01-13 00:26:23 +05:00
}
}
2022-01-04 02:18:28 +05:00
});
2023-07-05 00:58:06 +05:00
},
null,
true,
);
2023-10-15 15:05:10 +05:00
cronjob.start();
2023-07-05 00:58:06 +05:00
};