Refactored handlers and command handlers
This commit is contained in:
parent
7a0c90a5f7
commit
a0fc17fd89
122
bot/bot.go
122
bot/bot.go
@ -7,7 +7,9 @@ import (
|
|||||||
"os/signal"
|
"os/signal"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
|
"git.kill0.net/chill9/beepboop/command"
|
||||||
"git.kill0.net/chill9/beepboop/config"
|
"git.kill0.net/chill9/beepboop/config"
|
||||||
|
"git.kill0.net/chill9/beepboop/handler"
|
||||||
"git.kill0.net/chill9/beepboop/lib"
|
"git.kill0.net/chill9/beepboop/lib"
|
||||||
"github.com/bwmarrin/discordgo"
|
"github.com/bwmarrin/discordgo"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
@ -19,10 +21,19 @@ var C *config.Config
|
|||||||
|
|
||||||
type (
|
type (
|
||||||
Bot struct {
|
Bot struct {
|
||||||
Session *discordgo.Session
|
config *config.Config
|
||||||
Config *config.Config
|
session *discordgo.Session
|
||||||
|
commands map[string]*Command
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Command struct {
|
||||||
|
Name string
|
||||||
|
Func CommandFunc
|
||||||
|
NArgs int
|
||||||
|
}
|
||||||
|
|
||||||
|
CommandFunc func(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error
|
||||||
|
|
||||||
MessageHandler func(s *discordgo.Session, m *discordgo.MessageCreate)
|
MessageHandler func(s *discordgo.Session, m *discordgo.MessageCreate)
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -33,60 +44,110 @@ func init() {
|
|||||||
viper.BindPFlags(pflag.CommandLine)
|
viper.BindPFlags(pflag.CommandLine)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewBot(s *discordgo.Session, config *config.Config) *Bot {
|
func NewBot(config *config.Config, s *discordgo.Session) *Bot {
|
||||||
return &Bot{Session: s, Config: config}
|
return &Bot{
|
||||||
|
session: s,
|
||||||
|
commands: make(map[string]*Command),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) RegisterCommands() {
|
func (b *Bot) AddHandler(handler interface{}) func() {
|
||||||
AddCommand(&Command{
|
return b.session.AddHandler(handler)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *Bot) AddCommand(cmd *Command) {
|
||||||
|
b.commands[cmd.Name] = cmd
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *Bot) GetCommand(name string) (*Command, bool) {
|
||||||
|
cmd, ok := b.commands[name]
|
||||||
|
return cmd, ok
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *Bot) CommandHandler(s *discordgo.Session, m *discordgo.MessageCreate) {
|
||||||
|
if m.Author.ID == s.State.User.ID {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if !lib.HasCommand(m.Content, b.config.Prefix) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
cmdName, arg := lib.SplitCommandAndArg(m.Content, b.config.Prefix)
|
||||||
|
|
||||||
|
cmd, ok := b.GetCommand(cmdName)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
args := lib.SplitArgs(arg, cmd.NArgs)
|
||||||
|
|
||||||
|
if ok {
|
||||||
|
log.Debugf("command: %v, args: %v, nargs: %d", cmd.Name, args, len(args))
|
||||||
|
if err := cmd.Func(args, s, m); err != nil {
|
||||||
|
log.Errorf("failed to execute command: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Warnf("unknown command: %v, args: %v, nargs: %d", cmdName, args, len(args))
|
||||||
|
s.ChannelMessageSend(m.ChannelID, fmt.Sprintf("unknown command: %s", cmdName))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *Bot) Init(h *handler.Handlers, ch *command.Handlers) {
|
||||||
|
// Register handlers
|
||||||
|
b.AddHandler(h.Reaction)
|
||||||
|
|
||||||
|
// Register commands
|
||||||
|
b.AddCommand(&Command{
|
||||||
Name: "coin",
|
Name: "coin",
|
||||||
Func: b.CoinCommand(),
|
Func: ch.Coin,
|
||||||
})
|
})
|
||||||
AddCommand(&Command{
|
b.AddCommand(&Command{
|
||||||
Name: "deal",
|
Name: "deal",
|
||||||
Func: b.DealCommand(),
|
Func: ch.Deal,
|
||||||
NArgs: 1,
|
NArgs: 1,
|
||||||
})
|
})
|
||||||
AddCommand(&Command{
|
b.AddCommand(&Command{
|
||||||
Name: "ping",
|
Name: "ping",
|
||||||
Func: b.PingCommand(),
|
Func: ch.Ping,
|
||||||
})
|
})
|
||||||
AddCommand(&Command{
|
b.AddCommand(&Command{
|
||||||
Name: "roll",
|
Name: "roll",
|
||||||
Func: b.RollCommand(),
|
Func: ch.Roll,
|
||||||
NArgs: 1,
|
NArgs: 1,
|
||||||
})
|
})
|
||||||
AddCommand(&Command{
|
b.AddCommand(&Command{
|
||||||
|
Name: "roulette",
|
||||||
|
Func: ch.Roulette,
|
||||||
|
})
|
||||||
|
b.AddCommand(&Command{
|
||||||
Name: "rps",
|
Name: "rps",
|
||||||
Func: b.RpsCommand(),
|
Func: ch.Rps,
|
||||||
NArgs: 1,
|
NArgs: 1,
|
||||||
})
|
})
|
||||||
AddCommand(&Command{
|
b.AddCommand(&Command{
|
||||||
Name: "rpsls",
|
Name: "rpsls",
|
||||||
Func: b.RpslsCommand(),
|
Func: ch.Rpsls,
|
||||||
NArgs: 1,
|
NArgs: 1,
|
||||||
})
|
})
|
||||||
AddCommand(&Command{
|
b.AddCommand(&Command{
|
||||||
Name: "time",
|
Name: "time",
|
||||||
Func: b.TimeCommand(),
|
Func: ch.Time,
|
||||||
NArgs: 1,
|
NArgs: 1,
|
||||||
})
|
})
|
||||||
AddCommand(&Command{
|
b.AddCommand(&Command{
|
||||||
Name: "version",
|
Name: "version",
|
||||||
Func: b.VersionCommand(),
|
Func: ch.Version,
|
||||||
})
|
})
|
||||||
AddCommand(&Command{
|
b.AddCommand(&Command{
|
||||||
Name: "weather",
|
Name: "weather",
|
||||||
Func: b.WeatherCommand(),
|
Func: ch.Weather,
|
||||||
NArgs: 1,
|
NArgs: 1,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) RegisterHandlers() {
|
|
||||||
b.Session.AddHandler(b.CommandHandler())
|
|
||||||
b.Session.AddHandler(b.ReactionHandler())
|
|
||||||
}
|
|
||||||
|
|
||||||
func Run() error {
|
func Run() error {
|
||||||
initConfig()
|
initConfig()
|
||||||
go reloadConfig()
|
go reloadConfig()
|
||||||
@ -104,9 +165,8 @@ func Run() error {
|
|||||||
return fmt.Errorf("error creating discord session: %v", err)
|
return fmt.Errorf("error creating discord session: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
b := NewBot(dg, C)
|
b := NewBot(C, dg)
|
||||||
b.RegisterHandlers()
|
b.Init(handler.NewHandlers(C), command.NewHandlers(C))
|
||||||
b.RegisterCommands()
|
|
||||||
|
|
||||||
dg.Identify.Intents = discordgo.IntentsGuildMessages | discordgo.IntentsDirectMessages
|
dg.Identify.Intents = discordgo.IntentsGuildMessages | discordgo.IntentsDirectMessages
|
||||||
|
|
||||||
|
31
bot/coin.go
31
bot/coin.go
@ -1,31 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"git.kill0.net/chill9/beepboop/lib"
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Coin bool
|
|
||||||
|
|
||||||
func (c *Coin) Flip() bool {
|
|
||||||
*c = Coin(lib.Itob(lib.RandInt(0, 1)))
|
|
||||||
return bool(*c)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (b *Bot) CoinCommand() CommandFunc {
|
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
var (
|
|
||||||
c Coin
|
|
||||||
msg string
|
|
||||||
)
|
|
||||||
|
|
||||||
if c.Flip() {
|
|
||||||
msg = "heads"
|
|
||||||
} else {
|
|
||||||
msg = "tails"
|
|
||||||
}
|
|
||||||
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, msg)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,91 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"git.kill0.net/chill9/beepboop/config"
|
|
||||||
"git.kill0.net/chill9/beepboop/lib"
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
DefaultCommander *Commander
|
|
||||||
)
|
|
||||||
|
|
||||||
type (
|
|
||||||
Commander struct {
|
|
||||||
commands map[string]*Command
|
|
||||||
}
|
|
||||||
|
|
||||||
Command struct {
|
|
||||||
Name string
|
|
||||||
Config *config.Config
|
|
||||||
Func CommandFunc
|
|
||||||
NArgs int
|
|
||||||
}
|
|
||||||
|
|
||||||
CommandFunc func(args []string, m *discordgo.MessageCreate) error
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
DefaultCommander = NewCommander()
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewCommander() *Commander {
|
|
||||||
cmdr := new(Commander)
|
|
||||||
cmdr.commands = make(map[string]*Command)
|
|
||||||
return cmdr
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cmdr *Commander) AddCommand(cmd *Command) {
|
|
||||||
cmdr.commands[cmd.Name] = cmd
|
|
||||||
}
|
|
||||||
|
|
||||||
func (cmdr *Commander) GetCommand(name string) (*Command, bool) {
|
|
||||||
cmd, ok := cmdr.commands[name]
|
|
||||||
return cmd, ok
|
|
||||||
}
|
|
||||||
|
|
||||||
func AddCommand(cmd *Command) {
|
|
||||||
DefaultCommander.AddCommand(cmd)
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetCommand(name string) (*Command, bool) {
|
|
||||||
cmd, ok := DefaultCommander.GetCommand(name)
|
|
||||||
return cmd, ok
|
|
||||||
}
|
|
||||||
|
|
||||||
func (b *Bot) CommandHandler() func(*discordgo.Session, *discordgo.MessageCreate) {
|
|
||||||
return func(s *discordgo.Session, m *discordgo.MessageCreate) {
|
|
||||||
var cmd *Command
|
|
||||||
|
|
||||||
if m.Author.ID == s.State.User.ID {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if !lib.HasCommand(m.Content, b.Config.Prefix) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
cmdName, arg := lib.SplitCommandAndArg(m.Content, b.Config.Prefix)
|
|
||||||
|
|
||||||
cmd, ok := GetCommand(cmdName)
|
|
||||||
|
|
||||||
args := lib.SplitArgs(arg, cmd.NArgs)
|
|
||||||
|
|
||||||
if ok {
|
|
||||||
cmd.Config = b.Config
|
|
||||||
|
|
||||||
log.Debugf("command: %v, args: %v, nargs: %d", cmd.Name, args, len(args))
|
|
||||||
if err := cmd.Func(args, m); err != nil {
|
|
||||||
log.Errorf("failed to execute command: %s", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Warnf("unknown command: %v, args: %v, nargs: %d", cmdName, args, len(args))
|
|
||||||
s.ChannelMessageSend(m.ChannelID, fmt.Sprintf("unknown command: %s", cmdName))
|
|
||||||
}
|
|
||||||
}
|
|
12
bot/ping.go
12
bot/ping.go
@ -1,12 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (b *Bot) PingCommand() CommandFunc {
|
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, "pong")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,52 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"math/rand"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"git.kill0.net/chill9/beepboop/lib"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (b *Bot) ReactionHandler() func(*discordgo.Session, *discordgo.MessageCreate) {
|
|
||||||
return func(s *discordgo.Session, m *discordgo.MessageCreate) {
|
|
||||||
if m.Author.ID == s.State.User.ID {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
emojis := b.Config.Handler.Reaction.Emojis
|
|
||||||
channels := b.Config.Handler.Reaction.Channels
|
|
||||||
|
|
||||||
if len(emojis) == 0 {
|
|
||||||
log.Warning("emoji list is empty")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
channel, err := s.Channel(m.ChannelID)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalf("unable to get channel name: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(channels) > 0 && !lib.Contains(channels, channel.Name) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, a := range m.Attachments {
|
|
||||||
if strings.HasPrefix(a.ContentType, "image/") {
|
|
||||||
for i := 1; i <= lib.RandInt(1, len(emojis)); i++ {
|
|
||||||
r := emojis[rand.Intn(len(emojis))]
|
|
||||||
s.MessageReactionAdd(m.ChannelID, m.ID, r)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for range m.Embeds {
|
|
||||||
for i := 1; i <= lib.RandInt(1, len(emojis)); i++ {
|
|
||||||
r := emojis[rand.Intn(len(emojis))]
|
|
||||||
s.MessageReactionAdd(m.ChannelID, m.ID, r)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
36
bot/rps.go
36
bot/rps.go
@ -1,36 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"git.kill0.net/chill9/beepboop/lib/rps"
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (b *Bot) RpsCommand() CommandFunc {
|
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
if len(args) != 1 {
|
|
||||||
b.Session.ChannelMessageSend(
|
|
||||||
m.ChannelID, "help: `!rps (rock | paper | scissors)`",
|
|
||||||
)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
pc := strings.ToLower(args[0]) // player's choice
|
|
||||||
|
|
||||||
g := rps.NewGame(rps.RulesRps, rps.EmojiMapRps)
|
|
||||||
|
|
||||||
bc := g.Rand() // bot's choice
|
|
||||||
|
|
||||||
s, err := g.Play(bc, pc)
|
|
||||||
if _, ok := err.(rps.InvalidChoiceError); ok {
|
|
||||||
b.Session.ChannelMessageSend(
|
|
||||||
m.ChannelID, "help: `!rps (rock | paper | scissors)`",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, s)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
36
bot/rpsls.go
36
bot/rpsls.go
@ -1,36 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"git.kill0.net/chill9/beepboop/lib/rps"
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (b *Bot) RpslsCommand() CommandFunc {
|
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
if len(args) != 1 {
|
|
||||||
b.Session.ChannelMessageSend(
|
|
||||||
m.ChannelID, "help: `!rps (rock | paper | scissors | lizard | spock)`",
|
|
||||||
)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
pc := strings.ToLower(args[0]) // player's choice
|
|
||||||
|
|
||||||
g := rps.NewGame(rps.RulesRpsls, rps.EmojiMapRpsls)
|
|
||||||
|
|
||||||
bc := g.Rand() // bot's choice
|
|
||||||
|
|
||||||
s, err := g.Play(bc, pc)
|
|
||||||
if _, ok := err.(rps.InvalidChoiceError); ok {
|
|
||||||
b.Session.ChannelMessageSend(
|
|
||||||
m.ChannelID, "help: `!rps (rock | paper | scissors | lizard | spock)`",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, s)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
36
bot/time.go
36
bot/time.go
@ -1,36 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (b *Bot) TimeCommand() CommandFunc {
|
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
var (
|
|
||||||
t time.Time
|
|
||||||
tz string
|
|
||||||
)
|
|
||||||
|
|
||||||
now := time.Now()
|
|
||||||
|
|
||||||
if len(args) == 1 {
|
|
||||||
tz = args[0]
|
|
||||||
loc, err := time.LoadLocation(tz)
|
|
||||||
if err != nil {
|
|
||||||
log.Warnf("failed to load location: %s", err)
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, err.Error())
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
t = now.In(loc)
|
|
||||||
} else {
|
|
||||||
t = now
|
|
||||||
}
|
|
||||||
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, fmt.Sprint(t))
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,25 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"runtime"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
SourceURI = "https://git.kill0.net/chill9/bb"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (b *Bot) VersionCommand() CommandFunc {
|
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, fmt.Sprintf(
|
|
||||||
"go version: %s\nplatform: %s\nos: %s\nsource: %s\n",
|
|
||||||
runtime.Version(),
|
|
||||||
runtime.GOARCH,
|
|
||||||
runtime.GOOS,
|
|
||||||
SourceURI,
|
|
||||||
))
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,56 +0,0 @@
|
|||||||
package bot
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"git.kill0.net/chill9/beepboop/lib/weather"
|
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (b *Bot) WeatherCommand() CommandFunc {
|
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
var (
|
|
||||||
err error
|
|
||||||
loc string
|
|
||||||
w weather.Weather
|
|
||||||
)
|
|
||||||
|
|
||||||
if len(args) != 1 {
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, "help: `!weather <CITY>,<STATE>,<COUNTRY>`")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
loc = args[0]
|
|
||||||
|
|
||||||
if b.Config.OpenWeatherMapToken == "" {
|
|
||||||
log.Error("OpenWeather token is not set")
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
wc := weather.NewClient(b.Config.OpenWeatherMapToken)
|
|
||||||
|
|
||||||
log.Debugf("weather requested for '%s'", loc)
|
|
||||||
|
|
||||||
w, err = wc.Get(loc)
|
|
||||||
if err != nil {
|
|
||||||
log.Errorf("weather client error: %v", err)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Debugf("weather returned for '%s': %+v", loc, w)
|
|
||||||
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, fmt.Sprintf(
|
|
||||||
"%s (%.1f, %.1f) — C:%.1f F:%.1f K:%.1f",
|
|
||||||
loc,
|
|
||||||
w.Coord.Lat,
|
|
||||||
w.Coord.Lon,
|
|
||||||
w.Main.Temp.Celcius(),
|
|
||||||
w.Main.Temp.Fahrenheit(),
|
|
||||||
w.Main.Temp.Kelvin(),
|
|
||||||
))
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
29
command/coin.go
Normal file
29
command/coin.go
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
package command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"git.kill0.net/chill9/beepboop/lib"
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Coin bool
|
||||||
|
|
||||||
|
func (c *Coin) Flip() bool {
|
||||||
|
*c = Coin(lib.Itob(lib.RandInt(0, 1)))
|
||||||
|
return bool(*c)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *Handlers) Coin(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
|
var (
|
||||||
|
c Coin
|
||||||
|
msg string
|
||||||
|
)
|
||||||
|
|
||||||
|
if c.Flip() {
|
||||||
|
msg = "heads"
|
||||||
|
} else {
|
||||||
|
msg = "tails"
|
||||||
|
}
|
||||||
|
|
||||||
|
s.ChannelMessageSend(m.ChannelID, msg)
|
||||||
|
return nil
|
||||||
|
}
|
11
command/commands.go
Normal file
11
command/commands.go
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package command
|
||||||
|
|
||||||
|
import "git.kill0.net/chill9/beepboop/config"
|
||||||
|
|
||||||
|
type Handlers struct {
|
||||||
|
config *config.Config
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewHandlers(config *config.Config) *Handlers {
|
||||||
|
return &Handlers{config: config}
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package bot
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
@ -45,8 +45,7 @@ func (d *Deck) Deal(n int) ([]Card, error) {
|
|||||||
return hand, err
|
return hand, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) DealCommand() CommandFunc {
|
func (h *Handlers) Deal(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
rand.Shuffle(len(deck), func(i, j int) {
|
rand.Shuffle(len(deck), func(i, j int) {
|
||||||
deck[i], deck[j] = deck[j], deck[i]
|
deck[i], deck[j] = deck[j], deck[i]
|
||||||
})
|
})
|
||||||
@ -54,7 +53,7 @@ func (b *Bot) DealCommand() CommandFunc {
|
|||||||
log.Debugf("%+v", deck)
|
log.Debugf("%+v", deck)
|
||||||
|
|
||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, "help: `!deal <n>`")
|
s.ChannelMessageSend(m.ChannelID, "help: `!deal <n>`")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -65,14 +64,13 @@ func (b *Bot) DealCommand() CommandFunc {
|
|||||||
|
|
||||||
hand, err := deck.Deal(n)
|
hand, err := deck.Deal(n)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, fmt.Sprintf("error: %s\n", err))
|
s.ChannelMessageSend(m.ChannelID, fmt.Sprintf("error: %s\n", err))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, JoinCards(hand, " "))
|
s.ChannelMessageSend(m.ChannelID, JoinCards(hand, " "))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
func JoinCards(h []Card, sep string) string {
|
func JoinCards(h []Card, sep string) string {
|
||||||
b := make([]string, len(h))
|
b := make([]string, len(h))
|
@ -1,4 +1,4 @@
|
|||||||
package bot
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
@ -78,8 +78,7 @@ func (r *Roll) RollDice() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) RollCommand() CommandFunc {
|
func (h *Handlers) Roll(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
var (
|
var (
|
||||||
err error
|
err error
|
||||||
msg, roll string
|
msg, roll string
|
||||||
@ -90,7 +89,7 @@ func (b *Bot) RollCommand() CommandFunc {
|
|||||||
|
|
||||||
r, err = ParseRoll(roll)
|
r, err = ParseRoll(roll)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, err.Error())
|
s.ChannelMessageSend(m.ChannelID, err.Error())
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -99,7 +98,6 @@ func (b *Bot) RollCommand() CommandFunc {
|
|||||||
|
|
||||||
msg = fmt.Sprintf("🎲 %s = %d", lib.JoinInt(r.Rolls, " + "), r.Sum)
|
msg = fmt.Sprintf("🎲 %s = %d", lib.JoinInt(r.Rolls, " + "), r.Sum)
|
||||||
|
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, msg)
|
s.ChannelMessageSend(m.ChannelID, msg)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
|
10
command/ping.go
Normal file
10
command/ping.go
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
package command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (h *Handlers) Ping(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
|
s.ChannelMessageSend(m.ChannelID, "pong")
|
||||||
|
return nil
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package bot
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.kill0.net/chill9/beepboop/lib"
|
"git.kill0.net/chill9/beepboop/lib"
|
||||||
@ -66,8 +66,7 @@ func (g *Gun) IsEmpty() bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Bot) RouletteCommand() CommandFunc {
|
func (h *Handlers) Roulette(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
return func(args []string, m *discordgo.MessageCreate) error {
|
|
||||||
if gun.IsEmpty() {
|
if gun.IsEmpty() {
|
||||||
gun.Load(Bullets)
|
gun.Load(Bullets)
|
||||||
log.Debugf("reloading gun: %+v\n", gun)
|
log.Debugf("reloading gun: %+v\n", gun)
|
||||||
@ -75,10 +74,9 @@ func (b *Bot) RouletteCommand() CommandFunc {
|
|||||||
|
|
||||||
log.Debugf("firing gun: %+v\n", gun)
|
log.Debugf("firing gun: %+v\n", gun)
|
||||||
if gun.Fire() {
|
if gun.Fire() {
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, GunFireMessage)
|
s.ChannelMessageSend(m.ChannelID, GunFireMessage)
|
||||||
} else {
|
} else {
|
||||||
b.Session.ChannelMessageSend(m.ChannelID, GunClickMessage)
|
s.ChannelMessageSend(m.ChannelID, GunClickMessage)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
|
34
command/rps.go
Normal file
34
command/rps.go
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
package command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.kill0.net/chill9/beepboop/lib/rps"
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (h *Handlers) Rps(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
|
if len(args) != 1 {
|
||||||
|
s.ChannelMessageSend(
|
||||||
|
m.ChannelID, "help: `!rps (rock | paper | scissors)`",
|
||||||
|
)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
pc := strings.ToLower(args[0]) // player's choice
|
||||||
|
|
||||||
|
g := rps.NewGame(rps.RulesRps, rps.EmojiMapRps)
|
||||||
|
|
||||||
|
bc := g.Rand() // bot's choice
|
||||||
|
|
||||||
|
out, err := g.Play(bc, pc)
|
||||||
|
if _, ok := err.(rps.InvalidChoiceError); ok {
|
||||||
|
s.ChannelMessageSend(
|
||||||
|
m.ChannelID, "help: `!rps (rock | paper | scissors)`",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
s.ChannelMessageSend(m.ChannelID, out)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
34
command/rpsls.go
Normal file
34
command/rpsls.go
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
package command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.kill0.net/chill9/beepboop/lib/rps"
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (h *Handlers) Rpsls(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
|
if len(args) != 1 {
|
||||||
|
s.ChannelMessageSend(
|
||||||
|
m.ChannelID, "help: `!rps (rock | paper | scissors | lizard | spock)`",
|
||||||
|
)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
pc := strings.ToLower(args[0]) // player's choice
|
||||||
|
|
||||||
|
g := rps.NewGame(rps.RulesRpsls, rps.EmojiMapRpsls)
|
||||||
|
|
||||||
|
bc := g.Rand() // bot's choice
|
||||||
|
|
||||||
|
out, err := g.Play(bc, pc)
|
||||||
|
if _, ok := err.(rps.InvalidChoiceError); ok {
|
||||||
|
s.ChannelMessageSend(
|
||||||
|
m.ChannelID, "help: `!rps (rock | paper | scissors | lizard | spock)`",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
s.ChannelMessageSend(m.ChannelID, out)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
34
command/time.go
Normal file
34
command/time.go
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
package command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (h *Handlers) Time(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
|
var (
|
||||||
|
t time.Time
|
||||||
|
tz string
|
||||||
|
)
|
||||||
|
|
||||||
|
now := time.Now()
|
||||||
|
|
||||||
|
if len(args) == 1 {
|
||||||
|
tz = args[0]
|
||||||
|
loc, err := time.LoadLocation(tz)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("failed to load location: %s", err)
|
||||||
|
s.ChannelMessageSend(m.ChannelID, err.Error())
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
t = now.In(loc)
|
||||||
|
} else {
|
||||||
|
t = now
|
||||||
|
}
|
||||||
|
|
||||||
|
s.ChannelMessageSend(m.ChannelID, fmt.Sprint(t))
|
||||||
|
return nil
|
||||||
|
}
|
23
command/version.go
Normal file
23
command/version.go
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
package command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"runtime"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
SourceURI = "https://git.kill0.net/chill9/bb"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (h *Handlers) Version(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
|
s.ChannelMessageSend(m.ChannelID, fmt.Sprintf(
|
||||||
|
"go version: %s\nplatform: %s\nos: %s\nsource: %s\n",
|
||||||
|
runtime.Version(),
|
||||||
|
runtime.GOARCH,
|
||||||
|
runtime.GOOS,
|
||||||
|
SourceURI,
|
||||||
|
))
|
||||||
|
return nil
|
||||||
|
}
|
54
command/weather.go
Normal file
54
command/weather.go
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
package command
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"git.kill0.net/chill9/beepboop/lib/weather"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (h *Handlers) Weather(args []string, s *discordgo.Session, m *discordgo.MessageCreate) error {
|
||||||
|
var (
|
||||||
|
err error
|
||||||
|
loc string
|
||||||
|
w weather.Weather
|
||||||
|
)
|
||||||
|
|
||||||
|
if len(args) != 1 {
|
||||||
|
s.ChannelMessageSend(m.ChannelID, "help: `!weather <CITY>,<STATE>,<COUNTRY>`")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
loc = args[0]
|
||||||
|
|
||||||
|
if h.config.OpenWeatherMapToken == "" {
|
||||||
|
log.Error("OpenWeather token is not set")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
wc := weather.NewClient(h.config.OpenWeatherMapToken)
|
||||||
|
|
||||||
|
log.Debugf("weather requested for '%s'", loc)
|
||||||
|
|
||||||
|
w, err = wc.Get(loc)
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("weather client error: %v", err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Debugf("weather returned for '%s': %+v", loc, w)
|
||||||
|
|
||||||
|
s.ChannelMessageSend(m.ChannelID, fmt.Sprintf(
|
||||||
|
"%s (%.1f, %.1f) — C:%.1f F:%.1f K:%.1f",
|
||||||
|
loc,
|
||||||
|
w.Coord.Lat,
|
||||||
|
w.Coord.Lon,
|
||||||
|
w.Main.Temp.Celcius(),
|
||||||
|
w.Main.Temp.Fahrenheit(),
|
||||||
|
w.Main.Temp.Kelvin(),
|
||||||
|
))
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
15
handler/handlers.go
Normal file
15
handler/handlers.go
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
package handler
|
||||||
|
|
||||||
|
import (
|
||||||
|
"git.kill0.net/chill9/beepboop/config"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Handlers struct {
|
||||||
|
config *config.Config
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewHandlers(config *config.Config) *Handlers {
|
||||||
|
return &Handlers{
|
||||||
|
config: config,
|
||||||
|
}
|
||||||
|
}
|
50
handler/reaction.go
Normal file
50
handler/reaction.go
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
package handler
|
||||||
|
|
||||||
|
import (
|
||||||
|
"math/rand"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"git.kill0.net/chill9/beepboop/lib"
|
||||||
|
|
||||||
|
"github.com/bwmarrin/discordgo"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (h *Handlers) Reaction(s *discordgo.Session, m *discordgo.MessageCreate) {
|
||||||
|
if m.Author.ID == s.State.User.ID {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
emojis := h.config.Handler.Reaction.Emojis
|
||||||
|
channels := h.config.Handler.Reaction.Channels
|
||||||
|
|
||||||
|
if len(emojis) == 0 {
|
||||||
|
log.Warning("emoji list is empty")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
channel, err := s.Channel(m.ChannelID)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("unable to get channel name: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(channels) > 0 && !lib.Contains(channels, channel.Name) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, a := range m.Attachments {
|
||||||
|
if strings.HasPrefix(a.ContentType, "image/") {
|
||||||
|
for i := 1; i <= lib.RandInt(1, len(emojis)); i++ {
|
||||||
|
r := emojis[rand.Intn(len(emojis))]
|
||||||
|
s.MessageReactionAdd(m.ChannelID, m.ID, r)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for range m.Embeds {
|
||||||
|
for i := 1; i <= lib.RandInt(1, len(emojis)); i++ {
|
||||||
|
r := emojis[rand.Intn(len(emojis))]
|
||||||
|
s.MessageReactionAdd(m.ChannelID, m.ID, r)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user