This repository was archived by the owner on Jun 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelp.go
58 lines (52 loc) · 1.57 KB
/
help.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
package main
import (
"fmt"
"github.com/bwmarrin/discordgo"
)
func fullHelpEmbed() *discordgo.MessageEmbed {
embed := &discordgo.MessageEmbed{}
embed.Title = "PrysmBot help"
embed.Footer = &discordgo.MessageEmbedFooter{
Text: "Powered by the Topaz Testnet",
IconURL: "https://prysmaticlabs.com/assets/PrysmStripe.png",
}
var fields []*discordgo.MessageEmbedField
for _, flag := range allFlagGroups {
field := &discordgo.MessageEmbedField{
Name: flag.displayName,
Value: fmt.Sprintf(flag.helpText, fmt.Sprintf("`!%s.help`", flag.name)),
Inline: false,
}
fields = append(fields, field)
}
embed.Fields = fields
return embed
}
func specificHelpEmbed(requestedGroup *botCommandGroup) *discordgo.MessageEmbed {
embed := &discordgo.MessageEmbed{}
embed.Title = fmt.Sprintf("%s Command Help", requestedGroup.displayName)
embed.Footer = &discordgo.MessageEmbedFooter{
Text: "Powered by the Topaz Testnet",
IconURL: "https://prysmaticlabs.com/assets/PrysmStripe.png",
}
var fields []*discordgo.MessageEmbedField
for _, botCommand := range requestedGroup.commands {
field := &discordgo.MessageEmbedField{}
if botCommand.group == randomCommandGroup.name {
field = &discordgo.MessageEmbedField{
Name: fmt.Sprintf("!%s", botCommand.command),
Value: botCommand.helpText,
Inline: false,
}
} else {
field = &discordgo.MessageEmbedField{
Name: fmt.Sprintf("!%s.%s", requestedGroup.name, botCommand.command),
Value: botCommand.helpText,
Inline: false,
}
}
fields = append(fields, field)
}
embed.Fields = fields
return embed
}