summaryrefslogtreecommitdiff
path: root/yr_no.go
blob: bb9c747e290df1edfed7f75e42280d0b9d892b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package main

import (
	"encoding/xml"
	"errors"
	"fmt"
	"net/http"
	"time"
)

func toTime(s string) time.Time {
	t, _ := time.Parse("2006-01-02T15:04:05", s)
	return t
}

type Weather struct {
	Temp   Temperature `xml:"temperature"`
	Symbol struct {
		Number int `xml:"number,attr"`
	} `xml:"symbol"`
	From string `xml:"from,attr"`
	URL  string
	Icon string
}

func (w *Weather) prepIcon(sun Sun) {
	rise := toTime(sun.Rise)
	set := toTime(sun.Set)
	t := toTime(w.From)

	night := t.Before(rise) || t.After(set)
	format := "http://symbol.yr.no/grafikk/sym/b100/%02d"
	switch w.Symbol.Number {
	case 1, 2, 3, 5, 6, 7, 8, 20, 21:
		if night {
			format += "n"
		} else {
			format += "d"
		}
	}
	format += ".png"

	w.Icon = fmt.Sprintf(format, w.Symbol.Number)
}

type Temperature struct {
	Value int    `xml:"value,attr"`
	Unit  string `xml:"unit,attr"`
}

type Sun struct {
	Rise string `xml:"rise,attr"`
	Set  string `xml:"set,attr"`
}

type weatherdata struct {
	Sun      Sun        `xml:"sun"`
	Forecast []*Weather `xml:"forecast>tabular>time"`
}

var place = ""

func setPlaceCmd(params []string) error {
	if len(params) != 1 {
		return errors.New("set-weather-place needs one parameter")
	}

	place = params[0]
	return nil
}

func CurrentWeather() (Weather, Sun, error) {
	url := "http://www.yr.no/place/" + place + "/forecast_hour_by_hour.xml"
	resp, err := http.Get(url)
	if err != nil {
		return Weather{}, Sun{}, err
	}
	defer resp.Body.Close()

	var wd weatherdata
	dec := xml.NewDecoder(resp.Body)
	if err := dec.Decode(&wd); err != nil {
		return Weather{}, Sun{}, err
	}

	w := wd.Forecast[0]
	w.URL = "http://www.yr.no/place/" + place
	w.prepIcon(wd.Sun)

	return *w, wd.Sun, nil
}