Open Weather Map
This commit is contained in:
parent
3047ead205
commit
dffaf8eb2e
26
app/plugins/OpenWeatherMap.php
Normal file
26
app/plugins/OpenWeatherMap.php
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
class OpenWeatherMap
|
||||||
|
{
|
||||||
|
private $city_sluig = "prague";
|
||||||
|
private $app_id= "1ee609f2fcf8048e84f1d2fb1d1d72b5";
|
||||||
|
private $api_uri = 'api.openweathermap.org/data/2.5/weather?q=%s&appid=%s'; // Your redirect uri
|
||||||
|
private $virtual_device_name = "Weather";
|
||||||
|
private $fetch_iterval = "";
|
||||||
|
|
||||||
|
function fetch($url)
|
||||||
|
{
|
||||||
|
//todo fetch interval limit from sleep time
|
||||||
|
$finalUrl = sprintf($this->api_uri, $this->city_sluig, $this->app_id);
|
||||||
|
$json = json_decode(Utilities::CallAPI('GET', $finalUrl, ''), true);
|
||||||
|
if (DeviceManager::registeret($this->virtual_device_name)) {
|
||||||
|
$deviceId = DeviceManager::getDeviceByToken($this->virtual_device_name)['device_id'];
|
||||||
|
if (!SubDeviceManager::getSubDeviceByMaster($deviceId, 'weather')) {
|
||||||
|
SubDeviceManager::create($deviceId, 'weather', '');
|
||||||
|
}
|
||||||
|
RecordManager::create($deviceId, 'weather', $json['weather'][0]['id']);
|
||||||
|
} else {
|
||||||
|
DeviceManager::create($this->virtual_device_name, $this->virtual_device_name);
|
||||||
|
DeviceManager::approved($this->virtual_device_name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user