]> git.decadent.org.uk Git - maypole.git/blob - lib/Apache/MVC.pm
headers_in returns an APR table which acts like a hashref on apache2
[maypole.git] / lib / Apache / MVC.pm
1 package Apache::MVC;
2
3 our $VERSION = '2.05';
4
5 use strict;
6 use warnings;
7
8 use base 'Maypole';
9 use mod_perl;
10 use Maypole::Headers;
11
12 use constant APACHE2 => $mod_perl::VERSION >= 1.99;
13
14 if (APACHE2) {
15     require Apache2;
16     require Apache::RequestIO;
17     require Apache::RequestRec;
18     require Apache::RequestUtil;
19     require APR::URI;
20 }
21 else { require Apache }
22 require Apache::Request;
23
24 sub get_request {
25     my ( $self, $r ) = @_;
26     $self->{ar} = Apache::Request->new($r);
27 }
28
29 sub parse_location {
30     my $self = shift;
31
32     # Reconstruct the request headers
33     $self->headers_in(Maypole::Headers->new);
34     my %headers;
35     if (APACHE2) { %headers = %{$self->{ar}->headers_in};
36     } else { %headers = $self->{ar}->headers_in; }
37     for (keys %headers) {
38         $self->headers_in->set($_, $headers{$_});
39     }
40
41     $self->{path} = $self->{ar}->uri;
42     my $loc = $self->{ar}->location;
43     no warnings 'uninitialized';
44     $self->{path} .= '/' if $self->{path} eq $loc;
45     $self->{path} =~ s/^($loc)?\///;
46     $self->parse_path;
47     $self->parse_args;
48 }
49
50 sub parse_args {
51     my $self = shift;
52     $self->{params} = { $self->_mod_perl_args( $self->{ar} ) };
53     $self->{query}  = { $self->_mod_perl_args( $self->{ar} ) };
54 }
55
56 sub send_output {
57     my $r = shift;
58     $r->{ar}->content_type(
59           $r->{content_type} =~ m/^text/
60         ? $r->{content_type} . "; charset=" . $r->{document_encoding}
61         : $r->{content_type}
62     );
63     $r->{ar}->headers_out->set(
64         "Content-Length" => do { use bytes; length $r->{output} }
65     );
66
67     foreach ($r->headers_out->field_names) {
68         next if /^Content-(Type|Length)/;
69         $r->{ar}->headers_out->set($_ => $r->headers_out->get($_));
70     }
71
72     APACHE2 || $r->{ar}->send_http_header;
73     $r->{ar}->print( $r->{output} );
74 }
75
76 sub get_template_root {
77     my $r = shift;
78     $r->{ar}->document_root . "/" . $r->{ar}->location;
79 }
80
81 sub _mod_perl_args {
82     my ( $self, $apr ) = @_;
83     my %args;
84     foreach my $key ( $apr->param ) {
85         my @values = $apr->param($key);
86         $args{$key} = @values == 1 ? $values[0] : \@values;
87     }
88     return %args;
89 }
90
91 1;
92
93 =head1 NAME
94
95 Apache::MVC - Apache front-end to Maypole
96
97 =head1 SYNOPSIS
98
99     package BeerDB;
100     use base 'Apache::MVC';
101     BeerDB->setup("dbi:mysql:beerdb");
102     BeerDB->config->uri_base("http://your.site/");
103     BeerDB->config->display_tables([qw[beer brewery pub style]]);
104     # Now set up your database:
105     # has-a relationships
106     # untaint columns
107
108     1;
109
110 =head1 DESCRIPTION
111
112 Maypole is a Perl web application framework to Java's struts. It is 
113 essentially completely abstracted, and so doesn't know anything about
114 how to talk to the outside world. C<Apache::MVC> is a mod_perl based
115 subclass of Maypole.
116
117 To use it, you need to create a package which represents your entire
118 application. In our example above, this is the C<BeerDB> package.
119
120 This needs to first inherit from C<Apache::MVC>, and then call setup.
121 This will give your package an Apache-compatible C<handler> subroutine,
122 and then pass any parameters onto the C<setup_database> method of the
123 model class. The default model class for Maypole uses L<Class::DBI> to 
124 map a database to classes, but this can be changed by messing with the
125 configuration. (B<Before> calling setup.)
126
127 Next, you should configure your application through the C<config>
128 method. Configuration parameters at present are:
129
130 =over
131
132 =item uri_base
133
134 You B<must> specify this; it is the base URI of the application, which
135 will be used to construct links.
136
137 =item display_tables
138
139 If you do not want all of the tables in the database to be accessible,
140 then set this to a list of only the ones you want to display
141
142 =item rows_per_page
143
144 List output is paged if you set this to a positive number of rows.
145
146 =back
147
148 You should also set up relationships between your classes, such that,
149 for instance, calling C<brewery> on a C<BeerDB::Beer> object returns an
150 object representing its associated brewery.
151
152 For a full example, see the included "beer database" application.
153
154 =head1 INSTALLATION
155
156 Create a driver module like the one above.
157
158 Put the following in your Apache config:
159
160     <Location /beer>
161         SetHandler perl-script
162         PerlHandler BeerDB
163     </Location>
164
165 Copy the templates found in F<templates/factory> into the
166 F<beer/factory> directory off the web root. When the designers get
167 back to you with custom templates, they are to go in
168 F<beer/custom>. If you need to do override templates on a
169 database-table-by-table basis, put the new template in
170 F<beer/I<table>>. 
171
172 This will automatically give you C<add>, C<edit>, C<list>, C<view> and
173 C<delete> commands; for instance, a list of breweries, go to 
174
175     http://your.site/beer/brewery/list
176
177 For more information about how the system works and how to extend it,
178 see L<Maypole>.
179
180 =head1 Implementation
181
182 This class overrides a set of methods in the base Maypole class to provide it's
183 functionality. See L<Maypole> for these:
184
185 =over
186
187 =item get_request
188
189 =item get_template_root
190
191 =item parse_args
192
193 =item parse_location
194
195 =item send_output
196
197 =back
198
199 =head1 AUTHOR
200
201 Simon Cozens, C<simon@cpan.org>
202 Marcus Ramberg, C<marcus@thefeed.no>
203 Screwed up by Sebastian Riedel, C<sri@oook.de>
204
205 =head1 LICENSE
206
207 You may distribute this code under the same terms as Perl itself.