summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-05-18 01:27:00 -0700
committerFuwn <[email protected]>2022-05-18 01:27:00 -0700
commit479ce70c6990a41b297b7c025b101ac1e2b9c113 (patch)
tree6dcb99e7b04d252709458d5918c9c5f336225e70
parentfeat(mod): more instructions for setup (diff)
downloadmacy-479ce70c6990a41b297b7c025b101ac1e2b9c113.tar.xz
macy-479ce70c6990a41b297b7c025b101ac1e2b9c113.zip
refactor: reimplement
-rw-r--r--mod.ts184
-rw-r--r--old/deps.ts (renamed from deps.ts)0
-rw-r--r--old/mod.ts205
3 files changed, 209 insertions, 180 deletions
diff --git a/mod.ts b/mod.ts
index d677d71..b25d661 100644
--- a/mod.ts
+++ b/mod.ts
@@ -1,193 +1,17 @@
-// This file is part of Macy <https://github.com/Fuwn/macy>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
-//
-// All Rights Reserved.
-//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
-// SPDX-License-Identifier: UNLICENSED
-
-// import { config } from "./deps.ts";
-import { deploy } from "./deps.ts";
-import {
- APPROVED_ROLE,
- BREAKOUT_ROOM_EIGHT_ROLE,
- CLASS_MEMBERS,
- FUWN_ID,
- LOBBY_CHANNEL,
-} from "./config.ts";
-
-const verificationQueue = new Map<string, string>();
+import * as deploy from "https://deno.land/x/[email protected]/deploy.ts";
+import { FUWN_ID, LOBBY_CHANNEL } from "./config.ts";
deploy.init({ env: true });
-// deploy.init({ token: config().TOKEN, publicKey: config().PUBLIC_KEY });
-if ((await deploy.commands.all()).size !== 4) {
+if ((await deploy.commands.all()).size) {
deploy.commands.bulkEdit([
{
- name: "verify",
- description: "Add your account into the verification queue.",
- options: [
- {
- name: "name",
- description: "Your full name as shown in Zoom.",
- required: true,
- type: deploy.ApplicationCommandOptionType.STRING,
- },
- ],
- },
- {
- name: "approve",
- description: "Approve an account in the verification queue.",
- options: [
- {
- name: "name",
- description:
- "A users full name as shown in Zoom. If not specified, all " +
- "queued verifees will be approved.",
- required: false,
- type: deploy.ApplicationCommandOptionType.STRING,
- },
- ],
- },
- {
- name: "queue",
- description: "View the verification queue.",
- },
- {
name: "setup",
- description: "Setup the informational verification message in the " +
- "lobby channel.",
+ description: "Setup the informational message in the lobby channel.",
},
]);
}
-deploy.client.client?.setPresence({
- activity: {
- name: "your work",
- type: "WATCHING",
- },
-});
-
-deploy.handle("verify", async (d: deploy.ApplicationCommandInteraction) => {
- const member = d.member;
- const name = d.option<string>("name");
-
- if (member === null) {
- d.respond({
- content: "I cannot obtain your ID, please try again.",
- ephemeral: true,
- });
-
- return;
- }
-
- if ((await member?.roles.get(APPROVED_ROLE)) !== undefined) {
- d.respond({
- content: "You are already verified!",
- ephemeral: true,
- });
-
- return;
- }
-
- verificationQueue.forEach((verificationName, id) => {
- if (id === member?.id || verificationName === name) {
- d.respond({
- content: "You are already in the verification queue!",
- ephemeral: true,
- });
-
- return;
- }
- });
-
- if (
- Deno.env.get("CLASS")?.toLowerCase() === "true" ||
- Deno.env.get("CLASS") === "1"
- ) {
- if (!CLASS_MEMBERS.includes(name)) {
- d.respond({
- content: "You are not a class member!",
- ephemeral: true,
- });
-
- return;
- }
- }
-
- (await d.guild?.members.fetchList())?.forEach((member) => {
- if (member.nick === name) {
- d.respond({
- content: "Someone with that exact name is already verified! If you " +
- `think this is an error, DM <@${FUWN_ID}>.`,
- ephemeral: true,
- });
-
- return;
- }
- });
-
- verificationQueue.set(name, member!.id);
-
- d.respond({
- content:
- `Hello, ${name}! You have been added into the verification queue and will be ` +
- "verified shortly.",
- ephemeral: true,
- });
-});
-
-deploy.handle("approve", async (d: deploy.ApplicationCommandInteraction) => {
- const name = d.option<string | undefined>("name");
-
- if ((await d.member?.roles.get(BREAKOUT_ROOM_EIGHT_ROLE)) === undefined) {
- d.respond({
- content: "You do not have sufficient permissions to verify this user!",
- ephemeral: true,
- });
-
- return;
- }
-
- if (name === undefined) {
- verificationQueue.forEach((name, id) => {
- console.log(`${name} (${id})`);
- });
- d.reply("All users within the verification queue have been approved!");
- } else {
- const member = verificationQueue.get(name);
-
- if (member === undefined) {
- d.reply(`${name} is not in the verification queue.`);
- } else {
- verificationQueue.delete(name);
- (await d.guild!.members.get(member))?.roles.add(APPROVED_ROLE);
- (await d.guild!.members.get(member))?.setNickname(name);
- d.reply(`${name} has been approved!`);
- }
- }
-});
-
-deploy.handle("queue", (d: deploy.ApplicationCommandInteraction) => {
- if (verificationQueue.size === 0) {
- d.reply("There are no users in the verification queue.");
-
- return;
- }
-
- let verificationQueueString = "Map { ";
- let i = 1;
-
- verificationQueue.forEach((name, id) => {
- verificationQueueString += `\"${name}\" => \"${id}\" ${
- i == verificationQueue.size ? "" : ", "
- }`;
- i += 1;
- });
-
- d.reply(verificationQueueString + "}");
-});
-
deploy.handle("setup", (_: deploy.ApplicationCommandInteraction) => {
deploy.client.client?.channels.sendMessage(
LOBBY_CHANNEL,
diff --git a/deps.ts b/old/deps.ts
index f3c2ba6..f3c2ba6 100644
--- a/deps.ts
+++ b/old/deps.ts
diff --git a/old/mod.ts b/old/mod.ts
new file mode 100644
index 0000000..d677d71
--- /dev/null
+++ b/old/mod.ts
@@ -0,0 +1,205 @@
+// This file is part of Macy <https://github.com/Fuwn/macy>.
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+//
+// All Rights Reserved.
+//
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// SPDX-License-Identifier: UNLICENSED
+
+// import { config } from "./deps.ts";
+import { deploy } from "./deps.ts";
+import {
+ APPROVED_ROLE,
+ BREAKOUT_ROOM_EIGHT_ROLE,
+ CLASS_MEMBERS,
+ FUWN_ID,
+ LOBBY_CHANNEL,
+} from "./config.ts";
+
+const verificationQueue = new Map<string, string>();
+
+deploy.init({ env: true });
+// deploy.init({ token: config().TOKEN, publicKey: config().PUBLIC_KEY });
+
+if ((await deploy.commands.all()).size !== 4) {
+ deploy.commands.bulkEdit([
+ {
+ name: "verify",
+ description: "Add your account into the verification queue.",
+ options: [
+ {
+ name: "name",
+ description: "Your full name as shown in Zoom.",
+ required: true,
+ type: deploy.ApplicationCommandOptionType.STRING,
+ },
+ ],
+ },
+ {
+ name: "approve",
+ description: "Approve an account in the verification queue.",
+ options: [
+ {
+ name: "name",
+ description:
+ "A users full name as shown in Zoom. If not specified, all " +
+ "queued verifees will be approved.",
+ required: false,
+ type: deploy.ApplicationCommandOptionType.STRING,
+ },
+ ],
+ },
+ {
+ name: "queue",
+ description: "View the verification queue.",
+ },
+ {
+ name: "setup",
+ description: "Setup the informational verification message in the " +
+ "lobby channel.",
+ },
+ ]);
+}
+
+deploy.client.client?.setPresence({
+ activity: {
+ name: "your work",
+ type: "WATCHING",
+ },
+});
+
+deploy.handle("verify", async (d: deploy.ApplicationCommandInteraction) => {
+ const member = d.member;
+ const name = d.option<string>("name");
+
+ if (member === null) {
+ d.respond({
+ content: "I cannot obtain your ID, please try again.",
+ ephemeral: true,
+ });
+
+ return;
+ }
+
+ if ((await member?.roles.get(APPROVED_ROLE)) !== undefined) {
+ d.respond({
+ content: "You are already verified!",
+ ephemeral: true,
+ });
+
+ return;
+ }
+
+ verificationQueue.forEach((verificationName, id) => {
+ if (id === member?.id || verificationName === name) {
+ d.respond({
+ content: "You are already in the verification queue!",
+ ephemeral: true,
+ });
+
+ return;
+ }
+ });
+
+ if (
+ Deno.env.get("CLASS")?.toLowerCase() === "true" ||
+ Deno.env.get("CLASS") === "1"
+ ) {
+ if (!CLASS_MEMBERS.includes(name)) {
+ d.respond({
+ content: "You are not a class member!",
+ ephemeral: true,
+ });
+
+ return;
+ }
+ }
+
+ (await d.guild?.members.fetchList())?.forEach((member) => {
+ if (member.nick === name) {
+ d.respond({
+ content: "Someone with that exact name is already verified! If you " +
+ `think this is an error, DM <@${FUWN_ID}>.`,
+ ephemeral: true,
+ });
+
+ return;
+ }
+ });
+
+ verificationQueue.set(name, member!.id);
+
+ d.respond({
+ content:
+ `Hello, ${name}! You have been added into the verification queue and will be ` +
+ "verified shortly.",
+ ephemeral: true,
+ });
+});
+
+deploy.handle("approve", async (d: deploy.ApplicationCommandInteraction) => {
+ const name = d.option<string | undefined>("name");
+
+ if ((await d.member?.roles.get(BREAKOUT_ROOM_EIGHT_ROLE)) === undefined) {
+ d.respond({
+ content: "You do not have sufficient permissions to verify this user!",
+ ephemeral: true,
+ });
+
+ return;
+ }
+
+ if (name === undefined) {
+ verificationQueue.forEach((name, id) => {
+ console.log(`${name} (${id})`);
+ });
+ d.reply("All users within the verification queue have been approved!");
+ } else {
+ const member = verificationQueue.get(name);
+
+ if (member === undefined) {
+ d.reply(`${name} is not in the verification queue.`);
+ } else {
+ verificationQueue.delete(name);
+ (await d.guild!.members.get(member))?.roles.add(APPROVED_ROLE);
+ (await d.guild!.members.get(member))?.setNickname(name);
+ d.reply(`${name} has been approved!`);
+ }
+ }
+});
+
+deploy.handle("queue", (d: deploy.ApplicationCommandInteraction) => {
+ if (verificationQueue.size === 0) {
+ d.reply("There are no users in the verification queue.");
+
+ return;
+ }
+
+ let verificationQueueString = "Map { ";
+ let i = 1;
+
+ verificationQueue.forEach((name, id) => {
+ verificationQueueString += `\"${name}\" => \"${id}\" ${
+ i == verificationQueue.size ? "" : ", "
+ }`;
+ i += 1;
+ });
+
+ d.reply(verificationQueueString + "}");
+});
+
+deploy.handle("setup", (_: deploy.ApplicationCommandInteraction) => {
+ deploy.client.client?.channels.sendMessage(
+ LOBBY_CHANNEL,
+ "To access the rest of the server, send a message structured like this: " +
+ "`/verify [name]`, with `name` being your full name as shown in Zoom." +
+ "\n\nAn example of a valid verification request looks like this: " +
+ "`/verify Zoltan Szabatin`.\n\nIf you are unable to verify yourself; " +
+ "first, check if your name is recognized as a class member using the " +
+ "`/check [name]` command, with `name` being your full name as show in " +
+ "Zoom. An example of a valid check command looks like: " +
+ "`/check Zoltan Szabatin`.\n\nIf you are unable to verify yourself and " +
+ "your name is not recognized as a class member, you should then DM " +
+ `<@${FUWN_ID}>.`,
+ );
+});