-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathforecast.io.js
More file actions
403 lines (387 loc) · 9.43 KB
/
forecast.io.js
File metadata and controls
403 lines (387 loc) · 9.43 KB
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
'use strict';
//Install jQuery and Moment.js using npm or
//if using require.js manage the paths as you see fit
//Notes
//Could use ES6 promises (and polyfill)
//rather than jQuery
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['moment', 'es6-promise'], function(moment) {
return (root.ForecastIO = factory(moment));
});
} else if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = (root.ForecastIO = factory(require('moment'), require('es6-promise').Promise));
} else {
// Browser globals (root is window)
root.ForecastIO = factory(root.moment);
}
}(this, function(moment) {
/* By Ian Tearle
github.com/iantearle
Other contributors
Richard Bultitude
github.com/rjbultitude
Brandon Love
github.com/brandonlove
*/
//Error strings
var fioServiceError = 'There was a problem accessing forecast.io. Make sure you have a valid key';
//Forecast Class
/**
* Will construct a new ForecastIO object
*
* @param string $config
* @return boolean
*/
function ForecastIO(config) {
//var PROXY_SCRIPT = '/proxy.php';
if (!config) {
console.log('You must pass ForecastIO configurations');
}
if (!config.PROXY_SCRIPT) {
if (!config.API_KEY) {
console.log('API_KEY or PROXY_SCRIPT must be set in ForecastIO config');
}
}
this.API_KEY = config.API_KEY;
this.url = (typeof config.PROXY_SCRIPT !== 'undefined') ? config.PROXY_SCRIPT + '?url=': 'https://api.forecast.io/forecast/' + config.API_KEY + '/';
}
function makeRequest(method, url) {
return new Promise(function(resolve, reject) {
var xhr = new XMLHttpRequest();
xhr.open(method, url);
xhr.onload = function() {
if (this.status >= 200 && this.status < 300) {
resolve(xhr.response);
} else {
reject({
status: this.status,
statusText: xhr.statusText
});
}
};
xhr.onerror = function() {
reject({
status: this.status,
statusText: xhr.statusText
});
};
xhr.send();
});
}
/**
* Checks the location object
* passed into the app
* and wraps it in an array
* if it wasn't one already
*
* @param object $locObject
* @return array
*/
function checkObject(locObject) {
var locationsObjWrap = [];
if (!Array.isArray(locObject)) {
//console.log('locations was not an array');
locationsObjWrap.push(locObject);
return locationsObjWrap;
}
else {
return locObject;
}
}
/**
* Will build a url string from the lat long coords
* and return a promise with the json
*
* @param number $latitude
* @param number $longitude
* @return promise object
*/
ForecastIO.prototype.requestData = function requestData(latitude, longitude) {
var requestUrl = this.url + latitude + ',' + longitude;
return makeRequest('GET', requestUrl);
};
ForecastIO.prototype.requestAllLocData = function requestAllLocData(locations) {
var locDataArr = [];
for (var i = 0; i < locations.length; i++) {
var content = this.requestData(locations[i].latitude, locations[i].longitude);
locDataArr.push(content);
}
return locDataArr;
};
/**
* Will take a locations object and a callback function
* and pass the current conditions into the callback
*
* @param object $locations
* @param function $appFn
* @return boolean
*/
ForecastIO.prototype.getCurrentConditions = function getCurrentConditions(locations, appFn) {
var locationsArr = checkObject(locations);
var allLocDataArr = this.requestAllLocData(locationsArr);
Promise.all(allLocDataArr).then(function(values) {
if (values.length === 0 || values[0] === '' || values[0] === null || values[0] === undefined) {
console.log(fioServiceError);
return;
}
else {
var dataSets = [];
for (var i = 0; i < values.length; i++) {
var jsonData = JSON.parse(values[i]);
var currently = new ForecastIOConditions(jsonData.currently);
dataSets.push(currently);
}
appFn(dataSets);
return dataSets;
}
}, function(rejectObj) {
console.log(rejectObj.status);
console.log(rejectObj.statusText);
});
};
/**
* Will take a locations object and a callback function
* and pass the conditions on hourly basis for today into the callback
*
* @param object $locations
* @param function $appFn
* @return boolean
*/
ForecastIO.prototype.getForecastToday = function getForecastToday(locations, appFn) {
var locationsArr = checkObject(locations);
var allLocDataArr = this.requestAllLocData(locationsArr);
Promise.all(allLocDataArr).then(function(values) {
if (values.length === 0 || values[0] === '' || values[0] === null || values[0] === undefined) {
console.log(fioServiceError);
return;
}
else {
var dataSets = [];
for (var i = 0; i < values.length; i++) {
var today = moment().format('YYYY-MM-DD');
var jsonData = JSON.parse(values[i]);
for (var j = 0; j < jsonData.hourly.data.length; j++) {
var hourlyData = jsonData.hourly.data[j];
if (moment.unix(hourlyData.time).format('YYYY-MM-DD') === today) {
dataSets.push(new ForecastIOConditions(hourlyData));
}
}
}
appFn(dataSets);
return dataSets;
}
}, function(rejectObj) {
console.log(rejectObj.status);
console.log(rejectObj.statusText);
});
};
/**
* Will take a locations object and a callback function
* and pass the daily conditions for next seven days into the callback
*
* @param object $locations
* @param function $appFn
* @return boolean
*/
ForecastIO.prototype.getForecastWeek = function getForecastWeek(locations, appFn) {
var locationsArr = checkObject(locations);
var allLocDataArr = this.requestAllLocData(locationsArr);
Promise.all(allLocDataArr).then(function(values) {
if (values.length === 0 || values[0] === '' || values[0] === null || values[0] === undefined) {
console.log(fioServiceError);
return;
}
else {
var dataSets = [];
for (var i = 0; i < values.length; i++) {
var jsonData = JSON.parse(values[i]);
for (var j = 0; j < jsonData.daily.data.length; j++) {
var dailyData = jsonData.daily.data[j];
dataSets.push(new ForecastIOConditions(dailyData));
}
}
appFn(dataSets);
return dataSets;
}
}, function(rejectObj) {
console.log(rejectObj.status);
console.log(rejectObj.statusText);
});
};
function ForecastIOConditions(rawData) {
ForecastIOConditions.prototype = {
rawData: rawData
};
/**
* Will return the temperature
*
* @return String
*/
this.getTemperature = function() {
return rawData.temperature;
};
/**
* Will return the apparent temperature
*
* @return String
*/
this.getApparentTemperature = function() {
return rawData.apparentTemperature;
};
/**
* Get the summary of the conditions
*
* @return String
*/
this.getSummary = function() {
return rawData.summary;
};
/**
* Get the icon of the conditions
*
* @return String
*/
this.getIcon = function() {
return rawData.icon;
};
/**
* Get the time, when $format not set timestamp else formatted time
*
* @param String $format
* @return String
*/
this.getTime = function(format) {
if (!format) {
return rawData.time;
} else {
return moment.unix(rawData.time).format(format);
}
};
/**
* Get the pressure
*
* @return String
*/
this.getPressure = function() {
return rawData.pressure;
};
/**
* get humidity
*
* @return String
*/
this.getHumidity = function() {
return rawData.humidity;
};
/**
* Get the wind speed
*
* @return String
*/
this.getWindSpeed = function() {
return rawData.windSpeed;
};
/**
* Get wind direction
*
* @return type
*/
this.getWindBearing = function() {
return rawData.windBearing;
};
/**
* get precipitation type
*
* @return type
*/
this.getPrecipitationType = function() {
return rawData.precipType;
};
/**
* get the probability 0..1 of precipitation type
*
* @return type
*/
this.getPrecipitationProbability = function() {
return rawData.precipProbability;
};
/**
* Get the cloud cover
*
* @return type
*/
this.getCloudCover = function() {
return rawData.cloudCover;
};
/**
* get the min temperature
*
* only available for week forecast
*
* @return type
*/
this.getMinTemperature = function() {
return rawData.temperatureMin;
};
/**
* get max temperature
*
* only available for week forecast
*
* @return type
*/
this.getMaxTemperature = function() {
return rawData.temperatureMax;
};
/**
* get sunrise time
*
* only available for week forecast
*
* @return type
*/
this.getSunrise = function() {
return rawData.sunriseTime;
};
/**
* get sunset time
*
* only available for week forecast
*
* @return type
*/
this.getSunset = function() {
return rawData.sunsetTime;
};
/**
* get precipitation intensity
*
* @return number
*/
this.getPrecipIntensity = function() {
return rawData.precipIntensity;
};
/**
* get dew point
*
* @return number
*/
this.getDewPoint = function() {
return rawData.dewPoint;
};
/**
* get the ozone
*
* @return number
*/
this.getOzone = function() {
return rawData.ozone;
};
}
return ForecastIO;
}));