Magellan Linux

Annotation of /alx-src/branches/alx-web-060/index.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3348 - (hide annotations) (download)
Wed Feb 8 13:03:11 2012 UTC (12 years, 3 months ago) by niro
File size: 8413 byte(s)
-always enabled showversion
1 niro 1610 <?
2    
3 niro 2196 include('include/basesql.php');
4 niro 2418 include('include/common-functions.php');
5    
6 niro 2196 session_start();
7     session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');
8 niro 1610
9 niro 2196 $locations = sqlarr('SELECT location FROM client_locations', '', 'location');
10     $locations[] = '';
11 niro 1610
12 niro 2196 if($_SESSION['alx_sort_krit']==null)
13     {
14     $_SESSION['alx_sort_krit'] = 'serial';
15     $_SESSION['alx_sort_onfirst'] = 1;
16     $_SESSION['alx_sort_loc'] = array('DEAD'=>false);
17     foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=true;
18     }
19     if(isset($_GET['s_krit']))
20     {
21     $_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     foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=$_GET['s_'.$l];
25     }
26    
27     function check_online($dat, $bla)
28     {
29     global $comps;
30 niro 1610 global $pingcmd;
31 niro 2196 if(!isset($comps[$dat['serial']])) return false;
32 niro 1610
33 niro 2196 //passthru("/bin/ping -I eth0 -c 1 -W 1 -q ".$dat['ip']." &> /dev/null && exit 0 || exit 1",$retval);
34 niro 1610 passthru($pingcmd." ".$dat['ip']." &> /dev/null && exit 0 || exit 1",$retval);
35 niro 2196 if($retval==0)
36     {
37     $comps[$dat['serial']]['online'] = true;
38     $comps[$dat['serial']]['ip'] = $dat['ip'];
39 niro 1610 }
40     else $comps[$dat['serial']]['ip'] = '<font color=#a00000>'.$dat['ip'].' <small>(no ping)</small></font>';
41    
42     $comps[$dat['serial']]['hostname'] = $dat['hostname'];
43 niro 2196 $comps[$dat['serial']]['mac'] = $dat['mac'];
44     }
45 niro 1610
46 niro 2196 function sortcomp($a,$b)
47     {
48     if($a['serial']<0 && $b['serial']>0) return -1;
49     if($a['serial']>0 && $b['serial']<0) return 1;
50 niro 1610
51     if($_SESSION['alx_sort_onfirst'])
52 niro 2196 {
53     if($a['online'] && !$b['online']) return -1;
54     if($b['online'] && !$a['online']) return 1;
55     }
56     if($_SESSION['alx_sort_krit']=='hostname')
57     {
58     if(strtoupper($a['hostname'])<strtoupper($b['hostname'])) return -1;
59     else if(strtoupper($a['hostname'])>strtoupper($b['hostname'])) return 1;
60     }
61     return $a['serial']-$b['serial'];
62     }
63 niro 1610
64 niro 2196 function checkif($b)
65     {
66     if($b) return ' checked';
67     else return '';
68     }
69 niro 1610
70 niro 2196 $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 niro 2948
72 niro 2196 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 niro 1610 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
76 niro 2196 echo '<head>';
77     echo '<title>ALX Config - Index</title>';
78     echo '<script language="JavaScript">';
79     echo 'function loc(name) { window.open(\'loc.php?location=\'+name, \'\', \'width=350,height=180\'); }';
80     echo '</script>';
81     echo '</head>';
82     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>';
84     //echo '<link rel="stylesheet" type="text/css" media="screen" href="js/style.css" />';
85 niro 1610
86 niro 2196 if($reload!='off') echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';
87 niro 1610
88 niro 2196 /*
89     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>';
91 niro 1610
92 niro 2196 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>';
94     */
95 niro 1610
96 niro 2196 echo '<form action="index.php" method="get" style="margin:0px">';
97     echo '<table width=480><tr>';
98     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>';
100     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>';
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>';
103     echo '<td align=right valign=top>';
104 niro 1610
105 niro 2196 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 niro 1610
108 niro 2196 echo '<br/>';
109     echo '<input onclick="this.form.submit()" type="checkbox" name="s_dead" value="1"'.checkif($_SESSION['alx_sort_loc']['DEAD']).'>DEACTIVATED';
110     echo '</td>';
111     echo '</tr></table><br>';
112     echo '</form>';
113 niro 1610
114    
115 niro 2196 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>';
117 niro 3348 //always enable showversion atm
118     $showversion = "on";
119 niro 2196 if($showversion=='on') echo '<th colspan=2>version</th>';
120     echo '<th width=150>up/down</th></tr></thead><tbody>';
121 niro 1610
122 niro 2196 foreach($comps as $c)
123     {
124     if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
125     if($c['serial']<0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
126 niro 1610
127 niro 2414 if($c['online']) $pic='online';
128 niro 2196 else $pic='offline';
129 niro 1610
130 niro 2196 if($c['serial']<0)
131     {
132     echo '<tr style="text-decoration:line-through; color:#aaaaaa">';
133     $pic = 'deact';
134     }
135     else echo '<tr>';
136 niro 1610
137 niro 2196 echo '<td><input type=button value="EDIT" onclick="location.href=\'show.php?id='.$c['serial'].'\'"></td>';
138     echo '<td>'.substr($c['location'],0,1).'</td>';
139     echo '<td><img src="pics/'.$pic.'.gif" alt="'.strtoupper($pic).'"></td>';
140     echo '<td width=40><b>#'.$c['serial'].'</b></td>';
141     echo '<td><nobr>'.$c['hostname'].'</nobr></td>';
142 niro 1610
143     echo '<td><nobr>'.$c['ip'].'</nobr></td>';
144     if($c['mtime']) { echo '<td><nobr>'.date('Y-m-d, H:i:s',$c['mtime']).'</nobr></td>'; }
145     //if($c['mtime']) { echo '<td><nobr>'.$c['mtime'].'</nobr></td>'; }
146 niro 2196 else echo '<td></td>';
147 niro 1610
148 niro 2948 if($showversion=='on')
149 niro 1610 {
150 niro 2948 // get alx version info for
151     $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);
152     $alxver = $alxinfo[os];
153     $alxutils = $alxinfo[utils];
154    
155     if( $alxver == '')
156 niro 1610 {
157 niro 2948 if($c['online'])
158     {
159 niro 3347 //$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']);
160 niro 2948 //$alxinfo = explode(':',$alxinfo[1]);
161     //$alxver = $alxinfo[0];
162     //$alxutils = $alxinfo[1];
163     }
164     }
165     if($alxver == '') $alxver='unkown';
166     if($alxutils == '') $alxutils='unkown';
167    
168     echo '<td>'.$alxver.'</td>';
169     echo '<td>'.$alxutils.'</td>';
170 niro 1610 }
171    
172     echo '<td>';
173 niro 2196 if($c['online'])
174     {
175     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\')">';
176 niro 1651 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\')">';
177     echo '<input type=button style="width:24%" value="VNC" onclick="window.open(\'vncviewer.php?ip='.$c['ip'].'\', \'VncViewer\', \'width=200,height=100\')">';
178     echo '<input type=button style="width:24%" value="SSH" onclick="window.open(\'mindterm.php?ip='.$c['ip'].'\', \'MindTerm\', \'width=200,height=100\')">';
179 niro 1610 }
180 niro 2196 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\')">';
181 niro 1610 echo '</td>';
182    
183     echo '</tr>';
184 niro 2196 }
185     echo '</tbody></table><br>';
186 niro 1610
187 niro 2196 echo '';
188 niro 1610
189     ?>
190     <script type="text/javascript">
191 niro 2196 $(document).ready(function(){ $("#mytab").tablesorter({ headers: { 0:{sorter: false}, 1:{sorter: false}, 5:{sorter: false}} } ); });
192     </script>

Properties

Name Value
svn:executable *