X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FRequest.pm;h=099b13713dcd02dfcf155bad019b9291f314bb0c;hp=cd8d20c46be1da6085cb91625d1e6ed43c2be515;hb=5fb12dbb7e69039e0ea22ec4d7cb627206b4508b;hpb=7ce7ca2ecb4ece35860bd375529e080a7ed47bb0 diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index cd8d20c..099b137 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -1,41 +1,131 @@ package Catalyst::Request; -use strict; -use base 'Class::Accessor::Fast'; - use IO::Socket qw[AF_INET inet_aton]; +use Carp; +use utf8; +use URI::http; +use URI::https; +use URI::QueryParam; + +use Moose; + +has action => (is => 'rw'); +has address => (is => 'rw'); +has arguments => (is => 'rw', default => sub { [] }); +has cookies => (is => 'rw', default => sub { {} }); +has query_keywords => (is => 'rw'); +has match => (is => 'rw'); +has method => (is => 'rw'); +has protocol => (is => 'rw'); +has query_parameters => (is => 'rw', default => sub { {} }); +has secure => (is => 'rw', default => 0); +has captures => (is => 'rw', default => sub { [] }); +has uri => (is => 'rw'); +has user => (is => 'rw'); +has headers => ( + is => 'rw', + isa => 'HTTP::Headers', + handles => [qw(content_encoding content_length content_type header referer user_agent)], +); + +has _context => ( + is => 'rw', + weak_ref => 1, +); + +has body_parameters => ( + is => 'rw', + required => 1, + lazy => 1, + default => sub { {} }, +); + +before body_parameters => sub { + my ($self) = @_; + $self->_context->prepare_body(); +}; + +has uploads => ( + is => 'rw', + required => 1, + lazy => 1, + default => sub { {} }, +); + +before uploads => sub { + my ($self) = @_; + $self->_context->prepare_body; +}; + +has parameters => ( + is => 'rw', + required => 1, + lazy => 1, + default => sub { {} }, +); + +before parameters => sub { + my ($self, $params) = @_; + $self->_context->prepare_body(); + if ( $params && !ref $params ) { + $self->_context->log->warn( + "Attempt to retrieve '$params' with req->params(), " . + "you probably meant to call req->param('$params')" ); + $params = undef; + } + +}; + +has base => ( + is => 'rw', + required => 1, + lazy => 1, + default => sub { + my $self = shift; + return $self->path if $self->uri; + }, +); + +has body => ( + is => 'rw' +); -__PACKAGE__->mk_accessors( - qw/action address arguments cookies headers match method - protocol query_parameters secure snippets uri user/ +before body => sub { + my ($self) = @_; + $self->_context->prepare_body(); +}; + +has hostname => ( + is => 'rw', + required => 1, + lazy => 1, + default => sub { + my ($self) = @_; + gethostbyaddr( inet_aton( $self->address ), AF_INET ) + }, ); -*args = \&arguments; -*body_params = \&body_parameters; -*input = \&body; -*params = \¶meters; -*query_params = \&query_parameters; -*path_info = \&path; +no Moose; -sub content_encoding { shift->headers->content_encoding(@_) } -sub content_length { shift->headers->content_length(@_) } -sub content_type { shift->headers->content_type(@_) } -sub header { shift->headers->header(@_) } -sub referer { shift->headers->referer(@_) } -sub user_agent { shift->headers->user_agent(@_) } +sub args { shift->arguments(@_) } +sub body_params { shift->body_parameters(@_) } +sub input { shift->body(@_) } +sub params { shift->parameters(@_) } +sub query_params { shift->query_parameters(@_) } +sub path_info { shift->path(@_) } +sub snippets { shift->captures(@_) } =head1 NAME -Catalyst::Request - Catalyst Request Class +Catalyst::Request - provides information about the current client request =head1 SYNOPSIS - $req = $c->request; $req->action; $req->address; - $req->args; $req->arguments; + $req->args; $req->base; $req->body; $req->body_parameters; @@ -48,54 +138,48 @@ Catalyst::Request - Catalyst Request Class $req->headers; $req->hostname; $req->input; + $req->query_keywords; $req->match; $req->method; $req->param; - $req->params; $req->parameters; + $req->params; $req->path; $req->protocol; $req->query_parameters; $req->read; $req->referer; $req->secure; - $req->snippets; + $req->captures; # previously knows as snippets $req->upload; $req->uploads; $req->uri; $req->user; $req->user_agent; -See also L. +See also L, L. =head1 DESCRIPTION -This is the Catalyst Request class, which provides a set of accessors to the -request data. The request object is prepared by the specialized Catalyst -Engine module thus hiding the details of the particular engine implementation. - +This is the Catalyst Request class, which provides an interface to data for the +current client request. The request object is prepared by L, +thus hiding the details of the particular engine implementation. =head1 METHODS -=over 4 - -=item $req->action - -Contains the requested action. +=head2 $req->action - print $c->request->action; +[DEPRECATED] Returns the name of the requested action. -=item $req->address -Contains the remote address. +Use C<< $c->action >> instead (which returns a +L object). - print $c->request->address +=head2 $req->address -=item $req->args +Returns the IP address of the client. -Shortcut for arguments - -=item $req->arguments +=head2 $req->arguments Returns a reference to an array containing the arguments. @@ -103,92 +187,60 @@ Returns a reference to an array containing the arguments. For example, if your action was - package MyApp::C::Foo; - - sub moose : Local { - ... - } - -And the URI for the request was C the string C -would be the first and only argument. + package MyApp::C::Foo; -=item $req->base - -Contains the URI base. This will always have a trailing slash. - -If your application was queried with the URI C -then C is C. + sub moose : Local { + ... + } -=cut +and the URI for the request was C, the string C +would be the first and only argument. -sub base { - my ( $self, $base ) = @_; +=head2 $req->args - return $self->{base} unless $base; +Shortcut for arguments. - $self->{base} = $base; +=head2 $req->base - # set the value in path for backwards-compat - if ( $self->uri ) { - $self->path; - } +Contains the URI base. This will always have a trailing slash. - return $self->{base}; -} +If your application was queried with the URI +C then C is C. -=item $req->body +=head2 $req->body -Contains the message body of the request unless Content-Type is +Returns the message body of the request, unless Content-Type is C or C. - print $c->request->body - -=cut - -sub body { - my ( $self, $body ) = @_; - $self->{_context}->prepare_body; - return $self->{_body}->body; -} +=head2 $req->body_parameters -=item $req->body_parameters - -Returns a reference to a hash containing body parameters. Values can +Returns a reference to a hash containing body (POST) parameters. Values can be either a scalar or an arrayref containing scalars. print $c->request->body_parameters->{field}; print $c->request->body_parameters->{field}->[0]; These are the parameters from the POST part of the request, if any. - -=item $req->body_params -An alias for body_parameters. +=head2 $req->body_params -=cut - -sub body_parameters { - my ( $self, $params ) = @_; - $self->{_context}->prepare_body; - $self->{body_parameters} = $params if $params; - return $self->{body_parameters}; -} +Shortcut for body_parameters. -=item $req->content_encoding +=head2 $req->content_encoding -Shortcut to $req->headers->content_encoding +Shortcut for $req->headers->content_encoding. -=item $req->content_length +=head2 $req->content_length -Shortcut to $req->headers->content_length +Shortcut for $req->headers->content_length. -=item $req->content_type +=head2 $req->content_type -Shortcut to $req->headers->content_type +Shortcut for $req->headers->content_type. -=item $req->cookie +=head2 $req->cookie -A convenient method to $req->cookies. +A convenient method to access $req->cookies. $cookie = $c->request->cookie('name'); @cookies = $c->request->cookie; @@ -214,82 +266,70 @@ sub cookie { } } -=item $req->cookies +=head2 $req->cookies Returns a reference to a hash containing the cookies. print $c->request->cookies->{mycookie}->value; -The cookies in the hash are indexed by name, and the values are C +The cookies in the hash are indexed by name, and the values are L objects. -=item $req->header +=head2 $req->header -Shortcut to $req->headers->header +Shortcut for $req->headers->header. -=item $req->headers +=head2 $req->headers -Returns an L object containing the headers. +Returns an L object containing the headers for the current request. print $c->request->headers->header('X-Catalyst'); -=item $req->hostname +=head2 $req->hostname -Lookup the current users DNS hostname. +Returns the hostname of the client. - print $c->request->hostname - -=cut +=head2 $req->input -sub hostname { - my $self = shift; +Alias for $req->body. - if ( @_ == 0 && not $self->{hostname} ) { - $self->{hostname} = - gethostbyaddr( inet_aton( $self->address ), AF_INET ); - } +=head2 $req->query_keywords - if ( @_ == 1 ) { - $self->{hostname} = shift; - } - - return $self->{hostname}; -} +Contains the keywords portion of a query string, when no '=' signs are +present. -=item $req->input - -Shortcut for $req->body. - -=item $req->match + http://localhost/path?some+keywords + + $c->request->query_keywords will contain 'some keywords' -This contains the matching part of a regexp action. Otherwise -it returns the same as 'action'. +=head2 $req->match - print $c->request->match; +This contains the matching part of a Regex action. Otherwise +it returns the same as 'action', except for default actions, +which return an empty string. -=item $req->method +=head2 $req->method Contains the request method (C, C, C, etc). - print $c->request->method; +=head2 $req->param -=item $req->param - -Get request parameters with a CGI.pm-compatible param method. This -is a method for accessing parameters in $c->req->parameters. +Returns GET and POST parameters with a CGI.pm-compatible param method. This +is an alternative method for accessing parameters in $c->req->parameters. $value = $c->request->param( 'foo' ); @values = $c->request->param( 'foo' ); @params = $c->request->param; -Like L, and B previous versions of Catalyst, passing multiple +Like L, and B earlier versions of Catalyst, passing multiple arguments to this method, like this: - $c->request( 'foo', 'bar', 'gorch', 'quxx' ); + $c->request->param( 'foo', 'bar', 'gorch', 'quxx' ); will set the parameter C to the multiple values C, C and C. Previously this would have added C as another value to C -(creating it if it didn't exist before), and C as another value for C. +(creating it if it didn't exist before), and C as another value for +C. =cut @@ -325,13 +365,9 @@ sub param { } } -=item $req->params - -Shortcut for $req->parameters. - -=item $req->parameters +=head2 $req->parameters -Returns a reference to a hash containing parameters. Values can +Returns a reference to a hash containing GET and POST parameters. Values can be either a scalar or an arrayref containing scalars. print $c->request->parameters->{field}; @@ -339,91 +375,89 @@ be either a scalar or an arrayref containing scalars. This is the combination of C and C. -=cut - -sub parameters { - my ( $self, $params ) = @_; - $self->{_context}->prepare_body; - $self->{parameters} = $params if $params; - return $self->{parameters}; -} +=head2 $req->params -=item $req->path +Shortcut for $req->parameters. -Contains the path. +=head2 $req->path - print $c->request->path; +Returns the path, i.e. the part of the URI after $req->base, for the current request. -=item $req->path_info +=head2 $req->path_info -alias for path, added for compability with L +Alias for path, added for compability with L. =cut sub path { - my ( $self, $params ) = @_; + my ( $self, @params ) = @_; - if ($params) { - $self->uri->path($params); + if (@params) { + $self->uri->path(@params); + undef $self->{path}; } - else { - return $self->{path} if $self->{path}; + elsif ( defined( my $path = $self->{path} ) ) { + return $path; } + else { + my $path = $self->uri->path; + my $location = $self->base->path; + $path =~ s/^(\Q$location\E)?//; + $path =~ s/^\///; + $self->{path} = $path; - my $path = $self->uri->path; - my $location = $self->base->path; - $path =~ s/^(\Q$location\E)?//; - $path =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg; - $path =~ s/^\///; - $self->{path} = $path; - - return $path; + return $path; + } } -=item $req->protocol +=head2 $req->protocol + +Returns the protocol (HTTP/1.0 or HTTP/1.1) used for the current request. -Contains the protocol. +=head2 $req->query_parameters -=item $req->query_parameters +=head2 $req->query_params -Returns a reference to a hash containing query parameters. Values can +Returns a reference to a hash containing query string (GET) parameters. Values can be either a scalar or an arrayref containing scalars. print $c->request->query_parameters->{field}; print $c->request->query_parameters->{field}->[0]; - -These are the parameters from the query string portion of the request's URI, if -any. -=item $req->read( [$maxlength] ) +=head2 $req->read( [$maxlength] ) -Read a chunk of data from the request body. This method is designed to be -used in a while loop, reading $maxlength bytes on every call. $maxlength +Reads a chunk of data from the request body. This method is intended to be +used in a while loop, reading $maxlength bytes on every call. $maxlength defaults to the size of the request if not specified. You have to set MyApp->config->{parse_on_demand} to use this directly. =cut -sub read { shift->{_context}->read(@_); } +sub read { shift->_context->read(@_); } + +=head2 $req->referer + +Shortcut for $req->headers->referer. Returns the referring page. -=item $req->referer +=head2 $req->secure -Shortcut to $req->headers->referer. Referring page. +Returns true or false, indicating whether the connection is secure (https). -=item $req->secure +=head2 $req->captures -Contains a boolean denoting whether the communication is secure. +Returns a reference to an array containing regex captures. -=item $req->snippets + my @captures = @{ $c->request->captures }; -Returns a reference to an array containing regex snippets. +=head2 $req->snippets - my @snippets = @{ $c->request->snippets }; +C used to be called snippets. This is still available for backwoards +compatibility, but is considered deprecated. -=item $req->upload +=head2 $req->upload -A convenient method to $req->uploads. +A convenient method to access $req->uploads. $upload = $c->request->upload('field'); @uploads = $c->request->upload('field'); @@ -479,40 +513,67 @@ sub upload { } } -=item $req->uploads +=head2 $req->uploads Returns a reference to a hash containing uploads. Values can be either a -hashref or a arrayref containing C objects. +L object, or an arrayref of +L objects. my $upload = $c->request->uploads->{field}; my $upload = $c->request->uploads->{field}->[0]; +=head2 $req->uri + +Returns a URI object for the current request. Stringifies to the URI text. + +=head2 $req->uri_with( { key => 'value' } ); + +Returns a rewritten URI object for the current request. Key/value pairs +passed in will override existing parameters. Unmodified pairs will be +preserved. + =cut -sub uploads { - my ( $self, $uploads ) = @_; - $self->{_context}->prepare_body; - $self->{uploads} = $uploads if $uploads; - return $self->{uploads}; -} +sub uri_with { + my( $self, $args ) = @_; + + carp( 'No arguments passed to uri_with()' ) unless $args; -=item $req->uri + for my $value ( values %$args ) { + next unless defined $value; + for ( ref $value eq 'ARRAY' ? @$value : $value ) { + $_ = "$_"; + utf8::encode( $_ ) if utf8::is_utf8($_); + } + }; + + my $uri = $self->uri->clone; + + $uri->query_form( { + %{ $uri->query_form_hash }, + %$args + } ); + return $uri; +} -Returns a URI object for the request. +=head2 $req->user -=item $req->user +Returns the currently logged in user. Deprecated. The method recommended for +newer plugins is $c->user. -Returns the user. +=head2 $req->user_agent -=item $req->user_agent +Shortcut to $req->headers->user_agent. Returns the user agent (browser) +version string. -Shortcut to $req->headers->user_agent. User Agent version string. +=head2 meta -=back +Provided by Moose -=head1 AUTHOR +=head1 AUTHORS Sebastian Riedel, C + Marcus Ramberg, C =head1 COPYRIGHT @@ -522,4 +583,6 @@ it under the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;