This repository has been archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.go
70 lines (68 loc) · 1.66 KB
/
admin.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 main
import (
"github.com/bwmarrin/discordgo"
"time"
)
var (
adminCommands = []*discordgo.ApplicationCommand{
{
Name: "userinfo",
Description: "Get information about a user.",
Options: []*discordgo.ApplicationCommandOption{
{
Type: discordgo.ApplicationCommandOptionUser,
Name: "user",
Description: "The user to get information about.",
},
},
},
}
adminCommandHandlers = map[string]func(s *discordgo.Session, i *discordgo.InteractionCreate){
"userinfo": func(s *discordgo.Session, i *discordgo.InteractionCreate) {
member := i.Member
user := member.User
if len(i.ApplicationCommandData().Options) == 1 {
user = i.ApplicationCommandData().Options[0].UserValue(s)
}
joined, err := member.JoinedAt.Parse()
if err != nil {
return
}
s.InteractionRespond(i.Interaction, &discordgo.InteractionResponse{
Type: discordgo.InteractionResponseChannelMessageWithSource,
Data: &discordgo.InteractionResponseData{
Content: " ",
Embeds: []*discordgo.MessageEmbed{{
Title: "User Information",
Image: &discordgo.MessageEmbedImage{
URL: user.AvatarURL(""),
},
Fields: []*discordgo.MessageEmbedField{
{
Name: "Username",
Value: user.Username,
Inline: true,
},
{
Name: "ID",
Value: user.ID,
Inline: true,
},
{
Name: "Discriminator",
Value: user.Discriminator,
Inline: true,
},
{
Name: "Joined",
Value: joined.Format(time.RFC3339),
Inline: true,
},
},
},
},
},
})
},
}
)