forked from ramsgoli/Golang-OpenWeatherMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openweathermap.go
247 lines (207 loc) · 5.69 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
package openweathermap
import (
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"time"
)
// OpenWeatherMap configuration variables for the module
type OpenWeatherMap struct {
APIKey string
Units string
}
// City contains the city id and name info
type City struct {
ID int `json:"id"`
Name string `json:"name"`
}
// Coord contains the location coordinates
type Coord struct {
Lon float64 `json:"lon"`
Lat float64 `json:"lat"`
}
// Weather contains the weather general status
type Weather struct {
ID int `json:"id"`
Main string `json:"main"`
Description string `json:"description"`
Icon string `json:"icon"`
}
// Wind contains the wind info
type Wind struct {
Speed float64 `json:"speed"`
Deg float64 `json:"deg"`
}
// Clouds contains the cloud info
type Clouds struct {
All int `json:"all"`
}
// Rain contains the rain forecast
type Rain struct {
Threehr int `json:"3h"`
}
// Main contains the main data
type Main struct {
Temp float64 `json:"temp"`
FeelsLike float64 `json:"feels_like"`
Pressure int `json:"pressure"`
Humidity int `json:"humidity"`
TempMin float64 `json:"temp_min"`
TempMax float64 `json:"temp_max"`
}
// Sys contains other system or ephemerides data
type Sys struct {
Type int `json:"type"`
ID int `json:"ID"`
Message float64 `json:"message"`
Country string `json:"country"`
Sunrise int64 `json:"sunrise"`
Sunset int64 `json:"sunset"`
}
/*
Define API response objects (compose of the above fields)
*/
// CurrentWeatherResponse contains the response from the server
type CurrentWeatherResponse struct {
Coord `json:"coord"`
Weather []Weather `json:"weather"`
Main `json:"main"`
Wind `json:"wind"`
Rain `json:"rain"`
Clouds `json:"clouds"`
Base string `json:"base"`
Visibility int `json:"visibility"`
Dt int `json:"dt"`
ID int `json:"id"`
Name string `json:"name"`
Sys `json:"sys"`
}
// ForecastResponse contains the forecast info
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 (
// APIURL URL for the api
APIURL string = "api.openweathermap.org/data/2.5"
)
func makeAPIRequest(url string) ([]byte, error) {
// Build an http client so we can have control over timeout
client := &http.Client{
Timeout: time.Second * 60,
}
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
}
// CurrentWeatherFromCity returns the current weather in a freeform city
func (owm *OpenWeatherMap) CurrentWeatherFromCity(city string) (*CurrentWeatherResponse, error) {
if owm.APIKey == "" {
// No API keys present, return error
return nil, errors.New("No API keys present")
}
var addToQuery = ""
if owm.Units != "" {
addToQuery = "&units=" + owm.Units
}
url := fmt.Sprintf("http://%s/weather?q=%s%s&APPID=%s", APIURL, city, addToQuery, owm.APIKey)
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
}
// CurrentWeatherFromCoordinates returns the current weather in geographical coordinates
func (owm *OpenWeatherMap) CurrentWeatherFromCoordinates(lat, long float64) (*CurrentWeatherResponse, error) {
if owm.APIKey == "" {
// No API keys present, return error
return nil, errors.New("No API keys present")
}
var addToQuery = ""
if owm.Units != "" {
addToQuery = "&units=" + owm.Units
}
url := fmt.Sprintf("http://%s/weather?lat=%f&lon=%f%s&APPID=%s", APIURL, lat, long, addToQuery, owm.APIKey)
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
}
// CurrentWeatherFromZip returns the current weather in a zipcode
func (owm *OpenWeatherMap) CurrentWeatherFromZip(zip int) (*CurrentWeatherResponse, error) {
if owm.APIKey == "" {
// No API keys present, return error
return nil, errors.New("No API keys present")
}
var addToQuery = ""
if owm.Units != "" {
addToQuery = "&units=" + owm.Units
}
url := fmt.Sprintf("http://%s/weather?zip=%d%s&APPID=%s", APIURL, zip, addToQuery, owm.APIKey)
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
}
// CurrentWeatherFromCityID returns the current weather in a city id
func (owm *OpenWeatherMap) CurrentWeatherFromCityID(id int) (*CurrentWeatherResponse, error) {
if owm.APIKey == "" {
// No API keys present, return error
return nil, errors.New("No API keys present")
}
var addToQuery = ""
if owm.Units != "" {
addToQuery = "&units=" + owm.Units
}
url := fmt.Sprintf("http://%s/weather?id=%d%s&APPID=%s", APIURL, id, addToQuery, owm.APIKey)
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
}