Pull a bunch of gross hacks to get actions => { '*' => ... } working again
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Controller.pm
CommitLineData
5ee249f2 1package Catalyst::Controller;
2
ae29b412 3use Moose;
a58af53d 4use Moose::Util qw/find_meta/;
4f4ab5b4 5use List::MoreUtils qw/uniq/;
ae29b412 6use namespace::clean -except => 'meta';
7
ba545c13 8BEGIN { extends qw/Catalyst::Component MooseX::MethodAttributes::Inheritable/; }
234763d4 9
cf37d21a 10use MooseX::MethodAttributes;
234763d4 11use Catalyst::Exception;
12use Catalyst::Utils;
ae29b412 13
14with 'Catalyst::Component::ApplicationAttribute';
15
16has path_prefix =>
17 (
18 is => 'rw',
19 isa => 'Str',
7f22a5aa 20 init_arg => 'path',
ae29b412 21 predicate => 'has_path_prefix',
22 );
23
24has action_namespace =>
25 (
26 is => 'rw',
27 isa => 'Str',
7f22a5aa 28 init_arg => 'namespace',
ae29b412 29 predicate => 'has_action_namespace',
30 );
31
b138a0d0 32has actions =>
ae29b412 33 (
b138a0d0 34 accessor => '_controller_actions',
ae29b412 35 isa => 'HashRef',
7f22a5aa 36 init_arg => undef,
ae29b412 37 );
38
7f22a5aa 39sub BUILD {
40 my ($self, $args) = @_;
ae29b412 41 my $action = delete $args->{action} || {};
42 my $actions = delete $args->{actions} || {};
7f22a5aa 43 my $attr_value = $self->merge_config_hashes($actions, $action);
44 $self->_controller_actions($attr_value);
45}
5ee249f2 46
d0e5dfb5 47
48
5ee249f2 49=head1 NAME
50
51Catalyst::Controller - Catalyst Controller base class
52
53=head1 SYNOPSIS
54
234763d4 55 package MyApp::Controller::Search
a269e0c2 56 use base qw/Catalyst::Controller/;
234763d4 57
27ae4114 58 sub foo : Local {
85d9fce6 59 my ($self,$c,@args) = @_;
27ae4114 60 ...
234763d4 61 } # Dispatches to /search/foo
5ee249f2 62
63=head1 DESCRIPTION
64
a269e0c2 65Controllers are where the actions in the Catalyst framework
66reside. Each action is represented by a function with an attribute to
67identify what kind of action it is. See the L<Catalyst::Dispatcher>
68for more info about how Catalyst dispatches to actions.
234763d4 69
70=cut
71
ae29b412 72#I think both of these could be attributes. doesn't really seem like they need
73#to ble class data. i think that attributes +default would work just fine
7b41db70 74__PACKAGE__->mk_classdata($_) for qw/_dispatch_steps _action_class/;
234763d4 75
76__PACKAGE__->_dispatch_steps( [qw/_BEGIN _AUTO _ACTION/] );
7b41db70 77__PACKAGE__->_action_class('Catalyst::Action');
234763d4 78
234763d4 79
80sub _DISPATCH : Private {
81 my ( $self, $c ) = @_;
82
83 foreach my $disp ( @{ $self->_dispatch_steps } ) {
84 last unless $c->forward($disp);
85 }
86
87 $c->forward('_END');
88}
89
90sub _BEGIN : Private {
91 my ( $self, $c ) = @_;
92 my $begin = ( $c->get_actions( 'begin', $c->namespace ) )[-1];
93 return 1 unless $begin;
94 $begin->dispatch( $c );
95 return !@{ $c->error };
96}
97
98sub _AUTO : Private {
99 my ( $self, $c ) = @_;
100 my @auto = $c->get_actions( 'auto', $c->namespace );
101 foreach my $auto (@auto) {
102 $auto->dispatch( $c );
103 return 0 unless $c->state;
104 }
105 return 1;
106}
107
108sub _ACTION : Private {
109 my ( $self, $c ) = @_;
110 if ( ref $c->action
111 && $c->action->can('execute')
53119b78 112 && defined $c->req->action )
234763d4 113 {
114 $c->action->dispatch( $c );
115 }
116 return !@{ $c->error };
117}
118
119sub _END : Private {
120 my ( $self, $c ) = @_;
121 my $end = ( $c->get_actions( 'end', $c->namespace ) )[-1];
122 return 1 unless $end;
123 $end->dispatch( $c );
124 return !@{ $c->error };
125}
126
234763d4 127sub action_for {
128 my ( $self, $name ) = @_;
129 my $app = ($self->isa('Catalyst') ? $self : $self->_application);
130 return $app->dispatcher->get_action($name, $self->action_namespace);
131}
132
27ae4114 133#my opinion is that this whole sub really should be a builder method, not
ae29b412 134#something that happens on every call. Anyone else disagree?? -- groditi
135## -- apparently this is all just waiting for app/ctx split
136around action_namespace => sub {
137 my $orig = shift;
234763d4 138 my ( $self, $c ) = @_;
ae29b412 139
df960201 140 my $class = ref($self) || $self;
141 my $appclass = ref($c) || $c;
ae29b412 142 if( ref($self) ){
143 return $self->$orig if $self->has_action_namespace;
144 } else {
df960201 145 return $class->config->{namespace} if exists $class->config->{namespace};
234763d4 146 }
234763d4 147
ae29b412 148 my $case_s;
149 if( $c ){
df960201 150 $case_s = $appclass->config->{case_sensitive};
ae29b412 151 } else {
152 if ($self->isa('Catalyst')) {
df960201 153 $case_s = $class->config->{case_sensitive};
ae29b412 154 } else {
155 if (ref $self) {
df960201 156 $case_s = ref($self->_application)->config->{case_sensitive};
ae29b412 157 } else {
158 confess("Can't figure out case_sensitive setting");
159 }
160 }
234763d4 161 }
ae29b412 162
8f6cebb2 163 my $namespace = Catalyst::Utils::class2prefix($self->catalyst_component_name, $case_s) || '';
ae29b412 164 $self->$orig($namespace) if ref($self);
165 return $namespace;
166};
167
168#Once again, this is probably better written as a builder method
169around path_prefix => sub {
170 my $orig = shift;
171 my $self = shift;
172 if( ref($self) ){
173 return $self->$orig if $self->has_path_prefix;
174 } else {
175 return $self->config->{path} if exists $self->config->{path};
176 }
177 my $namespace = $self->action_namespace(@_);
178 $self->$orig($namespace) if ref($self);
179 return $namespace;
180};
234763d4 181
9ab7d83d 182sub get_action_methods {
183 my $self = shift;
2bf074ab 184 my $meta = find_meta($self) || confess("No metaclass setup for $self");
69048792 185 confess(
186 sprintf "Metaclass %s for %s cannot support register_actions.",
187 ref $meta, $meta->name,
188 ) unless $meta->can('get_nearest_methods_with_attributes');
cf37d21a 189 my @methods = $meta->get_nearest_methods_with_attributes;
fa649eb7 190
191 # actions specified via config are also action_methods
192 push(
193 @methods,
194 map {
d0e78355 195 $meta->find_method_by_name($_)
e87273a4 196 || confess( sprintf 'Action "%s" is not available from controller %s',
197 $_, ref $self )
ed9d06b6 198 } grep {
199 # '*' is a special action configuration key to apply config to all
200 # actions. It's not to be looked up as a method
201 # name. _controller_actions should probably be cleaned up before
202 # we even get here.
203 $_ ne '*'
fa649eb7 204 } keys %{ $self->_controller_actions }
205 ) if ( ref $self );
4f4ab5b4 206 return uniq @methods;
9ab7d83d 207}
234763d4 208
fa649eb7 209
234763d4 210sub register_actions {
211 my ( $self, $c ) = @_;
9ab7d83d 212 $self->register_action_methods( $c, $self->get_action_methods );
213}
214
215sub register_action_methods {
216 my ( $self, $c, @methods ) = @_;
8f6cebb2 217 my $class = $self->catalyst_component_name;
ae29b412 218 #this is still not correct for some reason.
234763d4 219 my $namespace = $self->action_namespace($c);
234763d4 220
f3c5b1c9 221 # FIXME - fugly
a202886b 222 if (!blessed($self) && $self eq $c && scalar(@methods)) {
f3c5b1c9 223 my @really_bad_methods = grep { ! /^_(DISPATCH|BEGIN|AUTO|ACTION|END)$/ } map { $_->name } @methods;
224 if (scalar(@really_bad_methods)) {
225 $c->log->warn("Action methods (" . join(', ', @really_bad_methods) . ") found defined in your application class, $self. This is deprecated, please move them into a Root controller.");
226 }
a202886b 227 }
d2598ac8 228
ba545c13 229 foreach my $method (@methods) {
230 my $name = $method->name;
d0f30dbc 231 # Horrible hack! All method metaclasses should have an attributes
232 # method, core Moose bug - see r13354.
10e970e4 233 my $attributes = $method->can('attributes') ? $method->attributes : [];
ba545c13 234 my $attrs = $self->_parse_attrs( $c, $name, @{ $attributes } );
234763d4 235 if ( $attrs->{Private} && ( keys %$attrs > 1 ) ) {
236 $c->log->debug( 'Bad action definition "'
ba545c13 237 . join( ' ', @{ $attributes } )
238 . qq/" for "$class->$name"/ )
234763d4 239 if $c->debug;
240 next;
241 }
bc677969 242 my $reverse = $namespace ? "${namespace}/${name}" : $name;
234763d4 243 my $action = $self->create_action(
ba545c13 244 name => $name,
245 code => $method->body,
234763d4 246 reverse => $reverse,
247 namespace => $namespace,
248 class => $class,
249 attributes => $attrs,
250 );
251
252 $c->dispatcher->register( $c, $action );
253 }
254}
255
f0a9b791 256sub action_class {
7b41db70 257 my $self = shift;
258 my %args = @_;
234763d4 259
260 my $class = (exists $args{attributes}{ActionClass}
f0a9b791 261 ? $args{attributes}{ActionClass}[0]
262 : $self->_action_class);
263
ae29b412 264 Class::MOP::load_class($class);
f0a9b791 265 return $class;
266}
267
268sub create_action {
269 my $self = shift;
270 my %args = @_;
a7e955ae 271
f0a9b791 272 my $class = $self->action_class(%args);
a7e955ae 273 my $action_args = $self->config->{action_args};
f0a9b791 274
a7e955ae 275 my %extra_args = (
276 %{ $action_args->{'*'} || {} },
277 %{ $action_args->{ $args{name} } || {} },
278 );
279
280 return $class->new({ %extra_args, %args });
234763d4 281}
282
283sub _parse_attrs {
284 my ( $self, $c, $name, @attrs ) = @_;
285
286 my %raw_attributes;
287
288 foreach my $attr (@attrs) {
289
290 # Parse out :Foo(bar) into Foo => bar etc (and arrayify)
291
292 if ( my ( $key, $value ) = ( $attr =~ /^(.*?)(?:\(\s*(.+?)\s*\))?$/ ) )
293 {
294
295 if ( defined $value ) {
296 ( $value =~ s/^'(.*)'$/$1/ ) || ( $value =~ s/^"(.*)"/$1/ );
297 }
298 push( @{ $raw_attributes{$key} }, $value );
299 }
300 }
301
ae29b412 302 my $actions;
303 if( ref($self) ) {
637be086 304 $actions = $self->_controller_actions;
ae29b412 305 } else {
306 my $cfg = $self->config;
307 $actions = $self->merge_config_hashes($cfg->{actions}, $cfg->{action});
234763d4 308 }
309
ed9d06b6 310 %raw_attributes = (
311 %raw_attributes,
312 exists $actions->{$name} ? %{ $actions->{$name } } : (),
313 );
ae29b412 314
ed9d06b6 315 # Private actions with additional attributes will raise a warning and then
316 # be ignored. Adding '*' arguments to the default _DISPATCH / etc. methods,
317 # which are Private, will prevent those from being registered. They should
318 # probably be turned into :Actions instead, or we might want to otherwise
319 # disambiguate between those built-in internal actions and user-level
320 # Private ones.
321 %raw_attributes = (
322 (exists $actions->{'*'} ? %{ $actions->{'*'} } : ()),
323 %raw_attributes,
324 ) unless $raw_attributes{Private};
ae29b412 325
234763d4 326 my %final_attributes;
327
328 foreach my $key (keys %raw_attributes) {
329
330 my $raw = $raw_attributes{$key};
331
332 foreach my $value (ref($raw) eq 'ARRAY' ? @$raw : $raw) {
333
334 my $meth = "_parse_${key}_attr";
ae29b412 335 if ( my $code = $self->can($meth) ) {
336 ( $key, $value ) = $self->$code( $c, $name, $value );
234763d4 337 }
338 push( @{ $final_attributes{$key} }, $value );
339 }
340 }
341
342 return \%final_attributes;
343}
344
345sub _parse_Global_attr {
346 my ( $self, $c, $name, $value ) = @_;
347 return $self->_parse_Path_attr( $c, $name, "/$name" );
348}
349
350sub _parse_Absolute_attr { shift->_parse_Global_attr(@_); }
351
352sub _parse_Local_attr {
353 my ( $self, $c, $name, $value ) = @_;
354 return $self->_parse_Path_attr( $c, $name, $name );
355}
356
357sub _parse_Relative_attr { shift->_parse_Local_attr(@_); }
358
359sub _parse_Path_attr {
360 my ( $self, $c, $name, $value ) = @_;
53119b78 361 $value = '' if !defined $value;
234763d4 362 if ( $value =~ m!^/! ) {
363 return ( 'Path', $value );
364 }
365 elsif ( length $value ) {
366 return ( 'Path', join( '/', $self->path_prefix($c), $value ) );
367 }
368 else {
369 return ( 'Path', $self->path_prefix($c) );
370 }
371}
372
373sub _parse_Regex_attr {
374 my ( $self, $c, $name, $value ) = @_;
375 return ( 'Regex', $value );
376}
377
378sub _parse_Regexp_attr { shift->_parse_Regex_attr(@_); }
379
380sub _parse_LocalRegex_attr {
381 my ( $self, $c, $name, $value ) = @_;
382 unless ( $value =~ s/^\^// ) { $value = "(?:.*?)$value"; }
19c01ee1 383
384 my $prefix = $self->path_prefix( $c );
385 $prefix .= '/' if length( $prefix );
27ae4114 386
19c01ee1 387 return ( 'Regex', "^${prefix}${value}" );
234763d4 388}
389
390sub _parse_LocalRegexp_attr { shift->_parse_LocalRegex_attr(@_); }
391
f3107403 392sub _parse_Chained_attr {
393 my ($self, $c, $name, $value) = @_;
394
395 if (defined($value) && length($value)) {
396 if ($value eq '.') {
397 $value = '/'.$self->action_namespace($c);
fb56008f 398 } elsif (my ($rel, $rest) = $value =~ /^((?:\.{2}\/)+)(.*)$/) {
eb270c30 399 my @parts = split '/', $self->action_namespace($c);
fb56008f 400 my @levels = split '/', $rel;
401
402 $value = '/'.join('/', @parts[0 .. $#parts - @levels], $rest);
f3107403 403 } elsif ($value !~ m/^\//) {
404 my $action_ns = $self->action_namespace($c);
405
406 if ($action_ns) {
407 $value = '/'.join('/', $action_ns, $value);
408 } else {
409 $value = '/'.$value; # special case namespace '' (root)
410 }
411 }
412 } else {
413 $value = '/'
414 }
415
416 return Chained => $value;
417}
418
9356b981 419sub _parse_ChainedParent_attr {
420 my ($self, $c, $name, $value) = @_;
421 return $self->_parse_Chained_attr($c, $name, '../'.$name);
422}
423
e5d2cfdb 424sub _parse_PathPrefix_attr {
02825551 425 my ( $self, $c ) = @_;
426 return PathPart => $self->path_prefix($c);
e5d2cfdb 427}
428
234763d4 429sub _parse_ActionClass_attr {
430 my ( $self, $c, $name, $value ) = @_;
5d8129e9 431 my $appname = $self->_application;
432 $value = Catalyst::Utils::resolve_namespace($appname . '::Action', $self->_action_class, $value);
234763d4 433 return ( 'ActionClass', $value );
434}
435
9287719b 436sub _parse_MyAction_attr {
437 my ( $self, $c, $name, $value ) = @_;
438
439 my $appclass = Catalyst::Utils::class2appclass($self);
440 $value = "${appclass}::Action::${value}";
234763d4 441
9287719b 442 return ( 'ActionClass', $value );
443}
234763d4 444
ae29b412 445__PACKAGE__->meta->make_immutable;
446
234763d4 4471;
448
449__END__
450
451=head1 CONFIGURATION
452
a269e0c2 453Like any other L<Catalyst::Component>, controllers have a config hash,
454accessible through $self->config from the controller actions. Some
455settings are in use by the Catalyst framework:
234763d4 456
457=head2 namespace
458
a269e0c2 459This specifies the internal namespace the controller should be bound
460to. By default the controller is bound to the URI version of the
461controller name. For instance controller 'MyApp::Controller::Foo::Bar'
462will be bound to 'foo/bar'. The default Root controller is an example
463of setting namespace to '' (the null string).
234763d4 464
27ae4114 465=head2 path
234763d4 466
467Sets 'path_prefix', as described below.
468
0a2577a8 469=head2 action
470
471Allows you to set the attributes that the dispatcher creates actions out of.
472This allows you to do 'rails style routes', or override some of the
473attribute defintions of actions composed from Roles.
474You can set arguments globally (for all actions of the controller) and
475specifically (for a single action).
476
477 __PACKAGE__->config(
478 action => {
479 '*' => { Chained => 'base', Args => 0 },
480 base => { Chained => '/', PathPart => '', CaptureArgs => 0 },
481 },
482 );
483
484In the case above every sub in the package would be made into a Chain
485endpoint with a URI the same as the sub name for each sub, chained
486to the sub named C<base>. Ergo dispatch to C</example> would call the
487C<base> method, then the C<example> method.
488
c8136648 489=head2 action_args
490
4d4e5de8 491Allows you to set constructor arguments on your actions. You can set arguments
0a2577a8 492globally and specifically (as above).
493This is particularly useful when using C<ActionRole>s
b939ae6b 494(L<Catalyst::Controller::ActionRole>) and custom C<ActionClass>es.
c8136648 495
b939ae6b 496 __PACKAGE__->config(
c8136648 497 action_args => {
b939ae6b 498 '*' => { globalarg1 => 'hello', globalarg2 => 'goodbye' },
499 'specific_action' => { customarg => 'arg1' },
cea3f28a 500 },
b939ae6b 501 );
cea3f28a 502
b939ae6b 503In the case above the action class associated with C<specific_action> would get
504passed the following arguments, in addition to the normal action constructor
505arguments, when it is instantiated:
506
507 (globalarg1 => 'hello', globalarg2 => 'goodbye', customarg => 'arg1')
c8136648 508
234763d4 509=head1 METHODS
510
c4d02967 511=head2 BUILDARGS ($app, @args)
234763d4 512
c4d02967 513From L<Catalyst::Component::ApplicationAttribute>, stashes the application
514instance as $self->_application.
234763d4 515
516=head2 $self->action_for('name')
517
a269e0c2 518Returns the Catalyst::Action object (if any) for a given method name
519in this component.
234763d4 520
234763d4 521=head2 $self->action_namespace($c)
522
a269e0c2 523Returns the private namespace for actions in this component. Defaults
524to a value from the controller name (for
525e.g. MyApp::Controller::Foo::Bar becomes "foo/bar") or can be
526overridden from the "namespace" config key.
234763d4 527
528
529=head2 $self->path_prefix($c)
530
e5d2cfdb 531Returns the default path prefix for :PathPrefix, :Local, :LocalRegex and
532relative :Path actions in this component. Defaults to the action_namespace or
a269e0c2 533can be overridden from the "path" config key.
234763d4 534
c4d02967 535=head2 $self->register_actions($c)
536
537Finds all applicable actions for this component, creates
538Catalyst::Action objects (using $self->create_action) for them and
539registers them with $c->dispatcher.
540
541=head2 $self->get_action_methods()
542
543Returns a list of L<Moose::Meta::Method> objects, doing the
544L<MooseX::MethodAttributes::Role::Meta::Method> role, which are the set of
545action methods for this package.
546
547=head2 $self->register_action_methods($c, @methods)
548
549Creates action objects for a set of action methods using C< create_action >,
550and registers them with the dispatcher.
551
f0a9b791 552=head2 $self->action_class(%args)
553
554Used when a controller is creating an action to determine the correct base
24d2dfaf 555action class to use.
f0a9b791 556
234763d4 557=head2 $self->create_action(%args)
558
a269e0c2 559Called with a hash of data to be use for construction of a new
560Catalyst::Action (or appropriate sub/alternative class) object.
234763d4 561
a269e0c2 562=head2 $self->_application
234763d4 563
564=head2 $self->_app
565
566Returns the application instance stored by C<new()>
5ee249f2 567
0bf7ab71 568=head1 AUTHORS
5ee249f2 569
0bf7ab71 570Catalyst Contributors, see Catalyst.pm
5ee249f2 571
572=head1 COPYRIGHT
573
536bee89 574This library is free software. You can redistribute it and/or modify
a269e0c2 575it under the same terms as Perl itself.
5ee249f2 576
577=cut