@@ -36,6 +36,11 @@ export interface hCommandContext {
36
36
command : CommandData ;
37
37
}
38
38
39
+ enum CommandIndication {
40
+ Continue ,
41
+ Stop ,
42
+ }
43
+
39
44
/**
40
45
* A handler for client application commands.
41
46
*/
@@ -219,20 +224,22 @@ export class CommandHandler {
219
224
env . clearAllDeferredFunctions ( ) ;
220
225
}
221
226
222
- async #requestExternalHandler( interaction : Interaction < CacheType > | Message ) {
227
+ async #requestExternalHandler(
228
+ interaction : Interaction < CacheType > | Message ,
229
+ ) : Promise < CommandIndication > {
223
230
const handler = this . #data. commandkitInstance . appCommandsHandler ;
224
- if ( ! handler ) return false ;
231
+ if ( ! handler ) return CommandIndication . Continue ;
225
232
226
233
if (
227
234
! ( interaction instanceof Message ) &&
228
235
! ( interaction . isCommand ( ) || interaction . isAutocomplete ( ) )
229
236
) {
230
- return false ;
237
+ return CommandIndication . Continue ;
231
238
}
232
239
233
240
const targetCommand = await handler . prepareCommandRun ( interaction ) ;
234
241
235
- if ( ! targetCommand ) return false ;
242
+ if ( ! targetCommand ) return CommandIndication . Continue ;
236
243
237
244
const environment = useEnvironment ( ) ;
238
245
@@ -261,6 +268,9 @@ export class CommandHandler {
261
268
const exec = async ( ) => {
262
269
if ( middlewares . length > 0 ) {
263
270
for ( const middleware of middlewares ) {
271
+ // command was cancelled by middleware
272
+ if ( context . cancelled ) return CommandIndication . Stop ;
273
+
264
274
try {
265
275
await middleware . data . beforeExecute ( context ) ;
266
276
} catch ( e ) {
@@ -281,6 +291,9 @@ export class CommandHandler {
281
291
}
282
292
}
283
293
294
+ // command was cancelled by middleware
295
+ if ( context . cancelled ) return CommandIndication . Stop ;
296
+
284
297
let postStageRunner = true ;
285
298
286
299
try {
@@ -368,7 +381,8 @@ export class CommandHandler {
368
381
const shouldDebug = this . #data. commandkitInstance . isDebuggingCommands ( ) ;
369
382
370
383
if ( ! shouldDebug ) {
371
- return exec ( ) ;
384
+ await exec ( ) ;
385
+ return CommandIndication . Stop ;
372
386
}
373
387
374
388
afterCommand ( ( env ) => {
@@ -394,9 +408,8 @@ export class CommandHandler {
394
408
395
409
try {
396
410
environment . markStart ( `${ command . data . command . name } ` ) ;
397
- const res = await exec ( ) ;
398
-
399
- return res ;
411
+ await exec ( ) ;
412
+ return CommandIndication . Stop ;
400
413
} finally {
401
414
environment . markEnd ( ) ;
402
415
}
@@ -407,9 +420,10 @@ export class CommandHandler {
407
420
try {
408
421
const result = await this . #requestExternalHandler( interaction ) ;
409
422
410
- if ( result !== false ) return ;
423
+ if ( result === CommandIndication . Stop ) return ;
411
424
} catch ( e ) {
412
425
console . error ( e ) ;
426
+ return ;
413
427
}
414
428
415
429
if (
@@ -487,6 +501,8 @@ export class CommandHandler {
487
501
488
502
const command = targetCommand [ isAutocomplete ? 'autocomplete' : 'run' ] ! ;
489
503
504
+ if ( ! command ) return ;
505
+
490
506
const context = {
491
507
interaction,
492
508
client : this . #data. client ,
0 commit comments