2022-08-09 23:48:33 +05:00
|
|
|
const { SlashCommandBuilder } = require("discord.js");
|
|
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
|
|
|
|
class Birthdate extends BaseCommand {
|
|
|
|
/**
|
|
|
|
*
|
2023-11-05 16:03:23 +05:00
|
|
|
* @param {import("../base/Client")} client
|
2022-08-09 23:48:33 +05:00
|
|
|
*/
|
|
|
|
constructor(client) {
|
|
|
|
super({
|
|
|
|
command: new SlashCommandBuilder()
|
|
|
|
.setName("birthdate")
|
|
|
|
.setDescription(client.translate("economy/birthdate:DESCRIPTION"))
|
2023-06-15 19:46:27 +05:00
|
|
|
.setDescriptionLocalizations({
|
2023-07-05 00:58:06 +05:00
|
|
|
uk: client.translate("economy/birthdate:DESCRIPTION", null, "uk-UA"),
|
|
|
|
ru: client.translate("economy/birthdate:DESCRIPTION", null, "ru-RU"),
|
2023-06-15 19:46:27 +05:00
|
|
|
})
|
2023-08-03 13:02:48 +05:00
|
|
|
.setDMPermission(true)
|
2023-07-05 00:58:06 +05:00
|
|
|
.addIntegerOption(option =>
|
|
|
|
option
|
|
|
|
.setName("day")
|
|
|
|
.setDescription(client.translate("economy/birthdate:DAY"))
|
|
|
|
.setDescriptionLocalizations({
|
|
|
|
uk: client.translate("economy/birthdate:DAY", null, "uk-UA"),
|
|
|
|
ru: client.translate("economy/birthdate:DAY", null, "ru-RU"),
|
|
|
|
})
|
|
|
|
.setRequired(true),
|
|
|
|
)
|
|
|
|
.addIntegerOption(option =>
|
|
|
|
option
|
|
|
|
.setName("month")
|
|
|
|
.setDescription(client.translate("economy/birthdate:MONTH"))
|
|
|
|
.setDescriptionLocalizations({
|
|
|
|
uk: client.translate("economy/birthdate:MONTH", null, "uk-UA"),
|
|
|
|
ru: client.translate("economy/birthdate:MONTH", null, "ru-RU"),
|
|
|
|
})
|
|
|
|
.setRequired(true)
|
|
|
|
.setChoices(
|
|
|
|
{ name: client.translate("economy/birthdate:JANUARY"), value: 1 },
|
|
|
|
{ name: client.translate("economy/birthdate:FEBRUARY"), value: 2 },
|
|
|
|
{ name: client.translate("economy/birthdate:MARCH"), value: 3 },
|
|
|
|
{ name: client.translate("economy/birthdate:APRIL"), value: 4 },
|
|
|
|
{ name: client.translate("economy/birthdate:MAY"), value: 5 },
|
|
|
|
{ name: client.translate("economy/birthdate:JUNE"), value: 6 },
|
|
|
|
{ name: client.translate("economy/birthdate:JULY"), value: 7 },
|
|
|
|
{ name: client.translate("economy/birthdate:AUGUST"), value: 8 },
|
|
|
|
{ name: client.translate("economy/birthdate:SEPTEMBER"), value: 9 },
|
|
|
|
{ name: client.translate("economy/birthdate:OCTOBER"), value: 10 },
|
|
|
|
{ name: client.translate("economy/birthdate:NOVEMBER"), value: 11 },
|
|
|
|
{ name: client.translate("economy/birthdate:DECEMBER"), value: 12 },
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.addIntegerOption(option =>
|
|
|
|
option
|
|
|
|
.setName("year")
|
|
|
|
.setDescription(client.translate("economy/birthdate:YEAR"))
|
|
|
|
.setDescriptionLocalizations({
|
|
|
|
uk: client.translate("economy/birthdate:YEAR", null, "uk-UA"),
|
|
|
|
ru: client.translate("economy/birthdate:YEAR", null, "ru-RU"),
|
|
|
|
})
|
|
|
|
.setRequired(true),
|
|
|
|
),
|
2022-08-09 23:48:33 +05:00
|
|
|
aliases: [],
|
|
|
|
dirname: __dirname,
|
2022-12-15 21:02:38 +05:00
|
|
|
ownerOnly: false,
|
2022-08-09 23:48:33 +05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
2023-11-05 16:03:23 +05:00
|
|
|
* @param {import("../../base/Client")} client
|
2022-08-09 23:48:33 +05:00
|
|
|
*/
|
|
|
|
async onLoad() {
|
|
|
|
//...
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
2023-11-05 16:03:23 +05:00
|
|
|
* @param {import("../../base/Client")} client
|
2022-08-09 23:48:33 +05:00
|
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
|
|
* @param {Object} data
|
|
|
|
*/
|
|
|
|
async execute(client, interaction, data) {
|
2023-01-09 01:39:13 +05:00
|
|
|
const day = interaction.options.getInteger("day"),
|
|
|
|
month = interaction.options.getInteger("month"),
|
2023-06-15 19:46:27 +05:00
|
|
|
year = interaction.options.getInteger("year"),
|
|
|
|
d = new Date(year, month - 1, day);
|
2022-08-09 23:48:33 +05:00
|
|
|
|
|
|
|
if (!(day == d.getDate() && month - 1 == d.getMonth() && year == d.getFullYear())) return interaction.error("economy/birthdate:INVALID_DATE");
|
|
|
|
if (d.getTime() > Date.now()) return interaction.error("economy/birthdate:DATE_TOO_HIGH");
|
2023-07-05 00:58:06 +05:00
|
|
|
if (d.getTime() < Date.now() - 2.523e12) return interaction.error("economy/birthdate:DATE_TOO_LOW");
|
2022-08-09 23:48:33 +05:00
|
|
|
|
|
|
|
data.userData.birthdate = d;
|
2023-09-25 21:42:43 +05:00
|
|
|
|
2023-10-31 22:24:40 +05:00
|
|
|
data.userData.markModified("birthdate");
|
2022-08-09 23:48:33 +05:00
|
|
|
await data.userData.save();
|
|
|
|
|
|
|
|
interaction.success("economy/birthdate:SUCCESS", {
|
2023-12-14 18:58:19 +05:00
|
|
|
date: client.functions.printDate(client, d, "Do MMMM YYYY", interaction.getLocale()),
|
2022-08-09 23:48:33 +05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-05 00:58:06 +05:00
|
|
|
module.exports = Birthdate;
|