add title command

This commit is contained in:
lyx0 2021-10-19 15:25:48 +02:00
parent bdd3018a3e
commit 0762145c2f
2 changed files with 27 additions and 0 deletions

19
pkg/commands/title.go Normal file
View file

@ -0,0 +1,19 @@
package commands
import (
"fmt"
"github.com/gempir/go-twitch-irc/v2"
"github.com/lyx0/nourybot/pkg/api/aiden"
log "github.com/sirupsen/logrus"
)
func Title(channel string, target string, client *twitch.Client) {
title, err := aiden.ApiCall(fmt.Sprintf("api/v1/twitch/channel/%s/title", target))
if err != nil {
client.Say(channel, "Something went wrong FeelsBadMan")
log.Error(err)
}
reply := fmt.Sprintf("%s title is: %s", target, title)
client.Say(channel, reply)
}

View file

@ -220,6 +220,14 @@ func HandleCommand(message twitch.PrivateMessage, twitchClient *twitch.Client, u
commands.Thumbnail(message.Channel, cmdParams[1], twitchClient)
return
}
case "title":
if msgLen == 1 {
commands.Title(message.Channel, message.Channel, twitchClient)
return
} else {
commands.Title(message.Channel, cmdParams[1], twitchClient)
return
}
case "uptime":
if msgLen == 1 {
commands.Uptime(message.Channel, message.Channel, twitchClient)