summaryrefslogtreecommitdiffstats
path: root/nws/nws.go
blob: 1d6e0618139ddaf2bfd6712c7754ee9f721cf8ff (plain) (blame)
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
// Copyright © 2022 siddharth <s@ricketyspace.net>
// SPDX-License-Identifier: ISC

// Functions for accessing the National Weather Service API.
package nws

import (
	"encoding/json"
	"fmt"
	"io"

	"ricketyspace.net/peach/client"
)

type NWSPointProperties struct {
	GridId             string
	GridX              int
	GridY              int
	ForecastLink       string `json:"forecast"`
	ForecastHourlyLink string `json:"forecastHourly"`
}

type NWSPoints struct {
	Properties NWSPointProperties
}

type NWSPointsError struct {
	Title  string
	Type   string
	Status int
	Detail string
}

func (e NWSPointsError) Error() string {
	return fmt.Sprintf("%d: %s: %s", e.Status, e.Type, e.Detail)
}

// NWS `/points` endpoint.
func Points(lat, lng float32) (*NWSPoints, error) {
	url := fmt.Sprintf("https://api.weather.gov/points/%.4f,%.4f", lat, lng)
	resp, err := client.Get(url)
	if err != nil {
		return nil, fmt.Errorf("points: http get: %v", err)
	}

	// Parse response body.
	body, err := io.ReadAll(resp.Body)
	if err != nil {
		return nil, fmt.Errorf("getting points: body: %v", err)
	}

	// Check if the request failed.
	if resp.StatusCode != 200 {
		perr := new(NWSPointsError)
		err := json.Unmarshal(body, perr)
		if err != nil {
			return nil, fmt.Errorf("points: json: %v", err)
		}
		return nil, fmt.Errorf("points: %v", perr)
	}

	// Unmarshal.
	points := new(NWSPoints)
	err = json.Unmarshal(body, points)
	if err != nil {
		return nil, fmt.Errorf("getting points: json decode: %v", err)
	}
	if points.Properties.ForecastLink == "" {
		return nil, fmt.Errorf("points: json: %v", err)
	}
	if points.Properties.ForecastHourlyLink == "" {
		return nil, fmt.Errorf("points: json: %v", err)
	}
	return points, nil
}