Some Tweeks
This commit is contained in:
parent
c410df1bd6
commit
5d32c2bfa4
@ -1,7 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
class WidgetApi extends ApiController{
|
class WidgetApi extends ApiController
|
||||||
|
{
|
||||||
|
|
||||||
public function run($subDeviceId){
|
public function run($subDeviceId)
|
||||||
|
{
|
||||||
//$this->requireAuth();
|
//$this->requireAuth();
|
||||||
|
|
||||||
$response = null;
|
$response = null;
|
||||||
@ -30,7 +32,8 @@ class WidgetApi extends ApiController{
|
|||||||
$this->response(['value' => $response]);
|
$this->response(['value' => $response]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function detail($subDeviceId){
|
public function detail($subDeviceId)
|
||||||
|
{
|
||||||
//$this->requireAuth();
|
//$this->requireAuth();
|
||||||
$response = null;
|
$response = null;
|
||||||
$connectionError = true;
|
$connectionError = true;
|
||||||
@ -70,10 +73,11 @@ class WidgetApi extends ApiController{
|
|||||||
$response = [
|
$response = [
|
||||||
'records' => $events,
|
'records' => $events,
|
||||||
'graph' => [
|
'graph' => [
|
||||||
'labels' => $labels,
|
|
||||||
'data' => [
|
'data' => [
|
||||||
|
'labels' => $labels,
|
||||||
'dataset' => $values
|
'dataset' => $values
|
||||||
],
|
],
|
||||||
|
'options' => [
|
||||||
'scales' => [
|
'scales' => [
|
||||||
'xAxis' => [
|
'xAxis' => [
|
||||||
'type' => 'time',
|
'type' => 'time',
|
||||||
@ -97,6 +101,7 @@ class WidgetApi extends ApiController{
|
|||||||
'mode' => true
|
'mode' => true
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
],
|
||||||
'comError' => $connectionError,
|
'comError' => $connectionError,
|
||||||
'lastConnectionTime' => (empty($niceTime) ? "00:00" : $niceTime),
|
'lastConnectionTime' => (empty($niceTime) ? "00:00" : $niceTime),
|
||||||
];
|
];
|
||||||
|
@ -1,18 +1,19 @@
|
|||||||
<?php
|
<?php
|
||||||
class Covid extends VirtualDeviceManager {
|
class Covid extends VirtualDeviceManager
|
||||||
|
{
|
||||||
private $country_sluig = "czech-republic";
|
private $country_sluig = "czech-republic";
|
||||||
private $api_uri = 'https://api.covid19api.com/live/country/%s/status/confirmed'; // Your redirect uri
|
private $api_uri = 'https://api.covid19api.com/live/country/%s/status/confirmed'; // Your redirect uri
|
||||||
private $virtual_device_name = "Covid";
|
private $virtual_device_name = "Covid";
|
||||||
|
|
||||||
function fetch($url = 'true')
|
function fetch($url = 'true')
|
||||||
{
|
{
|
||||||
|
|
||||||
if (DeviceManager::registeret($this->virtual_device_name)) {
|
if (DeviceManager::registeret($this->virtual_device_name)) {
|
||||||
$deviceId = DeviceManager::getDeviceByToken($this->virtual_device_name)['device_id'];
|
$deviceId = DeviceManager::getDeviceByToken($this->virtual_device_name)['device_id'];
|
||||||
$dataItems = ['Confirmed', 'Deaths', 'Recovered', 'Active'];
|
$dataItems = ['Confirmed', 'Deaths', 'Recovered', 'Active'];
|
||||||
foreach ($dataItems as $dataItem) {
|
foreach ($dataItems as $dataItem) {
|
||||||
if (!$subDevice = SubDeviceManager::getSubDeviceByMaster($deviceId, strtolower($dataItem))) {
|
if (!$subDevice = SubDeviceManager::getSubDeviceByMaster($deviceId, strtolower($dataItem))) {
|
||||||
SubDeviceManager::create($deviceId, strtolower($dataItem), 'Cases');
|
SubDeviceManager::create($deviceId, strtolower($dataItem), $dataItem);
|
||||||
|
sleep(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,6 +13,7 @@ class OpenWeatherMap extends VirtualDeviceManager
|
|||||||
$deviceId = DeviceManager::getDeviceByToken($this->virtual_device_name)['device_id'];
|
$deviceId = DeviceManager::getDeviceByToken($this->virtual_device_name)['device_id'];
|
||||||
if (!$subDevice = SubDeviceManager::getSubDeviceByMaster($deviceId, $this->subdevice_type)) {
|
if (!$subDevice = SubDeviceManager::getSubDeviceByMaster($deviceId, $this->subdevice_type)) {
|
||||||
SubDeviceManager::create($deviceId, $this->subdevice_type, '');
|
SubDeviceManager::create($deviceId, $this->subdevice_type, '');
|
||||||
|
sleep(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$this->fetchEnabled($deviceId,$subDevice['subdevice_id'])) die();
|
if (!$this->fetchEnabled($deviceId,$subDevice['subdevice_id'])) die();
|
||||||
|
Loading…
Reference in New Issue
Block a user