virtual_device_name)) { $deviceId = DeviceManager::getDeviceByToken($this->virtual_device_name)['device_id']; if (!$subDevice = SubDeviceManager::getSubDeviceByMaster($deviceId, $this->subdevice_type)) { SubDeviceManager::create($deviceId, $this->subdevice_type, ''); sleep(1); $subDevice = SubDeviceManager::getSubDeviceByMaster($deviceId, strtolower($this->subdevice_type)); } if (!$this->fetchEnabled($deviceId, $subDevice['subdevice_id'])) die(); $finalUrl = sprintf($this->api_uri, $this->city_sluig, $this->app_id); $json = json_decode(Utilities::CallAPI('GET', $finalUrl, ''), true); //Notification data setup $notificationMng = new NotificationManager; if ($json['weather'][0]['id'] >= 500 && $json['weather'][0]['id'] < 600) { // $notificationData = [ // 'title' => 'Weather', // 'body' => 'It Will be rainy outhere, Take Umbrela :)', // 'icon' => 'http://dev.steelants.cz/projekty/simplehome-client/img/icons/favicon-16x16.png', // ]; // //Notification for newly added Device // if ($notificationData != []) { // $subscribers = $notificationMng::getSubscription(); // foreach ($subscribers as $key => $subscriber) { // $notificationMng::sendSimpleNotification(SERVERKEY, $subscriber['token'], $notificationData); // } // } } else if ($json['weather'][0]['id'] >= 600 && $json['weather'][0]['id'] < 700) { // $notificationData = [ // 'title' => 'Weather', // 'body' => 'It is white out there :)', // 'icon' => 'http://dev.steelants.cz/projekty/simplehome-client/img/icons/favicon-16x16.png', // ]; // //Notification for newly added Device // if ($notificationData != []) { // $subscribers = $notificationMng::getSubscription(); // foreach ($subscribers as $key => $subscriber) { // $notificationMng::sendSimpleNotification(SERVERKEY, $subscriber['token'], $notificationData); // } // } } RecordManager::create($deviceId, $this->subdevice_type, $json['weather'][0]['id'], 'plugin'); } else { DeviceManager::create($this->virtual_device_name, $this->virtual_device_name, 'senzore-virtual'); DeviceManager::approved($this->virtual_device_name); } return 'sucessful'; } catch (Exception $e) { return 'exception: ' . $e->getMessage(); } } function enable(){ (new SettingsManager)->create('open_weather_api_token', '', 'open_weather'); } }