Completed
Push — api-key ( 3f664d )
by Christian
02:16
created

OpenWeatherMap::getApiKey()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 2
Bugs 1 Features 0
Metric Value
c 2
b 1
f 0
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * OpenWeatherMap-PHP-API — A php api to parse weather data from http://www.OpenWeatherMap.org .
4
 *
5
 * @license MIT
6
 *
7
 * Please see the LICENSE file distributed with this source code for further
8
 * information regarding copyright and licensing.
9
 *
10
 * Please visit the following links to read about the usage policies and the license of
11
 * OpenWeatherMap before using this class:
12
 *
13
 * @see http://www.OpenWeatherMap.org
14
 * @see http://www.OpenWeatherMap.org/terms
15
 * @see http://openweathermap.org/appid
16
 */
17
18
namespace Cmfcmf;
19
20
use Cmfcmf\OpenWeatherMap\AbstractCache;
21
use Cmfcmf\OpenWeatherMap\CurrentWeather;
22
use Cmfcmf\OpenWeatherMap\Exception as OWMException;
23
use Cmfcmf\OpenWeatherMap\Fetcher\CurlFetcher;
24
use Cmfcmf\OpenWeatherMap\Fetcher\FetcherInterface;
25
use Cmfcmf\OpenWeatherMap\Fetcher\FileGetContentsFetcher;
26
use Cmfcmf\OpenWeatherMap\WeatherForecast;
27
use Cmfcmf\OpenWeatherMap\WeatherHistory;
28
29
/**
30
 * Main class for the OpenWeatherMap-PHP-API. Only use this class.
31
 *
32
 * @api
33
 */
