mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
98 lines
No EOL
3.3 KiB
JavaScript
98 lines
No EOL
3.3 KiB
JavaScript
const { SlashCommandBuilder } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Birthdate extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/JaBa")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("birthdate")
|
|
.setDescription(client.translate("economy/birthdate:DESCRIPTION"))
|
|
.setDescriptionLocalizations({ "uk": client.translate("economy/birthdate:DESCRIPTION", null, "uk-UA") })
|
|
.setDMPermission(false)
|
|
.addIntegerOption(option => option.setName("day")
|
|
.setDescription(client.translate("economy/birthdate:DAY"))
|
|
.setDescriptionLocalizations({ "uk": client.translate("economy/birthdate:DAY", null, "uk-UA") })
|
|
.setRequired(true))
|
|
.addIntegerOption(option => option.setName("month")
|
|
.setDescription(client.translate("economy/birthdate:MONTH"))
|
|
.setDescriptionLocalizations({ "uk": client.translate("economy/birthdate:MONTH", null, "uk-UA") })
|
|
.setRequired(true)
|
|
.setChoices(
|
|
{ name: "Январь", value: 1 },
|
|
{ name: "Февраль", value: 2 },
|
|
{ name: "Март", value: 3 },
|
|
{ name: "Апрель", value: 4 },
|
|
{ name: "Май", value: 5 },
|
|
{ name: "Июнь", value: 6 },
|
|
{ name: "Июль", value: 7 },
|
|
{ name: "Август", value: 8 },
|
|
{ name: "Сентябрь", value: 9 },
|
|
{ name: "Октябрь", value: 10 },
|
|
{ name: "Ноябрь", value: 11 },
|
|
{ name: "Декабрь", value: 12 },
|
|
))
|
|
.addIntegerOption(option => option.setName("year")
|
|
.setDescription(client.translate("economy/birthdate:YEAR"))
|
|
.setDescriptionLocalizations({ "uk": client.translate("economy/birthdate:YEAR", null, "uk-UA") })
|
|
.setRequired(true)
|
|
.setAutocomplete(true)),
|
|
aliases: [],
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
*/
|
|
async onLoad() {
|
|
//...
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
* @param {Object} data
|
|
*/
|
|
async execute(client, interaction, data) {
|
|
const day = interaction.options.getInteger("day"),
|
|
month = interaction.options.getInteger("month"),
|
|
year = interaction.options.getInteger("year");
|
|
|
|
const d = new Date(year, month - 1, day);
|
|
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");
|
|
if (d.getTime() < (Date.now() - 2.523e+12)) return interaction.error("economy/birthdate:DATE_TOO_LOW");
|
|
|
|
data.userData.birthdate = d;
|
|
await data.userData.save();
|
|
|
|
interaction.success("economy/birthdate:SUCCESS", {
|
|
date: client.printDate(d),
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").AutocompleteInteraction} interaction
|
|
* @returns
|
|
*/
|
|
async autocompleteRun(client, interaction) {
|
|
const int = interaction.options.getInteger("year"),
|
|
results = Array.from({ length: 2023 }, (_, k) => k + 1).filter(i => i.toString().includes(int));
|
|
|
|
return interaction.respond(
|
|
results.slice(0, 25).map(i => ({
|
|
name: i,
|
|
value: i,
|
|
}),
|
|
));
|
|
}
|
|
}
|
|
|
|
module.exports = Birthdate; |