Aaron Bieber
d6673169be
Expand sms to run Process for each plugin, add a "homestead" plugin while here! \o/
193 lines
4.2 KiB
Go
193 lines
4.2 KiB
Go
package plugins
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/matrix-org/gomatrix"
|
|
)
|
|
|
|
// WeatherResp is a JSON response from OpenWeatherMap.org
|
|
type WeatherResp struct {
|
|
Coord CoordResp `json:"coord"`
|
|
Weather []FeelsResp `json:"weather"`
|
|
Base string `json:"base"`
|
|
Main MainResp `json:"main"`
|
|
Visibility int `json:"visibility"`
|
|
Wind WindResp `json:"wind"`
|
|
Clouds CloudsResp `json:"clouds"`
|
|
Dt int `json:"dt"`
|
|
Sys SysResp `json:"sys"`
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
Cod int `json:"cod"`
|
|
}
|
|
|
|
func (w *WeatherResp) conditions() string {
|
|
var s []string
|
|
for _, cond := range w.Weather {
|
|
s = append(s, cond.Description)
|
|
}
|
|
return strings.Join(s[:], ", ")
|
|
}
|
|
|
|
func (w *WeatherResp) f() string {
|
|
return fmt.Sprintf("%.1f °F", (w.Main.Temp-273.15)*1.8000+32.00)
|
|
}
|
|
|
|
func (w *WeatherResp) c() string {
|
|
return fmt.Sprintf("%.1f °C", w.Main.Temp-273.15)
|
|
}
|
|
|
|
func (w *WeatherResp) humidity() string {
|
|
return fmt.Sprintf("%d", w.Main.Humidity)
|
|
}
|
|
|
|
// CoordResp is the log/lat of the location queried
|
|
type CoordResp struct {
|
|
Lon float64 `json:"lon"`
|
|
Lat float64 `json:"lat"`
|
|
}
|
|
|
|
// FeelsResp represents the friendly info like "light rain"
|
|
type FeelsResp struct {
|
|
ID int `json:"id"`
|
|
Main string `json:"main"`
|
|
Description string `json:"description"`
|
|
Icon string `json:"icon"`
|
|
}
|
|
|
|
// MainResp contains the bulk of the weather data
|
|
type MainResp struct {
|
|
Temp float64 `json:"temp"`
|
|
Pressure int `json:"pressure"`
|
|
Humidity int `json:"humidity"`
|
|
TempMin float64 `json:"temp_min"`
|
|
TempMax float64 `json:"temp_max"`
|
|
}
|
|
|
|
// WindResp gives us various bits of information about the wind. Direction, etc.
|
|
type WindResp struct {
|
|
Speed float64 `json:"speed"`
|
|
Deg int `json:"deg"`
|
|
Gust float64 `json:"gust"`
|
|
}
|
|
|
|
// CloudsResp ?
|
|
type CloudsResp struct {
|
|
All int `json:"all"`
|
|
}
|
|
|
|
// SysResp seems to be used internally for something
|
|
type SysResp struct {
|
|
Type int `json:"type"`
|
|
ID int `json:"id"`
|
|
Message float64 `json:"message"`
|
|
Country string `json:"country"`
|
|
Sunrise int `json:"sunrise"`
|
|
Sunset int `json:"sunset"`
|
|
}
|
|
|
|
// Weather is our plugin type
|
|
type Weather struct {
|
|
db PluginStore
|
|
}
|
|
|
|
// SetStore is the setup function for a plugin
|
|
func (h *Weather) SetStore(s PluginStore) {
|
|
h.db = s
|
|
}
|
|
|
|
func (h *Weather) get(loc string) (*WeatherResp, error) {
|
|
u := "http://api.openweathermap.org/data/2.5/weather?%s"
|
|
key, err := h.db.Get("weather_api_key")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if key == "" {
|
|
return nil, fmt.Errorf("no API key set")
|
|
}
|
|
|
|
v := url.Values{}
|
|
v.Set("APPID", key)
|
|
v.Add("zip", loc)
|
|
|
|
u = fmt.Sprintf(u, v.Encode())
|
|
|
|
resp, err := http.Get(u)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var w = &WeatherResp{}
|
|
err = json.Unmarshal(body, w)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return w, nil
|
|
}
|
|
|
|
// Descr describes this plugin
|
|
func (h *Weather) Descr() string {
|
|
return "Produce weather information for a given ZIP code. Data comes from openweathermap.org."
|
|
}
|
|
|
|
// Re is what our weather matches
|
|
func (h *Weather) Re() string {
|
|
return `(?i)^weather: (\d+)$`
|
|
}
|
|
|
|
// Match checks for "weather: " messages
|
|
func (h *Weather) Match(_, msg string) bool {
|
|
re := regexp.MustCompile(h.Re())
|
|
return re.MatchString(msg)
|
|
}
|
|
|
|
func (h *Weather) fix(msg string) string {
|
|
re := regexp.MustCompile(h.Re())
|
|
return re.ReplaceAllString(msg, "$1")
|
|
}
|
|
|
|
func (h *Weather) Process(from, post string) string {
|
|
weather := h.fix(post)
|
|
if weather != "" {
|
|
wd, err := h.get(weather)
|
|
if err != nil {
|
|
return fmt.Sprintf("sorry %s, I can't look up the weather. %s", from, err)
|
|
}
|
|
return fmt.Sprintf("%s: %s (%s) Humidity: %s%%, %s",
|
|
wd.Name,
|
|
wd.c(),
|
|
wd.f(),
|
|
wd.humidity(),
|
|
wd.conditions(),
|
|
)
|
|
}
|
|
|
|
return "shrug."
|
|
}
|
|
|
|
// RespondText to looking up of weather lookup requests
|
|
func (h *Weather) RespondText(c *gomatrix.Client, ev *gomatrix.Event, _, post string) error {
|
|
return SendText(c, ev.RoomID, h.Process(ev.Sender, post))
|
|
}
|
|
|
|
// Name Weather!
|
|
func (h *Weather) Name() string {
|
|
return "Weather"
|
|
}
|