Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


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

Properties

Name Value
svn:executable *