forked from ramsgoli/Golang-OpenWeatherMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenweathermap.go
205 lines (165 loc) · 4.19 KB
/
openweathermap.go
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
package openweathermap
import (
"errors"
"fmt"
"net/http"
"time"
"io/ioutil"
"encoding/json"
)
/*
Define API response fields
*/
type OpenWeatherMap struct {
API_KEY string
}
type City struct {
Id int `json:"id"`
Name string `json:"name"`
}
type Coord struct {
Lon float64 `json:"lon"`
Lat float64 `json:"lat"`
}
type Weather struct {
Id int `json:"id"`
Main string `json:"main"`
Description string `json:"description"`
Icon string `json:"icon"`
}
type Wind struct {
Speed float64 `json:"speed"`
Deg float64 `json:"deg"`
}
type Clouds struct {
All int `json:"all"`
}
type Rain struct {
Threehr int `json:"3h"`
}
type Main struct {
Temp float64 `json:"temp"`
Pressure int `json:"pressure"`
Humidity int `json:"humidity"`
Temp_min float64 `json:"temp_min"`
Temp_max float64 `json:"temp_max"`
}
/*
Define API response objects (compose of the above fields)
*/
type CurrentWeatherResponse struct {
Coord `json:"coord"`
Weather []Weather `json:"weather"`
Main `json:"main"`
Wind `json:"wind"`
Rain `json:"rain"`
Clouds `json:"clouds"`
Dt int `json:"dt"`
Id int `json:"id"`
Name string `json:"name"`
}
type ForecastResponse struct {
City `json:"city"`
Coord `json:"coord"`
Country string `json:"country"`
List [] struct {
Dt int `json:"dt"`
Main `json:"main"`
Weather `json:"weather"`
Clouds `json:"clouds"`
Wind `json:"wind"`
} `json:"list"`
}
const (
API_URL string = "api.openweathermap.org"
)
func makeApiRequest(url string) ([]byte, error) {
// Build an http client so we can have control over timeout
client := &http.Client{
Timeout: time.Second * 2,
}
res, getErr := client.Get(url)
if getErr != nil {
return nil, getErr
}
// defer the closing of the res body
defer res.Body.Close()
// read the http response body into a byte stream
body, readErr := ioutil.ReadAll(res.Body)
if readErr != nil {
return nil, readErr
}
return body, nil
}
func (owm *OpenWeatherMap) CurrentWeatherFromCity(city string) (*CurrentWeatherResponse, error) {
if (owm.API_KEY == "") {
// No API keys present, return error
return nil, errors.New("No API keys present")
}
url := fmt.Sprintf("http://%s/data/2.5/weather?q=%s&units=imperial&APPID=%s", API_URL, city, owm.API_KEY)
body, err := makeApiRequest(url)
if (err != nil) {
return nil, err
}
var cwr CurrentWeatherResponse
// unmarshal the byte stream into a Go data type
jsonErr := json.Unmarshal(body, &cwr)
if jsonErr != nil {
return nil, jsonErr
}
return &cwr, nil
}
func (owm *OpenWeatherMap) CurrentWeatherFromCoordinates(lat, long float64) (*CurrentWeatherResponse, error) {
if (owm.API_KEY == "") {
// No API keys present, return error
return nil, errors.New("No API keys present")
}
url := fmt.Sprintf("http://%s/data/2.5/weather?lat=%f&lon=%f&units=imperial&APPID=%s", API_URL, lat, long, owm.API_KEY)
body, err := makeApiRequest(url)
if (err != nil) {
return nil, err
}
var cwr CurrentWeatherResponse
// unmarshal the byte stream into a Go data type
jsonErr := json.Unmarshal(body, &cwr)
if jsonErr != nil {
return nil, jsonErr
}
return &cwr, nil
}
func (owm *OpenWeatherMap) CurrentWeatherFromZip(zip int) (*CurrentWeatherResponse, error) {
if owm.API_KEY == "" {
// No API keys present, return error
return nil, errors.New("No API keys present")
}
url := fmt.Sprintf("http://%s/data/2.5/weather?zip=%d&units=imperial&APPID=%s", API_URL, zip, owm.API_KEY)
body, err := makeApiRequest(url)
if err != nil {
return nil, err
}
var cwr CurrentWeatherResponse
// unmarshal the byte stream into a Go data type
jsonErr := json.Unmarshal(body, &cwr)
if jsonErr != nil {
return nil, jsonErr
}
return &cwr, nil
}
func (owm *OpenWeatherMap) CurrentWeatherFromCityId(id int) (*CurrentWeatherResponse, error) {
if (owm.API_KEY == "") {
// No API keys present, return error
return nil, errors.New("No API keys present")
}
url := fmt.Sprintf("http://%s/data/2.5/weather?id=%d&units=imperial&APPID=%s", API_URL, id, owm.API_KEY)
body, err := makeApiRequest(url)
if (err != nil) {
return nil, err
}
var cwr CurrentWeatherResponse
// unmarshal the byte stream into a Go data type
jsonErr := json.Unmarshal(body, &cwr)
if jsonErr != nil {
return nil, jsonErr
}
return &cwr, nil
}