34
class OpenWeatherMap
35
{
36
    /**
37
     * The copyright notice. This is no official text, it was created by
38
     * following the guidelines at http://openweathermap.org/copyright.
39
     *
40
     * @var string $copyright
41
     */
42
    const COPYRIGHT = "Weather data from <a href=\"http://www.openweathermap.org\">OpenWeatherMap.org</a>";
43
44
    /**
45
     * @var string The basic api url to fetch weather data from.
46
     */
47
    private $weatherUrl = 'http://api.openweathermap.org/data/2.5/weather?';
48
49
    /**
50
     * @var string The basic api url to fetch weekly forecast data from.
51
     */
52
    private $weatherHourlyForecastUrl = 'http://api.openweathermap.org/data/2.5/forecast?';
53
54
    /**
55
     * @var string The basic api url to fetch daily forecast data from.
56
     */
57
    private $weatherDailyForecastUrl = 'http://api.openweathermap.org/data/2.5/forecast/daily?';
58
59
    /**
60
     * @var string The basic api url to fetch history weather data from.
61
     */
62
    private $weatherHistoryUrl = 'http://api.openweathermap.org/data/2.5/history/city?';
63
64
    /**
65
     * @var AbstractCache|bool $cache The cache to use.
66
     */
67
    private $cache = false;
68
69
    /**
70
     * @var int
71
     */
72
    private $seconds;
73
74
    /**
75
     * @var bool
76
     */
77
    private $wasCached = false;
78
79
    /**
80
     * @var FetcherInterface The url fetcher.
81
     */
82
    private $fetcher;
83
84
    /**
85
     * @var string
86
     */
87
    private $apiKey = '';
88
89
    /**
90
     * Constructs the OpenWeatherMap object.
91
     *
92
     * @param string                $apiKey  The OpenWeatherMap API key. Required and only optional for BC.
93
     * @param null|FetcherInterface $fetcher The interface to fetch the data from OpenWeatherMap. Defaults to
94
     *                                       CurlFetcher() if cURL is available. Otherwise defaults to
95
     *                                       FileGetContentsFetcher() using 'file_get_contents()'.
96
     * @param bool|string           $cache   If set to false, caching is disabled. Otherwise this must be a class
97
     *                                       extending AbstractCache. Defaults to false.
98
     * @param int $seconds                   How long weather data shall be cached. Default 10 minutes.
99
     *
100
     * @throws \Exception If $cache is neither false nor a valid callable extending Cmfcmf\OpenWeatherMap\Util\Cache.
101
     *
102
     * @api
103
     */
104
    public function __construct($apiKey = '', $fetcher = null, $cache = false, $seconds = 600)
105
    {
106
        if (!is_string($apiKey) || empty($apiKey)) {
107
            // BC
108
            $seconds = $cache !== false ? $cache : 600;
109
            $cache = $fetcher !== null ? $fetcher : false;
110
            $fetcher = $apiKey !== '' ? $apiKey : null;
111
        } else {
112
            $this->apiKey = $apiKey;
113
        }
114
115
        if ($cache !== false && !($cache instanceof AbstractCache)) {
116
            throw new \Exception('The cache class must implement the FetcherInterface!');
117
        }
118
        if (!is_numeric($seconds)) {
119
            throw new \Exception('$seconds must be numeric.');
120
        }
121
        if (!isset($fetcher)) {
122
            $fetcher = (function_exists('curl_version')) ? new CurlFetcher() : new FileGetContentsFetcher();
123
        }
124
        if ($seconds == 0) {
125
            $cache = false;
126
        }
127
128
        $this->cache = $cache;
129
        $this->seconds = $seconds;
0 ignored issues
show
Documentation Bug introduced by
It seems like $seconds can also be of type double or string. However, the property $seconds is declared as type integer. Maybe add an additional type check?

Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a mixed type is assigned to a property that is type hinted more strictly.

For example, imagine you have a variable $accountId that can either hold an Id object or false (if there is no account id yet). Your code now assigns that value to the id property of an instance of the Account class. This class holds a proper account, so the id value must no longer be false.

Either this assignment is in error or a type check should be added for that assignment.

class Id
{
    public $id;

    public function __construct($id)
    {
        $this->id = $id;
    }

}

class Account
{
    /** @var  Id $id */
    public $id;
}

$account_id = false;

if (starsAreRight()) {
    $account_id = new Id(42);
}

$account = new Account();
if ($account instanceof Id)
{
    $account->id = $account_id;
}
Loading history...
130
        $this->fetcher = $fetcher;
0 ignored issues
show
Documentation Bug introduced by
It seems like $fetcher can also be of type string. However, the property $fetcher is declared as type object<Cmfcmf\OpenWeathe...tcher\FetcherInterface>. Maybe add an additional type check?

Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a mixed type is assigned to a property that is type hinted more strictly.

For example, imagine you have a variable $accountId that can either hold an Id object or false (if there is no account id yet). Your code now assigns that value to the id property of an instance of the Account class. This class holds a proper account, so the id value must no longer be false.

Either this assignment is in error or a type check should be added for that assignment.

class Id
{
    public $id;

    public function __construct($id)
    {
        $this->id = $id;
    }

}

class Account
{
    /** @var  Id $id */
    public $id;
}

$account_id = false;

if (starsAreRight()) {
    $account_id = new Id(42);
}

$account = new Account();
if ($account instanceof Id)
{
    $account->id = $account_id;
}
Loading history...
131
    }
132
133
    /**
134
     * Sets the API Key.
135
     *
136
     * @param string $apiKey API key for the OpenWeatherMap account.
137
     *
138
     * @api
139
     */
140
    public function setApiKey($apiKey)
141
    {
142
        $this->apiKey = $apiKey;
143
    }
144
145
    /**
146
     * Returns the API Key.
147
     *
148
     * @return string
149
     *
150
     * @api
151
     */
152
    public function getApiKey()
153
    {
154
        return $this->apiKey;
155
    }
156
157
    /**
158
     * Returns the current weather at the place you specified as an object.
159
     *
160
     * @param array|int|string $query The place to get weather information for. For possible values see below.
161
     * @param string           $units Can be either 'metric' or 'imperial' (default). This affects almost all units returned.
162
     * @param string           $lang  The language to use for descriptions, default is 'en'. For possible values see http://openweathermap.org/current#multi.
163
     * @param string           $appid Your app id, default ''. See http://openweathermap.org/appid for more details.
164
     *
165
     * @throws OpenWeatherMap\Exception  If OpenWeatherMap returns an error.
166
     * @throws \InvalidArgumentException If an argument error occurs.
167
     *
168
     * @return CurrentWeather The weather object.
169
     *
170
     * There are three ways to specify the place to get weather information for:
171
     * - Use the city name: $query must be a string containing the city name.
172
     * - Use the city id: $query must be an integer containing the city id.
173
     * - Use the coordinates: $query must be an associative array containing the 'lat' and 'lon' values.
174
     *
175
     * @api
176
     */
177
    public function getWeather($query, $units = 'imperial', $lang = 'en', $appid = '')
178
    {
179
        $answer = $this->getRawWeatherData($query, $units, $lang, $appid, 'xml');
180
        $xml = $this->parseXML($answer);
0 ignored issues
show
Bug introduced by
It seems like $answer defined by $this->getRawWeatherData..., $lang, $appid, 'xml') on line 179 can also be of type boolean; however, Cmfcmf\OpenWeatherMap::parseXML() does only seem to accept string, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
181
182
        return new CurrentWeather($xml, $units);
183
    }
