X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FApache%2FMVC.pm;h=cd4e96d2fc0550af8a0cdf7d6f007148a284257f;hb=c335fbb1eaabf2ada28ce78f69299a96b33f3759;hp=21071de5950e5181185ed820bb7e85e86b525772;hpb=23a99cfd4af079b968c4a32a8d7c02cc5a525d3d;p=maypole.git diff --git a/lib/Apache/MVC.pm b/lib/Apache/MVC.pm index 21071de..cd4e96d 100644 --- a/lib/Apache/MVC.pm +++ b/lib/Apache/MVC.pm @@ -1,13 +1,28 @@ package Apache::MVC; -use base 'Maypole'; -use Apache; -use Apache::Request; + +our $VERSION = '2.05'; + use strict; use warnings; -our $VERSION = "0.3"; + +use base 'Maypole'; +use mod_perl; + +use constant APACHE2 => $mod_perl::VERSION >= 1.99; + +if (APACHE2) { + require Apache2; + require Apache::RequestIO; + require Apache::RequestRec; + require Apache::RequestUtil; + require APR::URI; +} +else { require Apache } +require Apache::Request; sub get_request { - shift->{ar} = Apache::Request->new(Apache->request); + my ( $self, $r ) = @_; + $self->{ar} = Apache::Request->new($r); } sub parse_location { @@ -15,27 +30,45 @@ sub parse_location { $self->{path} = $self->{ar}->uri; my $loc = $self->{ar}->location; no warnings 'uninitialized'; + $self->{path} .= '/' if $self->{path} eq $loc; $self->{path} =~ s/^($loc)?\///; $self->parse_path; + $self->parse_args; +} - $self->{params} = { $self->{ar}->content }; - while (my ($key, $value) = each %{$self->{params}}) { - $self->{params}{$key} = '' unless defined $value; - } - $self->{query} = { $self->{ar}->args }; +sub parse_args { + my $self = shift; + $self->{params} = { $self->_mod_perl_args( $self->{ar} ) }; + $self->{query} = { $self->_mod_perl_args( $self->{ar} ) }; } sub send_output { my $r = shift; - $r->{ar}->content_type($r->{content_type}); - $r->{ar}->headers_out->set("Content-Length" => length $r->{output}); - $r->{ar}->send_http_header; - $r->{ar}->print($r->{output}); + $r->{ar}->content_type( + $r->{content_type} =~ m/^text/ + ? $r->{content_type} . "; charset=" . $r->{document_encoding} + : $r->{content_type} + ); + $r->{ar}->headers_out->set( + "Content-Length" => do { use bytes; length $r->{output} } + ); + APACHE2 || $r->{ar}->send_http_header; + $r->{ar}->print( $r->{output} ); } sub get_template_root { my $r = shift; - $r->{ar}->document_root . "/". $r->{ar}->location; + $r->{ar}->document_root . "/" . $r->{ar}->location; +} + +sub _mod_perl_args { + my ( $self, $apr ) = @_; + my %args; + foreach my $key ( $apr->param ) { + my @values = $apr->param($key); + $args{$key} = @values == 1 ? $values[0] : \@values; + } + return %args; } 1; @@ -49,8 +82,8 @@ Apache::MVC - Apache front-end to Maypole package BeerDB; use base 'Apache::MVC'; BeerDB->setup("dbi:mysql:beerdb"); - BeerDB->config->{uri_base} = "http://your.site/"; - BeerDB->config->{display_tables} = [qw[beer brewery pub style]]; + BeerDB->config->uri_base("http://your.site/"); + BeerDB->config->display_tables([qw[beer brewery pub style]]); # Now set up your database: # has-a relationships # untaint columns @@ -127,9 +160,30 @@ C commands; for instance, a list of breweries, go to For more information about how the system works and how to extend it, see L. +=head1 Implementation + +This class overrides a set of methods in the base Maypole class to provide it's +functionality. See L for these: + +=over + +=item get_request + +=item get_template_root + +=item parse_args + +=item parse_location + +=item send_output + +=back + =head1 AUTHOR Simon Cozens, C +Marcus Ramberg, C +Screwed up by Sebastian Riedel, C =head1 LICENSE