Some Fixes
This commit is contained in:
		@@ -1,68 +0,0 @@
 | 
				
			|||||||
<?php
 | 
					 | 
				
			||||||
class UpdatesApi {
 | 
					 | 
				
			||||||
    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);
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    public function default(){
 | 
					 | 
				
			||||||
		 header('Content-type: text/plain; charset=utf8', true);
 | 
					 | 
				
			||||||
        $logManager = new LogManager('../logs/ota/'. date("Y-m-d").'.log');
 | 
					 | 
				
			||||||
        $logManager->setLevel(LOGLEVEL);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        //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::WARNING);
 | 
					 | 
				
			||||||
                exit();
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }*/
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        $macAddress = $_SERVER['HTTP_X_ESP8266_STA_MAC'];
 | 
					 | 
				
			||||||
		  $localBinary = "../updater/" . str_replace(':', '', $macAddress) . ".bin";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        $logManager->write("[Updater] url: " . $localBinary, LogRecordTypes::INFO);
 | 
					 | 
				
			||||||
        $logManager->write("[Updater] version: " . $_SERVER['HTTP_X_ESP8266_SKETCH_MD5'], LogRecordTypes::INFO);
 | 
					 | 
				
			||||||
        if (file_exists($localBinary)) {
 | 
					 | 
				
			||||||
            $logManager->write("[Updater] version PHP: \n" . md5_file($localBinary), LogRecordTypes::INFO);
 | 
					 | 
				
			||||||
            if ($_SERVER['HTTP_X_ESP8266_SKETCH_MD5'] != md5_file($localBinary)) {
 | 
					 | 
				
			||||||
                $this->sendFile($localBinary);
 | 
					 | 
				
			||||||
                //get device data
 | 
					 | 
				
			||||||
                $device = DeviceManager::getDeviceByMac($macAddress);
 | 
					 | 
				
			||||||
                $deviceName = $device['name'];
 | 
					 | 
				
			||||||
                $deviceId = $device['device_id'];
 | 
					 | 
				
			||||||
                //logfile write
 | 
					 | 
				
			||||||
                $logManager->write("[Device] device_ID " . $deviceId . " was just updated to new version", LogRecordTypes::WARNING);
 | 
					 | 
				
			||||||
                $logManager->write("[Device] version hash: \n" . md5_file($localBinary), LogRecordTypes::INFO);
 | 
					 | 
				
			||||||
                //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) {
 | 
					 | 
				
			||||||
                        $logManager->write("[NOTIFICATION] SENDING TO " . $subscriber['id'] . " ", LogRecordTypes::INFO);
 | 
					 | 
				
			||||||
                        $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();
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -24,6 +24,11 @@ class UpdatesApi {
 | 
				
			|||||||
        $logManager->setLevel(LOGLEVEL);
 | 
					        $logManager->setLevel(LOGLEVEL);
 | 
				
			||||||
        $logManager->write("[Updater] Client Connected", LogRecordTypes::INFO);
 | 
					        $logManager->write("[Updater] Client Connected", LogRecordTypes::INFO);
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
 | 
					        if($this->validateHeader($_SERVER)){
 | 
				
			||||||
 | 
					            header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
 | 
				
			||||||
 | 
					            die();
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        header('Content-type: text/plain; charset=utf8', true);
 | 
					        header('Content-type: text/plain; charset=utf8', true);
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        //Filtrování IP adress
 | 
					        //Filtrování IP adress
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,9 @@
 | 
				
			|||||||
<!DOCTYPE html>
 | 
					<!DOCTYPE html>
 | 
				
			||||||
<html lang="en">
 | 
					<html lang="en">
 | 
				
			||||||
 | 
					<<<<<<< HEAD
 | 
				
			||||||
 | 
					=======
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					>>>>>>> 5cb6f0b... Some Fixes
 | 
				
			||||||
<head>
 | 
					<head>
 | 
				
			||||||
	<?php
 | 
						<?php
 | 
				
			||||||
	$partial = new Partial('head');
 | 
						$partial = new Partial('head');
 | 
				
			||||||
@@ -8,6 +12,10 @@
 | 
				
			|||||||
	?>
 | 
						?>
 | 
				
			||||||
	<title><?php echo $TITLE ?></title>
 | 
						<title><?php echo $TITLE ?></title>
 | 
				
			||||||
</head>
 | 
					</head>
 | 
				
			||||||
 | 
					<<<<<<< HEAD
 | 
				
			||||||
 | 
					=======
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					>>>>>>> 5cb6f0b... Some Fixes
 | 
				
			||||||
<body class="no-transitions">
 | 
					<body class="no-transitions">
 | 
				
			||||||
	<div class="row no-gutters main">
 | 
						<div class="row no-gutters main">
 | 
				
			||||||
		<div class="col-md-3 d-sm-none"></div>
 | 
							<div class="col-md-3 d-sm-none"></div>
 | 
				
			||||||
@@ -26,9 +34,9 @@
 | 
				
			|||||||
					<tr>
 | 
										<tr>
 | 
				
			||||||
						<th>#</th>
 | 
											<th>#</th>
 | 
				
			||||||
						<th>Name</th>
 | 
											<th>Name</th>
 | 
				
			||||||
 | 
											<th>Room</th>
 | 
				
			||||||
						<th>Firmware</th>
 | 
											<th>Firmware</th>
 | 
				
			||||||
						<th>Mac</th>
 | 
											<th>IP Address<br>(Mac)</th>
 | 
				
			||||||
						<th>IP Address</th>
 | 
					 | 
				
			||||||
						<th>Action</th>
 | 
											<th>Action</th>
 | 
				
			||||||
					</tr>
 | 
										</tr>
 | 
				
			||||||
				</thead>
 | 
									</thead>
 | 
				
			||||||
@@ -38,12 +46,10 @@
 | 
				
			|||||||
							<tr>
 | 
												<tr>
 | 
				
			||||||
								<td><i class="fa">&#x<?php echo (!empty($device['icon']) ? $device['icon'] : ""); ?></i></td>
 | 
													<td><i class="fa">&#x<?php echo (!empty($device['icon']) ? $device['icon'] : ""); ?></i></td>
 | 
				
			||||||
								<td><?php echo (!empty($device['name']) ? $device['name'] : ""); ?></td>
 | 
													<td><?php echo (!empty($device['name']) ? $device['name'] : ""); ?></td>
 | 
				
			||||||
 | 
													<td>Room</td>
 | 
				
			||||||
								<td>
 | 
													<td>
 | 
				
			||||||
									<?php if (!empty($device['mac'])) : ?>
 | 
														<?php if (!empty($device['mac'])) : ?>
 | 
				
			||||||
										<i
 | 
															<i class="fa <?php echo (!empty($device['firmware_hash']) ? ($device['firmware_hash'] != "need" ? "fa-check-circle" : "fa-circle") : "fa-times-circle"); ?>" style="float: center; <?php echo (!empty($device['firmware_hash']) ? ($device['firmware_hash'] != "need" ? "color: green;" : "color: yellow;") : "color: red;"); ?>"></i>
 | 
				
			||||||
											class="fa <?php echo (!empty ($device['firmware_hash']) ? ($device['firmware_hash'] != "need" ? "fa-check-circle" : "fa-circle") : "fa-times-circle"); ?>"
 | 
					 | 
				
			||||||
											style="float: center; <?php echo (!empty ($device['firmware_hash']) ? ($device['firmware_hash'] != "need" ? "color: green;" : "color: yellow;") : "color: red;"); ?>"
 | 
					 | 
				
			||||||
										></i>
 | 
					 | 
				
			||||||
										<button class="fa custom-file-input" type="button" onclick="document.getElementById('deviceFirmware').click();"></button>
 | 
															<button class="fa custom-file-input" type="button" onclick="document.getElementById('deviceFirmware').click();"></button>
 | 
				
			||||||
										<form style="display: none;" method="post" action="" enctype="multipart/form-data">
 | 
															<form style="display: none;" method="post" action="" enctype="multipart/form-data">
 | 
				
			||||||
											<input type="hidden" name="deviceId" value="<?php echo (!empty($device['device_id']) ? $device['device_id'] : ""); ?>">
 | 
																<input type="hidden" name="deviceId" value="<?php echo (!empty($device['device_id']) ? $device['device_id'] : ""); ?>">
 | 
				
			||||||
@@ -52,15 +58,16 @@
 | 
				
			|||||||
									<?php endif; ?>
 | 
														<?php endif; ?>
 | 
				
			||||||
									<div type="float: clear;"></div>
 | 
														<div type="float: clear;"></div>
 | 
				
			||||||
								</td>
 | 
													</td>
 | 
				
			||||||
								<td><?php echo (!empty ($device['mac']) ? $device['mac'] : ""); ?></td>
 | 
													<td><?php echo (!empty($device['mac']) ? $device['mac'] : ""); ?><br><?php echo (!empty($device['ip_address']) ? $device['ip_address'] : ""); ?></td>
 | 
				
			||||||
								<td><?php echo (!empty ($device['ip_address']) ? $device['ip_address'] : ""); ?></td>
 | 
					 | 
				
			||||||
								<td>
 | 
													<td>
 | 
				
			||||||
 | 
														<?php if (!empty($device['mac'])) : ?>
 | 
				
			||||||
										<form method="post" action="">
 | 
															<form method="post" action="">
 | 
				
			||||||
											<input type="hidden" name="deviceId" value="<?php echo (!empty($device['device_id']) ? $device['device_id'] : ""); ?>">
 | 
																<input type="hidden" name="deviceId" value="<?php echo (!empty($device['device_id']) ? $device['device_id'] : ""); ?>">
 | 
				
			||||||
											<button class="fa custom-file-input" <?php echo (!empty($device['command']) && $device['command'] == "reset" ? "style=\"color:red;\"" : ""); ?> type="submit" name="deviceCommand" value="reset" title="Reset"></button>
 | 
																<button class="fa custom-file-input" <?php echo (!empty($device['command']) && $device['command'] == "reset" ? "style=\"color:red;\"" : ""); ?> type="submit" name="deviceCommand" value="reset" title="Reset"></button>
 | 
				
			||||||
											<button class="fa custom-file-input" <?php echo (!empty($device['command']) && $device['command'] == "config" ? "style=\"color:red;\"" : ""); ?> type="submit" name="deviceCommand" value="config" title="Config"></button>
 | 
																<button class="fa custom-file-input" <?php echo (!empty($device['command']) && $device['command'] == "config" ? "style=\"color:red;\"" : ""); ?> type="submit" name="deviceCommand" value="config" title="Config"></button>
 | 
				
			||||||
											<div style="float: clear;"></div>
 | 
																<div style="float: clear;"></div>
 | 
				
			||||||
										</form>
 | 
															</form>
 | 
				
			||||||
 | 
														<?php endif; ?>
 | 
				
			||||||
								</td>
 | 
													</td>
 | 
				
			||||||
							</tr>
 | 
												</tr>
 | 
				
			||||||
						<?php endforeach; ?>
 | 
											<?php endforeach; ?>
 | 
				
			||||||
@@ -76,4 +83,5 @@
 | 
				
			|||||||
		//TODO js do main.js
 | 
							//TODO js do main.js
 | 
				
			||||||
		?>
 | 
							?>
 | 
				
			||||||
</body>
 | 
					</body>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
</html>
 | 
					</html>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user