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=c859fd27af793fcc6f03570d942f14bfdefe55f1;hp=20cbdd59de534fab134ad0ca0cc9457350aa5c08;hb=ae29b412955743885e80350085167b54b69672da;hpb=61bacdcc9ec458cabeba0cf4ce0d40cb5eb9b8d4 diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index 20cbdd5..c859fd2 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -1,174 +1,353 @@ 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 HTTP::Headers; + +use Moose; + +use namespace::clean -except => 'meta'; + +with 'MooseX::Emulate::Class::Accessor::Fast'; + +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', predicate => 'has_uri'); +has user => (is => 'rw'); +has headers => ( + is => 'rw', + isa => 'HTTP::Headers', + handles => [qw(content_encoding content_length content_type header referer user_agent)], + default => sub { HTTP::Headers->new() }, + required => 1, + lazy => 1, +); -__PACKAGE__->mk_accessors( - qw/action address arguments base cookies headers input hostname match - method parameters path snippets uploads/ +# Moose TODO: +# - Can we lose the before modifiers which just call prepare_body ? +# they are wasteful, slow us down and feel cluttery. +# Can we call prepare_body at BUILD time? +# Can we make _body an attribute, have the rest of +# these lazy build from there and kill all the direct hash access +# in Catalyst.pm and Engine.pm? + +has _context => ( + is => 'rw', + weak_ref => 1, + handles => ['read'], + clearer => '_clear_context', ); -*args = \&arguments; -*params = \¶meters; +has body_parameters => ( + is => 'rw', + required => 1, + lazy => 1, + default => sub { {} }, +); -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(@_) } +before body_parameters => sub { + my ($self) = @_; + $self->_context->prepare_body(); +}; -sub _assign_values { - my ( $self, $map, $values ) = @_; +has uploads => ( + is => 'rw', + required => 1, + default => sub { {} }, +); - while ( my ( $name, $value ) = splice( @{$values}, 0, 2 ) ) { +has parameters => ( + is => 'rw', + required => 1, + lazy => 1, + default => sub { {} }, +); - if ( exists $map->{$name} ) { - for ( $map->{$name} ) { - $_ = [$_] unless ref($_) eq "ARRAY"; - push( @$_, $value ); - } - } - else { - $map->{$name} = $value; - } - } +before parameters => sub { + my ($self, $params) = @_; + 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->has_uri; + }, +); + +has _body => ( + is => 'rw', clearer => '_clear_body', predicate => '_has_body', +); +# Eugh, ugly. Should just be able to rename accessor methods to 'body' +# and provide a custom reader.. +sub body { + my $self = shift; + $self->_context->prepare_body(); + $self->_body(@_) if scalar @_; + return blessed $self->_body ? $self->_body->body : $self->_body; } +has hostname => ( + is => 'rw', + required => 1, + lazy => 1, + default => sub { + my ($self) = @_; + gethostbyaddr( inet_aton( $self->address ), AF_INET ) || 'localhost' + }, +); + +has _path => ( is => 'rw', predicate => '_has_path', clearer => '_clear_path' ); + +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; $req->content_encoding; $req->content_length; $req->content_type; + $req->cookie; $req->cookies; $req->header; $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->snippets; + $req->secure; + $req->captures; # previously knows as snippets $req->upload; $req->uploads; - $req->user_agent + $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 +=head2 $req->action + +[DEPRECATED] Returns the name of the requested action. + -=item $req->action +Use C<< $c->action >> instead (which returns a +L object). -Contains the requested action. +=head2 $req->address - print $c->request->action; +Returns the IP address of the client. -=item $req->address +=head2 $req->arguments -Contains the remote address. +Returns a reference to an array containing the arguments. - print $c->request->address + print $c->request->arguments->[0]; -=item $req->args +For example, if your action was -Shortcut for arguments + package MyApp::C::Foo; -=item $req->arguments + sub moose : Local { + ... + } -Returns a reference to an array containing the arguments. +and the URI for the request was C, the string C +would be the first and only argument. - print $c->request->arguments->[0]; +Arguments just get passed through and B get unescaped automatically, so +you should do that explicitly. + +=head2 $req->args + +Shortcut for arguments. + +=head2 $req->base -=item $req->base +Contains the URI base. This will always have a trailing slash. -Contains the url base. This will always have a trailing slash. +If your application was queried with the URI +C then C is C. -=item $req->content_encoding +=head2 $req->body -Shortcut to $req->headers->content_encoding +Returns the message body of the request, unless Content-Type is +C or C. + +=head2 $req->body_parameters + +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. + +=head2 $req->body_params + +Shortcut for body_parameters. + +=head2 $req->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->cookies +=head2 $req->cookie + +A convenient method to access $req->cookies. + + $cookie = $c->request->cookie('name'); + @cookies = $c->request->cookie; + +=cut + +sub cookie { + my $self = shift; + + if ( @_ == 0 ) { + return keys %{ $self->cookies }; + } + + if ( @_ == 1 ) { + + my $name = shift; + + unless ( exists $self->cookies->{$name} ) { + return undef; + } + + return $self->cookies->{$name}; + } +} + +=head2 $req->cookies Returns a reference to a hash containing the cookies. print $c->request->cookies->{mycookie}->value; -=item $req->header +The cookies in the hash are indexed by name, and the values are L +objects. + +=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 -Contains the hostname of the remote user. +Returns the hostname of the client. - print $c->request->hostname +=head2 $req->input -=item $req->input +Alias for $req->body. -Contains the message body of the request unless Content-Type is -C or C. +=head2 $req->query_keywords - print $c->request->input +Contains the keywords portion of a query string, when no '=' signs are +present. -=item $req->match + http://localhost/path?some+keywords + + $c->request->query_keywords will contain 'some keywords' -This contains be 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 +Returns GET and POST parameters with a CGI.pm-compatible param method. This +is an alternative method for accessing parameters in $c->req->parameters. -Get request parameters with a CGI.pm like param method. - - $value = $c->request->param('foo'); - @values = $c->request->param('foo'); + $value = $c->request->param( 'foo' ); + @values = $c->request->param( 'foo' ); @params = $c->request->param; +Like L, and B earlier versions of Catalyst, passing multiple +arguments to this method, like this: + + $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. + =cut sub param { @@ -178,60 +357,126 @@ sub param { return keys %{ $self->parameters }; } - my $param = shift; + if ( @_ == 1 ) { - unless ( exists $self->parameters->{$param} ) { - return wantarray ? () : undef; + my $param = shift; + + unless ( exists $self->parameters->{$param} ) { + return wantarray ? () : undef; + } + + if ( ref $self->parameters->{$param} eq 'ARRAY' ) { + return (wantarray) + ? @{ $self->parameters->{$param} } + : $self->parameters->{$param}->[0]; + } + else { + return (wantarray) + ? ( $self->parameters->{$param} ) + : $self->parameters->{$param}; + } + } + elsif ( @_ > 1 ) { + my $field = shift; + $self->parameters->{$field} = [@_]; } +} + +=head2 $req->parameters + +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}; + print $c->request->parameters->{field}->[0]; + +This is the combination of C and C. + +=head2 $req->params + +Shortcut for $req->parameters. - if ( ref $self->parameters->{$param} eq 'ARRAY' ) { - return (wantarray) - ? @{ $self->parameters->{$param} } - : $self->parameters->{$param}->[0]; +=head2 $req->path + +Returns the path, i.e. the part of the URI after $req->base, for the current request. + +=head2 $req->path_info + +Alias for path, added for compatibility with L. + +=cut + +sub path { + my ( $self, @params ) = @_; + + if (@params) { + $self->uri->path(@params); + $self->_clear_path; + } + elsif ( $self->_has_path ) { + return $self->_path; } else { - return (wantarray) - ? ( $self->parameters->{$param} ) - : $self->parameters->{$param}; + my $path = $self->uri->path; + my $location = $self->base->path; + $path =~ s/^(\Q$location\E)?//; + $path =~ s/^\///; + $self->_path($path); + + return $path; } } -=item $req->params +=head2 $req->protocol -Shortcut for $req->parameters. +Returns the protocol (HTTP/1.0 or HTTP/1.1) used for the current request. -=item $req->parameters +=head2 $req->query_parameters -Returns a reference to a hash containing parameters. Values can -be either a scalar or a arrayref containing scalars. +=head2 $req->query_params - print $c->request->parameters->{field}; - print $c->request->parameters->{field}->[0]; +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]; + +=head2 $req->read( [$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. -=item $req->path +=head2 $req->referer -Contains the path. +Shortcut for $req->headers->referer. Returns the referring page. - print $c->request->path; +=head2 $req->secure -=item $req->referer +Returns true or false, indicating whether the connection is secure (https). -Shortcut to $req->headers->referer. Referring page. +=head2 $req->captures -=item $req->snippets +Returns a reference to an array containing captured args from chained +actions or regex captures. -Returns a reference to an array containing regex snippets. + my @captures = @{ $c->request->captures }; - my @snippets = @{ $c->request->snippets }; +=head2 $req->snippets -=item $req->upload +C used to be called snippets. This is still available for backwards +compatibility, but is considered deprecated. -A convenient method to $req->uploads. +=head2 $req->upload + +A convenient method to access $req->uploads. $upload = $c->request->upload('field'); @uploads = $c->request->upload('field'); @fields = $c->request->upload; - + for my $upload ( $c->request->upload('field') ) { print $upload->filename; } @@ -245,42 +490,105 @@ sub upload { return keys %{ $self->uploads }; } - my $upload = shift; + if ( @_ == 1 ) { - unless ( exists $self->uploads->{$upload} ) { - return wantarray ? () : undef; - } + my $upload = shift; - if ( ref $self->uploads->{$upload} eq 'ARRAY' ) { - return (wantarray) - ? @{ $self->uploads->{$upload} } - : $self->uploads->{$upload}->[0]; + unless ( exists $self->uploads->{$upload} ) { + return wantarray ? () : undef; + } + + if ( ref $self->uploads->{$upload} eq 'ARRAY' ) { + return (wantarray) + ? @{ $self->uploads->{$upload} } + : $self->uploads->{$upload}->[0]; + } + else { + return (wantarray) + ? ( $self->uploads->{$upload} ) + : $self->uploads->{$upload}; + } } - else { - return (wantarray) - ? ( $self->uploads->{$upload} ) - : $self->uploads->{$upload}; + + if ( @_ > 1 ) { + + while ( my ( $field, $upload ) = splice( @_, 0, 2 ) ) { + + if ( exists $self->uploads->{$field} ) { + for ( $self->uploads->{$field} ) { + $_ = [$_] unless ref($_) eq "ARRAY"; + push( @$_, $upload ); + } + } + else { + $self->uploads->{$field} = $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. +Returns a reference to a hash containing uploads. Values can be either a +L object, or an arrayref of +L objects. my $upload = $c->request->uploads->{field}; my $upload = $c->request->uploads->{field}->[0]; -=item $req->user_agent +=head2 $req->uri -Shortcut to $req->headers->user_agent. User Agent version string. +Returns a URI object for the current request. Stringifies to the URI text. -=back +=head2 $req->uri_with( { key => 'value' } ); -=head1 AUTHOR +Returns a rewritten URI object for the current request. Key/value pairs +passed in will override existing parameters. You can remove an existing +parameter by passing in an undef value. Unmodified pairs will be +preserved. -Sebastian Riedel, C -Marcus Ramberg, C +=cut + +sub uri_with { + my( $self, $args ) = @_; + + carp( 'No arguments passed to uri_with()' ) unless $args; + + foreach 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; + my %query = ( %{ $uri->query_form_hash }, %$args ); + + $uri->query_form( { + # remove undef values + map { defined $query{ $_ } ? ( $_ => $query{ $_ } ) : () } keys %query + } ); + return $uri; +} + +=head2 $req->user + +Returns the currently logged in user. Deprecated. The method recommended for +newer plugins is $c->user. + +=head2 $req->user_agent + +Shortcut to $req->headers->user_agent. Returns the user agent (browser) +version string. + +=head2 meta + +Provided by Moose + +=head1 AUTHORS + +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT @@ -289,4 +597,6 @@ it under the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;