2020-01-24 03:17:03 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"runtime"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/diamondburned/arikawa/bot"
|
2020-05-14 21:20:23 +00:00
|
|
|
"github.com/diamondburned/arikawa/bot/extras/middlewares"
|
2020-01-24 03:17:03 +00:00
|
|
|
"github.com/diamondburned/arikawa/gateway"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Flag for administrators only.
|
|
|
|
type Debug struct {
|
|
|
|
Context *bot.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup demonstrates the CanSetup interface. This function will never be parsed
|
|
|
|
// as a callback of any event.
|
|
|
|
func (d *Debug) Setup(sub *bot.Subcommand) {
|
|
|
|
// Set a custom command (e.g. "!go ..."):
|
|
|
|
sub.Command = "go"
|
|
|
|
// Set a custom description:
|
|
|
|
sub.Description = "Print Go debugging variables"
|
|
|
|
|
|
|
|
// Manually set the usage for each function.
|
|
|
|
|
2020-05-14 21:20:23 +00:00
|
|
|
sub.ChangeCommandInfo("GOOS", "GOOS", "Prints the current operating system")
|
2020-07-29 23:29:01 +00:00
|
|
|
sub.ChangeCommandInfo("GC", "GC", "Triggers the garbage collector")
|
2020-05-14 21:20:23 +00:00
|
|
|
sub.ChangeCommandInfo("Goroutines", "", "Prints the current number of Goroutines")
|
2020-01-24 03:17:03 +00:00
|
|
|
|
2020-05-14 21:20:23 +00:00
|
|
|
sub.Hide("Die")
|
|
|
|
sub.AddMiddleware("Die", middlewares.AdminOnly(d.Context))
|
2020-01-24 03:17:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ~go goroutines
|
2020-07-29 23:29:01 +00:00
|
|
|
func (d *Debug) Goroutines(*gateway.MessageCreateEvent) (string, error) {
|
2020-01-26 09:08:53 +00:00
|
|
|
return fmt.Sprintf(
|
2020-01-24 03:17:03 +00:00
|
|
|
"goroutines: %d",
|
|
|
|
runtime.NumGoroutine(),
|
2020-01-26 09:08:53 +00:00
|
|
|
), nil
|
2020-01-24 03:17:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ~go GOOS
|
2020-07-29 23:29:01 +00:00
|
|
|
func (d *Debug) GOOS(*gateway.MessageCreateEvent) (string, error) {
|
2020-01-26 09:08:53 +00:00
|
|
|
return strings.Title(runtime.GOOS), nil
|
2020-01-24 03:17:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ~go GC
|
2020-07-29 23:29:01 +00:00
|
|
|
func (d *Debug) GC(*gateway.MessageCreateEvent) (string, error) {
|
2020-01-24 03:17:03 +00:00
|
|
|
runtime.GC()
|
2020-01-26 09:08:53 +00:00
|
|
|
return "Done.", nil
|
2020-01-24 03:17:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ~go die
|
|
|
|
// This command will be hidden from ~help by default.
|
2020-05-14 21:20:23 +00:00
|
|
|
func (d *Debug) Die(m *gateway.MessageCreateEvent) error {
|
2020-01-24 03:17:03 +00:00
|
|
|
log.Fatalln("User", m.Author.Username, "killed the bot x_x")
|
|
|
|
return nil
|
|
|
|
}
|