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

Plack::Request::WithEncoding - Subclass of Plack::Request which supports encoding.

SYNOPSIS

use Plack::Request::WithEncoding;

my $app_or_middleware = sub {
    my $env = shift; # PSGI env

    # Example of $env
    #
    # $env = {
    #     QUERY_STRING   => 'query=%82%d9%82%b0', # <= encoded by 'cp932'
    #     REQUEST_METHOD => 'GET',
    #     HTTP_HOST      => 'example.com',
    #     PATH_INFO      => '/foo/bar',
    # };

    my $req = Plack::Request::WithEncoding->new($env);

    $req->env->{'plack.request.withencoding.encoding'} = 'cp932'; # <= specify the encoding method.

    # If `$req->env->{'plack.request.withencoding.encoding'}` is undef (namely, the encoding method is not specified),
    # then this library will use `utf-8` as encoding method.

    my $query = $req->param('query'); # <= get parameters of 'query' that is decoded by 'cp932'.

    my $res = $req->new_response(200); # new Plack::Response
    $res->finalize;
};

DESCRIPTION

Plack::Request::WithEncoding is the subclass of Plack::Request. This module supports the encoding for requests, the following attributes will return decoded request values.

ATTRIBUTES

REQUEST ENVIRONMENTS of Plack

You can specify the encoding method, like so;

$req->env->{'plack.request.withencoding.encoding'} = 'utf-7'; # <= set utf-7

And this encoding method will be used to decode.

Default encoding method is utf-8. If $req->env->{'plack.request.withencoding.encoding'} is undef then default encoding method will be used.

SEE ALSO

Plack::Request

LICENSE

Copyright (C) moznion.

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

AUTHOR

moznion moznion@gmail.com