2022-03-22 20:43:26 +00:00
import database from "../utils/database.js" ;
import * as logger from "../utils/logger.js" ;
2022-09-01 01:00:34 +00:00
import { commands , messageCommands } from "../utils/collections.js" ;
2022-03-22 20:43:26 +00:00
import { clean } from "../utils/misc.js" ;
2022-07-18 22:05:01 +00:00
import { upload } from "../utils/tempimages.js" ;
2022-03-22 20:43:26 +00:00
// run when a slash command is executed
2022-09-21 05:05:03 +00:00
export default async ( client , interaction ) => {
2022-09-01 01:00:34 +00:00
if ( interaction ? . type !== 2 ) return ;
2022-03-22 20:43:26 +00:00
// check if command exists and if it's enabled
const command = interaction . data . name ;
2022-09-01 01:00:34 +00:00
let cmd = commands . get ( command ) ;
if ( ! cmd ) {
cmd = messageCommands . get ( command ) ;
if ( ! cmd ) return ;
}
2022-03-22 20:43:26 +00:00
const invoker = interaction . member ? ? interaction . user ;
// actually run the command
2022-09-01 01:00:34 +00:00
logger . log ( "log" , ` ${ invoker . username } ( ${ invoker . id } ) ran application command ${ command } ` ) ;
2022-03-22 20:43:26 +00:00
try {
await database . addCount ( command ) ;
// eslint-disable-next-line no-unused-vars
2022-09-21 05:05:03 +00:00
const commandClass = new cmd ( client , { type : "application" , interaction } ) ;
2022-03-22 20:43:26 +00:00
const result = await commandClass . run ( ) ;
2022-07-20 02:06:51 +00:00
const replyMethod = interaction . acknowledged ? "editOriginalMessage" : "createMessage" ;
2022-09-01 01:00:34 +00:00
if ( typeof result === "string" ) {
await interaction [ replyMethod ] ( {
content : result ,
flags : commandClass . success ? 0 : 64
} ) ;
} else if ( typeof result === "object" && result . embeds ) {
await interaction [ replyMethod ] ( Object . assign ( result , {
flags : result . flags ? ? ( commandClass . success ? 0 : 64 )
} ) ) ;
2022-03-22 20:43:26 +00:00
} else if ( typeof result === "object" && result . file ) {
2022-09-01 15:40:55 +00:00
const fileSize = 8388119 ;
2022-03-22 20:43:26 +00:00
if ( result . file . length > fileSize ) {
if ( process . env . TEMPDIR && process . env . TEMPDIR !== "" ) {
2022-09-21 05:05:03 +00:00
await upload ( client , result , interaction , true ) ;
2022-03-22 20:43:26 +00:00
} else {
2022-09-01 01:00:34 +00:00
await interaction [ replyMethod ] ( {
content : "The resulting image was more than 8MB in size, so I can't upload it." ,
flags : 64
} ) ;
2022-03-22 20:43:26 +00:00
}
} else {
2022-07-20 02:06:51 +00:00
await interaction [ replyMethod ] ( result . text ? result . text : { } , result ) ;
2022-03-22 20:43:26 +00:00
}
}
} catch ( error ) {
2022-07-20 02:06:51 +00:00
const replyMethod = interaction . acknowledged ? "editOriginalMessage" : "createMessage" ;
2022-03-22 20:43:26 +00:00
if ( error . toString ( ) . includes ( "Request entity too large" ) ) {
2022-09-01 01:00:34 +00:00
await interaction [ replyMethod ] ( { content : "The resulting file was too large to upload. Try again with a smaller image if possible." , flags : 64 } ) ;
2022-03-22 20:43:26 +00:00
} else if ( error . toString ( ) . includes ( "Job ended prematurely" ) ) {
2022-09-01 01:00:34 +00:00
await interaction [ replyMethod ] ( { content : "Something happened to the image servers before I could receive the image. Try running your command again." , flags : 64 } ) ;
2022-03-22 20:43:26 +00:00
} else if ( error . toString ( ) . includes ( "Timed out" ) ) {
2022-09-01 01:00:34 +00:00
await interaction [ replyMethod ] ( { content : "The request timed out before I could download that image. Try uploading your image somewhere else or reducing its size." , flags : 64 } ) ;
2022-03-22 20:43:26 +00:00
} else {
2022-09-01 01:00:34 +00:00
logger . error ( ` Error occurred with application command ${ command } with arguments ${ JSON . stringify ( interaction . data . options ) } : ${ error . stack || error } ` ) ;
2022-03-22 20:43:26 +00:00
try {
2022-09-11 04:18:44 +00:00
let err = error ;
if ( error ? . constructor ? . name == "Promise" ) err = await error ;
2022-07-20 02:06:51 +00:00
await interaction [ replyMethod ] ( "Uh oh! I ran into an error while running this command. Please report the content of the attached file at the following link or on the esmBot Support server: <https://github.com/esmBot/esmBot/issues>" , {
2022-09-11 04:18:44 +00:00
file : ` Message: ${ clean ( err ) } \n \n Stack Trace: ${ clean ( err . stack ) } ` ,
2022-03-22 20:43:26 +00:00
name : "error.txt"
2022-03-31 05:42:03 +00:00
} ) ;
2022-03-22 20:43:26 +00:00
} catch { /* silently ignore */ }
}
}
} ;