1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/prettyweather/widget.go
2018-06-02 05:28:52 -07:00

67 lines
1.4 KiB
Go

package prettyweather
import (
"fmt"
"github.com/olebedev/config"
"github.com/senorprogrammer/wtf/wtf"
"io/ioutil"
"net/http"
"strings"
)
// Config is a pointer to the global config object
var Config *config.Config
type Widget struct {
wtf.TextWidget
result string
unit string
city string
}
func NewWidget() *Widget {
widget := Widget{
TextWidget: wtf.NewTextWidget("Pretty Weather", "prettyweather", false),
}
widget.View.SetWrap(true)
return &widget
}
func (widget *Widget) Refresh() {
if widget.Disabled() {
return
}
widget.UpdateRefreshedAt()
widget.prettyWeather()
widget.View.Clear()
widget.View.SetTitle(fmt.Sprintf(" %s ", widget.Name))
fmt.Fprintf(widget.View, "%s", widget.result)
}
//this method reads the config and calls wttr.in for pretty weather
func (widget *Widget) prettyWeather() {
client := &http.Client{}
widget.unit, widget.city = Config.UString("wtf.mods.prettyweather.unit", "m"), Config.UString("wtf.mods.prettyweather.city", "")
req, err := http.NewRequest("GET", "https://wttr.in/"+widget.city+"?0"+"?"+widget.unit, nil)
if err != nil {
fmt.Println(err)
}
req.Header.Set("User-Agent", "curl")
response, err := client.Do(req)
if err != nil {
fmt.Printf("%s", err)
} else {
defer response.Body.Close()
contents, err := ioutil.ReadAll(response.Body)
if err != nil {
fmt.Printf("%s", err)
}
widget.result = fmt.Sprintf("%s", strings.TrimSpace(string(contents)))
}
}