/[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 243 by dpavlin, Mon Aug 17 13:25:48 2009 UTC revision 306 by dpavlin, Thu Aug 27 14:31:15 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    
# Line 200  warn "XXX pids = ", dump( $daemons::pids Line 198  warn "XXX pids = ", dump( $daemons::pids
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 210  warn "XXX pids = ", dump( $daemons::pids Line 213  warn "XXX pids = ", dump( $daemons::pids
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 237  warn "XXX pids = ", dump( $daemons::pids Line 243  warn "XXX pids = ", dump( $daemons::pids
243                                  ;                                  ;
244    
245                          if ( my $amt = client::conf( $ip, 'amt' ) ) {                          if ( my $amt = client::conf( $ip, 'amt' ) ) {
246                                  print $client qq|<h2>AMT</h2>|, amt::info( $amt );                                  print $client qq|<h2>AMT</h2>|, amt::info( $amt, $ip );
247                          }                          }
248                  } else {                  } else {
249    
# Line 256  warn "XXX pids = ", dump( $daemons::pids Line 262  warn "XXX pids = ", dump( $daemons::pids
262                          print $client ok                          print $client ok
263                                  , qq|<h2>Clients on $server::ip</h2>|                                  , qq|<h2>Clients on $server::ip</h2>|
264                                  , html::table( -5,                                  , html::table( -5,
265                                          'ip', 'hostname', 'mac', 'deploy', 'arp',                                          'ip', 'mac', 'hostname', 'conf', 'arp',
266                                          map {                                          map {
267                                                  my $ip = $_;                                                  my $ip = $_;
                                                 $ip =~ s{^.+/ip/}{};  
268                                                  my $mac = client::mac_from_ip $ip;                                                  my $mac = client::mac_from_ip $ip;
269                                                  my $arp = $arp->{ $mac };                                                  my $arp = $arp->{ $mac };
270                                                  $arp = $arp ? $arp->[1] : '';                                                  $arp = $arp ? $arp->[1] : '';
271                                                  $arp =~ s{$ip}{};                                                  $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' ) )                                                          , client::conf( $ip, 'hostname' )
276                                                            , html::pre_dump( client::all_conf( $ip ) )
277                                                          , $arp                                                          , $arp
278                                                  );                                                  );
279                                          }                                          }
280                                          glob("$server::conf/ip/*")                                          sort { ip::to_int($a) cmp ip::to_int($b) }
281                                            map {
282                                                    my $ip = $_;
283                                                    $ip =~ s{^.+/ip/}{};
284                                                    $ip;
285                                            } glob("$server::conf/ip/*")
286                                  )                                  )
287                                  , qq|<h2>ARP</h2>|                                  , qq|<h2>ARP</h2>|
288                                  , html::table( -3, 'mac', 'dev', 'ip',                                  , html::table( -3, 'ip', 'mac', 'dev',
289                                          map {                                          map {
290                                                  my $c = $arp->{$_};                                                  my $c = $arp->{$_};
291                                                  ( format::mac( $_ => 'html' ), $c->[1], $c->[0] )                                                  ( $c->[0], format::mac( $_ => 'html' ), $c->[1] )
292                                          } sort keys %$arp                                          } sort keys %$arp
293                                  )                                  )
294                                  ;                                  ;

Legend:
Removed from v.243  
changed lines
  Added in v.306

  ViewVC Help
Powered by ViewVC 1.1.26