The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

CatalystX::RequestModel - Inflate Models from a Request Content Body or from URL Query Parameters

SYNOPSIS

An example Catalyst Request Model:

    package Example::Model::RegistrationRequest;

    use Moose;
    use CatalystX::RequestModel;

    extends 'Catalyst::Model';

    namespace 'person';
    content_type 'application/x-www-form-urlencoded';

    has username => (is=>'ro', property=>1);   
    has first_name => (is=>'ro', property=>1);
    has last_name => (is=>'ro', property=>1);
    has password => (is=>'ro', property=>1);
    has password_confirmation => (is=>'ro', property=>1);

    __PACKAGE__->meta->make_immutable();

Using it in a controller:

    package Example::Controller::Register;

    use Moose;
    use MooseX::MethodAttributes;

    extends 'Catalyst::Controller';

    sub root :Chained(/root) PathPart('register') CaptureArgs(0)  { }

    sub update :POST Chained('root') PathPart('') Args(0) Does(RequestModel) BodyModel(RegistrationRequest) {
      my ($self, $c, $request_model) = @_;
      ## Do something with the $request_model (instance of 'Example::Model::RegistrationRequest').
    }

    sub list :GET Chained('root') PathPart('') Args(0) Does(RequestModel) QueryModel(PagingModel) {
      my ($self, $c, $paging_model) = @_;
    }


    __PACKAGE__->meta->make_immutable;

Now if the incoming POST /update looks like this:

    .-------------------------------------+--------------------------------------.
    | Parameter                           | Value                                |
    +-------------------------------------+--------------------------------------+
    | person.username                     | jjn                                  |
    | person.first_name [multiple]        | 2, John                              |
    | person.last_name                    | Napiorkowski                         |
    | person.password                     | abc123                               |
    | person.password_confirmation        | abc123                               |
    '-------------------------------------+--------------------------------------'

The object instance $request_model would look like:

    say $request_model->username;       # jjn
    say $request_model->first_name;     # John
    say $request_model->last_name;      # Napiorkowski

And if the incoming is GET /list looks like

    [debug] Query Parameters are:
    .-------------------------------------+--------------------------------------.
    | Parameter                           | Value                                |
    +-------------------------------------+--------------------------------------+
    | page                                | 2                                    |
    | status                              | active                               |
    '-------------------------------------+--------------------------------------'

The object instance $paging_model would look like:

    say $paging_model->page;       # 2
    say $paging_model->status;     # 'active'

And $request_model has additional helper public methods to query attributes marked as request fields (via the property attribute field) which you can read about below.

See CatalystX::RequestModel::ContentBodyParser::JSON for an example of using this with JSON request content.

DESCRIPTION

