source: trunk/Modules/NetworkConfigRouterOS/Generators/NetwatchImport.php@ 793

Last change on this file since 793 was 793, checked in by chronos, 9 years ago
  • Fixed: Error using $System global variable instead of class fields.
File size: 4.2 KB
Line 
1<?php
2
3class ConfigRouterOSNetwatchImport extends NetworkConfigItem
4{
5 function NetwatchImport()
6 {
7 $StartTime = time();
8
9 // Load all interfaces to memory
10 $Interfaces = array();
11 $DbResult = $this->Database->select('NetworkInterface', '`Id`, `LocalIP` AS `IP`, `Online`, 0 AS `NewOnline`');
12 while($DbRow = $DbResult->fetch_assoc())
13 $Interfaces[$DbRow['IP']] = $DbRow;
14
15 // Load netwatch status from all DHCP routers
16 $DbResult3 = $this->Database->query('SELECT `DHCP`, `AddressRange`, `Mask` FROM `NetworkSubnet` '.
17 'WHERE (`Configure` = 1) AND (`Member` IS NULL) GROUP BY DHCP');
18 while($Subnet = $DbResult3->fetch_assoc())
19 {
20 echo($Subnet['AddressRange'].'/'.$Subnet['Mask'].' on router '.$Subnet['DHCP']."\n");
21 $Routerboard = new RouterosAPI();
22 $Routerboard->Connect($Subnet['DHCP'], $this->System->Config['API']['UserName'],
23 $this->System->Config['API']['Password']);
24 if(!$Routerboard->Connected) continue;
25 $Routerboard->Write('/tool/netwatch/getall', false);
26 $Routerboard->Write('=.proplist=host,status');
27 $Read = $Routerboard->Read(false);
28 $List = $Routerboard->ParseResponse($Read);
29 foreach($List as $Properties)
30 {
31 $IP = $Properties['host'];
32 if($Properties['status'] == 'up') $Online = 1;
33 else $Online = 0;
34
35 if($Online)
36 {
37 if(array_key_exists($IP, $Interfaces))
38 $Interfaces[$IP]['NewOnline'] = 1;
39 else echo('IP '.$IP.' not found.'."\n");
40 }
41 }
42 }
43
44 foreach($Interfaces as $Index => $Interface)
45 {
46 // Update last online time if still online
47 if($Interface['NewOnline'])
48 $DbResult = $this->Database->update('NetworkInterface', '`Id` = "'.$Interface['Id'].'"',
49 array('LastOnline' => TimeToMysqlDateTime($StartTime)));
50
51 if($Interface['Online'] != $Interface['NewOnline'])
52 {
53 // Online state changed
54 $DbResult = $this->Database->query('INSERT INTO `NetworkInterfaceUpDown` (`Interface`,
55 `State`, `Time`, `Duration`) VALUES ('.$Interface['Id'].', '.$Interface['NewOnline'].', "'.
56 TimeToMysqlDateTime($StartTime).'", NULL)');
57 // Update previous record duration in UpDown table
58 $this->Database->query('UPDATE `NetworkInterfaceUpDown` AS `TM` SET `Duration` = TIMESTAMPDIFF(SECOND, '.
59 '`TM`.`Time`, (SELECT `Time` FROM (SELECT * FROM `NetworkInterfaceUpDown`) AS `TA` WHERE (`TA`.`Time` > `TM`.`Time`) '.
60 'AND (`TA`.`Interface`=`TM`.`Interface`) ORDER BY `TA`.`Time` ASC LIMIT 1)) '.
61 'WHERE (`TM`.`Duration` IS NULL) AND (`TM`.`Interface` ='.$Interface['Id'].')');
62 $this->Database->update('NetworkInterface', '`Id` = "'.$Interface['Id'].'"',
63 array('Online' => $Interface['NewOnline']));
64 }
65 }
66
67 // Set offline all interfaces which were not updated as online
68 $DbResult = $this->Database->select('NetworkInterface', '*', '(`Online` = 1) AND '.
69 '(`LastOnline` < "'.TimeToMysqlDateTime($StartTime).'")');
70 while($DbRow = $DbResult->fetch_assoc())
71 {
72 echo('IP '.$DbRow['LocalIP'].' online but time not updated.'."\n");
73 }
74 $DbResult = $this->Database->select('NetworkInterface', '*', '(`Online` = 0) AND '.
75 '(`LastOnline` >= "'.TimeToMysqlDateTime($StartTime).'")');
76 while($DbRow = $DbResult->fetch_assoc())
77 {
78 echo('IP '.$DbRow['LocalIP'].' not online but time updated.'."\n");
79 }
80
81 // Update device online state
82 $DbResult = $this->Database->select('NetworkInterface', '`Device`, SUM(`Online`) AS `SumOnline`', '`Online` = 1 GROUP BY `Device`');
83 while($Device = $DbResult->fetch_assoc())
84 {
85 if($Device['SumOnline'] > 0)
86 $this->Database->update('NetworkDevice', 'Id='.$Device['Device'], array('LastOnline' => TimeToMysqlDateTime($StartTime), 'Online' => 1));
87 }
88 $DbResult = $this->Database->update('NetworkDevice', '`LastOnline` < "'.TimeToMysqlDateTime($StartTime).'"', array('Online' => 0));
89 }
90
91 function Run()
92 {
93 RepeatFunction(60, array($this, 'NetwatchImport'));
94 }
95}
Note: See TracBrowser for help on using the repository browser.