PHP_SMART_HOME_V3/app/api/UpdatesApi.php

86 lines
3.8 KiB
PHP
Raw Normal View History

2020-07-20 09:07:32 +00:00
<?php
class UpdatesApi {
2020-07-15 10:54:45 +00:00
private function sendFile($path) {
header($_SERVER["SERVER_PROTOCOL"] . ' 200 OK', true, 200);
header('Content-Type: application/octet-stream', true);
header('Content-Disposition: attachment; filename=' . basename($path));
header('Content-Length: ' . filesize($path), true);
header('x-MD5: ' . md5_file($path), true);
readfile($path);
}
2020-07-20 09:07:32 +00:00
2020-08-31 19:23:23 +00:00
private function validateHeader($headers){
if (
isset($_SERVER['HTTP_X_ESP8266_STA_MAC']) &&
2020-09-07 09:05:47 +00:00
isset($_SERVER['HTTP_X_ESP8266_SKETCH_MD5'])
2020-08-31 19:23:23 +00:00
) {
return true;
}
return false;
2020-09-07 09:05:47 +00:00
2020-08-31 19:23:23 +00:00
}
2020-07-15 10:54:45 +00:00
public function default(){
2020-07-20 09:07:32 +00:00
$logManager = new LogManager('../logs/ota/'. date("Y-m-d").'.log');
2020-07-28 07:02:46 +00:00
$logManager->setLevel(LOGLEVEL);
2020-07-28 13:40:48 +00:00
$logManager->write("[Updater] Client Connected", LogRecordTypes::INFO);
2020-09-07 09:05:47 +00:00
// if($this->validateHeader($_SERVER)){
// header($_SERVER["SERVER_PROTOCOL"]." 400 Bad Header");
// die();
// }
2020-09-02 11:57:41 +00:00
2020-08-31 19:23:23 +00:00
header('Content-type: text/plain; charset=utf8', true);
2020-09-07 09:05:47 +00:00
// //Filtrování IP adress
// if (DEBUGMOD != 1) {
// if (!in_array($_SERVER['REMOTE_ADDR'], HOMEIP)) {
// echo json_encode(array(
// 'state' => 'unsuccess',
// 'errorMSG' => "Using API from your IP insnt alowed!",
// ));
// header($_SERVER["SERVER_PROTOCOL"]." 401 Unauthorized");
// $logManager->write("[Updater] acces denied from " . $_SERVER['REMOTE_ADDR'], LogRecordTypes::INFO);
// exit();
// }
// }
2020-07-20 09:07:32 +00:00
2020-07-15 10:54:45 +00:00
$macAddress = $_SERVER['HTTP_X_ESP8266_STA_MAC'];
$localBinary = "../updater/" . str_replace(':', '', $macAddress) . ".bin";
2020-07-28 07:02:46 +00:00
$logManager->write("[Updater] url: " . $localBinary, LogRecordTypes::INFO);
$logManager->write("[Updater] version: " . $_SERVER['HTTP_X_ESP8266_SKETCH_MD5'], LogRecordTypes::INFO);
2020-07-15 10:54:45 +00:00
if (file_exists($localBinary)) {
2020-07-28 07:02:46 +00:00
$logManager->write("[Updater] version PHP: " . md5_file($localBinary), LogRecordTypes::INFO);
2020-07-15 10:54:45 +00:00
if ($_SERVER['HTTP_X_ESP8266_SKETCH_MD5'] != md5_file($localBinary)) {
2020-07-20 09:07:32 +00:00
$this->sendFile($localBinary);
2020-07-15 10:54:45 +00:00
//get device data
$device = DeviceManager::getDeviceByMac($macAddress);
$deviceName = $device['name'];
$deviceId = $device['device_id'];
//logfile write
2020-07-28 13:40:48 +00:00
$logManager->write("[Device] device_ID " . $deviceId . " was just updated to new version", LogRecordTypes::INFO);
2020-07-28 07:02:46 +00:00
$logManager->write("[Device] version hash: " . md5_file($localBinary), LogRecordTypes::INFO);
2020-07-15 10:54:45 +00:00
//notification
$notificationMng = new NotificationManager;
$notificationData = [
'title' => 'Info',
'body' => $deviceName.' was just updated to new version',
'icon' => BASEDIR . '/app/templates/images/icon-192x192.png',
];
if ($notificationData != []) {
$subscribers = $notificationMng->getSubscription();
foreach ($subscribers as $key => $subscriber) {
2020-07-28 07:02:46 +00:00
$logManager->write("[NOTIFICATION] SENDING TO " . $subscriber['id'] . " ", LogRecordTypes::INFO);
2020-07-15 10:54:45 +00:00
$answer = $notificationMng->sendSimpleNotification(SERVERKEY, $subscriber['token'], $notificationData);
}
}
} else {
header($_SERVER["SERVER_PROTOCOL"].' 304 Not Modified', true, 304);
}
} else {
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
}
die();
}
2020-07-20 09:07:32 +00:00
}