/usr/share/perl5/Catalyst/Request/REST.pm is in libcatalyst-action-rest-perl 1.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | package Catalyst::Request::REST;
use Moose;
use Catalyst::Utils;
use namespace::autoclean;
extends 'Catalyst::Request';
with 'Catalyst::TraitFor::Request::REST';
our $VERSION = '1.14'; # VERSION
# Please don't take this as a recommended way to do things.
# The code below is grotty, badly factored and mostly here for back
# compat..
sub _insert_self_into {
my ($class, $app_class ) = @_;
# the fallback to $app_class is for the (rare and deprecated) case when
# people are defining actions in MyApp.pm instead of in a controller.
my $app = (blessed($app_class) && $app_class->can('_application'))
? $app_class->_application : Catalyst::Utils::class2appclass( $app_class ) || $app_class;
my $req_class = $app->request_class;
return if $req_class->isa($class);
my $req_class_meta = Moose->init_meta( for_class => $req_class );
my $role = $class->_related_role;
return if $req_class_meta->does_role($role);
if ($req_class eq 'Catalyst::Request') {
$app->request_class($class);
}
else {
my $meta = Moose::Meta::Class->create_anon_class(
superclasses => [$req_class],
roles => [$role],
cache => 1
);
$meta->_add_meta_method('meta');
$app->request_class($meta->name);
}
}
sub _related_role { 'Catalyst::TraitFor::Request::REST' }
__PACKAGE__->meta->make_immutable;
1;
__END__
=head1 NAME
Catalyst::Request::REST - A REST-y subclass of Catalyst::Request
=head1 SYNOPSIS
if ( $c->request->accepts('application/json') ) {
...
}
my $types = $c->request->accepted_content_types();
=head1 DESCRIPTION
This is a subclass of C<Catalyst::Request> that applies the
L<Catalyst::TraitFor::Request::REST> role to your request class. That trait
adds a few methods to the request object to facilitate writing REST-y code.
This class is only here for backwards compatibility with applications already
subclassing this class. New code should use
L<Catalyst::TraitFor::Request::REST> directly.
L<Catalyst::Action::REST> and L<Catalyst::Controller::REST> will arrange
for the request trait to be applied if needed.
=head1 SEE ALSO
L<Catalyst::TraitFor::Request::REST>.
=head1 AUTHORS
See L<Catalyst::Action::REST> for authors.
=head1 LICENSE
You may distribute this code under the same terms as Perl itself.
=cut
|