184
185
    /**
186
     * Returns the current weather at the place you specified as an object.
187
     *
188
     * @param array|int|string $query The place to get weather information for. For possible values see ::getWeather.
189
     * @param string           $units Can be either 'metric' or 'imperial' (default). This affects almost all units returned.
190
     * @param string           $lang  The language to use for descriptions, default is 'en'. For possible values see http://openweathermap.org/current#multi.
191
     * @param string           $appid Your app id, default ''. See http://openweathermap.org/appid for more details.
192
     * @param int              $days  For how much days you want to get a forecast. Default 1, maximum: 16.
193
     *
194
     * @throws OpenWeatherMap\Exception If OpenWeatherMap returns an error.
195
     * @throws \InvalidArgumentException If an argument error occurs.
196
     *
197
     * @return WeatherForecast
198
     *
199
     * @api
200
     */
201
    public function getWeatherForecast($query, $units = 'imperial', $lang = 'en', $appid = '', $days = 1)
202
    {
203
        if ($days <= 5) {
204
            $answer = $this->getRawHourlyForecastData($query, $units, $lang, $appid, 'xml');
205
        } elseif ($days <= 16) {
206
            $answer = $this->getRawDailyForecastData($query, $units, $lang, $appid, 'xml', $days);
207
        } else {
208
            throw new \InvalidArgumentException('Error: forecasts are only available for the next 16 days. $days must be 16 or lower.');
209
        }
210
        $xml = $this->parseXML($answer);
0 ignored issues
show
Bug introduced by
It seems like $answer can also be of type boolean; however, Cmfcmf\OpenWeatherMap::parseXML() does only seem to accept string, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
211
212
        return new WeatherForecast($xml, $units, $days);
213
    }
214
215
    /**
216
     * Returns the weather history for the place you specified as an object.
217
     *
218
     * @param array|int|string $query      The place to get weather information for. For possible values see ::getWeather.
219
     * @param \DateTime        $start
220
     * @param int              $endOrCount
221
     * @param string           $type       Can either be 'tick', 'hour' or 'day'.
222
     * @param string           $units      Can be either 'metric' or 'imperial' (default). This affects almost all units returned.
223
     * @param string           $lang       The language to use for descriptions, default is 'en'. For possible values see http://openweathermap.org/current#multi.
224
     * @param string           $appid      Your app id, default ''. See http://openweathermap.org/appid for more details.
225
     *
226
     * @throws OpenWeatherMap\Exception  If OpenWeatherMap returns an error.
227
     * @throws \InvalidArgumentException If an argument error occurs.
228
     *
229
     * @return WeatherHistory
230
     *
231
     * @api
232
     */
233
    public function getWeatherHistory($query, \DateTime $start, $endOrCount = 1, $type = 'hour', $units = 'imperial', $lang = 'en', $appid = '')
234
    {
235 View Code Duplication
        if (!in_array($type, array('tick', 'hour', 'day'))) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
236
            throw new \InvalidArgumentException('$type must be either "tick", "hour" or "day"');
237
        }
238
239
        $xml = json_decode($this->getRawWeatherHistory($query, $start, $endOrCount, $type, $units, $lang, $appid), true);
240
241
        if ($xml['cod'] != 200) {
242
            throw new OWMException($xml['message'], $xml['cod']);
243
        }
244
245
        return new WeatherHistory($xml, $query);
246
    }
247
248
    /**
249
     * Directly returns the xml/json/html string returned by OpenWeatherMap for the current weather.
250
     *
251
     * @param array|int|string $query The place to get weather information for. For possible values see ::getWeather.
252
     * @param string           $units Can be either 'metric' or 'imperial' (default). This affects almost all units returned.
253
     * @param string           $lang  The language to use for descriptions, default is 'en'. For possible values see http://openweathermap.org/current#multi.
254
     * @param string           $appid Your app id, default ''. See http://openweathermap.org/appid for more details.
255
     * @param string           $mode  The format of the data fetched. Possible values are 'json', 'html' and 'xml' (default).
256
     *
257
     * @return string Returns false on failure and the fetched data in the format you specified on success.
258
     *
259
     * Warning: If an error occurs, OpenWeatherMap ALWAYS returns json data.
260
     *
261
     * @api
262
     */
263
    public function getRawWeatherData($query, $units = 'imperial', $lang = 'en', $appid = '', $mode = 'xml')
264
    {
265
        $url = $this->buildUrl($query, $units, $lang, $appid, $mode, $this->weatherUrl);
266
267
        return $this->cacheOrFetchResult($url);
268
    }
