-
Notifications
You must be signed in to change notification settings - Fork 0
/
interaction_handler.go
70 lines (53 loc) · 1.25 KB
/
interaction_handler.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
package disroute
import (
"context"
"github.com/bwmarrin/discordgo"
)
func (r *Router) InteractionHandler(_ *discordgo.Session, i *discordgo.InteractionCreate) {
if i.Type == discordgo.InteractionPing || i.Type == discordgo.InteractionModalSubmit {
return
}
ctx := newCtx(&ctxParams{
Session: r.session,
i: i.Interaction,
ctx: context.Background(),
Options: nil,
})
switch i.Type {
case discordgo.InteractionApplicationCommand:
r.handleCommand(ctx)
case discordgo.InteractionApplicationCommandAutocomplete:
r.handleAutocomplete(ctx)
case discordgo.InteractionMessageComponent:
r.handleComponent(ctx)
}
}
func (r *Router) handleCommand(ctx *Ctx) {
hd := buildHandlerData(ctx.Interaction())
ctx.Options = hd.opts
h, ok := r.handlers[hd.path]
if !ok {
return
}
resp := h(ctx)
r.responseHandler(ctx, &resp)
}
func (r *Router) handleAutocomplete(ctx *Ctx) {
hd := buildHandlerData(ctx.Interaction())
ctx.Options = hd.opts
h, ok := r.autocomp[hd.path]
if !ok {
return
}
resp := h(ctx)
r.autocompleteHandler(ctx, resp)
}
func (r *Router) handleComponent(ctx *Ctx) {
path := r.componentKeyFunc(ctx.Interaction())
h, ok := r.components[path]
if !ok {
return
}
resp := h(ctx)
r.responseHandler(ctx, &resp)
}