--- lib/PXElator/httpd.pm 2009/08/29 16:51:07 346 +++ lib/PXElator/httpd.pm 2009/09/08 20:38:26 403 @@ -19,8 +19,25 @@ use IO::Socket::INET; use Regexp::Common qw/net/; -sub menu {qq{ +our $title; +sub html_start { +qq{ + + +$title + + +}} + +sub html_end { +qq{ + + +}} + +sub menu { +qq{
home server @@ -68,6 +85,8 @@ return if ! -f $full; + return if $full =~ m{\.ico$}; + if ( my $pid = fork ) { # parent close($client); @@ -109,7 +128,7 @@ } sub ok { - qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n| . menu() + qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n| . html_start() . menu() } sub redirect { @@ -125,6 +144,8 @@ CouchDB::audit( 'request', { path => $path, param => $param, peerhost => $client->peerhost } ); + $title = $path; + if ( my $found = static( $client,$path ) ) { warn "static $found" if $debug; } elsif ( $path eq '/' ) { @@ -154,12 +175,15 @@ ; } - if ( $name->can('fork_if_active') ) { - $html .= qq| $_| foreach $name->fork_if_active; + my $class = $name; + $class =~ s{\.\d+$}{}; + + if ( $class->can('fork_if_active') ) { + $html .= qq| $_| foreach $class->fork_if_active; } - if ( $name->can('actions') ) { - $html .= qq| $_| foreach $name->actions; + if ( $class->can('actions') ) { + $html .= qq| $_| foreach $class->actions; } } else { if ( $pid =~ m{^\d+$} ) { @@ -201,16 +225,36 @@ ; } elsif ( $path =~ m{^/server} ) { + foreach my $name ( keys %$param ) { + eval '$server::' . $name . '= $param->{$name}'; + } + my @table = ( + 'debug' => qq|$debug|, + , 'new_clients' => qq|| + ); + + foreach my $editable ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain' ) { + my $v = eval '$server::' . $editable; + push @table, ( $editable, qq|| ); + } + + foreach my $readonly ( 'base_dir', 'conf' ) { + my $v = eval '$server::' . $readonly; + push @table, ( $readonly, html::tt $v ); + } + print $client ok - , html::table( 2, - 'debug' => qq|$debug|, - map { - ( $_, html::tt eval '$server::'.$_ ) - } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir', 'conf' ) - ) + , qq|
| + , html::table( 2, @table ) + , qq| + +
+ | ; + } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) { my $ip = $1; + $title = $ip; if ( $param->{action} eq 'remove' ) { client::remove( $param->{change_ip} ); @@ -240,33 +284,26 @@ if ( $ip && $ip ne $server::ip ) { - my @editable = ( qw/hostname deploy homepage/ ); + my @editable = ( qw/hostname config homepage/ ); client::conf( $ip, $_ => $param->{$_} ) foreach @editable; my $conf = client::all_conf( $ip ); - my $deploy = delete $conf->{deploy}; + my $config = delete $conf->{config}; my $nmap = qq|nmap|; my @table = ( + 'ping' => ping::host($ip) + ? qq|up $nmap| + : qq|down wol $nmap| + , 'ip' => qq|