-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroupslashcommand.go
130 lines (106 loc) · 3.56 KB
/
groupslashcommand.go
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package harmonia
import (
"log"
"github.com/bwmarrin/discordgo"
)
// GroupSlashCommand describes a group of slash commands.
type GroupSlashCommand struct {
name string
description string
guildID string
dmPermission bool
defaultPermissions *int64
subcommands map[string]CommandHandler
registration *discordgo.ApplicationCommand
}
// NewGroupSlashCommand returns a GroupSlashCommand with a given name
func NewGroupSlashCommand(name string) *GroupSlashCommand {
if name == "" {
log.Panic("empty command name")
}
if !slashCommandNameRegex.MatchString(name) {
log.Panic("slash command name does not match with the CHAT_INPUT regex.")
}
return &GroupSlashCommand{
name: name,
subcommands: make(map[string]CommandHandler),
}
}
// WithDescription changes the description of the GroupSlashCommand and returns itself, so that it can be chained.
func (s *GroupSlashCommand) WithDescription(description string) *GroupSlashCommand {
s.description = description
return s
}
// WithGuildID changes the guildID of the GroupSlashCommand and returns itself, so that it can be chained.
func (s *GroupSlashCommand) WithGuildID(guildID string) *GroupSlashCommand {
s.guildID = guildID
return s
}
func (s *GroupSlashCommand) WithSubCommands(subcommands ...CommandHandler) *GroupSlashCommand {
for _, command := range subcommands {
name := command.GetName()
if _, ok := command.(*SlashCommand); !ok {
if _, ok := command.(*GroupSlashCommand); !ok {
log.Panic("supplied subcommand is neither SlashCommand nor GroupSlashCommand")
}
}
if _, ok := s.subcommands[name]; ok {
log.Panic("duplicate subcommand name")
}
s.subcommands[name] = command
}
return s
}
// WithDMPermission changes the DM Permission of the GroupSlashCommand and returns itself, so that it can be chained.
func (s *GroupSlashCommand) WithDMPermission(isAllowed bool) *GroupSlashCommand {
s.dmPermission = isAllowed
return s
}
// WithDefaultPermissions changes the DefaultPermissions of the GroupSlashCommand and returns itself, so that it can be chained.
func (s *GroupSlashCommand) WithDefaultPermissions(defaultPermissions int64) *GroupSlashCommand {
s.defaultPermissions = &defaultPermissions
return s
}
func (s *GroupSlashCommand) GetName() string {
return s.name
}
func (s *GroupSlashCommand) Do(h *Harmonia, i *Invocation) {
options := i.options
if command, ok := s.subcommands[options[0].Name]; ok {
i.options = options[0].Options
go command.Do(h, i)
}
}
func (s *GroupSlashCommand) getRegistration() *discordgo.ApplicationCommand {
if s.registration != nil {
return s.registration
}
options := make([]*discordgo.ApplicationCommandOption, len(s.subcommands))
i := 0
for _, command := range s.subcommands {
t := discordgo.ApplicationCommandOptionSubCommand
if _, ok := command.(*GroupSlashCommand); ok {
t = discordgo.ApplicationCommandOptionSubCommandGroup
}
data := command.getRegistration()
options[i] = &discordgo.ApplicationCommandOption{
Name: data.Name,
Description: data.Description,
Options: data.Options,
Type: t,
}
i++
}
return &discordgo.ApplicationCommand{
Name: s.name,
Description: s.description,
GuildID: s.guildID,
Options: options,
DMPermission: &s.dmPermission,
DefaultMemberPermissions: s.defaultPermissions,
Type: discordgo.ChatApplicationCommand,
}
}
func (s *GroupSlashCommand) setRegistration(registration *discordgo.ApplicationCommand) {
s.registration = registration
}