2022-08-15 15:04:43 +02:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
owm "github.com/briandowns/openweathermap"
|
|
|
|
"github.com/gempir/go-twitch-irc/v3"
|
|
|
|
"github.com/joho/godotenv"
|
2023-01-04 15:32:17 +01:00
|
|
|
"github.com/lyx0/nourybot/internal/common"
|
2022-08-15 15:04:43 +02:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2022-08-15 17:38:10 +02:00
|
|
|
// Weather queries the OpenWeatherMap Api for the given location and sends the
|
|
|
|
// current weather response to the target twitch chat.
|
2022-08-15 15:04:43 +02:00
|
|
|
func Weather(target, location string, tc *twitch.Client) {
|
|
|
|
sugar := zap.NewExample().Sugar()
|
|
|
|
defer sugar.Sync()
|
2022-08-15 15:12:59 +02:00
|
|
|
|
2022-08-15 15:04:43 +02:00
|
|
|
err := godotenv.Load()
|
|
|
|
if err != nil {
|
2022-08-15 17:38:10 +02:00
|
|
|
sugar.Error("Error loading OpenWeatherMap API key from .env file")
|
2022-08-15 15:04:43 +02:00
|
|
|
}
|
|
|
|
owmKey := os.Getenv("OWM_KEY")
|
|
|
|
|
|
|
|
w, err := owm.NewCurrent("C", "en", owmKey)
|
|
|
|
if err != nil {
|
|
|
|
sugar.Error(err)
|
|
|
|
}
|
|
|
|
w.CurrentByName(location)
|
2022-08-15 15:12:59 +02:00
|
|
|
|
2022-08-15 17:38:10 +02:00
|
|
|
// Longitude and Latitude are returned as 0 when the supplied location couldn't be
|
|
|
|
// assigned to a OpenWeatherMap location.
|
2022-08-15 15:12:59 +02:00
|
|
|
if w.GeoPos.Longitude == 0 && w.GeoPos.Latitude == 0 {
|
|
|
|
reply := "Location not found FeelsBadMan"
|
|
|
|
common.Send(target, reply, tc)
|
|
|
|
} else {
|
2022-08-15 17:38:10 +02:00
|
|
|
// Weather for Vilnius, LT: Feels like: 29.67°C. Currently 29.49°C with a high of 29.84°C and a low of 29.49°C, humidity: 45%, wind: 6.17m/s.
|
|
|
|
reply := fmt.Sprintf("Weather for %s, %s: Feels like: %v°C. Currently %v°C with a high of %v°C and a low of %v°C, humidity: %v%%, wind: %vm/s.",
|
|
|
|
w.Name,
|
|
|
|
w.Sys.Country,
|
|
|
|
w.Main.FeelsLike,
|
|
|
|
w.Main.Temp,
|
|
|
|
w.Main.TempMax,
|
|
|
|
w.Main.TempMin,
|
|
|
|
w.Main.Humidity,
|
|
|
|
w.Wind.Speed,
|
|
|
|
)
|
2022-08-15 15:12:59 +02:00
|
|
|
common.Send(target, reply, tc)
|
|
|
|
}
|
2022-08-15 15:04:43 +02:00
|
|
|
}
|