-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin_help.go
67 lines (54 loc) · 1.39 KB
/
plugin_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
59
60
61
62
63
64
65
66
67
package main
import (
"github.com/thoj/go-ircevent"
"strings"
"net/url"
)
type HelpCommand struct {
ArgCommand
}
func Help() HelpCommand {
return HelpCommand{
ArgCommand{
Args: []string{"help", "[query]"},
docs: "Gets information about a particular command.",
},
}
}
func (c HelpCommand) Handle(e *irc.Event) {
query := c.argsForCommand(e.Message)["query"]
relaventCommands := []string{}
for _, command := range(argCommands) {
argCommand := argCommandFor(command)
if argCommand.ShouldHandleMessage(e, query, false) {
humanReadableArgs := Config.Event(e, "comchar") + strings.Join(argCommand.Args, " ")
relaventCommands = append(relaventCommands, humanReadableArgs)
}
}
if len(relaventCommands) > 0 {
Connection.Privmsg(getTarget(e), prettyStuff(relaventCommands))
}
}
type AboutCommand struct{
ArgCommand
}
func About() AboutCommand {
return AboutCommand{
ArgCommand{
Args: []string{"help"},
docs: "Provides you with some useful links for your consideration.",
},
}
}
func (c AboutCommand) Handle(e *irc.Event) {
helpUrlComponents := []string{
Config.Event(e, "url"),
"help",
url.QueryEscape(Config.ourNetwork),
url.QueryEscape(getTarget(e)),
}
Connection.Privmsg(getTarget(e), prettyNestedStuff([][]string{
[]string{"\x02features\x02", strings.Join(helpUrlComponents, "/")},
[]string{"\x02github\x02", "https://github.com/colons/gofoot"},
}))
}