TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 1 | import { ActionRowBuilder, ButtonBuilder, ButtonStyle, CommandInteraction } from "discord.js"; |
TheCodedProf | f86ba09 | 2023-01-27 17:10:07 -0500 | [diff] [blame] | 2 | import type { SlashCommandSubcommandBuilder } from "discord.js"; |
pineafan | 813bdf4 | 2022-07-24 10:39:10 +0100 | [diff] [blame] | 3 | import EmojiEmbed from "../../utils/generateEmojiEmbed.js"; |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 4 | import client from "../../utils/client.js"; |
| 5 | import { LoadingEmbed } from "../../utils/defaults.js"; |
pineafan | 813bdf4 | 2022-07-24 10:39:10 +0100 | [diff] [blame] | 6 | |
| 7 | const command = (builder: SlashCommandSubcommandBuilder) => |
Skyler Grey | 11236ba | 2022-08-08 21:13:33 +0100 | [diff] [blame] | 8 | builder.setName("premium").setDescription("Information about Nucleus Premium"); |
pineafan | 813bdf4 | 2022-07-24 10:39:10 +0100 | [diff] [blame] | 9 | |
pineafan | bd02b4a | 2022-08-05 22:01:38 +0100 | [diff] [blame] | 10 | const callback = async (interaction: CommandInteraction): Promise<void> => { |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 11 | await interaction.reply({embeds: LoadingEmbed, ephemeral: true}) |
TheCodedProf | d0a166d | 2023-02-19 00:04:53 -0500 | [diff] [blame] | 12 | const member = (await interaction.client.guilds.fetch("684492926528651336")).members.cache.get(interaction.user.id) |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 13 | const firstDescription = "\n\nPremium allows your server to get access to extra features, for a fixed price per month.\nThis includes:\n" + |
| 14 | "- Attachment logs - Stores attachments so they can be viewed after a message is deleted.\n" + |
| 15 | "- Ticket Transcripts - Gives a link to view the history of a ticket after it has been closed.\n" |
| 16 | if(!member) { |
| 17 | interaction.editReply({ embeds: [ |
Skyler Grey | 75ea917 | 2022-08-06 10:22:23 +0100 | [diff] [blame] | 18 | new EmojiEmbed() |
| 19 | .setTitle("Premium") |
| 20 | .setDescription( |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 21 | `*You are not currently in the Clicks Server. To gain access to premium please join.*` + firstDescription |
Skyler Grey | 75ea917 | 2022-08-06 10:22:23 +0100 | [diff] [blame] | 22 | ) |
| 23 | .setEmoji("NUCLEUS.LOGO") |
| 24 | .setStatus("Danger") |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 25 | ], components: [new ActionRowBuilder<ButtonBuilder>().addComponents(new ButtonBuilder().setStyle(ButtonStyle.Link).setLabel("Join").setURL("https://discord.gg/bPaNnxe"))] }); |
| 26 | return; |
| 27 | } |
TheCodedProf | 633866f | 2023-02-03 17:06:00 -0500 | [diff] [blame] | 28 | const dbMember = await client.database.premium.fetchUser(interaction.user.id) |
| 29 | let premium = `You do not have premium! You can't activate premium on any servers.`; |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 30 | let count = 0; |
TheCodedProf | 633866f | 2023-02-03 17:06:00 -0500 | [diff] [blame] | 31 | const {level, appliesTo} = dbMember || {level: 0, appliesTo: []} |
| 32 | if (level === 99) { |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 33 | premium = `You have Infinite Premium! You have been gifted this by the developers as a thank you. You can give premium to any and all servers you are in.`; |
| 34 | count = 200; |
TheCodedProf | 633866f | 2023-02-03 17:06:00 -0500 | [diff] [blame] | 35 | } else if (level === 1) { |
| 36 | premium = `You have Premium tier 1! You can give premium to ${1 - appliesTo.length} more servers.`; |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 37 | count = 1; |
TheCodedProf | 633866f | 2023-02-03 17:06:00 -0500 | [diff] [blame] | 38 | } else if (level === 2) { |
| 39 | premium = `You have Premium tier 2! You can give premium to ${3 - appliesTo.length} more servers.`; |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 40 | count = 3; |
TheCodedProf | 633866f | 2023-02-03 17:06:00 -0500 | [diff] [blame] | 41 | } else if (level === 3) { |
| 42 | premium = `You have Premium Mod! You can give premium to ${3 - appliesTo.length} more servers, as well as automatically giving premium to all servers you have a "manage" permission in.` |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 43 | count = 3; |
| 44 | } |
TheCodedProf | fc420b7 | 2023-01-24 17:14:38 -0500 | [diff] [blame] | 45 | const hasPremium = await client.database.premium.hasPremium(interaction.guild!.id); |
| 46 | let premiumGuild = "" |
| 47 | if (hasPremium) { |
| 48 | premiumGuild = `\n\n**This server has premium!**` |
| 49 | } |
| 50 | |
| 51 | let closed = false; |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 52 | do { |
| 53 | interaction.editReply({ |
| 54 | embeds: [ |
| 55 | new EmojiEmbed() |
| 56 | .setTitle("Premium") |
| 57 | .setDescription( |
TheCodedProf | fc420b7 | 2023-01-24 17:14:38 -0500 | [diff] [blame] | 58 | premium + firstDescription + premiumGuild |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 59 | ) |
| 60 | .setEmoji("NUCLEUS.LOGO") |
| 61 | .setStatus("Danger") |
| 62 | ], |
| 63 | components: [ |
| 64 | new ActionRowBuilder<ButtonBuilder>() |
| 65 | .addComponents( |
| 66 | new ButtonBuilder() |
| 67 | .setStyle(ButtonStyle.Primary) |
| 68 | .setLabel("Activate Premium here") |
| 69 | .setCustomId("premiumActivate") |
TheCodedProf | fc420b7 | 2023-01-24 17:14:38 -0500 | [diff] [blame] | 70 | .setDisabled(count <= 0 && hasPremium) |
TheCodedProf | 267563a | 2023-01-21 17:00:57 -0500 | [diff] [blame] | 71 | ) |
| 72 | ] |
| 73 | }); |
| 74 | |
| 75 | const filter = (i: any) => i.customId === "premiumActivate" && i.user.id === interaction.user.id; |
TheCodedProf | fc420b7 | 2023-01-24 17:14:38 -0500 | [diff] [blame] | 76 | let i; |
| 77 | try { |
| 78 | i = await interaction.channel!.awaitMessageComponent({ filter, time: 60000 }); |
| 79 | } catch (e) { |
| 80 | return; |
| 81 | } |
PineaFan | b0d0c24 | 2023-02-05 10:59:45 +0000 | [diff] [blame] | 82 | i.deferUpdate(); |
| 83 | const guild = i.guild!; |
| 84 | if (count - appliesTo.length <= 0) { |
| 85 | interaction.editReply({ |
| 86 | embeds: [ |
| 87 | new EmojiEmbed() |
| 88 | .setTitle("Premium") |
| 89 | .setDescription( |
| 90 | `You have already activated premium on the maximum amount of servers!` + firstDescription |
| 91 | ) |
| 92 | .setEmoji("NUCLEUS.PREMIUMACTIVATE") |
| 93 | .setStatus("Danger") |
| 94 | ], |
| 95 | components: [] |
| 96 | }); |
| 97 | closed = true; |
| 98 | } else { |
| 99 | client.database.premium.addPremium(interaction.user.id, guild.id); |
| 100 | interaction.editReply({ |
| 101 | embeds: [ |
| 102 | new EmojiEmbed() |
| 103 | .setTitle("Premium") |
| 104 | .setDescription( |
| 105 | `You have activated premium on this server!` + firstDescription |
| 106 | ) |
| 107 | .setEmoji("NUCLEUS.LOGO") |
| 108 | .setStatus("Danger") |
| 109 | ], |
| 110 | components: [] |
| 111 | }); |
| 112 | closed = true; |
TheCodedProf | fc420b7 | 2023-01-24 17:14:38 -0500 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | } while (!closed); |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 116 | }; |
pineafan | 813bdf4 | 2022-07-24 10:39:10 +0100 | [diff] [blame] | 117 | |
pineafan | 813bdf4 | 2022-07-24 10:39:10 +0100 | [diff] [blame] | 118 | export { command }; |
| 119 | export { callback }; |