Magellan Linux

Diff of /alx-src/tags/alx-web-0_7_0_20171218_1/index.php

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

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

Legend:
Removed from v.1608  
changed lines
  Added in v.7996