/[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 193 by dpavlin, Mon Aug 10 16:36:16 2009 UTC revision 199 by dpavlin, Tue Aug 11 15:13:19 2009 UTC
# Line 101  sub static { Line 101  sub static {
101          exit(0);          exit(0);
102  }  }
103    
104  my $ok =       qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n| . menu();  sub ok {
105  my $redirect = qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $url\r\n\r\n|;          qq|HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nConnection: close\r\n\r\n| . menu()
106    }
107    
108    sub redirect {
109            my $to = shift;
110            $to ||= $url;
111            qq|HTTP/1.1 302 Found\r\nContent-type: text/html\r\nLocation: $to\r\n\r\n|
112    }
113    
114  sub get_request {  sub get_request {
115          my ( $client, $path, $param ) = @_;          my ( $client, $path, $param ) = @_;
# Line 169  sub get_request { Line 176  sub get_request {
176                          }                          }
177                  }                  }
178    
179                  print $client $ok                  print $client ok
180                          , html::table( 2, @rows )                          , html::table( 2, @rows )
181                          , $below_table                          , $below_table
182                          , html::tabs( log::mac_changes )                          , html::tabs( log::mac_changes )
# Line 177  sub get_request { Line 184  sub get_request {
184                          ;                          ;
185    
186          } elsif ( $path =~ m{^/server} ) {          } elsif ( $path =~ m{^/server} ) {
187                  print $client $ok                  print $client ok
188                          , html::table( 2, map { ( $_, html::tt eval '$server::'.$_ ) } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir', 'conf' ) )                          , html::table( 2, map { ( $_, html::tt eval '$server::'.$_ ) } ( 'ip', 'netmask', 'ip_from', 'ip_to', 'domain_name', 'base_dir', 'conf' ) )
189                          ;                          ;
190          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {          } elsif ( $path =~ m!^/client(?:/$RE{net}{IPv4}{-keep})?! ) {
# Line 186  sub get_request { Line 193  sub get_request {
193                          my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );                          my $hostname = client::conf( $ip, 'hostname' => $param->{hostname} );
194    
195                          my @table = (                          my @table = (
196                                  'ip' => $ip,                                  'ip' => qq|<input type=text name=change_ip value="$ip" onChange="document.getElementById('old_ip').style.display = '';"><span id=old_ip style="display: none; color: #888;">old: $ip<span>|,
197                                  'hostname' => qq|<input type=text name=hostname value=$hostname>|,                                  'hostname' => qq|<input type=text name=hostname value="$hostname">|,
198                          );                          );
199    
200                          my $deploy;                          my $deploy;
# Line 201  sub get_request { Line 208  sub get_request {
208                                  $deploy = qq|<h2>PXElinux</h2>| . html::pre( config::for_ip( $ip ) );                                  $deploy = qq|<h2>PXElinux</h2>| . html::pre( config::for_ip( $ip ) );
209                          }                          }
210    
211                          print $client $ok                          print $client ok
212                                  , qq|<form method=get>|                                  , qq|<form method=get>|
213                                  , html::table( 2, @table ),                                  , html::table( 2, @table ),
214                                  , qq|<input type=submit value=change></form>|                                  , qq|<input type=submit value=change></form>|
# Line 225  sub get_request { Line 232  sub get_request {
232    
233                          warn "# arp ",dump( $arp );                          warn "# arp ",dump( $arp );
234    
235                          print $client $ok                          print $client ok
236                                  , qq|<h2>Clients on $server::ip</h2>|                                  , qq|<h2>Clients on $server::ip</h2>|
237                                  , html::table( -5,                                  , html::table( -5,
238                                          'ip', 'hostname', 'mac', 'deploy', 'arp',                                          'ip', 'hostname', 'mac', 'deploy', 'arp',
# Line 257  sub get_request { Line 264  sub get_request {
264          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {          } elsif ( $path =~ m{^/our/(\w+)/(\S+)} ) {
265                  eval 'our $' . $1 . ' = ' . $2;                  eval 'our $' . $1 . ' = ' . $2;
266                  warn $@ if $@;                  warn $@ if $@;
267                  print $client $redirect, qq|<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;                  print $client redirect($url), qq|<big>$1 = $2</big><br>Location: <a href="$url">$url</a>|;
268                  server::debug( $debug ) if $1 eq 'debug';                  server::debug( $debug ) if $1 eq 'debug';
269          } elsif ( $path =~ m{^/start_stop/(\S+)} ) {          } elsif ( $path =~ m{^/start_stop/(\S+)} ) {
270                  print $client $redirect, daemons::start_stop($1);                  print $client redirect, daemons::start_stop($1);
271          } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) {          } elsif ( $path =~ m{^/action/([^/]+)/(.+)} ) {
272                  $1->$2();                  $1->$2();
273                  print $client $redirect;                  print $client redirect;
274          } elsif ( $path =~ m{^/kill/static/(\d+)} ) {          } elsif ( $path =~ m{^/kill/static/(\d+)} ) {
275                  print $client $redirect;                  print $client redirect;
276                  kill 1, $1 || kill 9, $2 && warn "killed $1";                  kill 1, $1 || kill 9, $2 && warn "killed $1";
277          } else {          } else {
278                  print $client "HTTP/1.0 404 $path\r\nConnection: close\r\nContent-type: text/html\r\n\r\n<big>404 $path</big>";                  print $client "HTTP/1.0 404 $path\r\nConnection: close\r\nContent-type: text/html\r\n\r\n<big>404 $path</big>";

Legend:
Removed from v.193  
changed lines
  Added in v.199

  ViewVC Help
Powered by ViewVC 1.1.26