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

Legend:
Removed from v.1610  
changed lines
  Added in v.3347