mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
change color command to take in a user parameter
This commit is contained in:
parent
89509ee58a
commit
79f4ccb6b2
53
\
Normal file
53
\
Normal file
|
@ -0,0 +1,53 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
|
||||
"github.com/lyx0/nourybot/cmd/bot"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
// https://api.ivr.fi
|
||||
type colorApiResponse struct {
|
||||
Id string `json:"id"`
|
||||
DisplayName string `json:"displayName"`
|
||||
ChatColor string `json:"chatColor"`
|
||||
Error string `json:"error"`
|
||||
}
|
||||
|
||||
// Userid returns the userID of a given user
|
||||
func Color(username, target string, nb *bot.Bot) string {
|
||||
baseUrl := "https://api.ivr.fi/twitch/resolve"
|
||||
|
||||
resp, err := http.Get(fmt.Sprintf("%s/%s", baseUrl, username))
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
}
|
||||
|
||||
defer resp.Body.Close()
|
||||
|
||||
body, err := ioutil.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
}
|
||||
|
||||
var responseObject colorApiResponse
|
||||
json.Unmarshal(body, &responseObject)
|
||||
|
||||
// time string format 2011-05-19T00:28:28.310449Z
|
||||
// discard everything after T
|
||||
|
||||
reply := fmt.Sprintf("%s color is %s",
|
||||
responseObject.DisplayName,
|
||||
responseObject.ChatColor,
|
||||
)
|
||||
|
||||
// User not found
|
||||
if responseObject.Error != "" {
|
||||
return fmt.Sprintf(responseObject.Error + " FeelsBadMan")
|
||||
}
|
||||
nb.Send(target, reply)
|
||||
}
|
|
@ -1,16 +1,53 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
|
||||
"github.com/gempir/go-twitch-irc/v2"
|
||||
"github.com/lyx0/nourybot/cmd/bot"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
// Color responds with a users Twitch username color.
|
||||
func Color(message twitch.PrivateMessage, nb *bot.Bot) {
|
||||
reply := fmt.Sprintf("@%v, your color is %v", message.User.DisplayName, message.User.Color)
|
||||
|
||||
nb.Send(message.Channel, reply)
|
||||
|
||||
// https://api.ivr.fi
|
||||
type colorApiResponse struct {
|
||||
Id string `json:"id"`
|
||||
DisplayName string `json:"displayName"`
|
||||
ChatColor string `json:"chatColor"`
|
||||
Error string `json:"error"`
|
||||
}
|
||||
|
||||
// Userid returns the userID of a given user
|
||||
func Color(username, target string, nb *bot.Bot) {
|
||||
baseUrl := "https://api.ivr.fi/twitch/resolve"
|
||||
|
||||
resp, err := http.Get(fmt.Sprintf("%s/%s", baseUrl, username))
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
}
|
||||
|
||||
defer resp.Body.Close()
|
||||
|
||||
body, err := ioutil.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
}
|
||||
|
||||
var responseObject colorApiResponse
|
||||
json.Unmarshal(body, &responseObject)
|
||||
|
||||
// time string format 2011-05-19T00:28:28.310449Z
|
||||
// discard everything after T
|
||||
|
||||
reply := fmt.Sprintf("%s color is %s",
|
||||
responseObject.DisplayName,
|
||||
responseObject.ChatColor,
|
||||
)
|
||||
|
||||
// User not found
|
||||
if responseObject.Error != "" {
|
||||
nb.Send(target, "Something went wrong... FeelsBadMan")
|
||||
}
|
||||
nb.Send(target, reply)
|
||||
}
|
||||
|
|
|
@ -107,7 +107,7 @@ func Command(message twitch.PrivateMessage, nb *bot.Bot) {
|
|||
return
|
||||
|
||||
case "color":
|
||||
commands.Color(message, nb)
|
||||
commands.Color(cmdParams[1], target, nb)
|
||||
return
|
||||
|
||||
case "commands":
|
||||
|
@ -246,9 +246,9 @@ func Command(message twitch.PrivateMessage, nb *bot.Bot) {
|
|||
db.AddChannel(target, cmdParams[1], nb)
|
||||
return
|
||||
|
||||
case "mycolor":
|
||||
commands.Color(message, nb)
|
||||
return
|
||||
//. case "mycolor":
|
||||
//. commands.Color(message, nb)
|
||||
//. return
|
||||
|
||||
case "nourybot":
|
||||
commands.Help(target, nb)
|
||||
|
|
Loading…
Reference in a new issue