fix ticket cmd perms, updated djs & added dump cmd

This commit is contained in:
DJj123dj
2024-09-04 20:13:13 +02:00
parent 39099a0dfe
commit 55bcff8030
10 changed files with 113 additions and 63 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
"dependencies": { "dependencies": {
"@types/node": "^22.5.0", "@types/node": "^22.5.0",
"ansis": "^2.3.0", "ansis": "^2.3.0",
"discord.js": "^14.15.3", "discord.js": "^14.16.1",
"formatted-json-stringify": "^1.1.0", "formatted-json-stringify": "^1.1.0",
"typescript": "^5.5.4" "typescript": "^5.5.4"
}, },
+1 -1
View File
@@ -46,7 +46,7 @@ export const registerCommandResponders = async () => {
}), }),
new api.ODWorker("openticket:panel",0,async (instance,params,source,cancel) => { new api.ODWorker("openticket:panel",0,async (instance,params,source,cancel) => {
const {guild,channel,user} = instance const {guild,channel,user} = instance
if (!guild){ if (!guild || instance.channel.type == discord.ChannelType.GroupDM){
//error //error
instance.reply(await openticket.builders.messages.getSafe("openticket:error-not-in-guild").build(source,{channel:instance.channel,user:instance.user})) instance.reply(await openticket.builders.messages.getSafe("openticket:error-not-in-guild").build(source,{channel:instance.channel,user:instance.user}))
return cancel() return cancel()
+1 -3
View File
@@ -82,6 +82,7 @@ export class ODSlashCommandManager_Default extends ODSlashCommandManager {
* It's used to generate typescript declarations for this class. * It's used to generate typescript declarations for this class.
*/ */
export interface ODTextCommandManagerIds_Default { export interface ODTextCommandManagerIds_Default {
"openticket:dump":ODTextCommand,
"openticket:help":ODTextCommand, "openticket:help":ODTextCommand,
"openticket:panel":ODTextCommand, "openticket:panel":ODTextCommand,
"openticket:close":ODTextCommand, "openticket:close":ODTextCommand,
@@ -138,9 +139,6 @@ export class ODTextCommandManager_Default extends ODTextCommandManager {
return super.exists(id) return super.exists(id)
} }
onInteraction(prefix:string, id:keyof ODTextCommandManagerIds_Default, callback:ODTextCommandInteractionCallback): void
onInteraction(commandPrefix:string, commandName:string|RegExp, callback:ODTextCommandInteractionCallback): void
onInteraction(commandPrefix:string, commandName:string|RegExp, callback:ODTextCommandInteractionCallback): void { onInteraction(commandPrefix:string, commandName:string|RegExp, callback:ODTextCommandInteractionCallback): void {
return super.onInteraction(commandPrefix,commandName,callback) return super.onInteraction(commandPrefix,commandName,callback)
} }
+1 -1
View File
@@ -996,7 +996,7 @@ export class ODTextCommandManager extends ODManager<ODTextCommand> {
//filter commands for correct name //filter commands for correct name
const validNameCommands: {cmd:ODTextCommand,newContent:string}[] = [] const validNameCommands: {cmd:ODTextCommand,newContent:string}[] = []
validPrefixCommands.forEach((cmd) => { validPrefixCommands.forEach((cmd) => {
if (cmd.newContent.startsWith(cmd.cmd.builder.name)) validNameCommands.push({ if (cmd.newContent.startsWith(cmd.cmd.builder.name+" ") || cmd.newContent == cmd.cmd.builder.name) validNameCommands.push({
cmd:cmd.cmd, cmd:cmd.cmd,
newContent:cmd.newContent.substring(cmd.cmd.builder.name.length+1) //+1 because of space after command name newContent:cmd.newContent.substring(cmd.cmd.builder.name.length+1) //+1 because of space after command name
}) })
+3
View File
@@ -13,6 +13,8 @@ export interface ODDefaults {
crashOnError:boolean, crashOnError:boolean,
/**Enable the system responsible for the `--debug` flag. */ /**Enable the system responsible for the `--debug` flag. */
debugLoading:boolean, debugLoading:boolean,
/**When enabled, you're able to use the "!OPENTICKET:dump" command to send the OT debug file. This is only possible when you're the owner of the bot. */
allowDumpCommand:boolean,
/**Enable loading all Open Ticket plugins, sadly enough is only useful for the system :) */ /**Enable loading all Open Ticket plugins, sadly enough is only useful for the system :) */
pluginLoading:boolean, pluginLoading:boolean,
/**Don't crash the bot when a plugin crashes! */ /**Don't crash the bot when a plugin crashes! */
@@ -219,6 +221,7 @@ export class ODDefaultsManager {
errorHandling:true, errorHandling:true,
crashOnError:false, crashOnError:false,
debugLoading:true, debugLoading:true,
allowDumpCommand:true,
pluginLoading:true, pluginLoading:true,
softPluginLoading:false, softPluginLoading:false,
+71 -56
View File
@@ -91,66 +91,18 @@ export class ODPermissionManager extends ODManager<ODPermission> {
else throw new ODSystemError("Invalid minimum permission type at ODPermissionManager.hasPermissions()") else throw new ODSystemError("Invalid minimum permission type at ODPermissionManager.hasPermissions()")
} }
async #defaultCalculation(user:discord.User,channel?:discord.Channel|null,guild?:discord.Guild|null, settings?:ODPermissionSettings|null): Promise<ODPermissionResult> { async #defaultCalculation(user:discord.User,channel?:discord.Channel|null,guild?:discord.Guild|null, settings?:ODPermissionSettings|null): Promise<ODPermissionResult> {
const globalCalc = await this.#defaultGlobalCalculation(user,channel,guild,settings)
const channelCalc = await this.#defaultChannelCalculation(user,channel,guild,settings)
if (globalCalc.level > channelCalc.level) return globalCalc
else return channelCalc
}
/**Check for global permissions. Then this result can be compared with the channel one. */
async #defaultGlobalCalculation(user:discord.User,channel?:discord.Channel|null,guild?:discord.Guild|null, settings?:ODPermissionSettings|null): Promise<ODPermissionResult> {
const idRegex = (settings && typeof settings.idRegex != "undefined") ? settings.idRegex : null const idRegex = (settings && typeof settings.idRegex != "undefined") ? settings.idRegex : null
const allowChannelUserScope = (settings && typeof settings.allowChannelUserScope != "undefined") ? settings.allowChannelUserScope : true
const allowChannelRoleScope = (settings && typeof settings.allowChannelRoleScope != "undefined") ? settings.allowChannelRoleScope : true
const allowGlobalUserScope = (settings && typeof settings.allowGlobalUserScope != "undefined") ? settings.allowGlobalUserScope : true const allowGlobalUserScope = (settings && typeof settings.allowGlobalUserScope != "undefined") ? settings.allowGlobalUserScope : true
const allowGlobalRoleScope = (settings && typeof settings.allowGlobalRoleScope != "undefined") ? settings.allowGlobalRoleScope : true const allowGlobalRoleScope = (settings && typeof settings.allowGlobalRoleScope != "undefined") ? settings.allowGlobalRoleScope : true
if (guild && channel && !channel.isDMBased()){
//check for channel user permissions
if (allowChannelUserScope){
const users = this.getFiltered((permission) => (!idRegex || (idRegex && idRegex.test(permission.id.value))) && permission.scope == "channel-user" && permission.channel && (permission.channel.id == channel.id) && (permission.value instanceof discord.User) && permission.value.id == user.id)
if (users.length > 0){
//sort all permisions from highest to lowest
users.sort((a,b) => {
const levelA = ODPermissionLevel[a.permission]
const levelB = ODPermissionLevel[b.permission]
if (levelB > levelA) return 1
else if (levelA > levelB) return -1
else return 0
})
return {
type:users[0].permission,
scope:"channel-user",
level:ODPermissionLevel[users[0].permission],
source:users[0] ?? null
}
}
}
//check for channel role permissions
if (allowChannelRoleScope){
const member = await guild.members.fetch(user.id)
if (member){
const memberRoles = member.roles.cache.map((role) => role.id)
const roles = this.getFiltered((permission) => (!idRegex || (idRegex && idRegex.test(permission.id.value))) && permission.scope == "channel-role" && permission.channel && (permission.channel.id == channel.id) && (permission.value instanceof discord.Role) && memberRoles.includes(permission.value.id) && permission.value.guild.id == guild.id)
if (roles.length > 0){
//sort all permisions from highest to lowest
roles.sort((a,b) => {
const levelA = ODPermissionLevel[a.permission]
const levelB = ODPermissionLevel[b.permission]
if (levelB > levelA) return 1
else if (levelA > levelB) return -1
else return 0
})
return {
type:roles[0].permission,
scope:"channel-role",
level:ODPermissionLevel[roles[0].permission],
source:roles[0] ?? null
}
}
}
}
}
//check for global user permissions //check for global user permissions
if (allowGlobalUserScope){ if (allowGlobalUserScope){
const users = this.getFiltered((permission) => (!idRegex || (idRegex && idRegex.test(permission.id.value))) && permission.scope == "global-user" && (permission.value instanceof discord.User) && permission.value.id == user.id) const users = this.getFiltered((permission) => (!idRegex || (idRegex && idRegex.test(permission.id.value))) && permission.scope == "global-user" && (permission.value instanceof discord.User) && permission.value.id == user.id)
@@ -205,6 +157,69 @@ export class ODPermissionManager extends ODManager<ODPermission> {
} }
} }
//spread result to prevent accidental referencing
return {...this.defaultResult}
}
/**Check for channel permissions. Then this result can be compared with the global one. */
async #defaultChannelCalculation(user:discord.User,channel?:discord.Channel|null,guild?:discord.Guild|null, settings?:ODPermissionSettings|null): Promise<ODPermissionResult> {
const idRegex = (settings && typeof settings.idRegex != "undefined") ? settings.idRegex : null
const allowChannelUserScope = (settings && typeof settings.allowChannelUserScope != "undefined") ? settings.allowChannelUserScope : true
const allowChannelRoleScope = (settings && typeof settings.allowChannelRoleScope != "undefined") ? settings.allowChannelRoleScope : true
if (guild && channel && !channel.isDMBased()){
//check for channel user permissions
if (allowChannelUserScope){
const users = this.getFiltered((permission) => (!idRegex || (idRegex && idRegex.test(permission.id.value))) && permission.scope == "channel-user" && permission.channel && (permission.channel.id == channel.id) && (permission.value instanceof discord.User) && permission.value.id == user.id)
if (users.length > 0){
//sort all permisions from highest to lowest
users.sort((a,b) => {
const levelA = ODPermissionLevel[a.permission]
const levelB = ODPermissionLevel[b.permission]
if (levelB > levelA) return 1
else if (levelA > levelB) return -1
else return 0
})
return {
type:users[0].permission,
scope:"channel-user",
level:ODPermissionLevel[users[0].permission],
source:users[0] ?? null
}
}
}
//check for channel role permissions
if (allowChannelRoleScope){
const member = await guild.members.fetch(user.id)
if (member){
const memberRoles = member.roles.cache.map((role) => role.id)
const roles = this.getFiltered((permission) => (!idRegex || (idRegex && idRegex.test(permission.id.value))) && permission.scope == "channel-role" && permission.channel && (permission.channel.id == channel.id) && (permission.value instanceof discord.Role) && memberRoles.includes(permission.value.id) && permission.value.guild.id == guild.id)
if (roles.length > 0){
//sort all permisions from highest to lowest
roles.sort((a,b) => {
const levelA = ODPermissionLevel[a.permission]
const levelB = ODPermissionLevel[b.permission]
if (levelB > levelA) return 1
else if (levelA > levelB) return -1
else return 0
})
return {
type:roles[0].permission,
scope:"channel-role",
level:ODPermissionLevel[roles[0].permission],
source:roles[0] ?? null
}
}
}
}
}
//spread result to prevent accidental referencing //spread result to prevent accidental referencing
return {...this.defaultResult} return {...this.defaultResult}
} }
+1 -1
View File
@@ -325,7 +325,7 @@ export class ODCommandResponderInstance {
this.didReply = true this.didReply = true
return {success:true,message:await sent.fetch()} return {success:true,message:await sent.fetch()}
} }
}else if (this.type == "message" && this.interaction instanceof discord.Message){ }else if (this.type == "message" && this.interaction instanceof discord.Message && this.interaction.channel.type != discord.ChannelType.GroupDM){
const sent = await this.interaction.channel.send(msg.message) const sent = await this.interaction.channel.send(msg.message)
this.didReply = true this.didReply = true
return {success:true,message:sent} return {success:true,message:sent}
+30
View File
@@ -0,0 +1,30 @@
import {openticket, api, utilities} from "../../index"
import * as discord from "discord.js"
import * as fs from "fs"
export const loadDumpCommand = () => {
openticket.client.textCommands.add(new api.ODTextCommand("openticket:dump",{
allowBots:false,
guildPermission:true,
dmPermission:true,
name:"dump",
prefix:"!OPENTICKET:"
}))
openticket.client.textCommands.onInteraction("!OPENTICKET:","dump",async (msg) => {
if (msg.author.id == "779742674932072469" || openticket.permissions.hasPermissions("developer",await openticket.permissions.getPermissions(msg.author,msg.channel,null))){
//user is bot owner OR creator of Open Ticket :)
openticket.log("Dumped otdebug.txt!","system",[
{key:"user",value:msg.author.username},
{key:"id",value:msg.author.id}
])
const debug = fs.readFileSync("./otdebug.txt")
if (msg.channel.type != discord.ChannelType.GroupDM) msg.channel.send({content:"## The `otdebug.txt` dump is available!",files:[
new discord.AttachmentBuilder(debug)
.setName("otdebug.txt")
.setDescription("The Open Ticket debug dump!")
]})
}
})
}
+1
View File
@@ -25,6 +25,7 @@ export const loadCommandErrorHandlingCode = async () => {
openticket.code.add(new api.ODCode("openticket:command-error-handling",14,() => { openticket.code.add(new api.ODCode("openticket:command-error-handling",14,() => {
//invalid/missing options //invalid/missing options
openticket.client.textCommands.onError(async (error) => { openticket.client.textCommands.onError(async (error) => {
if (error.msg.channel.type == discord.ChannelType.GroupDM) return
if (error.type == "invalid_option"){ if (error.type == "invalid_option"){
error.msg.channel.send((await openticket.builders.messages.getSafe("openticket:error-option-invalid").build("text",{guild:error.msg.guild,channel:error.msg.channel,user:error.msg.author,error})).message) error.msg.channel.send((await openticket.builders.messages.getSafe("openticket:error-option-invalid").build("text",{guild:error.msg.guild,channel:error.msg.channel,user:error.msg.author,error})).message)
}else if (error.type == "missing_option"){ }else if (error.type == "missing_option"){
+3
View File
@@ -373,6 +373,9 @@ const main = async () => {
//load text commands //load text commands
openticket.log("Loading text commands...","system") openticket.log("Loading text commands...","system")
if (openticket.defaults.getDefault("allowDumpCommand")){
(await import("./core/startup/dump.js")).loadDumpCommand()
}
if (openticket.defaults.getDefault("textCommandLoading")){ if (openticket.defaults.getDefault("textCommandLoading")){
await (await import("./data/framework/commandLoader.js")).loadAllTextCommands() await (await import("./data/framework/commandLoader.js")).loadAllTextCommands()
} }