aemet/cmd/clientFunc.go

118 lines
3.0 KiB
Go

package cmd
import (
"fmt"
xj "github.com/riccardomanfrin/goxml2json"
"io"
"net/http"
"strings"
)
type root struct {
Base struct {
Nombre string `json:"nombre"`
Prediccion struct {
Dia []struct {
Fecha string `json:"-fecha"`
UV string `json:"uv_max"`
Temperatura struct {
Maxima string `json:"maxima"`
Minima string `json:"minima"`
Dato []struct {
Valor string `json:"#content"`
Hora string `json:"-hora"`
} `json:"dato"`
} `json:"temperatura"`
Sens_Termica struct {
Maxima string `json:"maxima"`
Minima string `json:"minima"`
Dato []struct {
Valor string `json:"#content"`
Hora string `json:"-hora"`
} `json:"dato"`
} `json:"sens_termica"`
Humedad_Relativa struct {
Maxima string `json:"maxima"`
Minima string `json:"minima"`
} `json:"humedad_relativa"`
Estado_Cielo []struct {
Test string `json:"#content"`
Periodo string `json:"-periodo"`
Descripcion string `json:"-descripcion"`
} `json:"estado_cielo"`
// Prob_Precipitacion []struct {
// Probabilidad string `json:"#content"`
// Periodo string `json:"-periodo"`
// } `json:"prob_precipitacion"`
} `json:"dia"`
} `json:"prediccion"`
} `json:"root"`
}
// func client() {
// jsonData, err := getJSON()
// if err != nil {
// log.Fatal(err)
// }
// textBytes := []byte(jsonData)
// aemetRequest := root{}
// err = json.Unmarshal(textBytes, &aemetRequest)
// if err != nil {
// log.Fatalf("Error occurred unmarshalling data: %v\n", err)
// }
//
// fmt.Println(aemetRequest.Base.Nombre)
// fmt.Println(aemetRequest.Base.Prediccion.Dia[0].Fecha)
// fmt.Printf("Temperatura máxima: %v°C\n", aemetRequest.Base.Prediccion.Dia[0].Temperatura.Maxima)
// fmt.Printf("Temperatura mínima: %v°C\n", aemetRequest.Base.Prediccion.Dia[0].Temperatura.Minima)
// }
func getJSON(codPostal string) (s string, err error) {
client := &http.Client{}
req, err := http.NewRequest("GET", "https://www.aemet.es/xml/municipios/localidad_"+codPostal+".xml", nil)
if err != nil {
e := fmt.Errorf("Error occurred creating GET request: %v\n", err)
return "", e
}
req.Header.Set("User-Agent", "AEMET-Client/1.0 (https://git.bulgariu.xyz/raul/aemet)")
resp, err := client.Do(req)
if err != nil {
e := fmt.Errorf("Error occurred executing GET request: %v\n", err)
return "", e
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
e := fmt.Errorf("Error occurred accessing upstream website: %v\n", resp.Status)
return "", e
}
data, err := io.ReadAll(resp.Body)
if err != nil {
e := fmt.Errorf("Error occurred reading data: %v\n", err)
return "", e
}
xml := strings.NewReader(string(data))
// I am in tremendous pain after what I had to go through to get this damn thing working,
json, err := xj.Convert(xml, xj.WithNodes(
xj.NodePlugin("root.prediccion.dia.estado_cielo", xj.ToArray()),
))
if err != nil {
e := fmt.Errorf("Error occurred converting XML to JSON: %v\n", err)
return "", e
}
return json.String(), nil
}