Magellan Linux

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

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

alx-src/branches/alx-web-050/index.php revision 1609 by niro, Thu Dec 2 22:15:08 2010 UTC alx-src/branches/alx-web-070/index.php revision 9460 by niro, Thu Apr 6 12:34:29 2017 UTC
# Line 1  Line 1 
1  <?  <?
2   include('include/basesql.php');  
3   session_start();  include('include/basesql.php');
4   session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');  include('include/common-functions.php');
5    
6   $locations = sqlarr('SELECT location FROM client_locations', '', 'location');  session_start();
7   $locations[] = '';  //session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');
8    if(isset($_SESSION['alx_sort_krit'])) $alx_sort_krit = $_SESSION['alx_sort_krit'];
9   if($_SESSION['alx_sort_krit']==null)  if(isset($_SESSION['alx_sort_onfirst'])) $alx_sort_onfirst = $_SESSION['alx_sort_onfirst'];
10   {  if(isset($_SESSION['alx_sort_loc'])) $alx_sort_loc = $_SESSION['alx_sort_loc'];
11   $_SESSION['alx_sort_krit'] = 'serial';  
12   $_SESSION['alx_sort_onfirst'] = 1;  // fix reload php debug message
13   $_SESSION['alx_sort_loc'] = array('DEAD'=>false);  if(!isset($reload)) $reload = 'not set';
14   foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=true;  
15   }  $locations = sqlarr('SELECT location FROM client_locations where enabled="1"', '', 'location');
16   if(isset($_GET['s_krit']))  $locations[] = '';
17   {  
18   $_SESSION['alx_sort_krit']=$_GET['s_krit'];  if($_SESSION['alx_sort_krit']==null)
19   $_SESSION['alx_sort_onfirst']=0+$_GET['s_on'];  {
20   $_SESSION['alx_sort_loc']['DEAD']=$_GET['s_dead'];   $_SESSION['alx_sort_krit'] = 'serial';
21   foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=$_GET['s_'.$l];   $_SESSION['alx_sort_onfirst'] = 1;
22   }   $_SESSION['alx_sort_loc'] = array('DEAD'=>false);
23     foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=true;
24   function check_online($dat, $bla)  }
25   {  if(isset($_GET['s_krit']))
26   global $comps;  {
27   global $pingcmd;   $_SESSION['alx_sort_krit']=$_GET['s_krit'];
28   if(!isset($comps[$dat['serial']])) return false;   $_SESSION['alx_sort_onfirst']=0+$_GET['s_on'];
29     $_SESSION['alx_sort_loc']['DEAD']=$_GET['s_dead'];
30   //passthru("/bin/ping -I eth0 -c 1 -W 1 -q ".$dat['ip']." &> /dev/null && exit 0 || exit 1",$retval);   foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=$_GET['s_'.$l];
31   passthru($pingcmd." ".$dat['ip']." &> /dev/null && exit 0 || exit 1",$retval);  }
32   if($retval==0)  
33   {  function check_online($dat, $bla)
34   $comps[$dat['serial']]['online'] = true;  {
35   $comps[$dat['serial']]['ip'] = $dat['ip'];   global $comps;
36   }   global $mcore_port;
37   else $comps[$dat['serial']]['ip'] = '<font color=#a00000>'.$dat['ip'].' <small>(no ping)</small></font>';   global $ping_timeout;
38     if(!isset($comps[$dat['serial']])) return false;
39   $comps[$dat['serial']]['hostname'] = $dat['hostname'];  
40   $comps[$dat['serial']]['mac'] = $dat['mac'];   $retval = ping_host($dat['ip'],$mcore_port,$ping_timeout);
41   }   if($retval==0)
42     {
43   function sortcomp($a,$b)   $comps[$dat['serial']]['online'] = true;
44   {   $comps[$dat['serial']]['ip'] = $dat['ip'];
45   if($a['serial']<0 && $b['serial']>0) return -1;   }
46   if($a['serial']>0 && $b['serial']<0) return 1;   else $comps[$dat['serial']]['ip'] = '<font color=#a00000>'.$dat['ip'].' <small>(no ping)</small></font>';
47    
48   if($_SESSION['alx_sort_onfirst'])   $comps[$dat['serial']]['hostname'] = $dat['hostname'];
49   {   $comps[$dat['serial']]['mac'] = $dat['mac'];
50   if($a['online'] && !$b['online']) return -1;  }
51   if($b['online'] && !$a['online']) return 1;  
52   }  function sortcomp($a,$b)
53   if($_SESSION['alx_sort_krit']=='hostname')  {
54   {   if($a['serial']<0 && $b['serial']>0) return -1;
55   if(strtoupper($a['hostname'])<strtoupper($b['hostname'])) return -1;   if($a['serial']>0 && $b['serial']<0) return 1;
56   else if(strtoupper($a['hostname'])>strtoupper($b['hostname'])) return 1;  
57   }   if($_SESSION['alx_sort_onfirst'])
58   return $a['serial']-$b['serial'];   {
59   }   if(isset($a['online']) && !isset($b['online'])) return -1;
60     if(isset($b['online']) && !isset($a['online'])) return 1;
61   function checkif($b)   }
62   { if($b) return ' checked'; else return ''; }   if($_SESSION['alx_sort_krit']=='hostname')
63     {
64   $comps = sqlarr("SELECT s.serial, s.location, s.mac, n.hostname, t.mtime FROM cfg_network n,client_serials s,state_connected t WHERE n.serial=s.serial OR t.serial=s.serial", "serial");   if(strtoupper($a['hostname'])<strtoupper($b['hostname'])) return -1;
65   sqlforeach('SELECT serial, ip, hostname, mac FROM state_connected', 'check_online', null);   else if(strtoupper($a['hostname'])>strtoupper($b['hostname'])) return 1;
66   usort($comps, 'sortcomp');   }
67   echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"   return $a['serial']-$b['serial'];
68      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';  }
69   echo '<head>';  
70   echo '<title>ALX Config - Index</title>';  function checkif($b)
71   echo '<script language="JavaScript">';  {
72   echo 'function loc(name) { window.open(\'loc.php?location=\'+name, \'\', \'width=350,height=180\'); }';   if($b) return ' checked';
73   echo '</script>';   else return '';
74   echo '</head>';  }
75   echo '<script type="text/javascript" src="js/jquery-1.2.6.min.js"></script>';  
76   echo '<script type="text/javascript" src="js/jquery.tablesorter.js"></script>';  $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");
77   //echo '<link rel="stylesheet" type="text/css" media="screen" href="js/style.css" />';  
78    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   if($reload!='off') echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';  usort($comps, 'sortcomp');
80    echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
81   /*   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
82   echo '<img src="logo.jpg" align=middle>';  echo '<head>';
83   echo '<a href="index.php" style="padding-left:170px; color:#000000;text-decoration:none; font-weight:bold">[REFRESH]</a><br>';   echo '<title>ALX Config - Index</title>';
84     echo '<script language="JavaScript">';
85   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 'function loc(name) { window.open(\'loc.php?location=\'+name, \'\', \'width=350,height=180\'); }';
86   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>';   echo '</script>';
87   */  echo '</head>';
88    echo '<script type="text/javascript" src="js/jquery-1.2.6.min.js"></script>';
89   echo '<form action="index.php" method="get" style="margin:0px">';  echo '<script type="text/javascript" src="js/jquery.tablesorter.js"></script>';
90   echo '<table width=480><tr>';  //echo '<link rel="stylesheet" type="text/css" media="screen" href="js/style.css" />';
91   echo '<td><img src="pics/logo.jpg"></td>';  
92   echo '<td align=right valign=top><a href="index.php" style="color:#000000;text-decoration:none; font-weight:bold">[REFRESH]</a></td>';  if($reload!='off') echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';
93   echo '</tr><tr>';  
94   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 '<form action="index.php" method="get" style="margin:0px">';
95   echo '<input onclick="this.form.submit()" name="s_on" style="margin-left:72px" type="checkbox" value="1"'.checkif($_SESSION['alx_sort_onfirst']).'>online clients on top</td>';  echo '<table width=480><tr>';
96   echo '<td align=right valign=top>';  // print version info
97    $version = file_get_contents('./VERSION', FILE_USE_INCLUDE_PATH);
98   foreach($locations as $l)  echo '<td><img src="pics/logo.jpg"><font size="1">v'.$version.'</font></td>';
99   echo '<input onclick="this.form.submit()" type="checkbox" name="s_'.$l.'" value="1"'.checkif($_SESSION['alx_sort_loc'][$l]).'><a href="JavaScript:loc(\''.$l.'\')" style="color:#000000">'.($l=='' ? '?' : $l).'</a>';  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>';
101   echo '<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>';
102   echo '<input onclick="this.form.submit()" type="checkbox" name="s_dead" value="1"'.checkif($_SESSION['alx_sort_loc']['DEAD']).'>DEACTIVATED';  echo '<input onclick="this.form.submit()" name="s_on" style="margin-left:72px" type="checkbox" value="1"'.checkif($_SESSION['alx_sort_onfirst']).'>online clients on top</td>';
103   echo '</td>';  echo '<td align=right valign=top>';
104   echo '</tr></table><br>';  
105   echo '</form>';  foreach($locations as $l)
106     echo '<input onclick="this.form.submit()" type="checkbox" name="s_'.$l.'" value="1"'.checkif($_SESSION['alx_sort_loc'][$l]).'><a href="JavaScript:loc(\''.$l.'\')" style="color:#000000">'.($l=='' ? '?' : $l).'</a>';
107    
108   echo '<table border="1" id="mytab">';  echo '<br/>';
109   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 '<input onclick="this.form.submit()" type="checkbox" name="s_dead" value="1"'.checkif($_SESSION['alx_sort_loc']['DEAD']).'>DEACTIVATED';
110   if($showversion=='on') echo '<th colspan=2>version</th>';  echo '</td>';
111   echo '<th>up/down</th></tr></thead><tbody>';  echo '</tr></table><br>';
112    echo '</form>';
113   foreach($comps as $c)  
114   {  
115   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;  echo '<table border="1" id="mytab">';
116   if($c['serial']<0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;  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    echo '<th colspan=2>version</th>';
118   if($c['online']) $pic='online'; else $pic='offline';  echo '<th width=100>boot</th>';
119    echo '<th width=150>up/down</th></tr></thead><tbody>';
120   if($c['serial']<0) { echo '<tr style="text-decoration:line-through; color:#aaaaaa">'; $pic = 'deact'; }  
121   else echo '<tr>';  foreach($comps as $c)
122    {
123   echo '<td><input type=button value="EDIT" onclick="location.href=\'show.php?id='.$c['serial'].'\'"></td>';   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
124   echo '<td>'.substr($c['location'],0,1).'</td>';   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
125   echo '<td><img src="pics/'.$pic.'.gif" alt="'.strtoupper($pic).'"></td>';  
126   echo '<td width=40><b>#'.$c['serial'].'</b></td>';   if(isset($c['online'])) $pic='online';
127   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';   else $pic='offline';
128    
129   echo '<td><nobr>'.$c['ip'].'</nobr></td>';   if($c['enabled']==0)
130   if($c['mtime']) { echo '<td><nobr>'.date('Y-m-d, H:i:s',$c['mtime']).'</nobr></td>'; }   {
131   //if($c['mtime']) { echo '<td><nobr>'.$c['mtime'].'</nobr></td>'; }   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';
132   else  echo '<td></td>';   $pic = 'deact';
133     }
134   if($c['online'])   else echo '<tr>';
135   {  
136   if($showversion=='on')   echo '<td><input type=button value="EDIT" onclick="location.href=\'show.php?id='.$c['serial'].'\'"></td>';
137   {   echo '<td>'.substr($c['location'],0,3).'</td>';
138   $pubkey = mysql_query('select public_key from ssh_auth_clients where serial='.$c['serial'].'');   echo '<td><img src="pics/'.$pic.'.gif" alt="'.strtoupper($pic).'"></td>';
139   while ($row = mysql_fetch_row ($pubkey)) {   echo '<td width=40><b>#'.$c['serial'].'</b></td>';
140     echo '<td><nobr>'.$c['hostname'].'</nobr></td>';
141   # schreiben der .ssh/known_hosts file mit dem public rsa key des client,  
142   # um die "yes" abfrage zu vermeiden   echo '<td><nobr>'.$c['ip'].'</nobr></td>';
143   $hostfile = fopen ($home."/.ssh/known_hosts","w");   echo '<td><nobr>'.$c['mac'].'</nobr></td>';
144   fwrite($hostfile,$c['ip']." ".$row[0],strlen($row[0])+strlen($c['ip'])+1);   if($c['mtime']) { echo '<td><nobr>'.date('Y-m-d, H:i:s',$c['mtime']).'</nobr></td>'; }
145   fclose($hostfile);   else echo '<td></td>';
146    
147   $osver = exec($sshcmd.' '.$c['ip'].' \'os_ver=$(</etc/mageversion);cfg_ver=$(/sbin/magequery -n alxconfig-ng-alx|cut -d" " -f5);pname=${cfg_ver%-*-*};cfg_ver=${cfg_ver/${pname}-};echo "${os_ver}:${cfg_ver}"\'');   // get alx version info for
148   $osver = explode(':',$osver);   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);
149   }   if (isset($alxinfo[os])) $alxver = $alxinfo[os];
150   if($osver[0] == '') $osver[0]='unkown';   else $alxver = 'unknown';
151   if($osver[1] == '') $osver[1]='unkown';   if (isset($alxinfo[utils])) $alxutils = $alxinfo[utils];
152           echo '<td>'.$osver[0].'</td>';   else $alxutils = 'unknown';
153           echo '<td>'.$osver[1].'</td>';  
154          }   echo '<td>'.$alxver.'</td>';
155   }   echo '<td>'.$alxutils.'</td>';
156    
157   echo '<td>';   // netboot state
158   if($c['online'])   if($c['netboot'] == 1) echo '<td>Netboot (PXE)</td>';
159   {   else echo '<td>Local Disk</td>';
160   echo '<input type=button style="width:33%" 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\')">';  
161   echo '<input type=button style="width:33%" 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 '<td>';
162   echo '<input type=button style="width:33%" value="VNC" onclick="window.open(\'vncviewer.php?ip='.$c['ip'].'\', \'VncViewer\', \'width=200,height=100\')">';   if(isset($c['online']))
163   }   {
164   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\')">';   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\')">';
165   echo '</td>';   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\')">';
166     echo '<input type=button style="width:24%" value="VNC" onclick="window.open(\'vncviewer.php?ip='.$c['ip'].'\', \'VncViewer\', \'width=200,height=100\')">';
167   echo '</tr>';   echo '<input type=button style="width:24%" value="SSH" onclick="window.open(\'mindterm.php?ip='.$c['ip'].'\', \'MindTerm\', \'width=200,height=100\')">';
168   }   }
169   echo '</tbody></table><br>';   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\')">';
170     echo '</td>';
171   echo '';  
172     echo '</tr>';
173  ?>  }
174  <script type="text/javascript">  echo '</tbody></table><br>';
175  $(document).ready(function(){ $("#mytab").tablesorter({ headers: { 0:{sorter: false}, 1:{sorter: false}, 5:{sorter: false}} } ); });  
176   </script>  echo '';
177    
178    ?>
179    <script type="text/javascript">
180    $(document).ready(function(){ $("#mytab").tablesorter({ headers: { 0:{sorter: false}, 1:{sorter: false}, 5:{sorter: false}} } ); });
181    </script>

Legend:
Removed from v.1609  
changed lines
  Added in v.9460