Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


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

Properties

Name Value
svn:executable *