diff options
author | afn <hey@afn.lol> | 2022-11-13 17:34:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-13 23:34:10 +0100 |
commit | 4642b54260a2258d8d0925dcfb5c6934fcf10835 (patch) | |
tree | 14d8673b67148f0695f400bfa6d35e89fd98f57c /src/plugins | |
parent | 15b257a7b0b03a288cd35d8c9f3009d8dfb78151 (diff) | |
download | Vencord-4642b54260a2258d8d0925dcfb5c6934fcf10835.tar.gz Vencord-4642b54260a2258d8d0925dcfb5c6934fcf10835.tar.bz2 Vencord-4642b54260a2258d8d0925dcfb5c6934fcf10835.zip |
feat(plugin): FriendInvites (#208)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/friendInvites.ts | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/plugins/friendInvites.ts b/src/plugins/friendInvites.ts new file mode 100644 index 0000000..24ca50a --- /dev/null +++ b/src/plugins/friendInvites.ts @@ -0,0 +1,78 @@ +/* + * Vencord, a modification for Discord's desktop app + * Copyright (c) 2022 Vendicated and contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. +*/ + +import { ApplicationCommandInputType, sendBotMessage } from "../api/Commands"; +import { Devs } from "../utils/constants"; +import definePlugin from "../utils/types"; +import { findByProps } from "../webpack"; + +export default definePlugin({ + name: "FriendInvites", + description: "Generate and manage friend invite links.", + authors: [Devs.afn], + dependencies: ["CommandsAPI"], + commands: [ + { + name: "create friend invite", + description: "Generates a friend invite link.", + inputType: ApplicationCommandInputType.BOT, + execute: async (_, ctx) => { + const friendInvites = findByProps("createFriendInvite"); + const createInvite = await friendInvites.createFriendInvite(); + + return void sendBotMessage(ctx.channel.id, { + content: ` + discord.gg/${createInvite.code} + Expires: <t:${new Date(createInvite.expires_at).getTime() / 1000}:R> + Max uses: \`${createInvite.max_uses}\` + `.trim().replace(/\s+/g, " ") + }); + }, + }, + { + name: "view friend invites", + description: "View a list of all generated friend invites.", + inputType: ApplicationCommandInputType.BOT, + execute: async (_, ctx) => { + const friendInvites = findByProps("createFriendInvite"); + const invites = await friendInvites.getAllFriendInvites(); + const friendInviteList = invites.map(i => + `_discord.gg/${i.code}_ + Expires: <t:${new Date(i.expires_at).getTime() / 1000}:R> + Times used: \`${i.uses}/${i.max_uses}\``.trim().replace(/\s+/g, " ") + ); + + return void sendBotMessage(ctx.channel.id, { + content: friendInviteList.join("\n\n") || "You have no active friend invites!" + }); + }, + }, + { + name: "revoke friend invites", + description: "Revokes ALL generated friend invite links.", + inputType: ApplicationCommandInputType.BOT, + execute: async (_, ctx) => { + await findByProps("createFriendInvite").revokeFriendInvites(); + + return void sendBotMessage(ctx.channel.id, { + content: "All friend links have been revoked." + }); + }, + }, + ] +}); |