Magellan Linux

Diff of /alx-src/trunk/alx-web/index.php

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

revision 355 by niro, Mon Oct 10 19:42:06 2005 UTC revision 424 by niro, Wed Jun 4 21:54:04 2008 UTC
# Line 1  Line 1 
1  <?  <?
2   include('include/basesql.php');     include('include/basesql.php');
3   session_start();   session_start();
4   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');
5   if($_SESSION['alx_sort_krit']==null) { $_SESSION['alx_sort_krit'] = 'serial'; $_SESSION['alx_sort_onfirst'] = 1; $_SESSION['alx_sort_loc'] = array(''=>true, 'BO'=>true, 'LIN'=>true, 'HAT'=>true, 'DEAD'=>false); }  
6   if(isset($_GET['s_krit'])) { $_SESSION['alx_sort_krit']=$_GET['s_krit']; $_SESSION['alx_sort_onfirst']=0+$_GET['s_on'];   $locations = sqlarr('SELECT location FROM client_locations', '', 'location');
7    $_SESSION['alx_sort_loc']['BO']=$_GET['s_bo']; $_SESSION['alx_sort_loc']['LIN']=$_GET['s_lin']; $_SESSION['alx_sort_loc']['HAT']=$_GET['s_hat']; $_SESSION['alx_sort_loc']['']=$_GET['s_unset']; $_SESSION['alx_sort_loc']['DEAD']=$_GET['s_dead'];  }   $locations[] = '';
8    
9     if($_SESSION['alx_sort_krit']==null)
10     {
11     $_SESSION['alx_sort_krit'] = 'serial';
12     $_SESSION['alx_sort_onfirst'] = 1;
13     $_SESSION['alx_sort_loc'] = array('DEAD'=>false);
14     foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=true;
15     }
16     if(isset($_GET['s_krit']))
17     {
18     $_SESSION['alx_sort_krit']=$_GET['s_krit'];
19     $_SESSION['alx_sort_onfirst']=0+$_GET['s_on'];
20     $_SESSION['alx_sort_loc']['DEAD']=$_GET['s_dead'];
21     foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=$_GET['s_'.$l];
22     }
23    
24   function check_online($dat, $bla)   function check_online($dat, $bla)
25   {   {
26   global $comps;   global $comps;
27   if(!isset($comps[$dat['serial']])) return false;   if(!isset($comps[$dat['serial']])) return false;
28    
29   //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);
30   passthru("/usr/sbin/fping -c 1 -t 50 -q ".$dat['ip']." &> /dev/null && exit 0 || exit 1",$retval);   passthru("/usr/sbin/fping -c 1 -t 50 -q ".$dat['ip']." &> /dev/null && exit 0 || exit 1",$retval);
31   if($retval==0)   if($retval==0)
# Line 19  Line 34 
34   $comps[$dat['serial']]['ip'] = $dat['ip'];   $comps[$dat['serial']]['ip'] = $dat['ip'];
35   }   }
36   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>';
37    
38   $comps[$dat['serial']]['hostname'] = $dat['hostname'];   $comps[$dat['serial']]['hostname'] = $dat['hostname'];
39   $comps[$dat['serial']]['mac'] = $dat['mac'];   $comps[$dat['serial']]['mac'] = $dat['mac'];
40   }   }
41    
42   function sortcomp($a,$b)   function sortcomp($a,$b)
43   {   {
44   if($a['serial']<0 && $b['serial']>0) return -1;   if($a['serial']<0 && $b['serial']>0) return -1;
45   if($a['serial']>0 && $b['serial']<0) return 1;   if($a['serial']>0 && $b['serial']<0) return 1;
46    
47   if($_SESSION['alx_sort_onfirst'])   if($_SESSION['alx_sort_onfirst'])
48   {   {
49   if($a['online'] && !$b['online']) return -1;   if($a['online'] && !$b['online']) return -1;
# Line 38  Line 53 
53   {   {
54   if(strtoupper($a['hostname'])<strtoupper($b['hostname'])) return -1;   if(strtoupper($a['hostname'])<strtoupper($b['hostname'])) return -1;
55   else if(strtoupper($a['hostname'])>strtoupper($b['hostname'])) return 1;   else if(strtoupper($a['hostname'])>strtoupper($b['hostname'])) return 1;
56   }   }
57   return $a['serial']-$b['serial'];   return $a['serial']-$b['serial'];
58   }   }
59    
60   function checkif($b)   function checkif($b)
61   { if($b) return ' checked'; else return ''; }   { if($b) return ' checked'; else return ''; }
62    
63   $comps = sqlarr('SELECT s.serial, s.location, s.mac, n.hostname FROM cfg_network n,client_serials s WHERE n.serial=s.serial', 'serial');   $comps = sqlarr('SELECT s.serial, s.location, s.mac, n.hostname FROM cfg_network n,client_serials s WHERE n.serial=s.serial', 'serial');
64   sqlforeach('SELECT serial, ip, hostname, mac FROM state_connected', 'check_online', null);   sqlforeach('SELECT serial, ip, hostname, mac FROM state_connected', 'check_online', null);
65   usort($comps, 'sortcomp');   usort($comps, 'sortcomp');
66    
67   echo '<head><title>ALX Config - Index</title></head>';   echo '<head>';
68     echo '<title>ALX Config - Index</title>';
69     echo '<script language="JavaScript">';
70     echo 'function loc(name) { window.open(\'loc.php?location=\'+name, \'\', \'width=350,height=180\'); }';
71     echo '</script>';
72     echo '</head>';
73   echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';   echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';
74    
75   /*   /*
76   echo '<img src="logo.jpg" align=middle>';   echo '<img src="logo.jpg" align=middle>';
77   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>';
78    
79   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';
80   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>';
81   */   */
82    
83   echo '<form action="index.php" method="get" style="margin:0px">';   echo '<form action="index.php" method="get" style="margin:0px">';
84   echo '<table width=480><tr>';   echo '<table width=480><tr>';
85   echo '<td><img src="pics/logo.jpg"></td>';   echo '<td><img src="pics/logo.jpg"></td>';
# Line 68  Line 88 
88   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>';
89   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>';
90   echo '<td align=right valign=top>';   echo '<td align=right valign=top>';
91   echo '<input onclick="this.form.submit()" type="checkbox" name="s_unset" value="1"'.checkif($_SESSION['alx_sort_loc']['']).'>?';  
92   echo '<input onclick="this.form.submit()" type="checkbox" name="s_bo" value="1"'.checkif($_SESSION['alx_sort_loc']['BO']).'>BO';   foreach($locations as $l)
93   echo '<input onclick="this.form.submit()" type="checkbox" name="s_hat" value="1"'.checkif($_SESSION['alx_sort_loc']['HAT']).'>HAT';   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>';
94   echo '<input onclick="this.form.submit()" type="checkbox" name="s_lin" value="1"'.checkif($_SESSION['alx_sort_loc']['LIN']).'>LIN';  
95   echo '<br>';   echo '<br/>';
96   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';
97   echo '</td>';   echo '</td>';
98   echo '</tr></table><br>';   echo '</tr></table><br>';
99   echo '</form>';   echo '</form>';
100    
101    
102   echo '<table border>';   echo '<table border>';
103   echo '<tr style="font-weight:bold;background-color:#d5e5ff"><td>edit</td><td colspan=3>serial</td><td width=170>hostname</td><td width=100>ip</td><td>up/down</td></tr>';   echo '<tr style="font-weight:bold;background-color:#d5e5ff"><td>edit</td><td colspan=3>serial</td><td width=170>hostname</td><td width=100>ip</td>';
104     if($showversion=='on') echo '<td colspan=2>version</td>';
105     echo '<td>up/down</td></tr>';
106    
107   foreach($comps as $c)   foreach($comps as $c)
108   {   {
109   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
110   if($c['serial']<0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;   if($c['serial']<0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
111    
112   if($c['online']) $pic='online'; else $pic='offline';   if($c['online']) $pic='online'; else $pic='offline';
113    
114   if($c['serial']<0) { echo '<tr style="text-decoration:line-through; color:#aaaaaa">'; $pic = 'deact'; }   if($c['serial']<0) { echo '<tr style="text-decoration:line-through; color:#aaaaaa">'; $pic = 'deact'; }
115   else echo '<tr>';   else echo '<tr>';
116    
117   echo '<td><input type=button value="EDIT" onclick="location.href=\'show.php?id='.$c['serial'].'\'"></td>';   echo '<td><input type=button value="EDIT" onclick="location.href=\'show.php?id='.$c['serial'].'\'"></td>';
118   echo '<td>'.substr($c['location'],0,1).'</td>';   echo '<td>'.substr($c['location'],0,1).'</td>';
119   echo '<td><img src="pics/'.$pic.'.gif" alt="'.strtoupper($pic).'"></td>';   echo '<td><img src="pics/'.$pic.'.gif" alt="'.strtoupper($pic).'"></td>';
120   echo '<td width=40><b>#'.$c['serial'].'</b></td>';   echo '<td width=40><b>#'.$c['serial'].'</b></td>';
121   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';   echo '<td><nobr>'.$c['hostname'].'</nobr></td>';
122    
123   echo '<td><nobr>'.$c['ip'].'</nobr></td>';   echo '<td><nobr>'.$c['ip'].'</nobr></td>';
124    
125     if($c['online'])
126     {
127     if($showversion=='on')
128     {
129     $pubkey = mysql_query('select public_key from ssh_auth_clients where serial='.$c['serial'].'');
130     while ($row = mysql_fetch_row ($pubkey)) {
131     $sshcmd = "/usr/bin/ssh";
132     $home = "/home/httpd";
133    
134     # schreiben der .ssh/known_hosts file mit dem public rsa key des client,
135     # um die "yes" abfrage zu vermeiden
136     $hostfile = fopen ($home."/.ssh/known_hosts","w");
137     fwrite($hostfile,$c['ip']." ".$row[0],strlen($row[0])+strlen($c['ip'])+1);
138     fclose($hostfile);
139    
140     $osver = exec($sshcmd.' -l root '.$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}"\'');
141     $osver = explode(':',$osver);
142     }
143     if($osver[0] == '') $osver[0]='unkown';
144     if($osver[1] == '') $osver[1]='unkown';
145             echo '<td>'.$osver[0].'</td>';
146             echo '<td>'.$osver[1].'</td>';
147            }
148     }
149    
150   echo '<td>';   echo '<td>';
151   if($c['online'])   if($c['online'])
152   {   {
# Line 108  Line 155 
155   }   }
156   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\')">';
157   echo '</td>';   echo '</td>';
158    
159   echo '</tr>';   echo '</tr>';
160   }   }
161   echo '</table><br>';   echo '</table><br>';

Legend:
Removed from v.355  
changed lines
  Added in v.424