mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
32 lines
628 B
Go
32 lines
628 B
Go
|
package commands
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io/ioutil"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gempir/go-twitch-irc/v2"
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func Weather(channel string, location string, client *twitch.Client) {
|
||
|
resp, err := http.Get(fmt.Sprintf("https://customapi.aidenwallis.co.uk/api/v1/misc/weather/%s", location))
|
||
|
if err != nil {
|
||
|
client.Say(channel, "Something went wrong FeelsBadMan")
|
||
|
log.Error(err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
defer resp.Body.Close()
|
||
|
|
||
|
body, err := ioutil.ReadAll(resp.Body)
|
||
|
if err != nil {
|
||
|
client.Say(channel, "Something went wrong FeelsBadMan")
|
||
|
log.Error(err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
client.Say(channel, string(body))
|
||
|
|
||
|
}
|