/[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 392 by dpavlin, Mon Sep 7 21:57:35 2009 UTC revision 405 by dpavlin, Tue Sep 8 21:06:40 2009 UTC
# Line 85  sub static { Line 85  sub static {
85    
86          return if ! -f $full;          return if ! -f $full;
87    
88            return if $full =~ m{\.ico$};
89    
90          if ( my $pid = fork ) {          if ( my $pid = fork ) {
91                  # parent                  # parent
92                  close($client);                  close($client);
# Line 215  warn "XXX pids = ", dump( $daemons::pids Line 217  warn "XXX pids = ", dump( $daemons::pids
217                          }                          }
218                  }                  }
219    
220                    my $kvm = kvm::next_nr;
221                    $kvm = qq|<a href=/start_stop/kvm?nr=$kvm>new kvm $kvm</a>|;
222    
223                  print $client ok                  print $client ok
224                          , html::table( 2, @rows )                          , html::table( 2, @rows )
225                            , $kvm
226                          , $below_table                          , $below_table
227                          , html::tabs( log::mac_changes )                          , html::tabs( log::mac_changes )
228                          , $debug_proc                          , $debug_proc
229                          ;                          ;
230    
231          } elsif ( $path =~ m{^/server} ) {          } elsif ( $path =~ m{^/server} ) {
232                  if ( my $c = $param->{new_clients} ) {                  foreach my $name ( keys %$param ) {
233                          server::shared( 'new_clients', $c );                          eval '$server::' . $name . '= $param->{$name}';
234                    }
235                    my @table = (
236                              'debug' => qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,
237                            , 'new_clients' => qq|<input type=text name=new_clients size=3 value="$server::new_clients">|
238                    );
239    
240                    foreach my $editable ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain' ) {
241                            my $v = eval '$server::' . $editable;
242                            push @table, ( $editable, qq|<input type=text name=$editable value="$v">| );
243                    }
244    
245                    foreach my $readonly ( 'base_dir', 'conf' ) {
246                            my $v = eval '$server::' . $readonly;
247                            push @table, ( $readonly, html::tt $v );
248                  }                  }
249                            
250                  print $client ok                  print $client ok
251                          , qq|<form method=get>|                          , qq|<form method=get>|
252                          , html::table( 2,                          , html::table( 2, @table )
253                                  'debug' => qq|<a href=/our/debug/| . boolean::toggle($debug) . qq|>$debug</a>|,                          , qq|
254                                  'new_clients' => qq|<input type=text name=new_clients size=3 value="| . server::shared( 'new_clients' ) . qq|">|,                                  <input type=submit name=action value=change>
255                                   map {                                  </form>
256                                          ( $_, html::tt eval '$server::'.$_ )                          |
                                  } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir', 'conf' )  
                         )  
                         , qq|</form>|  
257                          ;                          ;
258    
259          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {
260                  my $ip = $1;                  my $ip = $1;
261                  $title = $ip;                  $title = $ip;
# Line 353  warn "XXX pids = ", dump( $daemons::pids Line 372  warn "XXX pids = ", dump( $daemons::pids
372                                  </form>                                  </form>
373                          |;                          |;
374                  }                  }
375    
376    
377          } elsif ( $path =~ m{^/brctl} ) {          } elsif ( $path =~ m{^/brctl} ) {
378                  print $client ok, html::table( -4,  
379                    system 'brctl addif virtual ' . $param->{addif} if $param->{addif};
380                    system 'brctl delif virtual ' . $param->{delif} if $param->{delif};
381    
382                    my $in_virtual;
383    
384                    my @table =
385                          map {                          map {
386                                  my @c = split(/\t+/,$_,4);                                  my @c = split(/\t+/,$_,4);
387                                  if ( $#c == 1 ) {                                  if ( $#c == 1 ) {
388                                          ( '', '', '', $c[1] )                                          $in_virtual->{ $c[1] }++;
389                                            @c = ( '', '', '', $c[1] );
390                                  } else {                                  } else {
391                                          @c                                          $in_virtual->{ $c[3] }++;
392                                    }
393                                    if ( $c[3] =~ m{\d$} ) {
394                                            $c[3] = qq|<input type=submit name=delif value=$c[3] style="color:red" title="remove $c[3] from bridge">|;
395                                  }                                  }
396                                    @c
397                          } split(/\n/, `brctl show`)                          } split(/\n/, `brctl show`)
398                  );                  ;
399    
400                    my @add_ifs = grep { ! $in_virtual->{$_} && $_ ne 'virtual' } ip::devices_up;
401    
402                    push @table, ( '', '', '', html::select( 'addif', @add_ifs ) . qq|<input type=submit value=add></form>| );
403    
404                    print $client ok
405                            , qq|<form>|
406                            , html::table( -4, @table )
407                            , qq|</form>|
408                            ;
409    
410    
411          } elsif ( $path =~ m{^/ip/?(\w+)?} ) {          } elsif ( $path =~ m{^/ip/?(\w+)?} ) {
412                  print $client ok                  print $client ok
413                          , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))                          , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))
# Line 427  sub start { Line 471  sub start {
471          print "url $url\n";          print "url $url\n";
472    
473          syslogd::install_local;          syslogd::install_local;
474            client::rebuild_mac_links;
475    
476          while (1) {          while (1) {
477                  my $client = $server->accept() || next; # ALARM trickle us                  my $client = $server->accept() || next; # ALARM trickle us

Legend:
Removed from v.392  
changed lines
  Added in v.405

  ViewVC Help
Powered by ViewVC 1.1.26