/[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 403 by dpavlin, Tue Sep 8 20:38:26 2009 UTC revision 431 by dpavlin, Mon Sep 14 13:44:42 2009 UTC
# Line 36  qq{ Line 36  qq{
36  </html>  </html>
37  }}  }}
38    
 sub menu {  
 qq{  
 <div style="font-size: 80%; color: #888">  
 <a href=/>home</a>  
 <a href=/server>server</a>  
 <a href=/brctl>brctl</a>  
 <a href=/ip>ip</a>  
 <a href=/nmap>nmap</a>  
 <a href=/client>client</a>  
 </div>  
   
 }}  
   
39  our $port = 7777;  our $port = 7777;
40    
41  use server;  use server;
# Line 78  use wol; Line 65  use wol;
65    
66  use CouchDB;  use CouchDB;
67    
68    
69    sub menu {
70            my $couch_url = $url;
71            $couch_url =~ s{:\d+.+}{:5984/_utils/};
72    qq{
73    <div style="font-size: 80%; color: #888">
74    <a href=/ target=/>home</a>
75    <a href=/server target=server>server</a>
76    <a href=/brctl target=brctl>brctl</a>
77    <a href=/ip target=ip>ip</a>
78    <a href=/nmap target=nmap>nmap</a>
79    <a href=/client target=client>client</a>
80    <a href=$couch_url target=couchdb>couchdb</a>
81    </div>
82    
83    }}
84    
85    
86  sub static {  sub static {
87          my ($client,$path) = @_;          my ($client,$path) = @_;
88    
# Line 217  warn "XXX pids = ", dump( $daemons::pids Line 222  warn "XXX pids = ", dump( $daemons::pids
222                          }                          }
223                  }                  }
224    
225                    my $kvm = kvm::next_nr;
226                    $kvm = qq|<div><a href=/start_stop/kvm?nr=$kvm>create new kvm $kvm</a></div>|;
227    
228                  print $client ok                  print $client ok
229                          , html::table( 2, @rows )                          , html::table( 2, @rows )
230                          , $below_table                          , $below_table
231                            , $kvm
232                          , html::tabs( log::mac_changes )                          , html::tabs( log::mac_changes )
233                          , $debug_proc                          , $debug_proc
234                          ;                          ;
# Line 233  warn "XXX pids = ", dump( $daemons::pids Line 242  warn "XXX pids = ", dump( $daemons::pids
242                          , 'new_clients' => qq|<input type=text name=new_clients size=3 value="$server::new_clients">|                          , 'new_clients' => qq|<input type=text name=new_clients size=3 value="$server::new_clients">|
243                  );                  );
244    
245                  foreach my $editable ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain' ) {                  foreach my $editable ( 'ip', 'bcast', 'netmask', 'ip_from', 'ip_to', 'domain' ) {
246                          my $v = eval '$server::' . $editable;                          my $v = eval '$server::' . $editable;
247                          push @table, ( $editable, qq|<input type=text name=$editable value="$v">| );                          push @table, ( $editable, qq|<input type=text name=$editable value="$v">| );
248                  }                  }
# Line 254  warn "XXX pids = ", dump( $daemons::pids Line 263  warn "XXX pids = ", dump( $daemons::pids
263    
264          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {
265                  my $ip = $1;                  my $ip = $1;
266                  $title = $ip;                  $title = $ip if $ip;
267    
268                  if ( $param->{action} eq 'remove' ) {                  if ( $param->{action} eq 'remove' ) {
269                          client::remove( $param->{change_ip} );                          client::remove( $param->{change_ip} );
# Line 351  warn "XXX pids = ", dump( $daemons::pids Line 360  warn "XXX pids = ", dump( $daemons::pids
360                                                          . '"'                                                          . '"'
361                                                          if $ping;                                                          if $ping;
362                                                  $style ||= '';                                                  $style ||= '';
363                                                    my $ip_text = qq|<tt>$ip</tt>|;
364                                                    $ip_text = qq|<tt><b>$ip</b></tt>| if ip::in_dhcp_range($ip);
365                                                  (                                                  (
366                                                          qq|<a $style name=$ip target=$ip href=/client/$ip>$ip</a>|                                                          qq|<a $style name=$ip target=$ip href=/client/$ip>$ip_text</a>|
367                                                          , format::mac( $mac => 'html' )                                                          , format::mac( $mac => 'html' )
368                                                          , $arp->{$mac}                                                          , $arp->{$mac}
369                                                          , delete $conf->{hostname}                                                          , delete $conf->{hostname}
# Line 458  sub start { Line 469  sub start {
469    
470          my $server = IO::Socket::INET->new(          my $server = IO::Socket::INET->new(
471                          Proto     => 'tcp',                          Proto     => 'tcp',
472                          LocalAddr => $server::ip,  #                       LocalAddr => $server::ip,
473                          LocalPort => $httpd::port,                          LocalPort => $httpd::port,
474                          Listen    => SOMAXCONN,                          Listen    => SOMAXCONN,
475                          Reuse     => 1                          Reuse     => 1
# Line 473  sub start { Line 484  sub start {
484                  my $client = $server->accept() || next; # ALARM trickle us                  my $client = $server->accept() || next; # ALARM trickle us
485                  my $request = <$client>;                  my $request = <$client>;
486    
487                  warn "request $request\n" if $debug;                  my $headers;
488    
489                    while ( my $header = <$client> ) {
490                            chomp $header;
491                            last if $header =~ m{^\s*$};
492                            my ( $n, $v ) = split(/:\s*/, $header);
493                            $headers->{ lc $n } = $v;
494                    }
495    
496                    if ( my $host = $headers->{host} ) {
497                            $url = 'http://' . $host;
498                            $url .= ":$port" unless $url =~ m{:\d+$};
499                    }
500    
501                    warn "## $url ## $request", dump( $headers ) if $debug;
502    
503                  if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {                  if ($request =~ m{^GET (/.*) HTTP/1.[01]}) {
504                          my $path = $1;                          my $path = $1;

Legend:
Removed from v.403  
changed lines
  Added in v.431

  ViewVC Help
Powered by ViewVC 1.1.26