Magellan Linux

Diff of /alx-src/branches/alx-web-070/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 7090 by niro, Wed Sep 9 07:51:52 2015 UTC revision 8525 by niro, Mon Feb 8 09:59:56 2016 UTC
# Line 9  $_SESSION['alx_sort_krit'] = $alx_sort_k Line 9  $_SESSION['alx_sort_krit'] = $alx_sort_k
9  $_SESSION['alx_sort_onfirst'] = $alx_sort_onfirst;  $_SESSION['alx_sort_onfirst'] = $alx_sort_onfirst;
10  $_SESSION['alx_sort_loc'] = $alx_sort_loc;  $_SESSION['alx_sort_loc'] = $alx_sort_loc;
11    
12  $locations = sqlarr('SELECT location FROM client_locations', '', 'location');  $locations = sqlarr('SELECT location FROM client_locations where enabled="1"', '', 'location');
13  $locations[] = '';  $locations[] = '';
14    
15  if($_SESSION['alx_sort_krit']==null)  if($_SESSION['alx_sort_krit']==null)
# Line 30  if(isset($_GET['s_krit'])) Line 30  if(isset($_GET['s_krit']))
30  function check_online($dat, $bla)  function check_online($dat, $bla)
31  {  {
32   global $comps;   global $comps;
33   global $pingcmd;   global $mcore_port;
34     global $ping_timeout;
35   if(!isset($comps[$dat['serial']])) return false;   if(!isset($comps[$dat['serial']])) return false;
36    
37   //passthru("/bin/ping -I eth0 -c 1 -W 1 -q ".$dat['ip']." &> /dev/null && exit 0 || exit 1",$retval);   $retval = ping_host($dat['ip'],$mcore_port,$ping_timeout);
  passthru($pingcmd." ".$dat['ip']." &> /dev/null && exit 0 || exit 1",$retval);  
38   if($retval==0)   if($retval==0)
39   {   {
40   $comps[$dat['serial']]['online'] = true;   $comps[$dat['serial']]['online'] = true;
# Line 70  function checkif($b) Line 70  function checkif($b)
70   else return '';   else return '';
71  }  }
72    
73  $comps = sqlarr("select client_serials.serial, client_serials.location, client_serials.mac, cfg_network.hostname, state_connected.mtime from client_serials left join cfg_network on client_serials.serial=cfg_network.serial left join state_connected on client_serials.serial=state_connected.serial", "serial");  $comps = sqlarr("select client_serials.serial, client_serials.enabled, client_serials.location, client_serials.mac, cfg_network.hostname, state_connected.mtime, state_connected.netboot from client_serials left join cfg_network on client_serials.serial=cfg_network.serial left join state_connected on client_serials.serial=state_connected.serial", "serial");
74    
75  sqlforeach('SELECT serial, ip, hostname, mac FROM state_connected', 'check_online', null);  sqlforeach('SELECT state_connected.serial, state_connected.ip, cfg_network.hostname, state_connected.mac FROM state_connected left join cfg_network on cfg_network.serial=state_connected.serial', 'check_online', null);
76  usort($comps, 'sortcomp');  usort($comps, 'sortcomp');
77  echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
78      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
# Line 116  echo '</form>'; Line 116  echo '</form>';
116    
117    
118  echo '<table border="1" id="mytab">';  echo '<table border="1" id="mytab">';
119  echo '<thead><tr style="font-weight:bold;background-color:#d5e5ff"><th>edit</th><th colspan=3>serial</th><th width=170>hostname</th><th width=100>ip</th><th width=100>last connected</th>';  echo '<thead><tr style="font-weight:bold;background-color:#d5e5ff"><th>edit</th><th colspan=3>serial</th><th width=170>hostname</th><th width=100>ip</th><th width=100>mac</th><th width=100>last connected</th>';
120  //always enable showversion atm  //always enable showversion atm
121  $showversion = "on";  $showversion = "on";
122  if($showversion=='on') echo '<th colspan=2>version</th>';  if($showversion=='on') echo '<th colspan=2>version</th>';
123    echo '<th width=100>boot</th>';
124  echo '<th width=150>up/down</th></tr></thead><tbody>';  echo '<th width=150>up/down</th></tr></thead><tbody>';
125    
126  foreach($comps as $c)  foreach($comps as $c)
127  {  {
128   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
129   if($c['serial']<0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
130    
131   if($c['online']) $pic='online';   if($c['online']) $pic='online';
132   else $pic='offline';   else $pic='offline';
133    
134   if($c['serial']<0)   if($c['enabled']==0)
135   {   {
136   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';
137   $pic = 'deact';   $pic = 'deact';
# Line 144  foreach($comps as $c) Line 145  foreach($comps as $c)
145   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';
146    
147   echo '<td><nobr>'.$c['ip'].'</nobr></td>';   echo '<td><nobr>'.$c['ip'].'</nobr></td>';
148     echo '<td><nobr>'.$c['mac'].'</nobr></td>';
149   if($c['mtime']) { echo '<td><nobr>'.date('Y-m-d, H:i:s',$c['mtime']).'</nobr></td>'; }   if($c['mtime']) { echo '<td><nobr>'.date('Y-m-d, H:i:s',$c['mtime']).'</nobr></td>'; }
150   //if($c['mtime']) { echo '<td><nobr>'.$c['mtime'].'</nobr></td>'; }   //if($c['mtime']) { echo '<td><nobr>'.$c['mtime'].'</nobr></td>'; }
151   else echo '<td></td>';   else echo '<td></td>';
# Line 155  foreach($comps as $c) Line 157  foreach($comps as $c)
157   $alxver = $alxinfo[os];   $alxver = $alxinfo[os];
158   $alxutils = $alxinfo[utils];   $alxutils = $alxinfo[utils];
159    
160   if( $alxver == '')  // if( $alxver == '')
161   {  // {
162   if($c['online'])  // if($c['online'])
163   {  // {
164   //$alxinfo = @sshdo('os_ver=$(</etc/mageversion);cfg_ver=$(/sbin/magequery -n alxconfig-ng | cut -d" " -f5);pname=${cfg_ver%-*-*};cfg_ver=${cfg_ver/${pname}-};echo "${os_ver}:${cfg_ver}"', $c['ip']);  // //$alxinfo = @sshdo('os_ver=$(</etc/mageversion);cfg_ver=$(/sbin/magequery -n alxconfig-ng | cut -d" " -f5);pname=${cfg_ver%-*-*};cfg_ver=${cfg_ver/${pname}-};echo "${os_ver}:${cfg_ver}"', $c['ip']);
165   //$alxinfo = explode(':',$alxinfo[1]);  // //$alxinfo = explode(':',$alxinfo[1]);
166   //$alxver = $alxinfo[0];  // //$alxver = $alxinfo[0];
167   //$alxutils = $alxinfo[1];  // //$alxutils = $alxinfo[1];
168   }  // }
169   }  // }
170   if($alxver == '') $alxver='unknown';   if($alxver == '') $alxver='unknown';
171   if($alxutils == '') $alxutils='unknown';   if($alxutils == '') $alxutils='unknown';
172    
173         echo '<td>'.$alxver.'</td>';   echo '<td>'.$alxver.'</td>';
174         echo '<td>'.$alxutils.'</td>';   echo '<td>'.$alxutils.'</td>';
175   }   }
176    
177     //netboot state
178     if($c['netboot'] == 1) echo '<td>Netboot (PXE)</td>';
179     else echo '<td>Local Disk</td>';
180    
181   echo '<td>';   echo '<td>';
182   if($c['online'])   if($c['online'])
183   {   {
# Line 183  foreach($comps as $c) Line 189  foreach($comps as $c)
189   else echo '<input type=button style="width:100%" value="WOL" onclick="if(confirm(\'WAKE CLIENT #'.$c['serial'].' ?\')) window.open(\'wake_on_lan.php?mac='.$c['mac'].'\', \'WakeWin\', \'width=200,height=100\')">';   else echo '<input type=button style="width:100%" value="WOL" onclick="if(confirm(\'WAKE CLIENT #'.$c['serial'].' ?\')) window.open(\'wake_on_lan.php?mac='.$c['mac'].'\', \'WakeWin\', \'width=200,height=100\')">';
190   echo '</td>';   echo '</td>';
191    
192   echo '</tr>';   echo '</tr>';
193  }  }
194  echo '</tbody></table><br>';  echo '</tbody></table><br>';
195    

Legend:
Removed from v.7090  
changed lines
  Added in v.8525