269
270
    /**
271
     * Directly returns the xml/json/html string returned by OpenWeatherMap for the hourly forecast.
272
     *
273
     * @param array|int|string $query The place to get weather information for. For possible values see ::getWeather.
274
     * @param string           $units Can be either 'metric' or 'imperial' (default). This affects almost all units returned.
275
     * @param string           $lang  The language to use for descriptions, default is 'en'. For possible values see http://openweathermap.org/current#multi.
276
     * @param string           $appid Your app id, default ''. See http://openweathermap.org/appid for more details.
277
     * @param string           $mode  The format of the data fetched. Possible values are 'json', 'html' and 'xml' (default).
278
     *
279
     * @return string Returns false on failure and the fetched data in the format you specified on success.
280
     *
281
     * Warning: If an error occurs, OpenWeatherMap ALWAYS returns json data.
282
     *
283
     * @api
284
     */
285
    public function getRawHourlyForecastData($query, $units = 'imperial', $lang = 'en', $appid = '', $mode = 'xml')
286
    {
287
        $url = $this->buildUrl($query, $units, $lang, $appid, $mode, $this->weatherHourlyForecastUrl);
288
289
        return $this->cacheOrFetchResult($url);
290
    }
291
292
    /**
293
     * Directly returns the xml/json/html string returned by OpenWeatherMap for the daily forecast.
294
     *
295
     * @param array|int|string $query The place to get weather information for. For possible values see ::getWeather.
296
     * @param string           $units Can be either 'metric' or 'imperial' (default). This affects almost all units returned.
297
     * @param string           $lang  The language to use for descriptions, default is 'en'. For possible values see http://openweathermap.org/current#multi.
298
     * @param string           $appid Your app id, default ''. See http://openweathermap.org/appid for more details.
299
     * @param string           $mode  The format of the data fetched. Possible values are 'json', 'html' and 'xml' (default)
300
     * @param int              $cnt   How many days of forecast shall be returned? Maximum (and default): 16
301
     *
302
     * @throws \InvalidArgumentException If $cnt is higher than 16.
303
     *
304
     * @return string Returns false on failure and the fetched data in the format you specified on success.
305
     *
306
     * Warning: If an error occurs, OpenWeatherMap ALWAYS returns json data.
307
     *
308
     * @api
309
     */
310
    public function getRawDailyForecastData($query, $units = 'imperial', $lang = 'en', $appid = '', $mode = 'xml', $cnt = 16)
311
    {
312
        if ($cnt > 16) {
313
            throw new \InvalidArgumentException('$cnt must be 16 or lower!');
314
        }
315
        $url = $this->buildUrl($query, $units, $lang, $appid, $mode, $this->weatherDailyForecastUrl) . "&cnt=$cnt";
316
317
        return $this->cacheOrFetchResult($url);
318
    }
319
320
    /**
321
     * Directly returns the xml/json/html string returned by OpenWeatherMap for the weather history.
322
     *
323
     * @param array|int|string $query      The place to get weather information for. For possible values see ::getWeather.
324
     * @param \DateTime        $start      The \DateTime object of the date to get the first weather information from.
325
     * @param \DateTime|int    $endOrCount Can be either a \DateTime object representing the end of the period to
326
     *                                     receive weather history data for or an integer counting the number of
327
     *                                     reports requested.
328
     * @param string           $type       The period of the weather history requested. Can be either be either "tick",
329
     *                                     "hour" or "day".
330
     * @param string           $units      Can be either 'metric' or 'imperial' (default). This affects almost all units returned.
331
     * @param string           $lang       The language to use for descriptions, default is 'en'. For possible values see http://openweathermap.org/current#multi.
332
     * @param string           $appid      Your app id, default ''. See http://openweathermap.org/appid for more details.
333
     *
334
     * @throws \InvalidArgumentException
335
     *
336
     * @return string Returns false on failure and the fetched data in the format you specified on success.
337
     *
338
     * Warning If an error occurred, OpenWeatherMap ALWAYS returns data in json format.
339
     *
340
     * @api
341
     */
342
    public function getRawWeatherHistory($query, \DateTime $start, $endOrCount = 1, $type = 'hour', $units = 'imperial', $lang = 'en', $appid = '')
343
    {
344 View Code Duplication
        if (!in_array($type, array('tick', 'hour', 'day'))) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
345
            throw new \InvalidArgumentException('$type must be either "tick", "hour" or "day"');
346
        }