Dealing with incoming POSTed (or PUTed/ PATCHed, etc) request content bodies is one of the most common code issues we have to deal with. Catalyst has generic capacities for handling common incoming content types such as form URL encoded (common with HTML forms) and JSON as well as the ability to add in parsing for other types of contents (see Catalyst#DATA-HANDLERS). However these parsers only check that a given body content is well formed and not that it's valid for your given problem domain. Additionally I find that we spend a lot of code lines in controllers that are doing nothing but munging and trying to wack incoming parameters into a form that can be actually used.

I've seen this approach of mapping incoming content bodies to models put to good use in frameworks in other languages. Mapping to a model gives you a clear place to do any data reformating you need as well as the type of pre validation work we often perform in a controller. Think of it as a type of command class pattern subtype. It promotes looser binding between your controller and your applications models, and it makes for neater, smaller controllers as well as separating out the types of work we do into smaller, more comprehendible classes. Lastly we encapsulate some of the more common types of issues into configuration (for example dealing with how HTML form POSTed parameters can cause you issues when they are sometimes in array form) as well as improve security by having an explict interface to the model.

Also once we have a model that defines an expected request, we should be able to build upon the meta data it exposed to do things like auto generate Open API / JSON Schema definition files (TBD but possible).

Basically you convert an unknown hash of values into a well defined object. This should reduce typo induced errors at the very least.

The main downside here is the time you need to inflate the additional classes as well as some documentation efforts needed to help new programmers understand this approach.

If you hate this idea but still like the thought of having more structure in mapping your incoming random parameters you might want to check out Catalyst::TraitFor::Request::StructuredParameters.

NOTE This is work in progress / late beta code. What I mean by that is that I will try to maintain the public API of this code (as described in the documentation) and only change it if absolutely needed to move the code forward. However the non public code is subject to change at any time. So if you are subclassing this and overriding non public methods you need to check carefully at each new release, but if you are just using the code as described you just need to review the changelog for any deprecation / breaking changes notices.

Declaring a model to accept request content bodies

To create a Catalyst model that is ready to accept incoming content body data mapped to its attributes you just need to use CatalystX::RequestModel:

    package Example::Model::RegistrationRequest;

    use Moose;
    use CatalystX::RequestModel;  # <=== The important bit

    extends 'Catalyst::Model';

    namespace 'person';  # <=== Optional but useful when you have nested form data
    content_type 'application/x-www-form-urlencoded';  <=== Required so that we know which content parser to use

    has username => (is=>'ro', property=>1);   
    has first_name => (is=>'ro', property=>1);
    has last_name => (is=>'ro', property=>1);

    __PACKAGE__->meta->make_immutable();

When you include "use CatalystX::RequestModel" we apply the role CatalystX::RequestModel::DoesRequestModel to you model, which gives you some useful methods as well as the ability to store the meta data needed to properly mapped parsed content bodies to your model. You also get two imported subroutines and a new field on your attribute declarations:

namespace: This is an optional imported subroutine which allows you to declare the namespace under which we expect to find the attribute mappings. This can be useful if your fields are not top level in your request content body (as in the example given above). This is optional and if you leave it off we just assume all fields are in the top level of the parsed data hash that you content parser builds based on whatever is in the content body.

content_type: This is the request content type which this model is designed to handle. For now you can only declare one content type per model (if your endpoint can handle more than one content type you'll need for now to define a request model for each one; I'm open to changing this to allow one than one content type per request model, but I need to see your use cases for this before I paint myself into a corner codewise).

property: This is a new field allowed on your attribute declarations. Setting its value to 1 (as in the example above) just means to use all the default settings for the declared content_type but you can declare this as a hashref instead if you have special handling needs. For example:

    has notes => (is=>'ro', property=>+{ expand=>'JSON' });

Here's the current list of property settings and what they do. You can also request the test cases for more examples:

name

The name of the field in the request body we are mapping to the request model. The default is to just use the name of the attribute.

omit_empty

Defaults to true. If there's no matching field in the request body we leave the request model attribute empty (we don't stick an undef in there). If for some reason you don't want that, setting this to false will put an undef into a scalar fields, and an empty array into an indexed one. If has no effect on attributes that map to a submodel since I have no idea what that should be (your use cases welcomed).

flatten

If the value associated with a field is an array, flatten it to a single value. The default is based on the body content parser. Its really a hack to deal with HTML form POST and Query parameters since the way those formats work you can't be sure if a value is flat or an array. This isn't a problem with JSON encoded request bodies. You'll need to check the docs for the Content Body Parser you are using to see what this does.

always_array

Similar to flatten but opposite, it forces a value into an array even if there's just one value. Again mostly useful to deal with ideosyncracies of HTML form post.

