Magellan Linux

Annotation of /alx-src/tags/alx-web-0_7_0_20181113_1/index.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8007 - (hide annotations) (download)
Wed Dec 16 16:06:40 2015 UTC (8 years, 4 months ago) by niro
Original Path: alx-src/branches/alx-web-070/index.php
File size: 8995 byte(s)
-get the ACTIVATE/DEACTIVATE button work
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 niro 7090 //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 niro 1610
12 niro 7995 $locations = sqlarr('SELECT location FROM client_locations where enabled="1"', '', 'location');
13 niro 2196 $locations[] = '';
14 niro 1610
15 niro 2196 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 niro 7110 global $ssh_port;
34     global $mcore_port;
35     global $ping_timeout;
36 niro 2196 if(!isset($comps[$dat['serial']])) return false;
37 niro 1610
38 niro 7110 // first try mcore, then get ssh
39     $retval = ping_host($dat['ip'],$mcore_port,$ping_timeout);
40     if($retval==1) $retval = ping_host($dat['ip'],$ssh_port,$ping_timeout);
41 niro 2196 if($retval==0)
42     {
43     $comps[$dat['serial']]['online'] = true;
44     $comps[$dat['serial']]['ip'] = $dat['ip'];
45 niro 1610 }
46     else $comps[$dat['serial']]['ip'] = '<font color=#a00000>'.$dat['ip'].' <small>(no ping)</small></font>';
47    
48     $comps[$dat['serial']]['hostname'] = $dat['hostname'];
49 niro 2196 $comps[$dat['serial']]['mac'] = $dat['mac'];
50     }
51 niro 1610
52 niro 2196 function sortcomp($a,$b)
53     {
54     if($a['serial']<0 && $b['serial']>0) return -1;
55     if($a['serial']>0 && $b['serial']<0) return 1;
56 niro 1610
57     if($_SESSION['alx_sort_onfirst'])
58 niro 2196 {
59     if($a['online'] && !$b['online']) return -1;
60     if($b['online'] && !$a['online']) return 1;
61     }
62     if($_SESSION['alx_sort_krit']=='hostname')
63     {
64     if(strtoupper($a['hostname'])<strtoupper($b['hostname'])) return -1;
65     else if(strtoupper($a['hostname'])>strtoupper($b['hostname'])) return 1;
66     }
67     return $a['serial']-$b['serial'];
68     }
69 niro 1610
70 niro 2196 function checkif($b)
71     {
72     if($b) return ' checked';
73     else return '';
74     }
75 niro 1610
76 niro 8007 $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");
77 niro 2948
78 niro 7745 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 niro 2196 usort($comps, 'sortcomp');
80     echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
81 niro 1610 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
82 niro 2196 echo '<head>';
83     echo '<title>ALX Config - Index</title>';
84     echo '<script language="JavaScript">';
85     echo 'function loc(name) { window.open(\'loc.php?location=\'+name, \'\', \'width=350,height=180\'); }';
86     echo '</script>';
87     echo '</head>';
88     echo '<script type="text/javascript" src="js/jquery-1.2.6.min.js"></script>';
89     echo '<script type="text/javascript" src="js/jquery.tablesorter.js"></script>';
90     //echo '<link rel="stylesheet" type="text/css" media="screen" href="js/style.css" />';
91 niro 1610
92 niro 2196 if($reload!='off') echo '<body onload="window.setTimeout(\'location.reload()\',60000)">';
93 niro 1610
94 niro 2196 /*
95     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 niro 1610
98 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';
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     */
101 niro 1610
102 niro 2196 echo '<form action="index.php" method="get" style="margin:0px">';
103     echo '<table width=480><tr>';
104     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 '<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 '<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     echo '<td align=right valign=top>';
110 niro 1610
111 niro 2196 foreach($locations as $l)
112     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 niro 1610
114 niro 2196 echo '<br/>';
115     echo '<input onclick="this.form.submit()" type="checkbox" name="s_dead" value="1"'.checkif($_SESSION['alx_sort_loc']['DEAD']).'>DEACTIVATED';
116     echo '</td>';
117     echo '</tr></table><br>';
118     echo '</form>';
119 niro 1610
120    
121 niro 2196 echo '<table border="1" id="mytab">';
122 niro 8005 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 niro 3348 //always enable showversion atm
124     $showversion = "on";
125 niro 8006 if($showversion=='on') echo '<th colspan=2>version</th>';
126     echo '<th width=100>boot</th>';
127 niro 2196 echo '<th width=150>up/down</th></tr></thead><tbody>';
128 niro 1610
129 niro 2196 foreach($comps as $c)
130     {
131     if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
132 niro 8007 if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
133 niro 1610
134 niro 2414 if($c['online']) $pic='online';
135 niro 2196 else $pic='offline';
136 niro 1610
137 niro 8007 if($c['enabled']==0)
138 niro 2196 {
139     echo '<tr style="text-decoration:line-through; color:#aaaaaa">';
140     $pic = 'deact';
141     }
142     else echo '<tr>';
143 niro 1610
144 niro 2196 echo '<td><input type=button value="EDIT" onclick="location.href=\'show.php?id='.$c['serial'].'\'"></td>';
145 niro 4895 echo '<td>'.substr($c['location'],0,3).'</td>';
146 niro 2196 echo '<td><img src="pics/'.$pic.'.gif" alt="'.strtoupper($pic).'"></td>';
147     echo '<td width=40><b>#'.$c['serial'].'</b></td>';
148     echo '<td><nobr>'.$c['hostname'].'</nobr></td>';
149 niro 1610
150     echo '<td><nobr>'.$c['ip'].'</nobr></td>';
151 niro 7996 echo '<td><nobr>'.$c['mac'].'</nobr></td>';
152 niro 1610 if($c['mtime']) { echo '<td><nobr>'.date('Y-m-d, H:i:s',$c['mtime']).'</nobr></td>'; }
153     //if($c['mtime']) { echo '<td><nobr>'.$c['mtime'].'</nobr></td>'; }
154 niro 2196 else echo '<td></td>';
155 niro 1610
156 niro 2948 if($showversion=='on')
157 niro 1610 {
158 niro 2948 // get alx version info for
159     $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);
160     $alxver = $alxinfo[os];
161     $alxutils = $alxinfo[utils];
162    
163 niro 7122 // if( $alxver == '')
164     // {
165     // if($c['online'])
166     // {
167     // //$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']);
168     // //$alxinfo = explode(':',$alxinfo[1]);
169     // //$alxver = $alxinfo[0];
170     // //$alxutils = $alxinfo[1];
171     // }
172     // }
173 niro 3349 if($alxver == '') $alxver='unknown';
174     if($alxutils == '') $alxutils='unknown';
175 niro 2948
176 niro 7123 echo '<td>'.$alxver.'</td>';
177     echo '<td>'.$alxutils.'</td>';
178 niro 1610 }
179    
180 niro 8006 //netboot state
181     if($c['netboot'] == 1) echo '<td>Netboot (PXE)</td>';
182     else echo '<td>Local Disk</td>';
183    
184 niro 1610 echo '<td>';
185 niro 2196 if($c['online'])
186     {
187     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\')">';
188 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\')">';
189     echo '<input type=button style="width:24%" value="VNC" onclick="window.open(\'vncviewer.php?ip='.$c['ip'].'\', \'VncViewer\', \'width=200,height=100\')">';
190     echo '<input type=button style="width:24%" value="SSH" onclick="window.open(\'mindterm.php?ip='.$c['ip'].'\', \'MindTerm\', \'width=200,height=100\')">';
191 niro 1610 }
192 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\')">';
193 niro 1610 echo '</td>';
194    
195 niro 7123 echo '</tr>';
196 niro 2196 }
197     echo '</tbody></table><br>';
198 niro 1610
199 niro 2196 echo '';
200 niro 1610
201     ?>
202     <script type="text/javascript">
203 niro 2196 $(document).ready(function(){ $("#mytab").tablesorter({ headers: { 0:{sorter: false}, 1:{sorter: false}, 5:{sorter: false}} } ); });
204     </script>

Properties

Name Value
svn:executable *