/[pxelator]/lib/PXElator/httpd.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/httpd.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 231 by dpavlin, Sun Aug 16 22:24:22 2009 UTC revision 309 by dpavlin, Thu Aug 27 16:47:42 2009 UTC
# Line 125  sub get_request { Line 125  sub get_request {
125                  warn "static $found" if $debug;                  warn "static $found" if $debug;
126          } elsif ( $path eq '/' ) {          } elsif ( $path eq '/' ) {
127    
128                  my @rows = (                  my @rows;
                         'debug',        qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,  
                 );  
129    
130                  my $debug_proc = '';                  my $debug_proc = '';
131    
132    warn "XXX pids = ", dump( $daemons::pids );
133    
134                  foreach my $name ( sort keys %$daemons::pids ) {                  foreach my $name ( sort keys %$daemons::pids ) {
135                          my $pid = $daemons::pids->{$name} || next;                          my $pid = $daemons::pids->{$name}; # || next;
136    
137                          my $html;                          my $html;
138    
# Line 158  sub get_request { Line 158  sub get_request {
158                                          $html .= qq| <a href=/action/$name/$_>$_</a>| foreach $name->actions;                                          $html .= qq| <a href=/action/$name/$_>$_</a>| foreach $name->actions;
159                                  }                                  }
160                          } else {                          } else {
161                                  $html .= qq|<a href=/start_stop/$name>restart</a> $pid exited| if $name->can('start');                                  if ( $pid =~ m{^\d+$} ) {
162                                            $html .= qq|$pid exited |
163                                    } else {
164                                            $html .= qq|$pid |;
165                                    }
166                                    $html .= qq|<a href=/start_stop/$name>restart</a>| if $pid || $name->can('start');
167                                  if ( $name->can('fork_actions') ) {                                  if ( $name->can('fork_actions') ) {
168                                          $html .= qq| <a href=/start_stop/$name/$_>$_</a>| foreach $name->fork_actions;                                          $html .= qq| <a href=/start_stop/$name/$_>$_</a>| foreach $name->fork_actions;
169                                  }                                  }
170                          }                          }
171    
172                            die "no html generated" unless $html;
173    
174                          push @rows, ( $name => $html );                          push @rows, ( $name => $html );
175                  }                  }
176    
# Line 191  sub get_request { Line 198  sub get_request {
198    
199          } elsif ( $path =~ m{^/server} ) {          } elsif ( $path =~ m{^/server} ) {
200                  print $client ok                  print $client ok
201                          , html::table( 2, map { ( $_, html::tt eval '$server::'.$_ ) } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir', 'conf' ) )                          , html::table( 2,
202                                    'debug' => qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,
203                                     map {
204                                            ( $_, html::tt eval '$server::'.$_ )
205                                     } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir', 'conf' )
206                            )
207                          ;                          ;
208          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {
209                  my $ip = $1 || $client->peerhost;                  my $ip = $1 || $client->peerhost;
# Line 201  sub get_request { Line 213  sub get_request {
213                          $ip = $new_ip;                          $ip = $new_ip;
214                  }                  }
215    
216                  if ( $ip ne $server::ip ) {                  my $ip_short = (split(/\./, $ip, 4))[3];
217    
218                    # if ( $ip ne $server::ip ) -- not flexible enough for tunnel endpoints
219                    if ( $ip_short >= $server::ip_from && $ip_short <= $server::ip_to ) {
220                          my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );                          my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );
221    
222                          my @table = (                          my @table = (
# Line 217  sub get_request { Line 232  sub get_request {
232                                          'mac' => format::mac( $mac => 'html' ),                                          'mac' => format::mac( $mac => 'html' ),
233                                          'deploy' => html::select( 'deploy', $deploy, config::available )                                          'deploy' => html::select( 'deploy', $deploy, config::available )
234                                  );                                  );
235                                  $deploy = qq|<h2>PXElinux</h2>| . html::pre( config::for_ip( $ip ) );                                  if ( my $pxelinux = config::for_ip( $ip ) ) {
236                                            $deploy = qq|<h2>PXElinux</h2>| . html::pre( $pxelinux );
237                                    }
238                          }                          }
239    
240                          print $client ok                          print $client ok
# Line 228  sub get_request { Line 245  sub get_request {
245                                  ;                                  ;
246    
247                          if ( my $amt = client::conf( $ip, 'amt' ) ) {                          if ( my $amt = client::conf( $ip, 'amt' ) ) {
248                                  print $client qq|<h2>AMT</h2>|, amt::info( $amt );                                  print $client qq|<h2>AMT</h2>|, amt::info( $amt, $ip );
249                          }                          }
250                  } else {                  } else {
251    
# Line 246  sub get_request { Line 263  sub get_request {
263    
264                          print $client ok                          print $client ok
265                                  , qq|<h2>Clients on $server::ip</h2>|                                  , qq|<h2>Clients on $server::ip</h2>|
266                                  , html::table( -5,                                  , html::table( -6,
267                                          'ip', 'hostname', 'mac', 'deploy', 'arp',                                          'ip', 'mac', 'arp', 'hostname', 'deploy', 'conf',
268                                          map {                                          map {
269                                                  my $ip = $_;                                                  my $ip = $_;
270                                                  $ip =~ s{^.+/ip/}{};                                                  my $conf = client::all_conf( $ip );
271                                                  my $mac = client::mac_from_ip $ip;                                                  my $mac = delete $conf->{mac} || '';
                                                 my $arp = $arp->{ $mac };  
                                                 $arp = $arp ? $arp->[1] : '';  
                                                 $arp =~ s{$ip}{};  
272                                                  (                                                  (
273                                                          qq|<a href=/client/$ip>$ip</a>|                                                          qq|<a href=/client/$ip>$ip</a>|
                                                         , client::conf( $ip, 'hostname' )  
274                                                          , format::mac( $mac => 'html' )                                                          , format::mac( $mac => 'html' )
275                                                          , html::tt( client::conf( $ip, 'deploy' ) )                                                          , ( $arp->{$mac} ? $arp->{$mac}->[1] : '' )
276                                                          , $arp                                                          , delete $conf->{hostname}
277                                                            , delete $conf->{deploy}
278                                                            , html::pre_dump( $conf )
279                                                  );                                                  );
280                                          }                                          }
281                                          glob("$server::conf/ip/*")                                          sort { ip::to_int($a) cmp ip::to_int($b) }
282                                            map {
283                                                    my $ip = $_;
284                                                    $ip =~ s{^.+/ip/}{};
285                                                    $ip;
286                                            } glob("$server::conf/ip/*")
287                                  )                                  )
288                                  , qq|<h2>ARP</h2>|                                  , qq|<h2>ARP</h2>|
289                                  , html::table( -3, 'mac', 'dev', 'ip',                                  , html::table( -3, 'ip', 'mac', 'dev',
290                                          map {                                          map {
291                                                  my $c = $arp->{$_};                                                  my $c = $arp->{$_};
292                                                  ( format::mac( $_ => 'html' ), $c->[1], $c->[0] )                                                  ( $c->[0], format::mac( $_ => 'html' ), $c->[1] )
293                                          } sort keys %$arp                                          } sort keys %$arp
294                                  )                                  )
295                                  ;                                  ;

Legend:
Removed from v.231  
changed lines
  Added in v.309

  ViewVC Help
Powered by ViewVC 1.1.26