Magellan Linux

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

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

revision 7123 by niro, Fri Sep 11 15:25:31 2015 UTC revision 10648 by niro, Wed Aug 30 14:05:27 2017 UTC
# Line 5  include('include/common-functions.php'); Line 5  include('include/common-functions.php');
5    
6  session_start();  session_start();
7  //session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');  //session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');
8  $_SESSION['alx_sort_krit'] = $alx_sort_krit;  if(isset($_SESSION['alx_sort_krit'])) $alx_sort_krit = $_SESSION['alx_sort_krit'];
9  $_SESSION['alx_sort_onfirst'] = $alx_sort_onfirst;  if(isset($_SESSION['alx_sort_onfirst'])) $alx_sort_onfirst = $_SESSION['alx_sort_onfirst'];
10  $_SESSION['alx_sort_loc'] = $alx_sort_loc;  if(isset($_SESSION['alx_sort_loc'])) $alx_sort_loc = $_SESSION['alx_sort_loc'];
11    
12  $locations = sqlarr('SELECT location FROM client_locations', '', 'location');  // fix reload php debug message
13    if(!isset($reload)) $reload = 'not set';
14    
15    $locations = sqlarr('SELECT location FROM client_locations where enabled="1"', '', 'location');
16  $locations[] = '';  $locations[] = '';
17    
18  if($_SESSION['alx_sort_krit']==null)  if($_SESSION['alx_sort_krit']==null)
# Line 30  if(isset($_GET['s_krit'])) Line 33  if(isset($_GET['s_krit']))
33  function check_online($dat, $bla)  function check_online($dat, $bla)
34  {  {
35   global $comps;   global $comps;
  global $ssh_port;  
36   global $mcore_port;   global $mcore_port;
37   global $ping_timeout;   global $ping_timeout;
38   if(!isset($comps[$dat['serial']])) return false;   if(!isset($comps[$dat['serial']])) return false;
39    
  // first try mcore, then get ssh  
40   $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);  
41   if($retval==0)   if($retval==0)
42   {   {
43   $comps[$dat['serial']]['online'] = true;   $comps[$dat['serial']]['online'] = true;
# Line 56  function sortcomp($a,$b) Line 56  function sortcomp($a,$b)
56    
57   if($_SESSION['alx_sort_onfirst'])   if($_SESSION['alx_sort_onfirst'])
58   {   {
59   if($a['online'] && !$b['online']) return -1;   if(isset($a['online']) && !isset($b['online'])) return -1;
60   if($b['online'] && !$a['online']) return 1;   if(isset($b['online']) && !isset($a['online'])) return 1;
61   }   }
62   if($_SESSION['alx_sort_krit']=='hostname')   if($_SESSION['alx_sort_krit']=='hostname')
63   {   {
# Line 73  function checkif($b) Line 73  function checkif($b)
73   else return '';   else return '';
74  }  }
75    
76  $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, client_version.arch 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 left join client_version on client_serials.serial=client_version.serial", "serial");
77    
78  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);
79  usort($comps, 'sortcomp');  usort($comps, 'sortcomp');
80  echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
81      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
82  echo '<head>';  echo '<head>';
83   echo '<title>ALX Config - Index</title>';   echo '<title>ALX Config - Index</title>';
84   echo '<script language="JavaScript">';   echo '<script language="JavaScript">';
# Line 91  echo '<script type="text/javascript" src Line 91  echo '<script type="text/javascript" src
91    
92  if($reload!='off') echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';  if($reload!='off') echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';
93    
 /*  
 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>';  
 */  
   
94  echo '<form action="index.php" method="get" style="margin:0px">';  echo '<form action="index.php" method="get" style="margin:0px">';
95  echo '<table width=480><tr>';  echo '<table width=480><tr>';
96  echo '<td><img src="pics/logo.jpg"></td>';  // print version info
97    $version = file_get_contents('./VERSION', FILE_USE_INCLUDE_PATH);
98    echo '<td><img src="pics/logo.jpg"><font size="1">v'.$version.'</font></td>';
99  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>';
100  echo '</tr><tr>';  echo '</tr><tr>';
101  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 113  echo '</form>';
113    
114    
115  echo '<table border="1" id="mytab">';  echo '<table border="1" id="mytab">';
116  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>';
117  //always enable showversion atm  echo '<th colspan=2>version</th>';
118  $showversion = "on";  echo '<th width=100>arch</th>';
119  if($showversion=='on') echo '<th colspan=2>version</th>';  echo '<th width=100>boot</th>';
120  echo '<th width=150>up/down</th></tr></thead><tbody>';  echo '<th width=150>up/down</th></tr></thead><tbody>';
121    
122  foreach($comps as $c)  foreach($comps as $c)
123  {  {
124   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
125   if($c['serial']<0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
126    
127   if($c['online']) $pic='online';   if(isset($c['online'])) $pic='online';
128   else $pic='offline';   else $pic='offline';
129    
130   if($c['serial']<0)   if($c['enabled']==0)
131   {   {
132   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';
133   $pic = 'deact';   $pic = 'deact';
# Line 146  foreach($comps as $c) Line 140  foreach($comps as $c)
140   echo '<td width=40><b>#'.$c['serial'].'</b></td>';   echo '<td width=40><b>#'.$c['serial'].'</b></td>';
141   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';
142    
143   echo '<td><nobr>'.$c['ip'].'</nobr></td>';   echo '<td><nobr>'.$c['ip'].'</nobr></td>';
144     echo '<td><nobr>'.$c['mac'].'</nobr></td>';
145   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>'; }  
146   else echo '<td></td>';   else echo '<td></td>';
147    
148   if($showversion=='on')   // get alx version info for
149   {   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);
150   // get alx version info for   if (isset($alxinfo[os])) $alxver = $alxinfo[os];
151   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);   else $alxver = 'unknown';
152   $alxver = $alxinfo[os];   if (isset($alxinfo[utils])) $alxutils = $alxinfo[utils];
153   $alxutils = $alxinfo[utils];   else $alxutils = 'unknown';
154    
155  // if( $alxver == '')   echo '<td>'.$alxver.'</td>';
156  // {   echo '<td>'.$alxutils.'</td>';
157  // if($c['online'])  
158  // {   // netboot state
159  // //$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']);   if($c['netboot'] == 1) echo '<td>Netboot (PXE)</td>';
160  // //$alxinfo = explode(':',$alxinfo[1]);   else echo '<td>Local Disk</td>';
 // //$alxver = $alxinfo[0];  
 // //$alxutils = $alxinfo[1];  
 // }  
 // }  
  if($alxver == '') $alxver='unknown';  
  if($alxutils == '') $alxutils='unknown';  
161    
162   echo '<td>'.$alxver.'</td>';   // arch
163   echo '<td>'.$alxutils.'</td>';   if($c['arch'] == 1) echo '<td>'.$c['arch'].'</td>';
164   }   else echo '<td></td>';
165    
166   echo '<td>';   echo '<td>';
167   if($c['online'])   if(isset($c['online']))
168   {   {
169   echo '<input type=button style="width:24%" value="RB" onclick="if(confirm(\'REBOOT CLIENT #'.$c['serial'].' ?\')) window.open(\'reboot.php?client='.$c['serial'].'&ip='.$c['ip'].'&op=reboot\', \'ShutdownWin\', \'width=200,height=100\')">';   echo '<input type=button style="width:24%" value="RB" onclick="if(confirm(\'REBOOT CLIENT #'.$c['serial'].' ?\')) window.open(\'reboot.php?client='.$c['serial'].'&ip='.$c['ip'].'&op=reboot\', \'ShutdownWin\', \'width=200,height=100\')">';
170   echo '<input type=button style="width:24%" value="SD" onclick="if(confirm(\'SHUTDOWN CLIENT #'.$c['serial'].' ?\')) window.open(\'reboot.php?client='.$c['serial'].'&ip='.$c['ip'].'&op=halt\', \'ShutdownWin\', \'width=200,height=100\')">';   echo '<input type=button style="width:24%" value="SD" onclick="if(confirm(\'SHUTDOWN CLIENT #'.$c['serial'].' ?\')) window.open(\'reboot.php?client='.$c['serial'].'&ip='.$c['ip'].'&op=halt\', \'ShutdownWin\', \'width=200,height=100\')">';

Legend:
Removed from v.7123  
changed lines
  Added in v.10648