JaBa/helpers/birthdays.js

45 lines
1.4 KiB
JavaScript
Raw Normal View History

2021-12-30 00:46:10 +05:00
const CronJob = require("cron").CronJob,
Discord = require("discord.js");
async function init(client) {
2021-12-30 01:11:19 +05:00
new CronJob("0 12 23 * * *", async function () {
2021-12-30 00:46:10 +05:00
client.guilds.cache.forEach(async (guild) => {
const date = new Date();
const currentMonth = date.getMonth() + 1;
const currentDay = date.getDate();
const guildData = await client.findOrCreateGuild({
id: guild.id
});
if (guildData.plugins.birthdays) {
const channel = client.channels.cache.get(guildData.plugins.birthdays);
if (channel) {
client.usersData
.find({ birthdate: { $gt: 1 } })
2021-12-30 01:05:33 +05:00
.then(async (users) => {
2021-12-30 00:46:10 +05:00
for (const user of users) {
2021-12-30 01:10:49 +05:00
console.log(user.birthdate)
2021-12-30 00:46:10 +05:00
const month = user.birthdate.getUTCMonth() + 1;
const day = user.birthdate.getUTCDate();
if (currentMonth === month && currentDay === day) {
const embed = new Discord.MessageEmbed()
.setAuthor(message.guild.name, message.guild.iconURL())
.setColor(client.config.embed.color)
.setFooter(client.config.embed.footer)
.addField(message.translate("economy/birthdate:HAPPY_BIRTHDAY"), message.translate("economy/birthdate:HAPPY_BIRTDAY_MESSAGE", {
user: user.id
}));
const msg = await channel.send(embed);
await msg.react("🎉");
};
};
});
};
};
});
}, null, true, "Europe/Moscow");
};
module.exports = {
init
};