-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCommand.ts
80 lines (69 loc) · 2.25 KB
/
Command.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import type {
APIApplicationCommandOption,
APIApplicationCommand,
RESTPostAPIApplicationCommandsJSONBody,
} from 'discord-api-types/v9'
import type { CommandInteraction, InteractionReplyOptions } from 'discord.js'
import type { DiscordCommandOption } from './CommandOption'
export interface IDiscordCommandConfig {
name: string
description?: string
usage?: string
options?: APIApplicationCommandOption[] | DiscordCommandOption[]
enabledByDefault?: boolean
}
export type DiscordCommandHandler = (
interaction: CommandInteraction
) =>
| string
| undefined
| InteractionReplyOptions
| Promise<string | undefined | InteractionReplyOptions>
export type CreateDiscordCommandInput = IDiscordCommandConfig & {
handler: DiscordCommandHandler
}
export interface IDiscordCommand extends IDiscordCommandConfig {
handler: DiscordCommandHandler
registration?: APIApplicationCommand
}
export type DiscordCommandConfig = IDiscordCommandConfig
export class DiscordCommand implements IDiscordCommand {
public readonly name: string
public readonly description?: string
public readonly usage?: string
public readonly options: APIApplicationCommandOption[]
public readonly enabledByDefault?: boolean
private readonly version: number = 0
public registration?: APIApplicationCommand
constructor(props) {
const validCommandNameRegex = /^[\w-]{1,32}$/g
if (!validCommandNameRegex.test(props.name)) {
throw new Error(`Invalid Command name: ${props.name}`)
}
this.name = props.name
this.description = props.description
this.usage = props.usage
this.options = props.options
this.handler = props.handler
this.enabledByDefault = props.enabledByDefault ?? true
}
public readonly handler: DiscordCommandHandler
public createRegistrationPayload(): RESTPostAPIApplicationCommandsJSONBody {
const name = this.name
const description = this.description || ''
const options = this.options
const default_permission = this.enabledByDefault
return {
name,
description,
options,
default_permission,
}
}
}
export function createDiscordCommand(
props: CreateDiscordCommandInput
): DiscordCommand {
return new DiscordCommand(props)
}
export const createCommand = createDiscordCommand