NOTE: The attribute property settings flatten and always_array are currently exclusive (only one of the two will apply if you supply both. The always_array property always takes precedence. At some point in the future supplying both might generate an exception so its best not to do that. I'm only leaving it allowed for now since I'm not sure there's a use case for both.

boolean

Defaults to false. If true will convert value to the common Perl convention 0 is false, 1 is true. The way this is converted is partly dependent on your content body parser.

expand

Example the value into a data structure by parsing it. Right now there's only one value this will take, which is JSON and will then parse the value into a structure using a JSON parser. Again this is mostly useful for HTML form posting and coping with some limitations you have in classic HTML form input types.

Setting a required attribute

Generally it's best to not mark attributes which map to request properties as required and to handled anything like thia via your validation layer so that you can provide more useful feedback to your application users. If you do need to mark something required in order for your request model to be valid, please note that we capture the exception created by Moo/se and throw CatalystX::RequestModel::Utils::BadRequest. If you are using CatalystX::Errors this will get rendered as a HTTP 400 Bad Request; otherwise you just get the generic Catalyst HTTP 500 Server Error or as you might have written in your custom error handling code.

Nested and Indexed attributes

Very often you will have incoming request data that is complex (or is trying to be, as in the case with HTML form post where you use a serialization format to flatten a deep structure into a flat list) In that case your body parser will attempt to deserialize that into a deep structure. In the case when you have a nested structure you can indicate that via mapping an attribute to a sub Catalyst model. For example:

    package Example::Model::AccountRequest;

    use Moose;
    use CatalystX::RequestModel;

    extends 'Catalyst::Model';
    namespace 'person';
    content_type 'application/x-www-form-urlencoded';

    has username => (is=>'ro', required=>1, property=>{ always_array=>1 });  
    has first_name => (is=>'ro', property=>1);
    has last_name => (is=>'ro', property=>1);
    has profile => (is=>'ro', property=>+{ model=>'AccountRequest::Profile' });

    __PACKAGE__->meta->make_immutable();

    package Example::Model::AccountRequest::Profile;

    use Moose;
    use CatalystX::RequestModel;

    extends 'Catalyst::Model';

    has id => (is=>'ro', property=>1);
    has address => (is=>'ro', property=>1);
    has city => (is=>'ro', property=>1);
    has state_id => (is=>'ro', property=>1);
    has zip => (is=>'ro', property=>1);
    has phone_number => (is=>'ro', property=>1);
    has birthday => (is=>'ro', property=>1);

    __PACKAGE__->meta->make_immutable();

If you had incoming body parameters like this (using the Form Content Body Parser):

    .-------------------------------------+--------------------------------------.
    | Parameter                           | Value                                |
    +-------------------------------------+--------------------------------------+
    | person.username                     | jjn                                  |
    | person.first_name                   | John                                 |
    | person.last_name                    | Napiorkowski                         |
    | person.profile.id                   | 1                                    |
    | person.profile.address              | 15604 Harry Lind Road                |
    | person.profile.city                 | Elgin                                |
    | person.profile.state_id             | 2                                    |
    | person.profile.zip                  | 78621                                |
    | person.profile.phone_number         | 16467081837                          |
    | person.profile.birthday             | 2000-01-01                           |
    '-------------------------------------+--------------------------------------'

It would parse and inflate a request model like

    my $request_model = $c->model('AccountRequest');

    $request_model->username;         # jjn
    $request_model->first_name;       # John
    $request_model->last_name;        # Napiorkowski
    $request_model->profile->address; # 15604 Harry Lind Road
    $request_model->profile->city;    # Elgin

...and so on.

If your nested models are directly under the main request model's namespace (as in the above example) you can shorten the value of the model option to include only the affix. For example the following:

    has profile => (is=>'ro', property=>+{ model=>'AccountRequest::Profile' });

Could be shortened to:

    has profile => (is=>'ro', property=>+{ model=>'::Profile' });

In the case when your deep structure also is an array/list you can mark that so via the indexed option of the property field as in the following example:

    package Example::Model::AccountRequest;

    use Moose;
    use CatalystX::RequestModel;

    extends 'Catalyst::Model';
    namespace 'person';
    content_type 'application/x-www-form-urlencoded';

    has username => (is=>'ro', required=>1, property=>{always_array=>1});  
    has first_name => (is=>'ro', property=>1);
    has last_name => (is=>'ro', property=>1);
    has credit_cards => (is=>'ro', property=>+{ indexed=>1, model=>'AccountRequest::CreditCard' });

    __PACKAGE__->meta->make_immutable();

    package Example::Model::AccountRequest::CreditCard;

    use Moose;
    use CatalystX::RequestModel;

    extends 'Catalyst::Model';

    has id => (is=>'ro', property=>1);
    has card_number => (is=>'ro', property=>1);
    has expiration => (is=>'ro', property=>1);

Now if your incoming request looks like this it will be parsed into a deep structure by the correct body parser and mapped to the request object:

    .-------------------------------------+--------------------------------------.
    | Parameter                           | Value                                |
    +-------------------------------------+--------------------------------------+
    | person.username                     | jjn                                  |
    | person.first_name                   | John                                 |
    | person.last_name                    | Napiorkowski                         |
    | person.credit_cards[0].card_number  | 123123123123123                      |
    | person.credit_cards[0].expiration   | 3000-01-01                           |
    | person.credit_cards[0].id           | 1                                    |
    | person.credit_cards[1].card_number  | 4444445555556666                     |
    | person.credit_cards[1].expiration   | 4000-01-01                           |
    | person.credit_cards[1].id           | 2                           
    '-------------------------------------+--------------------------------------'

It would parse and inflate a request model like

    my $request_model = $c->model('AccountRequest');

    $request_model->username;                       # jjn
    $request_model->first_name;                     # John
    $request_model->last_name;                      # Napiorkowski
    $request_model->credit_cards->[0]->card_number; # 123123123123123
    $request_model->credit_cards->[0]->expiration;  # 3000-01-01
    $request_model->credit_cards->[1]->card_number; # 4444445555556666
    $request_model->credit_cards->[1]->expiration;  # 4000-01-01

Please note the difference between a request property that is marked as indexed versus always_array. An indexed property is required to have an array value while always_array merely coerces a scalar to an array if the value isn't already an array. You cannot use indexed and always_array in the same request property.

NOTE You can use the indexed attribute property with simple scalar values as well as deep structured objects. See test cases for more.

Please see CatalystX::RequestModel::ContentBodyParser::JSON for an example JSON request body with nesting. JSON is actually easier since we don't need a parsing convention to turn the flat list you get with HTML Form post into a deep structure, nor deal with some of form posting's idiocracies.

Endpoints with more than one request model

If an endpoint can handle more than one type of incoming content type you can define that via the subroutine attribute and the code will pick the right one or throw an exception if none match (See "EXCEPTIONS" for more).

    sub update :POST Chained('root') PathPart('') Args(0) 
      Does(RequestModel) 
      RequestModel(RegistrationRequestForm) 
      RequestModel(RegistrationRequesJSON)
    {
      my ($self, $c, $request_model) = @_;
      ## Do something with the $request_model
    }

Also see Catalyst::ActionRole::RequestModel.

QUERY PARAMETERS

See CatalystX::QueryModel.

Requests with mixed query and body models

You might have a request that has both query parameters (via the URL) as well as a content body request. In that case you make the content body request in the same way as you normally do and then add a second request model that specifies the query parameters. For example you might have a form post with mixed query and body parameters. You create your models as normal:

    package Example::Model::InfoQuery;

    use Moose;
    use CatalystX::QueryModel;

    extends 'Catalyst::Model';

    has page => (is=>'ro', required=>1, property=>1);  
    has offset => (is=>'ro', property=>1);
    has search => (is=>'ro', property=>1);

    __PACKAGE__->meta->make_immutable();

    package Example::Model::LoginRequest;

    use Moose;
    use CatalystX::RequestModel;

    extends 'Catalyst::Model';
    content_type 'application/x-www-form-urlencoded';

    has username => (is=>'ro', required=>1, property=>1);  
    has password => (is=>'ro', property=>1);

    __PACKAGE__->meta->make_immutable();

And in your action you list the request models:

    sub postinfo :Chained(/) Args(0) Does(RequestModel) RequestModel(LoginRequest) QueryModel(InfoQuery)  {
      my ($self, $c, $login_request, $info_query) = @_;
    }

Now if you get a request like this:

    [debug] Query Parameters are:
    .-------------------------------------+--------------------------------------.
    | Parameter                           | Value                                |
    +-------------------------------------+--------------------------------------+
    | offset                              | 100                                  |
    | page                                | 10                                   |
    | search                              | nope                                 |
    '-------------------------------------+--------------------------------------'
    [debug] Body Parameters are:
    .-------------------------------------+--------------------------------------.
    | Parameter                           | Value                                |
    +-------------------------------------+--------------------------------------+
    | password                            | abc123                               |
    | username                            | jjn                                  |
    '-------------------------------------+--------------------------------------'

You'll get two models like this:

    print $login_request->username;   # "jjn"
    print $login_request->password;   # "abc123"

    print $info_query->offset;        # 100
    print $info_query->page;          # 10
    print $info_query->search;        # "nope"

You can also do nesting and indexing with query params (See CatalystX::QueryModel::QueryParser and CatalystX::QueryModel::DoesQueryModel)

IMPORTANT NOTE: Due to a limitation in how Catalyst finds subroutine attributes on an action we cannot determine the order of declaration of dissimilar attributes (such as BodyModel and QueryModel). As a result when you have both attibutes on an action we will process and add to the arguments list first the Body Models and then the Query models, even if you list the Query model first in the method declaration.

CONTENT BODY PARSERS

This distribution comes bundled with the following content body parsers for handling common needs. If you need to create you own you should subclass CatalystX::RequestModel::ContentBodyParser and place the class in the CatalystX::RequestModel::ContentBodyParser namespace.

Form URL Encoded

When a model declares its content_type to be 'application/x-www-form-urlencoded' we use CatalystX::RequestModel::ContentBodyParser::FormURLEncoded to parse it. Please see the documention for more regarding how we parse the flat list of posted body content into a deep structure.

This handles both POST HTML form content as well as query parameters.

Multi Part Uploads

This handles content types of 'multipart/form-data'. Uploads are mapped to attributes with a value that is an instance of Catalyst::Request::Upload.

JSON

When a model declares its content_type to be 'application/json' we use CatalystX::RequestModel::ContentBodyParser::JSON to parse it.

METHODS

Please see CatalystX::RequestModel::DoesRequestModel for the public API details.

EXCEPTIONS

This class can throw the following exceptions. Please note all exceptions are compatible with CatalystX::Errors to make it easy and consistent to convert errors to actual error responses.

Bad Request

If your request generates an exception when trying to instantiate your model (basically when calling ->new on it) we capture that error, log the error and throw a CatalystX::RequestModel::Utils::BadRequest

Invalid Request Content Type

If the incoming content body doesn't have a content type header that matches one of the available content body parsers then we throw an CatalystX::RequestModel::Utils::InvalidContentType. This will get interpretated as an HTTP 415 status client error if you are using CatalystX::Errors.

AUTHOR

    John Napiorkowski <jjnapiork@cpan.org>

COPYRIGHT

    2023

LICENSE

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