X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FRequest.pm;h=d5cb9ed74aef8e6c8c988d36a316aadd91753a3a;hb=a82c2894ea88511dd690442cb58d33d7a62cecf8;hp=f06e27e256851e9f06d2c4120a7c40738eb507fb;hpb=0556eb49954590b794221ed3a033565c85dbeb32;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index f06e27e..d5cb9ed 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -3,13 +3,26 @@ package Catalyst::Request; use strict; use base 'Class::Accessor::Fast'; +use IO::Socket qw[AF_INET inet_aton]; + __PACKAGE__->mk_accessors( - qw/action address arguments base cookies headers hostname match method - parameters path snippets uploads/ + qw/action address arguments cookies headers match method + protocol query_parameters secure snippets uri user/ ); -*args = \&arguments; -*params = \¶meters; +*args = \&arguments; +*body_params = \&body_parameters; +*input = \&body; +*params = \¶meters; +*query_params = \&query_parameters; +*path_info = \&path; + +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(@_) } =head1 NAME @@ -17,102 +30,495 @@ Catalyst::Request - Catalyst Request Class =head1 SYNOPSIS -See L. + + $req = $c->request; + $req->action; + $req->address; + $req->args; + $req->arguments; + $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->match; + $req->method; + $req->param; + $req->params; + $req->parameters; + $req->path; + $req->protocol; + $req->query_parameters; + $req->read; + $req->referer; + $req->secure; + $req->snippets; + $req->upload; + $req->uploads; + $req->uri; + $req->user; + $req->user_agent; + +See also L. =head1 DESCRIPTION -The Catalyst Request. +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. + -=head2 METHODS +=head1 METHODS -=head3 action +=over 4 -Contains the action. +=item $req->action + +Contains the requested action. print $c->request->action; -=head3 address +=item $req->address Contains the remote address. print $c->request->address -=head3 arguments (args) +=item $req->args + +Shortcut for arguments -Returns an arrayref containing the arguments. +=item $req->arguments + +Returns a reference to an array containing the arguments. print $c->request->arguments->[0]; -=head3 base +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. + +=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. + +=cut + +sub base { + my ( $self, $base ) = @_; + + return $self->{base} unless $base; + + $self->{base} = $base; + + # set the value in path for backwards-compat + if ( $self->uri ) { + $self->path; + } + + return $self->{base}; +} + +=item $req->body + +Contains 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; +} + +=item $req->body_parameters + +Returns a reference to a hash containing body 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. + +=cut + +sub body_parameters { + my ( $self, $params ) = @_; + $self->{_context}->prepare_body; + $self->{body_parameters} = $params if $params; + return $self->{body_parameters}; +} + +=item $req->content_encoding + +Shortcut to $req->headers->content_encoding -Contains the uri base. +=item $req->content_length -=head3 cookies +Shortcut to $req->headers->content_length -Returns a hashref containing the cookies. +=item $req->content_type + +Shortcut to $req->headers->content_type + +=item $req->cookie + +A convenient method to $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}; + } +} + +=item $req->cookies + +Returns a reference to a hash containing the cookies. print $c->request->cookies->{mycookie}->value; -=head3 headers +The cookies in the hash are indexed by name, and the values are C +objects. + +=item $req->header + +Shortcut to $req->headers->header -Returns a L object containing the headers. +=item $req->headers + +Returns an L object containing the headers. print $c->request->headers->header('X-Catalyst'); -=head3 hostname +=item $req->hostname -Contains the remote hostname. +Lookup the current users DNS hostname. print $c->request->hostname + +=cut + +sub hostname { + my $self = shift; + + if ( @_ == 0 && not $self->{hostname} ) { + $self->{hostname} = + gethostbyaddr( inet_aton( $self->address ), AF_INET ); + } + + if ( @_ == 1 ) { + $self->{hostname} = shift; + } + + return $self->{hostname}; +} + +=item $req->input + +Shortcut for $req->body. -=head3 match +=item $req->match -Contains the match. +This contains the matching part of a regexp action. Otherwise +it returns the same as 'action'. print $c->request->match; -=head3 parameters (params) +=item $req->method -Returns a hashref containing the parameters. +Contains the request method (C, C, C, etc). - print $c->request->parameters->{foo}; + print $c->request->method; -=head3 path +=item $req->param + +Get request parameters with a CGI.pm-compatible param method. This +is a method for accessing parameters in $c->req->parameters. + + $value = $c->request->param( 'foo' ); + @values = $c->request->param( 'foo' ); + @params = $c->request->param; + +Like C, and B previous versions of Catalyst, passing multiple +arguments to this method, like this: + + $c->request( '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 { + my $self = shift; + + if ( @_ == 0 ) { + return keys %{ $self->parameters }; + } + + if ( @_ == 1 ) { + + 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} = [@_]; + } +} + +=item $req->params + +Shortcut for $req->parameters. + +=item $req->parameters + +Returns a reference to a hash containing 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. + +=cut + +sub parameters { + my ( $self, $params ) = @_; + $self->{_context}->prepare_body; + $self->{parameters} = $params if $params; + return $self->{parameters}; +} + +=item $req->path Contains the path. print $c->request->path; -=head3 method +=item $req->path_info -Contains the request method. +alias for path, added for compability with L - print $c->request->method +=cut + +sub path { + my ( $self, $params ) = @_; + + if ($params) { + $self->uri->path($params); + } + else { + return $self->{path} if $self->{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; +} + +=item $req->protocol + +Contains the protocol. + +=item $req->query_parameters + +Returns a reference to a hash containing query 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] ) + +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 +defaults to the size of the request if not specified. + +You have to set MyApp->config->{parse_on_demand} to use this directly. + +=cut -=head3 snippets +sub read { shift->{_context}->read(@_); } -Returns an arrayref containing regex snippets. +=item $req->referer + +Shortcut to $req->headers->referer. Referring page. + +=item $req->secure + +Contains a boolean denoting whether the communication is secure. + +=item $req->snippets + +Returns a reference to an array containing regex snippets. my @snippets = @{ $c->request->snippets }; -=head3 uploads +=item $req->upload + +A convenient method to $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; + } + +=cut + +sub upload { + my $self = shift; + + if ( @_ == 0 ) { + return keys %{ $self->uploads }; + } + + if ( @_ == 1 ) { + + my $upload = shift; + + 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}; + } + } + + 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 + +Returns a reference to a hash containing uploads. Values can be either a +hashref or a arrayref containing C objects. + + my $upload = $c->request->uploads->{field}; + my $upload = $c->request->uploads->{field}->[0]; + +=cut + +sub uploads { + my ( $self, $uploads ) = @_; + $self->{_context}->prepare_body; + $self->{uploads} = $uploads if $uploads; + return $self->{uploads}; +} + +=item $req->uri + +Returns a URI object for the request. + +=item $req->user + +Contains the user name of user if authentication check was successful. + +=item $req->user_agent -Returns a hashref containing the uploads. +Shortcut to $req->headers->user_agent. User Agent version string. - my $filename = $c->req->parameters->{foo}; - print $c->request->uploads->{$filename}->{type}; - print $c->request->uploads->{$filename}->{size}; - my $fh = $c->request->uploads->{$filename}->{fh}; - my $content = do { local $/; <$fh> }; +=back =head1 AUTHOR Sebastian Riedel, C +Marcus Ramberg, C =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify it under -the same terms as Perl itself. +This program is free software, you can redistribute it and/or modify +it under the same terms as Perl itself. =cut