forked from engineering/crv2
update all files
parent
599159c6ea
commit
bc10712329
|
@ -1,5 +1,9 @@
|
||||||
import { prop, getModelForClass, Ref } from "@typegoose/typegoose"
|
import { prop, getModelForClass, Ref } from "@typegoose/typegoose";
|
||||||
import Member, { MemberAdditionalAcknowledgement, MemberUsedLanguages, MemberUsedOperatingSystems } from "./Member";
|
import Member, {
|
||||||
|
MemberAdditionalAcknowledgement,
|
||||||
|
MemberUsedLanguages,
|
||||||
|
MemberUsedOperatingSystems,
|
||||||
|
} from "./Member";
|
||||||
|
|
||||||
export enum GenerationMethod {
|
export enum GenerationMethod {
|
||||||
TIMER_INTERNAL, // generated by the internal cron-job timer automatically
|
TIMER_INTERNAL, // generated by the internal cron-job timer automatically
|
||||||
|
@ -16,9 +20,9 @@ export interface AddtlScoreData {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO
|
/* TODO
|
||||||
* Comments
|
* Comments
|
||||||
* Further attributes for class
|
* Further attributes for class
|
||||||
* */
|
* */
|
||||||
|
|
||||||
export default class CommunityReport {
|
export default class CommunityReport {
|
||||||
@prop({ required: true, index: true, ref: () => Member })
|
@prop({ required: true, index: true, ref: () => Member })
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { prop, getModelForClass, Ref } from "@typegoose/typegoose"
|
import { prop, getModelForClass, Ref } from "@typegoose/typegoose";
|
||||||
import Inquiry from "./Inquiry";
|
import Inquiry from "./Inquiry";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { prop, getModelForClass, Ref } from "@typegoose/typegoose"
|
import { prop, getModelForClass, Ref } from "@typegoose/typegoose";
|
||||||
import Member from "./Member";
|
import Member from "./Member";
|
||||||
import CommunityReport from "./CommunityReport"
|
import CommunityReport from "./CommunityReport";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO:
|
* TODO:
|
||||||
|
@ -9,7 +9,6 @@ import CommunityReport from "./CommunityReport"
|
||||||
* - Reason
|
* - Reason
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
export default abstract class Inquiry {
|
export default abstract class Inquiry {
|
||||||
@prop({ required: true, unique: true })
|
@prop({ required: true, unique: true })
|
||||||
// the Inquiry Identifier (previously known as `iid`). this is an UUIDv4 string
|
// the Inquiry Identifier (previously known as `iid`). this is an UUIDv4 string
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
import { prop, getModelForClass } from "@typegoose/typegoose"
|
import { prop, getModelForClass } from "@typegoose/typegoose";
|
||||||
|
|
||||||
/* TODO
|
/* TODO
|
||||||
* Comments
|
* Comments
|
||||||
* Further attributes for class
|
* Further attributes for class
|
||||||
* */
|
* */
|
||||||
|
|
||||||
export interface SharedMemberAttributes {
|
export interface SharedMemberAttributes {
|
||||||
discordID: string | undefined;
|
discordID: string | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MemberAdditionalAcknowledgement =
|
export type MemberAdditionalAcknowledgement =
|
||||||
"Chair of the Board of Governors" |
|
| "Chair of the Board of Governors"
|
||||||
"Vice Chair of the Board of Governors" |
|
| "Vice Chair of the Board of Governors"
|
||||||
"Voting Seat Member of the Board of Governors" |
|
| "Voting Seat Member of the Board of Governors"
|
||||||
string;
|
| string;
|
||||||
|
|
||||||
export const MemberGuildRoleIDMap = {
|
export const MemberGuildRoleIDMap = {
|
||||||
// Chair/Vice Chair of the Board of Governors
|
// Chair/Vice Chair of the Board of Governors
|
||||||
|
@ -40,8 +40,7 @@ export const MemberGuildRoleIDMap = {
|
||||||
CORE_TEAM: "453689940140883988",
|
CORE_TEAM: "453689940140883988",
|
||||||
// Intern (Training)
|
// Intern (Training)
|
||||||
INTERN: "701481967149121627",
|
INTERN: "701481967149121627",
|
||||||
|
};
|
||||||
}
|
|
||||||
|
|
||||||
// enum for the used programming languages in whois information
|
// enum for the used programming languages in whois information
|
||||||
export enum MemberUsedLanguages {
|
export enum MemberUsedLanguages {
|
||||||
|
@ -56,7 +55,7 @@ export enum MemberUsedLanguages {
|
||||||
RB = "lang-rb",
|
RB = "lang-rb",
|
||||||
RS = "lang-rs",
|
RS = "lang-rs",
|
||||||
SWIFT = "lang-swift",
|
SWIFT = "lang-swift",
|
||||||
TS = "lang-ts"
|
TS = "lang-ts",
|
||||||
}
|
}
|
||||||
|
|
||||||
// enum for the used operating systems in the whois information
|
// enum for the used operating systems in the whois information
|
||||||
|
@ -69,7 +68,7 @@ export enum MemberUsedOperatingSystems {
|
||||||
MANJARO = "os-manjaro",
|
MANJARO = "os-manjaro",
|
||||||
REDHAT = "os-redhat",
|
REDHAT = "os-redhat",
|
||||||
UBUNTU = "os-ubuntu",
|
UBUNTU = "os-ubuntu",
|
||||||
WIN = "os-win"
|
WIN = "os-win",
|
||||||
}
|
}
|
||||||
export default class Member implements SharedMemberAttributes {
|
export default class Member implements SharedMemberAttributes {
|
||||||
@prop({ required: true, unique: true })
|
@prop({ required: true, unique: true })
|
||||||
|
|
|
@ -2,30 +2,29 @@ import { prop, getModelForClass } from "@typegoose/typegoose";
|
||||||
import Member from "./Member";
|
import Member from "./Member";
|
||||||
|
|
||||||
/* TODO
|
/* TODO
|
||||||
* Comments
|
* Comments
|
||||||
* Further attributes for class
|
* Further attributes for class
|
||||||
* */
|
* */
|
||||||
|
|
||||||
import { SharedMemberAttributes } from "./Member";
|
import { SharedMemberAttributes } from "./Member";
|
||||||
|
|
||||||
export type PartnerTitle =
|
export type PartnerTitle =
|
||||||
"Director of Engineering" |
|
| "Director of Engineering"
|
||||||
"Director of Operations" |
|
| "Director of Operations"
|
||||||
"Deputy Director of Engineering" |
|
| "Deputy Director of Engineering"
|
||||||
"Deputy Director of Operations" |
|
| "Deputy Director of Operations"
|
||||||
"Services Manager" |
|
| "Services Manager"
|
||||||
"Project Manager" |
|
| "Project Manager"
|
||||||
"Engineering Core Partner" |
|
| "Engineering Core Partner"
|
||||||
"Operations Core Partner" |
|
| "Operations Core Partner"
|
||||||
"Community Moderator" |
|
| "Community Moderator"
|
||||||
"Technician" |
|
| "Technician"
|
||||||
string;
|
| string;
|
||||||
|
|
||||||
|
|
||||||
export enum PartnerDepartment {
|
export enum PartnerDepartment {
|
||||||
INDEPENDENT_AGENCY,
|
INDEPENDENT_AGENCY,
|
||||||
ENGINEERING, // Department of Engineering
|
ENGINEERING, // Department of Engineering
|
||||||
OPERATIONS // Department of Operations
|
OPERATIONS, // Department of Operations
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum PartnerRoleType {
|
export enum PartnerRoleType {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { prop } from '@typegoose/typegoose';
|
import { prop } from "@typegoose/typegoose";
|
||||||
|
|
||||||
// This class represents a Vendor, which ia an entity that is permitted to access CommunityReport information, and may be permitted to manipulate data, through the HTtP API.
|
// This class represents a Vendor, which ia an entity that is permitted to access CommunityReport information, and may be permitted to manipulate data, through the HTtP API.
|
||||||
export default class Vendor {
|
export default class Vendor {
|
||||||
|
|
|
@ -10,11 +10,20 @@ export default class Eval extends DiscordInteractionCommand {
|
||||||
constructor() {
|
constructor() {
|
||||||
super("eval", "Executes arbitrary JS code and returns the output.");
|
super("eval", "Executes arbitrary JS code and returns the output.");
|
||||||
// this option is required and is a string of JavaScript code to execute
|
// this option is required and is a string of JavaScript code to execute
|
||||||
this.builder.addStringOption(option => option.setName("code").setDescription("The code to execute.").setRequired(true));
|
this.builder.addStringOption((option) =>
|
||||||
|
option.setName("code").setDescription("The code to execute.").setRequired(true)
|
||||||
|
);
|
||||||
// this option is optional and is a boolean that determines whether the code should be run as an async function
|
// this option is optional and is a boolean that determines whether the code should be run as an async function
|
||||||
this.builder.addBooleanOption(option => option.setName("async").setDescription("Whether to run the code as an async function.").setRequired(false));
|
this.builder.addBooleanOption((option) =>
|
||||||
|
option
|
||||||
|
.setName("async")
|
||||||
|
.setDescription("Whether to run the code as an async function.")
|
||||||
|
.setRequired(false)
|
||||||
|
);
|
||||||
// this option is optional and is an integer that determines the depth of the eval inspection
|
// this option is optional and is an integer that determines the depth of the eval inspection
|
||||||
this.builder.addIntegerOption(option => option.setName("depth").setDescription("The depth of the inspection.").setRequired(false));
|
this.builder.addIntegerOption((option) =>
|
||||||
|
option.setName("depth").setDescription("The depth of the inspection.").setRequired(false)
|
||||||
|
);
|
||||||
|
|
||||||
this.listOfAllowedIDs = [
|
this.listOfAllowedIDs = [
|
||||||
"278620217221971968", // Matthew
|
"278620217221971968", // Matthew
|
||||||
|
@ -24,9 +33,11 @@ export default class Eval extends DiscordInteractionCommand {
|
||||||
public async execute(interaction: ChatInputCommandInteraction) {
|
public async execute(interaction: ChatInputCommandInteraction) {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
let evalString = interaction.options.getString("code").trim();
|
let evalString = interaction.options.getString("code").trim();
|
||||||
if (evalString == null) return interaction.reply({ content: "You must provide code to evaluate.", ephemeral: true });
|
if (evalString == null)
|
||||||
if (!this.listOfAllowedIDs.includes(interaction.user.id)) return interaction.reply({ content: "Permission denied.", ephemeral: true });
|
return interaction.reply({ content: "You must provide code to evaluate.", ephemeral: true });
|
||||||
await interaction.deferReply({ephemeral: true});
|
if (!this.listOfAllowedIDs.includes(interaction.user.id))
|
||||||
|
return interaction.reply({ content: "Permission denied.", ephemeral: true });
|
||||||
|
await interaction.deferReply({ ephemeral: true });
|
||||||
|
|
||||||
// set scoped variables to be able to access over eval
|
// set scoped variables to be able to access over eval
|
||||||
const guild = interaction.guild || interaction.client.guilds.cache.get(this.GUILD_ID);
|
const guild = interaction.guild || interaction.client.guilds.cache.get(this.GUILD_ID);
|
||||||
|
@ -44,13 +55,12 @@ export default class Eval extends DiscordInteractionCommand {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// eslint-disable-next-line no-eval
|
|
||||||
evaled = await eval(evalString);
|
evaled = await eval(evalString);
|
||||||
if (typeof evaled !== 'string') {
|
if (typeof evaled !== "string") {
|
||||||
evaled = inspect(evaled, { depth });
|
evaled = inspect(evaled, { depth });
|
||||||
}
|
}
|
||||||
if (evaled === undefined) {
|
if (evaled === undefined) {
|
||||||
evaled = 'undefined';
|
evaled = "undefined";
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
|
@ -58,7 +68,7 @@ export default class Eval extends DiscordInteractionCommand {
|
||||||
}
|
}
|
||||||
|
|
||||||
// replaces all instances of the bot token with [REDACTED] in output
|
// replaces all instances of the bot token with [REDACTED] in output
|
||||||
evaled = evaled.replace(new RegExp(discordBotToken, 'gi'), '[REDACTED]');
|
evaled = evaled.replace(new RegExp(discordBotToken, "gi"), "[REDACTED]");
|
||||||
|
|
||||||
// TODO: Figure this out.
|
// TODO: Figure this out.
|
||||||
/*const display = this.client.util.splitString(evaled, 1975);
|
/*const display = this.client.util.splitString(evaled, 1975);
|
||||||
|
@ -70,6 +80,6 @@ export default class Eval extends DiscordInteractionCommand {
|
||||||
return this.error(ctx.message.channel, `${error}`);
|
return this.error(ctx.message.channel, `${error}`);
|
||||||
}
|
}
|
||||||
}*/
|
}*/
|
||||||
await interaction.editReply({content: `\`\`\`js\n${evaled}\n\`\`\``})
|
await interaction.editReply({ content: `\`\`\`js\n${evaled}\n\`\`\`` });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
import DiscordInteractionCommand, { DiscordInteractionCommandSkeleton } from "../../util/DiscordInteractionCommand";
|
import DiscordInteractionCommand, {
|
||||||
|
DiscordInteractionCommandSkeleton,
|
||||||
|
} from "../../util/DiscordInteractionCommand";
|
||||||
import { guildID } from "../../config.json";
|
import { guildID } from "../../config.json";
|
||||||
import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js";
|
import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js";
|
||||||
import { MemberModel } from "../../database/Member";
|
import { MemberModel } from "../../database/Member";
|
||||||
|
@ -7,7 +9,7 @@ import { PartnerModel } from "../../database/Partner";
|
||||||
export default class PartnerAdd implements DiscordInteractionCommandSkeleton {
|
export default class PartnerAdd implements DiscordInteractionCommandSkeleton {
|
||||||
public GUILD_ID: string;
|
public GUILD_ID: string;
|
||||||
public name: string;
|
public name: string;
|
||||||
public description: string
|
public description: string;
|
||||||
public builder: SlashCommandBuilder;
|
public builder: SlashCommandBuilder;
|
||||||
constructor() {
|
constructor() {
|
||||||
this.name = "partner";
|
this.name = "partner";
|
||||||
|
@ -18,8 +20,15 @@ export default class PartnerAdd implements DiscordInteractionCommandSkeleton {
|
||||||
|
|
||||||
public async execute(interaction: ChatInputCommandInteraction) {
|
public async execute(interaction: ChatInputCommandInteraction) {
|
||||||
const member = MemberModel.findOne({ discordID: interaction.user.id });
|
const member = MemberModel.findOne({ discordID: interaction.user.id });
|
||||||
if (!member) return interaction.reply({ content: "The specified partner does not have a base member entry.", ephemeral: true });
|
if (!member)
|
||||||
if (!(await PartnerModel.findOne({discordID: interaction.user.id}))) return interaction.reply({ content: "The specified partner already has a partner entry.", ephemeral: true });
|
return interaction.reply({
|
||||||
|
content: "The specified partner does not have a base member entry.",
|
||||||
|
ephemeral: true,
|
||||||
|
});
|
||||||
|
if (!(await PartnerModel.findOne({ discordID: interaction.user.id })))
|
||||||
|
return interaction.reply({
|
||||||
|
content: "The specified partner already has a partner entry.",
|
||||||
|
ephemeral: true,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ export default class Ping extends DiscordInteractionCommand {
|
||||||
const endTimestamp = Date.now(); // Mark the end of all processing (after editReply)
|
const endTimestamp = Date.now(); // Mark the end of all processing (after editReply)
|
||||||
|
|
||||||
await interaction.editReply({
|
await interaction.editReply({
|
||||||
content: `🏓 Pong!\nClient: \`${repliedTimestamp - interaction.createdTimestamp}ms\`\nResponse: \`${endTimestamp - startTimestamp}ms\``
|
content: `🏓 Pong!\nClient: \`${repliedTimestamp - interaction.createdTimestamp}ms\`\nResponse: \`${endTimestamp - startTimestamp}ms\``,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,24 @@
|
||||||
import DiscordInteractionCommand from "../../util/DiscordInteractionCommand";
|
import DiscordInteractionCommand from "../../util/DiscordInteractionCommand";
|
||||||
import { MemberModel } from "../../database/Member";
|
import { MemberModel } from "../../database/Member";
|
||||||
import Partner, { PartnerCommissionType, PartnerDepartment, PartnerModel, PartnerRoleType } from "../../database/Partner";
|
import Partner, {
|
||||||
|
PartnerCommissionType,
|
||||||
|
PartnerDepartment,
|
||||||
|
PartnerModel,
|
||||||
|
PartnerRoleType,
|
||||||
|
} from "../../database/Partner";
|
||||||
import { ChatInputCommandInteraction, EmbedBuilder, GuildMember } from "discord.js";
|
import { ChatInputCommandInteraction, EmbedBuilder, GuildMember } from "discord.js";
|
||||||
import MemberUtil from "../../util/MemberUtil";
|
import MemberUtil from "../../util/MemberUtil";
|
||||||
import EmojiConfig from "../../util/EmojiConfig"
|
import EmojiConfig from "../../util/EmojiConfig";
|
||||||
|
|
||||||
export default class Whois extends DiscordInteractionCommand {
|
export default class Whois extends DiscordInteractionCommand {
|
||||||
constructor() {
|
constructor() {
|
||||||
super("whois", "Retrieves information about a user.");
|
super("whois", "Retrieves information about a user.");
|
||||||
this.builder.addUserOption(option => option.setName("member").setDescription("The member to get information about.").setRequired(true));
|
this.builder.addUserOption((option) =>
|
||||||
|
option
|
||||||
|
.setName("member")
|
||||||
|
.setDescription("The member to get information about.")
|
||||||
|
.setRequired(true)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async execute(interaction: ChatInputCommandInteraction) {
|
public async execute(interaction: ChatInputCommandInteraction) {
|
||||||
|
@ -20,7 +30,8 @@ export default class Whois extends DiscordInteractionCommand {
|
||||||
const databaseMember = await MemberModel.findOne({ discordID: target.id });
|
const databaseMember = await MemberModel.findOne({ discordID: target.id });
|
||||||
const partner = await PartnerModel.findOne({ discordID: target.id });
|
const partner = await PartnerModel.findOne({ discordID: target.id });
|
||||||
// return an error if target was not located
|
// return an error if target was not located
|
||||||
if (!guildMember) return interaction.editReply({ content: `Member target ${target.id} was not located.`});
|
if (!guildMember)
|
||||||
|
return interaction.editReply({ content: `Member target ${target.id} was not located.` });
|
||||||
// build our embed
|
// build our embed
|
||||||
const embed = new EmbedBuilder();
|
const embed = new EmbedBuilder();
|
||||||
// if the role type is managerial, add a [k] to the end of the name
|
// if the role type is managerial, add a [k] to the end of the name
|
||||||
|
@ -30,7 +41,7 @@ export default class Whois extends DiscordInteractionCommand {
|
||||||
// set the thumbnail to the user's avatar
|
// set the thumbnail to the user's avatar
|
||||||
embed.setThumbnail(guildMember.user.displayAvatarURL());
|
embed.setThumbnail(guildMember.user.displayAvatarURL());
|
||||||
// initialize the description string
|
// initialize the description string
|
||||||
let embedDescription = '';
|
let embedDescription = "";
|
||||||
if (partner) {
|
if (partner) {
|
||||||
// set the title to the partner's title if applicable
|
// set the title to the partner's title if applicable
|
||||||
if (partner.title) embedDescription += `## __${EmojiConfig.LOC} ${partner.title}__\n`;
|
if (partner.title) embedDescription += `## __${EmojiConfig.LOC} ${partner.title}__\n`;
|
||||||
|
@ -76,7 +87,8 @@ export default class Whois extends DiscordInteractionCommand {
|
||||||
embed.setColor(guildMember.displayColor);
|
embed.setColor(guildMember.displayColor);
|
||||||
if (embedDescription?.length > 0) embed.setDescription(embedDescription);
|
if (embedDescription?.length > 0) embed.setDescription(embedDescription);
|
||||||
// add status to embed
|
// add status to embed
|
||||||
if (guildMember.presence?.status) { // TODO: this currently doesn't work for some reason
|
if (guildMember.presence?.status) {
|
||||||
|
// TODO: this currently doesn't work for some reason
|
||||||
switch (guildMember.presence.status) {
|
switch (guildMember.presence.status) {
|
||||||
case "online":
|
case "online":
|
||||||
embed.addFields({ name: "Status", value: "Online", inline: true });
|
embed.addFields({ name: "Status", value: "Online", inline: true });
|
||||||
|
@ -96,7 +108,9 @@ export default class Whois extends DiscordInteractionCommand {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
embed.setFooter({ text: `Discord ID: ${guildMember.id}${databaseMember ? `Internal ID: ${databaseMember?._id}` : ''}` });
|
embed.setFooter({
|
||||||
|
text: `Discord ID: ${guildMember.id}${databaseMember ? `Internal ID: ${databaseMember?._id}` : ""}`,
|
||||||
|
});
|
||||||
|
|
||||||
return await interaction.editReply({ embeds: [embed] });
|
return await interaction.editReply({ embeds: [embed] });
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,13 +13,23 @@ export default class InteractionCreate extends DiscordEvent {
|
||||||
if (!command) return console.error(`No command matching ${interaction.commandName} was found.`);
|
if (!command) return console.error(`No command matching ${interaction.commandName} was found.`);
|
||||||
try {
|
try {
|
||||||
await command.execute(interaction);
|
await command.execute(interaction);
|
||||||
console.info(`[Info - Discord] Command '${interaction.commandName}' executed by '${interaction.user.username}'`);
|
console.info(
|
||||||
|
`[Info - Discord] Command '${interaction.commandName}' executed by '${interaction.user.username}'`
|
||||||
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`Error executing command '${interaction.commandName}': by '${interaction.user.username}'\n${error}`);
|
console.error(
|
||||||
|
`Error executing command '${interaction.commandName}': by '${interaction.user.username}'\n${error}`
|
||||||
|
);
|
||||||
if (interaction.replied || interaction.deferred) {
|
if (interaction.replied || interaction.deferred) {
|
||||||
await interaction.followUp({ content: 'There was an error while executing this command!', ephemeral: true });
|
await interaction.followUp({
|
||||||
|
content: "There was an error while executing this command!",
|
||||||
|
ephemeral: true,
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
|
await interaction.reply({
|
||||||
|
content: "There was an error while executing this command!",
|
||||||
|
ephemeral: true,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,9 @@ export interface DiscordInteractionCommandSkeleton {
|
||||||
name: string;
|
name: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default abstract class DiscordInteractionCommand implements DiscordInteractionCommandSkeleton {
|
export default abstract class DiscordInteractionCommand
|
||||||
|
implements DiscordInteractionCommandSkeleton
|
||||||
|
{
|
||||||
public name: string;
|
public name: string;
|
||||||
public description: string;
|
public description: string;
|
||||||
public builder: SlashCommandBuilder;
|
public builder: SlashCommandBuilder;
|
||||||
|
|
|
@ -3,7 +3,7 @@ import Partner, {
|
||||||
PartnerDepartment,
|
PartnerDepartment,
|
||||||
PartnerModel,
|
PartnerModel,
|
||||||
PartnerRoleType,
|
PartnerRoleType,
|
||||||
PartnerTitle
|
PartnerTitle,
|
||||||
} from "../database/Partner";
|
} from "../database/Partner";
|
||||||
import Member, { MemberAdditionalAcknowledgement, MemberModel } from "../database/Member";
|
import Member, { MemberAdditionalAcknowledgement, MemberModel } from "../database/Member";
|
||||||
import { Client, GuildMember, User } from "discord.js";
|
import { Client, GuildMember, User } from "discord.js";
|
||||||
|
@ -25,10 +25,24 @@ export interface FormatNameOptions {
|
||||||
// TODO: Add the rest of the remaining role configurations
|
// TODO: Add the rest of the remaining role configurations
|
||||||
export const PartnerDiscordRoleMap = {
|
export const PartnerDiscordRoleMap = {
|
||||||
// Director of Engineering, Management, Staff, Technician, Core Team, Play Caller
|
// Director of Engineering, Management, Staff, Technician, Core Team, Play Caller
|
||||||
"Director of Engineering": ["1077646568091570236", "1077646956890951690", "446104438969466890", "701454780828221450", "453689940140883988", "1014978134573064293"],
|
"Director of Engineering": [
|
||||||
|
"1077646568091570236",
|
||||||
|
"1077646956890951690",
|
||||||
|
"446104438969466890",
|
||||||
|
"701454780828221450",
|
||||||
|
"453689940140883988",
|
||||||
|
"1014978134573064293",
|
||||||
|
],
|
||||||
// Director of Operations, Management, Staff, Moderator, Core Team, Play Caller
|
// Director of Operations, Management, Staff, Moderator, Core Team, Play Caller
|
||||||
"Director of Operations": ["1077647072163020840", "1077646956890951690", "446104438969466890", "455972169449734144", "453689940140883988", "1014978134573064293"]
|
"Director of Operations": [
|
||||||
}
|
"1077647072163020840",
|
||||||
|
"1077646956890951690",
|
||||||
|
"446104438969466890",
|
||||||
|
"455972169449734144",
|
||||||
|
"453689940140883988",
|
||||||
|
"1014978134573064293",
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
export default class MemberUtil {
|
export default class MemberUtil {
|
||||||
public static async createNewPartner(member: Member, options: PartnerOptions) {
|
public static async createNewPartner(member: Member, options: PartnerOptions) {
|
||||||
|
@ -51,34 +65,54 @@ export default class MemberUtil {
|
||||||
return PartnerModel.deleteOne({ discordID: member.discordID });
|
return PartnerModel.deleteOne({ discordID: member.discordID });
|
||||||
}
|
}
|
||||||
|
|
||||||
public static addAcknowledgementToMember(member: Member, acknowledgement: MemberAdditionalAcknowledgement) {
|
public static addAcknowledgementToMember(
|
||||||
|
member: Member,
|
||||||
|
acknowledgement: MemberAdditionalAcknowledgement
|
||||||
|
) {
|
||||||
if (!member.additionalAcknowledgement || member.additionalAcknowledgement?.length === 0) {
|
if (!member.additionalAcknowledgement || member.additionalAcknowledgement?.length === 0) {
|
||||||
MemberModel.updateOne({ discordID: member.discordID }, { additionalAcknowledgement: [] });
|
MemberModel.updateOne({ discordID: member.discordID }, { additionalAcknowledgement: [] });
|
||||||
}
|
}
|
||||||
if (member.additionalAcknowledgement?.includes(acknowledgement)) throw new Error("This member already has this acknowledgement.")
|
if (member.additionalAcknowledgement?.includes(acknowledgement))
|
||||||
return MemberModel.updateOne({ discordID: member.discordID }, { $push: { additionalAcknowledgement: acknowledgement } });
|
throw new Error("This member already has this acknowledgement.");
|
||||||
|
return MemberModel.updateOne(
|
||||||
|
{ discordID: member.discordID },
|
||||||
|
{ $push: { additionalAcknowledgement: acknowledgement } }
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: comments and extended formatting
|
// TODO: comments and extended formatting
|
||||||
public static formatName(target: GuildMember | User, partner?: Partner | null): FormatNameOptions {
|
public static formatName(
|
||||||
console.log(`[MemberUtil] Formatting name for ${target.displayName} at url ${target instanceof GuildMember ? target.user.displayAvatarURL() : target.displayAvatarURL()}`);
|
target: GuildMember | User,
|
||||||
|
partner?: Partner | null
|
||||||
|
): FormatNameOptions {
|
||||||
|
console.log(
|
||||||
|
`[MemberUtil] Formatting name for ${target.displayName} at url ${target instanceof GuildMember ? target.user.displayAvatarURL() : target.displayAvatarURL()}`
|
||||||
|
);
|
||||||
// if the role type is managerial, add a [k] to the end of the name
|
// if the role type is managerial, add a [k] to the end of the name
|
||||||
// if the partner exists, set the iconURL to the organizational logo
|
// if the partner exists, set the iconURL to the organizational logo
|
||||||
if (partner?.roleType == PartnerRoleType.MANAGERIAL) {
|
if (partner?.roleType == PartnerRoleType.MANAGERIAL) {
|
||||||
return {
|
return {
|
||||||
text: `${target.displayName} [k]`,
|
text: `${target.displayName} [k]`,
|
||||||
iconURL: target.displayAvatarURL(),
|
iconURL: target.displayAvatarURL(),
|
||||||
}
|
};
|
||||||
} else if (partner?.commissionType == PartnerCommissionType.CONTRACTUAL) { // if the commission type is contractual, add a [c] to the end of the name
|
} else if (partner?.commissionType == PartnerCommissionType.CONTRACTUAL) {
|
||||||
|
// if the commission type is contractual, add a [c] to the end of the name
|
||||||
return {
|
return {
|
||||||
text: `${target.displayName} [c]`,
|
text: `${target.displayName} [c]`,
|
||||||
iconURL: target instanceof GuildMember ? target.user.displayAvatarURL() : target.displayAvatarURL(),
|
iconURL:
|
||||||
}
|
target instanceof GuildMember
|
||||||
} else { // otherwise, just set the author to the member's display name
|
? target.user.displayAvatarURL()
|
||||||
|
: target.displayAvatarURL(),
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
// otherwise, just set the author to the member's display name
|
||||||
return {
|
return {
|
||||||
text: target.displayName,
|
text: target.displayName,
|
||||||
iconURL: target instanceof GuildMember ? target.user.displayAvatarURL() : target.displayAvatarURL(),
|
iconURL:
|
||||||
}
|
target instanceof GuildMember
|
||||||
|
? target.user.displayAvatarURL()
|
||||||
|
: target.displayAvatarURL(),
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue