Updater Log Message + api tweeks
This commit is contained in:
		
							
								
								
									
										2
									
								
								api.php
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								api.php
									
									
									
									
									
								
							| @@ -288,7 +288,7 @@ if ($values != null && $values != "") { | ||||
| 	$subDeviceLastReordValue = $subDeviceLastReord['value']; | ||||
|  | ||||
| 	if ($subDeviceLastReord['execuded'] == 0){ | ||||
| 		$logManager->write("[API] subDevice_ID ".$subDeviceId . " executed comand with value " .$subDeviceLastReordValue . " record id " . $subDeviceLastReord['record_id'] . " executed " . $subDeviceLastReord['execuded']); | ||||
| 		$logManager->write("[API] subDevice_ID ".$subDeviceId . " executed comand with value " .$subDeviceLastReordValue . " record id " . $subDeviceLastReord['record_id'] . " executed " . $subDeviceLastReord['execuded'], LogRecordType::INFO); | ||||
| 		RecordManager::setExecuted($subDeviceLastReord['record_id']); | ||||
| 	} | ||||
|  | ||||
|   | ||||
| @@ -61,8 +61,14 @@ if (file_exists($localBinary)) { | ||||
| 	$logManager->write("[Updater] version PHP: " . md5_file($localBinary), LogRecordType::INFO); | ||||
| 	if ($_SERVER['HTTP_X_ESP8266_SKETCH_MD5'] != md5_file($localBinary)) { | ||||
| 		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", LogRecordType::WARNING); | ||||
| 		$logManager->write("[Device] version hash:" . md5_file($localBinary), LogRecordType::INFO); | ||||
| 		//notification | ||||
| 		$deviceName = DeviceManager::getDeviceByMac($macAddress)['name']; | ||||
| 		$notificationMng = new NotificationManager; | ||||
| 		$notificationData = [ | ||||
| 			'title' => 'Info', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user