Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


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