The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Plugin::ResponseFrom - Use the response of a public endpoint.

SYNOPSIS

    package MyApp;
    use Catalyst 'ResponseFrom';

    MyApp->setup;

    package MyApp::Controller::Example;

    use Moose;
    use MooseX::MethodAttributes;
    use HTTP::Request::Common;

    extends 'Catalyst::Controller';

    sub as_http_request :Local {
      my ($self, $c) = @_;
      $c->redispatch_to(GET $c->uri_for($self->action_for('target')));
      # For simple GETs you can just use $c->uri_for style params like:
      $c->redispatch_to($self->action_for('target'));
    }

    sub as_spec :Local {
      my ($self, $c) = @_;
      $c->redispatch_to('GET' => $c->uri_for($self->action_for('target')));
    }

    sub collect_response :Local {
      my ($self, $c) = @_;
      my $http_response = $c->http_response_from(GET => $c->uri_for($self->action_for('target')));
    }

    sub target :Local {
      my ($self, $c) = @_;
      $c->response->content_type('text/plain');
      $c->response->body("This is the target action");
    }

DESCRIPTION

Catalyst allows you to forward to a private named actions, but there is no built in method to 'forward' to a public URL. You might want to do this rather than (for example) issue a redirect.

Additionally there is no 'subrequest' like feature (and Catalyst::Plugin::Subrequest uses internal hacks to function). There maye be cases, such as in testing, where it would be great to be able to issue a public URL request and collect the response.

This plugin is an attempt to give you these features in a clean manner that does not rely on internal Catalyst details that are subject to change. However you must be using a more modern version of Catalyst (the current requirement is 5.90060).

METHODS

This plugin adds the following methods to your Catalyst application. All methods share the same function signature (this approach and following documentation 'borrowed' from Web::Simple):

    my $psgi_response = $app->http_response_from(GET => '/' => %headers);
    my $http_response = $app->http_response_from(POST => '/' => %headers_or_form);
    $c->redispatch_to($http_request);

Accept three style of arguments:

An HTTP::Request object

Runs this against the application as if running from a client such as a browser

Parameters ($method, $path)

A single domain specific language used to construct an HTTP::Request object.

If the HTTP method is POST or PUT, then a series of pairs can be passed after this to create a form style message body. If you need to test an upload, then create an HTTP::Request object by hand or use the POST subroutine provided by HTTP::Request::Common.

If you prefix the URL with 'user:pass@' this will be converted into an Authorization header for HTTP basic auth:

    my $res = $app->http_response_from(
                GET => 'bob:secret@/protected/resource'
              );
   

If pairs are passed where the key ends in :, it is instead treated as a headers, so:

    my $res = $app->http_response_from(
                POST => '/',
               'Accept:' => 'text/html',
                some_form_key => 'value'
              );
 

will do what you expect. You can also pass a special key of Content: to set the request body:

    my $res = $app->http_response_from(
                POST => '/',
                'Content-Type:' => 'text/json',
                'Content:' => '{ "json": "here" }',
              );
a Catalyst::Action instance + optional parameters

If the arguments are identical to $c->uri_for, we create a request for that action and assume the method is 'GET'.

psgi_response_from

Given a request constructed as described above, return the PSGI response. This can be an Arrayref or Coderef.

This is probably not that useful since you likely need to do additional work to get data out of it, but was the result of refactoring, and I can imagine a use case or two.

http_response_from

response_from

Returns the HTTP::Response object returned by the request.

redispatch_to

Uses the response giveing to the request and uses that to complete your response. This also detaches so that calling this method effectively ends processing. Basically use this when you decide you want the response to be that of a totally different URL on your application.

AUTHOR

John Napiorkowski email:jjnapiork@cpan.org

SEE ALSO

Catalyst

COPYRIGHT & LICENSE

Copyright 2015, John Napiorkowski email:jjnapiork@cpan.org

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 154:

Unknown directive: =over4

Around line 156:

'=item' outside of any '=over'