/usr/share/perl5/Catalyst/Action.pm is in libcatalyst-perl 5.90053-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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | package Catalyst::Action;
=head1 NAME
Catalyst::Action - Catalyst Action
=head1 SYNOPSIS
<form action="[%c.uri_for(c.action)%]">
$c->forward( $action->private_path );
=head1 DESCRIPTION
This class represents a Catalyst Action. You can access the object for the
currently dispatched action via $c->action. See the L<Catalyst::Dispatcher>
for more information on how actions are dispatched. Actions are defined in
L<Catalyst::Controller> subclasses.
=cut
use Moose;
use Scalar::Util 'looks_like_number';
with 'MooseX::Emulate::Class::Accessor::Fast';
use namespace::clean -except => 'meta';
has class => (is => 'rw');
has namespace => (is => 'rw');
has 'reverse' => (is => 'rw');
has attributes => (is => 'rw');
has name => (is => 'rw');
has code => (is => 'rw');
has private_path => (
reader => 'private_path',
isa => 'Str',
lazy => 1,
required => 1,
default => sub { '/'.shift->reverse },
);
use overload (
# Stringify to reverse for debug output etc.
q{""} => sub { shift->{reverse} },
# Codulate to execute to invoke the encapsulated action coderef
'&{}' => sub { my $self = shift; sub { $self->execute(@_); }; },
# Make general $stuff still work
fallback => 1,
);
no warnings 'recursion';
sub dispatch { # Execute ourselves against a context
my ( $self, $c ) = @_;
return $c->execute( $self->class, $self );
}
sub execute {
my $self = shift;
$self->code->(@_);
}
sub match {
my ( $self, $c ) = @_;
#would it be unreasonable to store the number of arguments
#the action has as its own attribute?
#it would basically eliminate the code below. ehhh. small fish
return 1 unless exists $self->attributes->{Args};
my $args = $self->attributes->{Args}[0];
return 1 unless defined($args) && length($args);
return scalar( @{ $c->req->args } ) == $args;
}
sub match_captures { 1 }
sub compare {
my ($a1, $a2) = @_;
my ($a1_args) = @{ $a1->attributes->{Args} || [] };
my ($a2_args) = @{ $a2->attributes->{Args} || [] };
$_ = looks_like_number($_) ? $_ : ~0
for $a1_args, $a2_args;
return $a1_args <=> $a2_args;
}
sub number_of_args {
my ( $self ) = @_;
return 0 unless exists $self->attributes->{Args};
return $self->attributes->{Args}[0];
}
sub number_of_captures {
my ( $self ) = @_;
return 0 unless exists $self->attributes->{CaptureArgs};
return $self->attributes->{CaptureArgs}[0] || 0;
}
sub list_extra_info {
my $self = shift;
return {
Args => $self->attributes->{Args}[0],
CaptureArgs => $self->number_of_captures,
}
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=head1 METHODS
=head2 attributes
The sub attributes that are set for this action, like Local, Path, Private
and so on. This determines how the action is dispatched to.
=head2 class
Returns the name of the component where this action is defined.
Derived by calling the L<catalyst_component_name|Catalyst::Component/catalyst_component_name>
method on each component.
=head2 code
Returns a code reference to this action.
=head2 dispatch( $c )
Dispatch this action against a context.
=head2 execute( $controller, $c, @args )
Execute this action's coderef against a given controller with a given
context and arguments
=head2 match( $c )
Check Args attribute, and makes sure number of args matches the setting.
Always returns true if Args is omitted.
=head2 match_captures ($c, $captures)
Can be implemented by action class and action role authors. If the method
exists, then it will be called with the request context and an array reference
of the captures for this action.
Returning true from this method causes the chain match to continue, returning
makes the chain not match (and alternate, less preferred chains will be attempted).
=head2 compare
Compares 2 actions based on the value of the C<Args> attribute, with no C<Args>
having the highest precedence.
=head2 namespace
Returns the private namespace this action lives in.
=head2 reverse
Returns the private path for this action.
=head2 private_path
Returns absolute private path for this action. Unlike C<reverse>, the
C<private_path> of an action is always suitable for passing to C<forward>.
=head2 name
Returns the sub name of this action.
=head2 number_of_args
Returns the number of args this action expects. This is 0 if the action doesn't take any arguments and undef if it will take any number of arguments.
=head2 number_of_captures
Returns the number of captures this action expects for L<Chained|Catalyst::DispatchType::Chained> actions.
=head2 list_extra_info
A HashRef of key-values that an action can provide to a debugging screen
=head2 meta
Provided by Moose.
=head1 AUTHORS
Catalyst Contributors, see Catalyst.pm
=head1 COPYRIGHT
This library is free software. You can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
|