Magellan Linux

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

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

revision 8004 by niro, Wed Dec 16 15:17:38 2015 UTC revision 8557 by niro, Mon Feb 8 14:15:45 2016 UTC
# 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;
  global $ssh_port;  
33   global $mcore_port;   global $mcore_port;
34   global $ping_timeout;   global $ping_timeout;
35   if(!isset($comps[$dat['serial']])) return false;   if(!isset($comps[$dat['serial']])) return false;
36    
  // first try mcore, then get ssh  
37   $retval = ping_host($dat['ip'],$mcore_port,$ping_timeout);   $retval = ping_host($dat['ip'],$mcore_port,$ping_timeout);
  if($retval==1) $retval = ping_host($dat['ip'],$ssh_port,$ping_timeout);  
38   if($retval==0)   if($retval==0)
39   {   {
40   $comps[$dat['serial']]['online'] = true;   $comps[$dat['serial']]['online'] = true;
# Line 73  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, 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");  $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 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);  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">';
79  echo '<head>';  echo '<head>';
80   echo '<title>ALX Config - Index</title>';   echo '<title>ALX Config - Index</title>';
81   echo '<script language="JavaScript">';   echo '<script language="JavaScript">';
# Line 91  echo '<script type="text/javascript" src Line 88  echo '<script type="text/javascript" src
88    
89  if($reload!='off') echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';  if($reload!='off') echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';
90    
 /*  
 echo '<img src="logo.jpg" align=middle>';  
 echo '<a href="index.php" style="padding-left:170px; color:#000000;text-decoration:none; font-weight:bold">[REFRESH]</a><br>';  
   
 echo '<form action="index.php" method="get" style="margin-top:0px"><b>SORT BY</b> <input onclick="this.form.submit()" type="radio" name="s_krit" value="serial"'.checkif($_SESSION['alx_sort_krit']=='serial').'>serial <input onclick="this.form.submit()" type="radio" name="s_krit" value="hostname"'.checkif($_SESSION['alx_sort_krit']=='hostname').'>hostname';  
 echo '<input onclick="this.form.submit()" style="margin-left:125px" name="s_on" type="checkbox" value="1"'.checkif($_SESSION['alx_sort_onfirst']).'>online clients on top</form><br>';  
 */  
   
91  echo '<form action="index.php" method="get" style="margin:0px">';  echo '<form action="index.php" method="get" style="margin:0px">';
92  echo '<table width=480><tr>';  echo '<table width=480><tr>';
93  echo '<td><img src="pics/logo.jpg"></td>';  // print version info
94    $version = file_get_contents('./VERSION', FILE_USE_INCLUDE_PATH);
95    echo '<td><img src="pics/logo.jpg"><font size="1">v'.$version.'</font></td>';
96  echo '<td align=right valign=top><a href="index.php" style="color:#000000;text-decoration:none; font-weight:bold">[REFRESH]</a></td>';  echo '<td align=right valign=top><a href="index.php" style="color:#000000;text-decoration:none; font-weight:bold">[REFRESH]</a></td>';
97  echo '</tr><tr>';  echo '</tr><tr>';
98  echo '<td valign=top><b>SORT BY</b> <input onclick="this.form.submit()" type="radio" name="s_krit" value="serial"'.checkif($_SESSION['alx_sort_krit']=='serial').'>serial <input onclick="this.form.submit()" type="radio" name="s_krit" value="hostname"'.checkif($_SESSION['alx_sort_krit']=='hostname').'>hostname<br>';  echo '<td valign=top><b>SORT BY</b> <input onclick="this.form.submit()" type="radio" name="s_krit" value="serial"'.checkif($_SESSION['alx_sort_krit']=='serial').'>serial <input onclick="this.form.submit()" type="radio" name="s_krit" value="hostname"'.checkif($_SESSION['alx_sort_krit']=='hostname').'>hostname<br>';
# Line 119  echo '</form>'; Line 110  echo '</form>';
110    
111    
112  echo '<table border="1" id="mytab">';  echo '<table border="1" id="mytab">';
113  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>boot</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>';
114  //always enable showversion atm  echo '<th colspan=2>version</th>';
115  $showversion = "on";  echo '<th width=100>boot</th>';
 if($showversion=='on') echo '<th colspan=2>version</th>';  
116  echo '<th width=150>up/down</th></tr></thead><tbody>';  echo '<th width=150>up/down</th></tr></thead><tbody>';
117    
118  foreach($comps as $c)  foreach($comps as $c)
119  {  {
120   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
121   if($c['serial']<0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
122    
123   if($c['online']) $pic='online';   if($c['online']) $pic='online';
124   else $pic='offline';   else $pic='offline';
125    
126   if($c['serial']<0)   if($c['enabled']==0)
127   {   {
128   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';
129   $pic = 'deact';   $pic = 'deact';
# Line 146  foreach($comps as $c) Line 136  foreach($comps as $c)
136   echo '<td width=40><b>#'.$c['serial'].'</b></td>';   echo '<td width=40><b>#'.$c['serial'].'</b></td>';
137   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';
138    
139   echo '<td><nobr>'.$c['ip'].'</nobr></td>';   echo '<td><nobr>'.$c['ip'].'</nobr></td>';
140   echo '<td><nobr>'.$c['mac'].'</nobr></td>';   echo '<td><nobr>'.$c['mac'].'</nobr></td>';
  echo '<td><nobr>'.$c['netboot'].'</nobr></td>';  
141   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>'; }
  //if($c['mtime']) { echo '<td><nobr>'.$c['mtime'].'</nobr></td>'; }  
142   else echo '<td></td>';   else echo '<td></td>';
143    
144   if($showversion=='on')   // get alx version info for
145   {   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);
146   // get alx version info for   $alxver = $alxinfo[os];
147   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);   $alxutils = $alxinfo[utils];
148   $alxver = $alxinfo[os];  
149   $alxutils = $alxinfo[utils];   if($alxver == '') $alxver='unknown';
150     if($alxutils == '') $alxutils='unknown';
151  // if( $alxver == '')  
152  // {   echo '<td>'.$alxver.'</td>';
153  // if($c['online'])   echo '<td>'.$alxutils.'</td>';
154  // {  
155  // //$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']);   // netboot state
156  // //$alxinfo = explode(':',$alxinfo[1]);   if($c['netboot'] == 1) echo '<td>Netboot (PXE)</td>';
157  // //$alxver = $alxinfo[0];   else echo '<td>Local Disk</td>';
 // //$alxutils = $alxinfo[1];  
 // }  
 // }  
  if($alxver == '') $alxver='unknown';  
  if($alxutils == '') $alxutils='unknown';  
   
  echo '<td>'.$alxver.'</td>';  
  echo '<td>'.$alxutils.'</td>';  
  }  
158    
159   echo '<td>';   echo '<td>';
160   if($c['online'])   if($c['online'])

Legend:
Removed from v.8004  
changed lines
  Added in v.8557