2022-08-28 17:04:11 +02:00
import { PermissionFlagsBits , InteractionType } from 'discord.js' ;
2022-08-14 22:29:19 +02:00
import db from '../../models/index.js' ;
2022-12-18 23:30:25 +01:00
import ratelimiter from '../../utils/ratelimiter.js' ;
2022-08-17 16:22:22 +02:00
const { ownerId } = process . env ;
2022-06-17 01:25:05 +02:00
export default {
2022-06-16 09:18:39 +02:00
name : 'interactionCreate' ,
async execute ( interaction ) {
const client = interaction . client ;
2022-08-28 17:04:11 +02:00
if ( interaction . type !== InteractionType . ApplicationCommand ) return ;
2022-06-16 09:18:39 +02:00
2022-08-14 22:29:19 +02:00
const globalBlacklist = await db . Blacklists . findOne ( { where : { type : 'global' , uid : interaction . user . id } } ) ;
const commandBlacklist = await db . Blacklists . findOne ( { where : { type : interaction . commandName , uid : interaction . user . id } } ) ;
if ( globalBlacklist ) {
2022-08-14 23:34:19 +02:00
return interaction . reply ( { content : ` You are globally blacklisted for the following reason: \` ${ globalBlacklist . reason } \` ` , ephemeral : true } ) ;
2022-08-14 22:29:19 +02:00
}
else if ( commandBlacklist ) {
2022-08-14 23:34:19 +02:00
return interaction . reply ( { content : ` You are blacklisted for the following reason: \` ${ commandBlacklist . reason } \` ` , ephemeral : true } ) ;
2022-08-14 22:29:19 +02:00
}
2022-08-14 23:28:24 +02:00
const userTag = interaction . user . tag ;
const userID = interaction . user . id ;
const commandName = interaction . commandName ;
2022-06-16 09:18:39 +02:00
2022-08-14 23:28:24 +02:00
const command = client . commands . get ( commandName ) ;
2022-06-16 13:29:23 +02:00
2022-06-16 09:18:39 +02:00
if ( ! command ) return ;
2023-04-04 00:34:24 +02:00
const isOptOut = await db . optout . findOne ( { where : { userID : interaction . user . id } } ) ;
if ( isOptOut ) {
console . log ( ` A user launched command \x 1b[33m ${ commandName } \x 1b[0m with slash ` ) ;
}
else {
console . log ( ` \x 1b[33m ${ userTag } ( ${ userID } ) \x 1b[0m launched command \x 1b[33m ${ commandName } \x 1b[0m with slash ` ) ;
}
2022-08-17 16:22:22 +02:00
2022-08-22 19:18:27 +02:00
// Owner only check
2022-08-17 16:22:22 +02:00
if ( command . ownerOnly && interaction . user . id !== ownerId ) {
return interaction . reply ( { content : '❌ This command is reserved for the owner!' , ephemeral : true } ) ;
}
2022-08-22 19:18:27 +02:00
// Check if the bot has the needed permissions
2022-08-30 22:58:23 +02:00
if ( command . default _permission ) {
2022-08-22 19:18:27 +02:00
const clientMember = await interaction . guild . members . fetch ( client . user . id ) ;
if ( ! clientMember . permissions . has ( command . clientPermissions ) ) {
2022-08-28 17:04:11 +02:00
return interaction . reply ( { content : ` ❌ I am missing one of the following permission(s): \` ${ new PermissionFlagsBits ( command . clientPermissions ) . toArray ( ) } \` ` , ephemeral : true } ) ;
2022-08-22 19:18:27 +02:00
}
}
// Check if the user has the needed permissions
2022-08-30 22:58:23 +02:00
/ *
if ( command . default _member _permissions ) {
2022-08-22 19:18:27 +02:00
if ( ! interaction . member . permissions . has ( command . userPermissions ) ) {
2022-08-28 17:04:11 +02:00
return interaction . reply ( { content : ` ❌ You are missing one of the following permission(s): \` ${ new PermissionFlagsBits ( command . userPermissions ) . toArray ( ) } \` ` , ephemeral : true } ) ;
2022-08-22 19:18:27 +02:00
}
}
2022-08-30 22:58:23 +02:00
* /
2022-08-22 19:18:27 +02:00
2022-12-18 23:30:25 +01:00
// Check the ratelimit
const doRateLimit = ratelimiter . check ( interaction . user , commandName , command ) ;
if ( doRateLimit ) {
return interaction . reply ( { content : doRateLimit , ephemeral : true } ) ;
2022-12-18 22:53:23 +01:00
2022-12-18 23:30:25 +01:00
}
2022-12-18 22:53:23 +01:00
2022-12-18 23:30:25 +01:00
try {
2022-11-24 21:34:54 +01:00
interaction . prefix = '/' ;
2022-09-01 01:43:59 +02:00
const args = { } ;
// https://discord-api-types.dev/api/discord-api-types-v10/enum/ApplicationCommandOptionType
2022-08-28 17:04:11 +02:00
interaction . options . data . forEach ( arg => {
2022-09-01 01:43:59 +02:00
let payload = arg . value ;
if ( arg . type === 9 ) {
payload = arg . member ;
2022-08-28 17:04:11 +02:00
}
2022-09-01 01:43:59 +02:00
else if ( arg . type === 11 ) {
payload = arg . attachment ;
2022-08-28 17:04:11 +02:00
}
2022-09-01 01:43:59 +02:00
args [ arg . name ] = payload ;
2022-08-28 17:04:11 +02:00
} ) ;
2023-04-04 00:34:24 +02:00
if ( ! isOptOut ) {
2023-04-07 02:25:46 +02:00
console . log ( ` \x 1b[33m⤷ \x 1b[0m with args ${ JSON . stringify ( args ) } ` ) ;
2023-04-04 00:34:24 +02:00
}
2022-08-28 17:04:11 +02:00
await command . execute ( interaction , args , client ) ;
2022-06-16 09:18:39 +02:00
}
catch ( error ) {
console . error ( error ) ;
2022-08-18 01:45:55 +02:00
await interaction . followUp ( { content : 'There was an error while executing this command!' , ephemeral : true } ) ;
2022-06-16 09:18:39 +02:00
}
} ,
} ;