fork download
  1. <?php
  2. // Define ABSPATH for template security
  3. define('ABSPATH', dirname(__FILE__));
  4.  
  5. // Prevent any output before headers
  6.  
  7. // Increase execution time and memory limits
  8. set_time_limit(120); // Set to 2 minutes
  9. ini_set('memory_limit', '256M');
  10. ini_set('max_execution_time', 120);
  11.  
  12. // Enable error reporting but log to file instead of display
  13. ini_set('display_errors', 0);
  14. ini_set('log_errors', 1);
  15. ini_set('error_log', 'php_errors.log');
  16.  
  17. // Force content type and encoding
  18. header('Content-Type: text/html; charset=utf-8');
  19.  
  20. // Set default timezone
  21. date_default_timezone_set('Africa/Nairobi');
  22.  
  23. // Function to safely output HTML
  24. function safe_html($str) {
  25. return htmlspecialchars($str, ENT_QUOTES, 'UTF-8');
  26. }
  27.  
  28. // Function to handle fatal errors
  29. function fatal_handler() {
  30. $error = error_get_last();
  31. if ($error !== NULL && in_array($error['type'], [E_ERROR, E_PARSE, E_CORE_ERROR, E_COMPILE_ERROR])) {
  32. show_error_page('Fatal Error', $error['message'], $error['file'], $error['line']);
  33. }
  34. }
  35. register_shutdown_function('fatal_handler');
  36.  
  37. // Function to show error page
  38. function show_error_page($title, $message, $file = null, $line = null) {
  39. $timeInfo = [
  40. 'range' => isset($GLOBALS['rangeText']) ? $GLOBALS['rangeText'] : 'Unknown',
  41. 'start' => isset($GLOBALS['startTime']) ? date('Y-m-d H:i:s', $GLOBALS['startTime']) : 'Not set',
  42. 'end' => isset($GLOBALS['endTime']) ? date('Y-m-d H:i:s', $GLOBALS['endTime']) : 'Not set',
  43. 'current' => date('Y-m-d H:i:s'),
  44. 'timezone' => date_default_timezone_get()
  45. ];
  46.  
  47. $debugInfo = [
  48. 'php_version' => PHP_VERSION,
  49. 'server_software' => $_SERVER['SERVER_SOFTWARE'] ?? 'Unknown',
  50. 'device_ip' => isset($GLOBALS['deviceIP']) ? $GLOBALS['deviceIP'] : 'Not set'
  51. ];
  52. }
  53.  
  54. try {
  55. // Rest of Code
  56. class DahuaAccessLogs {
  57. private $config;
  58. private $curl;
  59.  
  60. public function __construct(array $config) {
  61. $this->config = $config;
  62. $this->curl = curl_init();
  63. }
  64.  
  65. public function getLogs($startTime, $endTime) {
  66. try {
  67. $url = sprintf(
  68. "http://%s/cgi-bin/recordFinder.cgi?action=find&name=AccessControlCardRec&StartTime=%d&EndTime=%d",
  69. $this->config['deviceIP'],
  70. $startTime,
  71. $endTime
  72. );
  73.  
  74. curl_setopt_array($this->curl, [
  75. CURLOPT_URL => $url,
  76. CURLOPT_RETURNTRANSFER => true,
  77. CURLOPT_HTTPAUTH => CURLAUTH_DIGEST,
  78. CURLOPT_USERPWD => "{$this->config['username']}:{$this->config['password']}",
  79. CURLOPT_HEADER => true,
  80. CURLOPT_TIMEOUT => 60
  81. ]);
  82.  
  83. $response = curl_exec($this->curl);
  84.  
  85. if ($response === false) {
  86. throw new RuntimeException('Connection Error: ' . curl_error($this->curl));
  87. }
  88.  
  89. $httpCode = curl_getinfo($this->curl, CURLINFO_HTTP_CODE);
  90. $headerSize = curl_getinfo($this->curl, CURLINFO_HEADER_SIZE);
  91. $body = substr($response, $headerSize);
  92.  
  93. if ($httpCode !== 200) {
  94. throw new RuntimeException('Failed to fetch access records. HTTP Code: ' . $httpCode);
  95. }
  96.  
  97. // Parse the response
  98. $lines = explode("\n", $body);
  99. $records = [];
  100. $currentIndex = null;
  101. $currentRecord = [];
  102.  
  103. foreach ($lines as $line) {
  104. $line = trim($line);
  105. if (empty($line)) continue;
  106.  
  107. if (preg_match('/records\[(\d+)\]\.(\w+)=(.*)/', $line, $matches)) {
  108. $index = $matches[1];
  109. $field = $matches[2];
  110. $value = $matches[3];
  111.  
  112. if ($currentIndex !== $index) {
  113. if (!empty($currentRecord)) {
  114. $records[] = $currentRecord;
  115. }
  116. $currentRecord = [];
  117. $currentIndex = $index;
  118. }
  119.  
  120. $currentRecord[$field] = $value;
  121. }
  122. }
  123.  
  124. if (!empty($currentRecord)) {
  125. $records[] = $currentRecord;
  126. }
  127.  
  128. return $records;
  129.  
  130. } catch (Exception $e) {
  131. echo "Error: " . $e->getMessage() . "\n";
  132. return [];
  133. }
  134. }
  135.  
  136. public function __destruct() {
  137. if (is_resource($this->curl)) {
  138. curl_close($this->curl);
  139. }
  140. }
  141. }
  142.  
  143. // Main execution code
  144. $endTime = time();
  145. $startTime = $endTime - (24 * 3600);
  146.  
  147. $config = [
  148. 'deviceIP' => '41.139.152.133:9903',
  149. 'username' => 'admin',
  150. 'password' => 'admin123'
  151. ];
  152.  
  153. $accessLogs = new DahuaAccessLogs($config);
  154. $records = $accessLogs->getLogs($startTime, $endTime);
  155.  
  156. // Print records
  157. echo "\n=== Access Records for Last 24 Hours ===\n";
  158. echo "Time Range: " . date('Y-m-d H:i:s', $startTime) . " to " . date('Y-m-d H:i:s', $endTime) . "\n";
  159. echo "Total Records: " . count($records) . "\n";
  160. echo "----------------------------------------\n";
  161.  
  162. foreach ($records as $record) {
  163. echo sprintf(
  164. "Time: %s\nDevice: %s\nName: %s\nCard No: %s\nUser ID: %s\nDoor: %s\nStatus: %s\n----------------------------------------\n",
  165. $record['Time'] ?? 'N/A',
  166. $record['DeviceName'] ?? 'N/A',
  167. $record['Name'] ?? 'N/A',
  168. $record['CardNo'] ?? 'N/A',
  169. $record['UserID'] ?? 'N/A',
  170. $record['Door'] ?? 'N/A',
  171. $record['Status'] ?? 'N/A'
  172. );
  173. }
  174.  
  175. } catch (Exception $e) {
  176. echo "Error: " . $e->getMessage() . "\n";
  177. }
  178.  
  179. // Flush output buffer
  180. ?>
Success #stdin #stdout 0.03s 26116KB
stdin
Standard input is empty
stdout
Error: Connection Error: 

=== Access Records for Last 24 Hours ===
Time Range: 2025-03-26 12:43:13 to 2025-03-27 12:43:13
Total Records: 0
----------------------------------------