Notification That nev device vas Discovered

This commit is contained in:
JonatanRek 2019-10-11 17:45:26 +02:00
parent b0985b8ea2
commit 23ae36dfc5
1 changed files with 13 additions and 0 deletions

13
api.php
View File

@ -104,12 +104,25 @@ if ($token == null || $token == "") {
//Vstupní Checky
if (!DeviceManager::registeret($token)) {
$notificationData = [
'title' => 'Info',
'body' => 'New device Detected',
'icon' => '',
];
$deviceId = DeviceManager::create($token, $token);
foreach ($values as $key => $value) {
if (!SubDeviceManager::getSubDeviceByMaster($deviceId, $key)) {
SubDeviceManager::create($deviceId, $key, UNITS[$key]);
}
}
//Notification for newly added Device
$subscribers = $notificationMng::getSubscription();
foreach ($subscribers as $key => $subscriber) {
$logManager->write("[NOTIFICATION] SENDING TO" . $subscriber['id'] . " ");
$notificationMng::sendSimpleNotification(SERVERKEY, $subscriber['token'], $notificationData);
}
header("HTTP/1.1 401 Unauthorized");
echo json_encode(array(
'state' => 'unsuccess',