remove accidentaly included file

This commit is contained in:
lyx0 2021-12-21 18:08:18 +01:00
parent fd7b7001d6
commit 6542c30989

53
\
View file

@ -1,53 +0,0 @@
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)
}