X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FAction.pm;h=0e132f518194f571333b35aa23cd09a2ad30d9ac;hp=b2a094770978a434c030ba67019e68494a5fb044;hb=f8ad6ea56eeb4d3a3d5d77cf502651712dfb5e62;hpb=261c571ec577304a8a41218a4576675c8099069a diff --git a/lib/Catalyst/Action.pm b/lib/Catalyst/Action.pm index b2a0947..0e132f5 100644 --- a/lib/Catalyst/Action.pm +++ b/lib/Catalyst/Action.pm @@ -13,6 +13,9 @@ use overload ( # Codulate to encapsulated action coderef '&{}' => sub { shift->{code} }, + # Make general $stuff still work + fallback => 1, + ); =head1 NAME @@ -25,17 +28,27 @@ See L. =head1 DESCRIPTION +This class represents a Catalyst Action. You can access the object for the +currently dispatched action via $c->action + =head1 METHODS -=over 4 +=head2 attributes + +The sub attributes that are set for this action, like Local, Path, Private +and so on. + +=head2 class -=item attributes +Returns the class name of this action -=item class +=head2 code -=item code +Returns a code reference to this action -=item execute +=head2 execute( $c ) + +Execute this action against a context =cut @@ -45,13 +58,29 @@ sub execute { # Execute ourselves against a context return $c->execute( $self->class, $self ); } -=item namespace +=head2 match( $c ) + +Check Args attribute, and makes sure number of args matches the setting. + +=cut + +sub match { + my ( $self, $c ) = @_; + return 1 unless exists $self->attributes->{Args}; + return scalar(@{$c->req->args}) == $self->attributes->{Args}[0]; +} + +=head2 namespace + +Returns the private namespace this action lives in. + +=head2 reverse -=item reverse +Returns the private path for this action. -=item name +=head2 name -=back +returns the sub name of this action. =head1 AUTHOR