mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
add title command
This commit is contained in:
parent
bdd3018a3e
commit
0762145c2f
2 changed files with 27 additions and 0 deletions
19
pkg/commands/title.go
Normal file
19
pkg/commands/title.go
Normal 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)
|
||||||
|
}
|
|
@ -220,6 +220,14 @@ func HandleCommand(message twitch.PrivateMessage, twitchClient *twitch.Client, u
|
||||||
commands.Thumbnail(message.Channel, cmdParams[1], twitchClient)
|
commands.Thumbnail(message.Channel, cmdParams[1], twitchClient)
|
||||||
return
|
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":
|
case "uptime":
|
||||||
if msgLen == 1 {
|
if msgLen == 1 {
|
||||||
commands.Uptime(message.Channel, message.Channel, twitchClient)
|
commands.Uptime(message.Channel, message.Channel, twitchClient)
|
||||||
|
|
Loading…
Reference in a new issue