2020-04-20 20:52:22 +00:00
const fs = require ( "fs" ) ;
2019-09-13 20:02:41 +00:00
const client = require ( "../utils/client.js" ) ;
const database = require ( "../utils/database.js" ) ;
const logger = require ( "../utils/logger.js" ) ;
const collections = require ( "../utils/collections.js" ) ;
2020-09-10 18:31:41 +00:00
const commands = [ ... collections . aliases . keys ( ) , ... collections . commands . keys ( ) ] ;
2019-09-13 20:02:41 +00:00
// run when someone sends a message
module . exports = async ( message ) => {
// ignore dms and other bots
if ( message . author . bot ) return ;
2019-12-16 23:14:29 +00:00
// don't run command if bot can't send messages
2020-09-01 22:10:19 +00:00
if ( message . channel . guild && ( ! message . channel . guild . members . get ( client . user . id ) . permission . has ( "sendMessages" ) || ! message . channel . permissionsOf ( client . user . id ) . has ( "sendMessages" ) ) ) return ;
2019-12-16 23:14:29 +00:00
2020-09-10 01:14:01 +00:00
// this is here to prevent reading the database if a message is unrelated
let valid = false ;
2020-09-10 18:31:41 +00:00
for ( const key of commands ) {
2020-09-12 18:57:25 +00:00
if ( message . content . toLowerCase ( ) . includes ( key ) ) {
2020-09-10 01:14:01 +00:00
valid = true ;
break ;
}
}
if ( ! valid ) return ;
2020-12-18 02:32:19 +00:00
let prefixCandidate ;
if ( collections . prefixCache . has ( message . channel . guild . id ) ) {
prefixCandidate = collections . prefixCache . get ( message . channel . guild . id ) ;
} else {
let guildDB = message . channel . guild ? await database . getGuild ( message . channel . guild . id ) : null ;
if ( message . channel . guild && ! ( guildDB && guildDB . disabled ) ) {
guildDB = await database . fixGuild ( message . channel . guild ) ;
}
prefixCandidate = guildDB . prefix ;
collections . prefixCache . set ( message . channel . guild . id , guildDB . prefix ) ;
2020-11-05 21:40:18 +00:00
}
2020-12-18 02:32:19 +00:00
// this line be like Pain. Pain. Pain. Pain. Pain. Pain. Pain. Pain. Pain. Pain. Pain. Pain.
// there's also bit of a workaround here due to member.mention not accounting for both mention types
const prefix = message . channel . guild ? ( message . content . startsWith ( message . channel . guild . members . get ( client . user . id ) . mention ) ? ` ${ message . channel . guild . members . get ( client . user . id ) . mention } ` : ( message . content . startsWith ( ` <@ ${ client . user . id } > ` ) ? ` <@ ${ client . user . id } > ` : prefixCandidate ) ) : "" ;
2019-09-13 20:02:41 +00:00
// ignore other stuff
2020-03-14 23:22:09 +00:00
if ( message . content . startsWith ( prefix ) === false ) return ;
2019-09-13 20:02:41 +00:00
// separate commands and args
2020-07-28 14:38:55 +00:00
const content = message . content . substring ( prefix . length ) . trim ( ) ;
2020-01-13 16:31:01 +00:00
const args = content . split ( / +/g ) ;
2019-09-13 20:02:41 +00:00
const command = args . shift ( ) . toLowerCase ( ) ;
2020-04-10 02:40:52 +00:00
// don't run if message is in a disabled channel
2020-12-18 02:32:19 +00:00
if ( collections . disabledCache . has ( message . channel . guild . id ) ) {
const disabled = collections . disabledCache . get ( message . channel . guild . id ) ;
if ( disabled . includes ( message . channel . id ) && command != "channel" ) return ;
} else if ( message . channel . guild ) {
const guildDB = await database . getGuild ( message . channel . guild . id ) ;
collections . disabledCache . set ( message . channel . guild . id , guildDB . disabled ) ;
if ( guildDB . disabled . includes ( message . channel . id ) && command !== "channel" ) return ;
}
2020-04-10 02:40:52 +00:00
2019-09-13 20:02:41 +00:00
// check if command exists
const cmd = collections . commands . get ( command ) || collections . commands . get ( collections . aliases . get ( command ) ) ;
if ( ! cmd ) return ;
// actually run the command
logger . log ( "info" , ` ${ message . author . username } ( ${ message . author . id } ) ran command ${ command } ` ) ;
try {
2020-12-18 02:32:19 +00:00
await database . addCount ( collections . aliases . has ( command ) ? collections . aliases . get ( command ) : command ) ;
2020-01-13 16:31:01 +00:00
const result = await cmd ( message , args , content . replace ( command , "" ) . trim ( ) ) ; // we also provide the message content as a parameter for cases where we need more accuracy
2020-04-12 19:51:48 +00:00
if ( typeof result === "string" || ( typeof result === "object" && result . embed ) ) {
2019-09-13 20:02:41 +00:00
await client . createMessage ( message . channel . id , result ) ;
2020-04-12 19:51:48 +00:00
} else if ( typeof result === "object" && result . file ) {
2020-04-24 02:14:03 +00:00
if ( result . file . length > 8388119 && process . env . TEMPDIR !== "" ) {
2020-04-20 20:52:22 +00:00
const filename = ` ${ Math . random ( ) . toString ( 36 ) . substring ( 2 , 15 ) } . ${ result . name . split ( "." ) [ 1 ] } ` ;
2020-08-13 13:47:41 +00:00
await fs . promises . writeFile ( ` ${ process . env . TEMPDIR } / ${ filename } ` , result . file ) ;
2020-04-20 20:52:22 +00:00
await client . createMessage ( message . channel . id , {
embed : {
color : 16711680 ,
2020-12-08 02:42:36 +00:00
title : "Here's your image!" ,
url : ` https://projectlounge.pw/tmp/ ${ filename } ` ,
2020-04-20 20:52:22 +00:00
image : {
url : ` https://projectlounge.pw/tmp/ ${ filename } `
2020-12-08 02:42:36 +00:00
} ,
footer : {
text : "The result image was more than 8MB in size, so it was uploaded to an external site instead."
} ,
2020-04-20 20:52:22 +00:00
}
} ) ;
} else {
await client . createMessage ( message . channel . id , result . text ? result . text : "" , result ) ;
}
2019-09-13 20:02:41 +00:00
}
} catch ( error ) {
2020-07-17 00:54:03 +00:00
if ( error . toString ( ) . includes ( "Request entity too large" ) ) {
await client . createMessage ( message . channel . id , ` ${ message . author . mention } , the resulting file was too large to upload. Try again with a smaller image if possible. ` ) ;
} else if ( error . toString ( ) . includes ( "Timed out" ) ) {
await client . createMessage ( message . channel . id , ` ${ message . author . mention } , the request timed out before I could download that image. Try uploading your image somewhere else. ` ) ;
} else {
2020-02-25 21:07:36 +00:00
logger . error ( error . toString ( ) ) ;
2020-09-01 22:10:19 +00:00
await client . createMessage ( message . channel . id , "Uh oh! I ran into an error while running this command. Please report the content of the attached file here or on the esmBot Support server: <https://github.com/esmBot/esmBot/issues>" , [ {
2020-02-25 21:07:36 +00:00
file : Buffer . from ( ` Message: ${ error } \n \n Stack Trace: ${ error . stack } ` ) ,
name : "error.txt"
} ] ) ;
}
2019-09-13 20:02:41 +00:00
}
} ;