hack-club-eligiblity/index.ts

131 lines
5.4 KiB
TypeScript
Raw Normal View History

import type { UsersInfoResponse } from "@slack/web-api";
2024-09-03 23:12:02 +00:00
const { App } = (await import("@slack/bolt"));
2024-09-03 23:12:02 +00:00
import "dotenv/config";
const app = new App({
token: process.env.SLACK_BOT_TOKEN,
signingSecret: process.env.SLACK_SIGNING_SECRET,
});
const whitelist: string[] = (() => {
try {
return require('./whitelist.json')
} catch (e) {
return []
}
})();
function checkUserOk(user: UsersInfoResponse['user']) {
if (whitelist.includes(user!.id!)) return true
return user!.is_admin || user!.is_owner || user!.is_primary_owner
}
const eligibilityCmd = async (ctx: any) => {
2024-09-03 23:12:02 +00:00
await ctx.ack();
const text = ctx.command.text.slice();
let match;
let userId = ctx.context.userId;
let matchedBy = "no input"
const iUser = await ctx.client.users.info({ user: ctx.context.userId! });
if ((match = text.match(/\<\@(.+)\|(.+)>/))) {
if (!checkUserOk(iUser.user!)) {
matchedBy = "not allowed"
} else {
userId = match[1];
matchedBy = "user mention"
}
} else if (text)
2024-09-03 23:12:02 +00:00
matchedBy = "invalid input"
const res = await fetch("https://verify.hackclub.dev/api/status", {
method: "POST",
headers: { 'content-type': 'application/json' },
body: JSON.stringify({
"slack_id": userId
2024-09-03 23:12:02 +00:00
}),
redirect: "follow"
}).then(res => res.json())
if (res === `User ${userId} not found!`)
2024-09-03 23:12:02 +00:00
return await ctx.respond({
response_type: 'ephemeral',
text: `${matchedBy !== "user mention" ? "You aren't" : `<@${userId}> isn't`} verified and therefore aren't eligible for rewards from your program.${matchedBy !== "user mention" ? `\nCheck out the <https://forms.hackclub.com/eligibility?slack_id=${userId}|eligiblity form> to verify.` : ""}${matchedBy == "not allowed" ? " (Only whitelisted users can check other people's verification statuses.)" : ""}`,
2024-09-03 23:12:02 +00:00
unfurl_links: true
})
else if (res.status === "Insufficient") {
return await ctx.respond({
response_type: 'ephemeral',
text: `${matchedBy !== "user mention" ? "You" : `<@${userId}>`} provided insufficient evidence that ${matchedBy !== "user mention" ? "you" : "they"} are a student.${matchedBy !== "user mention" ? `\nCheck out the <https://forms.hackclub.com/eligibility?slack_id=${userId}|eligiblity form> to re-verify.` : ""}${matchedBy == "not allowed" ? " (Only whitelisted users can check other people's verification statuses.)" : ""}`,
unfurl_links: true
})
}
else if (res.status === "Unknown") {
return await ctx.respond({
response_type: 'ephemeral',
text: `${matchedBy !== "user mention" ? "Your verification" : `<@${userId}>'s verification`} has not been accepted yet.${matchedBy == "not allowed" ? " (Only whitelisted users can check other people's verification statuses.)" : ""}`,
unfurl_links: true
})
}
else if (res.status === "Ineligible") {
if (matchedBy === "user mention") {
return await ctx.respond({
response_type: 'ephemeral',
text: `<@${userId}>'s verification has been denied.`
})
} else {
return await ctx.respond({
response_type: 'ephemeral',
text: `Your verification has been denied. If you believe this to be a mistake, please contact an admin of the program you are applying for.${matchedBy == "not allowed" ? " (Only whitelisted users can check other people's verification statuses.)" : ""},`
})
}
}
2024-09-04 18:33:55 +00:00
else if (res.status === "Sanctioned country") {
if (matchedBy === "user mention") {
return await ctx.respond({
response_type: 'ephemeral',
text: `<@${userId}> lives in a country that cannot have packages delivered to due to sanctions.`
})
} else {
return await ctx.respond({
response_type: 'ephemeral',
text: `You live in a country that cannot have packages delivered to due to sanctions.${matchedBy == "not allowed" ? " (Only whitelisted users can check other people's verification statuses.)" : ""},`
})
}
}
2024-09-03 23:12:02 +00:00
else {
return await ctx.respond({
response_type: 'ephemeral',
text: `${matchedBy !== "user mention" ? "You have verified your" : `<@${userId}> has verified their`} student status, and ${matchedBy !== "user mention" ? "are" : "is"} ${res.status}.${matchedBy == "not allowed" ? " (Only whitelisted users can check other people's verification statuses.)" : ""}`,
2024-09-03 23:12:02 +00:00
blocks: [
{
type: 'section',
text: {
type: 'mrkdwn',
text: `${matchedBy !== "user mention" ? "You have verified your" : `<@${userId}> has verified their`} student status, and ${matchedBy !== "user mention" ? "are" : "is"} *${res.status}*.${matchedBy == "not allowed" ? " (Only whitelisted users can check other people's verification statuses.)" : ""}`
2024-09-03 23:12:02 +00:00
}
}
2024-09-03 23:12:02 +00:00
]
})
2024-09-03 23:12:02 +00:00
}
2024-09-04 18:16:52 +00:00
}
app.command("/check-eligiblity", eligibilityCmd)
app.command("/check-eligibility", eligibilityCmd)
2024-09-03 23:12:02 +00:00
; (async () => {
await app.start(60275);
2024-09-03 23:12:02 +00:00
console.log('⚡️ Bolt app is running!');
})();