347
348
        $url = $this->buildUrl($query, $units, $lang, $appid, 'json', $this->weatherHistoryUrl);
349
        $url .= "&type=$type&start={$start->format('U')}";
350
        if ($endOrCount instanceof \DateTime) {
351
            $url .= "&end={$endOrCount->format('U')}";
352
        } elseif (is_numeric($endOrCount) && $endOrCount > 0) {
353
            $url .= "&cnt=$endOrCount";
354
        } else {
355
            throw new \InvalidArgumentException('$endOrCount must be either a \DateTime or a positive integer.');
356
        }
357
358
        return $this->cacheOrFetchResult($url);
359
    }
360
361
    /**
362
     * Returns whether or not the last result was fetched from the cache.
363
     *
364
     * @return bool true if last result was fetched from cache, false otherwise.
365
     */
366
    public function wasCached()
367
    {
368
        return $this->wasCached;
369
    }
370
371
    /**
372
     * @deprecated Use {@link self::getRawWeatherData()} instead.
373
     */
374
    public function getRawData($query, $units = 'imperial', $lang = 'en', $appid = '', $mode = 'xml')
375
    {
376
        return $this->getRawWeatherData($query, $units, $lang, $appid, $mode);
377
    }
378
379
    /**
380
     * Fetches the result or delivers a cached version of the result.
381
     *
382
     * @param string $url
383
     *
384
     * @return string
385
     */
386
    private function cacheOrFetchResult($url)
387
    {
388
        if ($this->cache !== false) {
389
            /** @var AbstractCache $cache */
390
            $cache = $this->cache;
391
            $cache->setSeconds($this->seconds);
392
            if ($cache->isCached($url)) {
393
                $this->wasCached = true;
394
                return $cache->getCached($url);
395
            }
396
            $result = $this->fetcher->fetch($url);
397
            $cache->setCached($url, $result);
398
        } else {
399
            $result = $this->fetcher->fetch($url);
400
        }
401
        $this->wasCached = false;
402
403
        return $result;
404
    }
405
406
    /**
407
     * Build the url to fetch weather data from.
408
     *
409
     * @param        $query
410
     * @param        $units
411
     * @param        $lang
412
     * @param        $appid
413
     * @param        $mode
414
     * @param string $url   The url to prepend.
415
     *
416
     * @return bool|string The fetched url, false on failure.
417
     */
418
    private function buildUrl($query, $units, $lang, $appid, $mode, $url)
419
    {
420
        $queryUrl = $this->buildQueryUrlParameter($query);
421
422
        $url = $url."$queryUrl&units=$units&lang=$lang&mode=$mode&APPID=";
423
        $url .= empty($appid) ? $this->apiKey : $appid;
424
425
        return $url;
426
    }
427
428
    /**
429
     * Builds the query string for the url.
430
     *
431
     * @param mixed $query
432
     *
433
     * @return string The built query string for the url.
434
     *
435
     * @throws \InvalidArgumentException If the query parameter is invalid.
436
     */
437
    private function buildQueryUrlParameter($query)
438
    {
439
        switch ($query) {
440
            case is_array($query) && isset($query['lat']) && isset($query['lon']) && is_numeric($query['lat']) && is_numeric($query['lon']):
441
                return "lat={$query['lat']}&lon={$query['lon']}";
442
            case is_numeric($query):
443
                return "id=$query";
444
            case is_string($query):
445
                return 'q='.urlencode($query);
446
            default:
447
                throw new \InvalidArgumentException('Error: $query has the wrong format. See the documentation of OpenWeatherMap::getRawData() to read about valid formats.');
448
        }
449
    }
450
451
    /**
452
     * @param string $answer The content returned by OpenWeatherMap.
453
     *
454
     * @return \SimpleXMLElement
455
     * @throws OWMException If the content isn't valid XML.
456
     */
457
    private function parseXML($answer)
458
    {
459
        // Disable default error handling of SimpleXML (Do not throw E_WARNINGs).
460
        libxml_use_internal_errors(true);
461
        libxml_clear_errors();
462
        try {
463
            return new \SimpleXMLElement($answer);
464
        } catch (\Exception $e) {
465
            // Invalid xml format. This happens in case OpenWeatherMap returns an error.
466
            // OpenWeatherMap always uses json for errors, even if one specifies xml as format.
467
            $error = json_decode($answer, true);
468
            if (isset($error['message'])) {
469
                throw new OWMException($error['message'], $error['cod']);
470
            } else {
471
                throw new OWMException('Unknown fatal error: OpenWeatherMap returned the following json object: ' . $answer);
472
            }
473
        }
474
    }
475
}
476