Entirely the wrong branch, idiot. Remove r13417
[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");
d0e5dfb5 185 confess("Metaclass "
fa649eb7 186 . ref($meta) . " for "
187 . $meta->name
188 . " cannot support register_actions." )
189 unless $meta->can('get_nearest_methods_with_attributes');
cf37d21a 190 my @methods = $meta->get_nearest_methods_with_attributes;
fa649eb7 191
192 # actions specified via config are also action_methods
193 push(
194 @methods,
195 map {
d0e78355 196 $meta->find_method_by_name($_)
1b79e199 197 || confess( 'Action "'
fa649eb7 198 . $_
199 . '" is not available from controller '
200 . ( ref $self ) )
201 } keys %{ $self->_controller_actions }
202 ) if ( ref $self );
4f4ab5b4 203 return uniq @methods;
9ab7d83d 204}
234763d4 205
fa649eb7 206
234763d4 207sub register_actions {
208 my ( $self, $c ) = @_;
9ab7d83d 209 $self->register_action_methods( $c, $self->get_action_methods );
210}
211
212sub register_action_methods {
213 my ( $self, $c, @methods ) = @_;
8f6cebb2 214 my $class = $self->catalyst_component_name;
ae29b412 215 #this is still not correct for some reason.
234763d4 216 my $namespace = $self->action_namespace($c);
234763d4 217
f3c5b1c9 218 # FIXME - fugly
a202886b 219 if (!blessed($self) && $self eq $c && scalar(@methods)) {
f3c5b1c9 220 my @really_bad_methods = grep { ! /^_(DISPATCH|BEGIN|AUTO|ACTION|END)$/ } map { $_->name } @methods;
221 if (scalar(@really_bad_methods)) {
222 $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.");
223 }
a202886b 224 }
d2598ac8 225
ba545c13 226 foreach my $method (@methods) {
227 my $name = $method->name;
10e970e4 228 my $attributes = $method->can('attributes') ? $method->attributes : [];
ba545c13 229 my $attrs = $self->_parse_attrs( $c, $name, @{ $attributes } );
234763d4 230 if ( $attrs->{Private} && ( keys %$attrs > 1 ) ) {
231 $c->log->debug( 'Bad action definition "'
ba545c13 232 . join( ' ', @{ $attributes } )
233 . qq/" for "$class->$name"/ )
234763d4 234 if $c->debug;
235 next;
236 }
bc677969 237 my $reverse = $namespace ? "${namespace}/${name}" : $name;
234763d4 238 my $action = $self->create_action(
ba545c13 239 name => $name,
240 code => $method->body,
234763d4 241 reverse => $reverse,
242 namespace => $namespace,
243 class => $class,
244 attributes => $attrs,
245 );
246
247 $c->dispatcher->register( $c, $action );
248 }
249}
250
f0a9b791 251sub action_class {
7b41db70 252 my $self = shift;
253 my %args = @_;
234763d4 254
255 my $class = (exists $args{attributes}{ActionClass}
f0a9b791 256 ? $args{attributes}{ActionClass}[0]
257 : $self->_action_class);
258
ae29b412 259 Class::MOP::load_class($class);
f0a9b791 260 return $class;
261}
262
263sub create_action {
264 my $self = shift;
265 my %args = @_;
a7e955ae 266
f0a9b791 267 my $class = $self->action_class(%args);
a7e955ae 268 my $action_args = $self->config->{action_args};
f0a9b791 269
a7e955ae 270 my %extra_args = (
271 %{ $action_args->{'*'} || {} },
272 %{ $action_args->{ $args{name} } || {} },
273 );
274
275 return $class->new({ %extra_args, %args });
234763d4 276}
277
278sub _parse_attrs {
279 my ( $self, $c, $name, @attrs ) = @_;
280
281 my %raw_attributes;
282
283 foreach my $attr (@attrs) {
284
285 # Parse out :Foo(bar) into Foo => bar etc (and arrayify)
286
287 if ( my ( $key, $value ) = ( $attr =~ /^(.*?)(?:\(\s*(.+?)\s*\))?$/ ) )
288 {
289
290 if ( defined $value ) {
291 ( $value =~ s/^'(.*)'$/$1/ ) || ( $value =~ s/^"(.*)"/$1/ );
292 }
293 push( @{ $raw_attributes{$key} }, $value );
294 }
295 }
296
ae29b412 297 #I know that the original behavior was to ignore action if actions was set
298 # but i actually think this may be a little more sane? we can always remove
299 # the merge behavior quite easily and go back to having actions have
300 # presedence over action by modifying the keys. i honestly think this is
301 # superior while mantaining really high degree of compat
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
ae29b412 310 %raw_attributes = ((exists $actions->{'*'} ? %{$actions->{'*'}} : ()),
311 %raw_attributes,
312 (exists $actions->{$name} ? %{$actions->{$name}} : ()));
313
314
234763d4 315 my %final_attributes;
316
317 foreach my $key (keys %raw_attributes) {
318
319 my $raw = $raw_attributes{$key};
320
321 foreach my $value (ref($raw) eq 'ARRAY' ? @$raw : $raw) {
322
323 my $meth = "_parse_${key}_attr";
ae29b412 324 if ( my $code = $self->can($meth) ) {
325 ( $key, $value ) = $self->$code( $c, $name, $value );
234763d4 326 }
327 push( @{ $final_attributes{$key} }, $value );
328 }
329 }
330
331 return \%final_attributes;
332}
333
334sub _parse_Global_attr {
335 my ( $self, $c, $name, $value ) = @_;
336 return $self->_parse_Path_attr( $c, $name, "/$name" );
337}
338
339sub _parse_Absolute_attr { shift->_parse_Global_attr(@_); }
340
341sub _parse_Local_attr {
342 my ( $self, $c, $name, $value ) = @_;
343 return $self->_parse_Path_attr( $c, $name, $name );
344}
345
346sub _parse_Relative_attr { shift->_parse_Local_attr(@_); }
347
348sub _parse_Path_attr {
349 my ( $self, $c, $name, $value ) = @_;
53119b78 350 $value = '' if !defined $value;
234763d4 351 if ( $value =~ m!^/! ) {
352 return ( 'Path', $value );
353 }
354 elsif ( length $value ) {
355 return ( 'Path', join( '/', $self->path_prefix($c), $value ) );
356 }
357 else {
358 return ( 'Path', $self->path_prefix($c) );
359 }
360}
361
362sub _parse_Regex_attr {
363 my ( $self, $c, $name, $value ) = @_;
364 return ( 'Regex', $value );
365}
366
367sub _parse_Regexp_attr { shift->_parse_Regex_attr(@_); }
368
369sub _parse_LocalRegex_attr {
370 my ( $self, $c, $name, $value ) = @_;
371 unless ( $value =~ s/^\^// ) { $value = "(?:.*?)$value"; }
19c01ee1 372
373 my $prefix = $self->path_prefix( $c );
374 $prefix .= '/' if length( $prefix );
27ae4114 375
19c01ee1 376 return ( 'Regex', "^${prefix}${value}" );
234763d4 377}
378
379sub _parse_LocalRegexp_attr { shift->_parse_LocalRegex_attr(@_); }
380
f3107403 381sub _parse_Chained_attr {
382 my ($self, $c, $name, $value) = @_;
383
384 if (defined($value) && length($value)) {
385 if ($value eq '.') {
386 $value = '/'.$self->action_namespace($c);
fb56008f 387 } elsif (my ($rel, $rest) = $value =~ /^((?:\.{2}\/)+)(.*)$/) {
eb270c30 388 my @parts = split '/', $self->action_namespace($c);
fb56008f 389 my @levels = split '/', $rel;
390
391 $value = '/'.join('/', @parts[0 .. $#parts - @levels], $rest);
f3107403 392 } elsif ($value !~ m/^\//) {
393 my $action_ns = $self->action_namespace($c);
394
395 if ($action_ns) {
396 $value = '/'.join('/', $action_ns, $value);
397 } else {
398 $value = '/'.$value; # special case namespace '' (root)
399 }
400 }
401 } else {
402 $value = '/'
403 }
404
405 return Chained => $value;
406}
407
9356b981 408sub _parse_ChainedParent_attr {
409 my ($self, $c, $name, $value) = @_;
410 return $self->_parse_Chained_attr($c, $name, '../'.$name);
411}
412
e5d2cfdb 413sub _parse_PathPrefix_attr {
02825551 414 my ( $self, $c ) = @_;
415 return PathPart => $self->path_prefix($c);
e5d2cfdb 416}
417
234763d4 418sub _parse_ActionClass_attr {
419 my ( $self, $c, $name, $value ) = @_;
5d8129e9 420 my $appname = $self->_application;
421 $value = Catalyst::Utils::resolve_namespace($appname . '::Action', $self->_action_class, $value);
234763d4 422 return ( 'ActionClass', $value );
423}
424
9287719b 425sub _parse_MyAction_attr {
426 my ( $self, $c, $name, $value ) = @_;
427
428 my $appclass = Catalyst::Utils::class2appclass($self);
429 $value = "${appclass}::Action::${value}";
234763d4 430
9287719b 431 return ( 'ActionClass', $value );
432}
234763d4 433
ae29b412 434__PACKAGE__->meta->make_immutable;
435
234763d4 4361;
437
438__END__
439
440=head1 CONFIGURATION
441
a269e0c2 442Like any other L<Catalyst::Component>, controllers have a config hash,
443accessible through $self->config from the controller actions. Some
444settings are in use by the Catalyst framework:
234763d4 445
446=head2 namespace
447
a269e0c2 448This specifies the internal namespace the controller should be bound
449to. By default the controller is bound to the URI version of the
450controller name. For instance controller 'MyApp::Controller::Foo::Bar'
451will be bound to 'foo/bar'. The default Root controller is an example
452of setting namespace to '' (the null string).
234763d4 453
27ae4114 454=head2 path
234763d4 455
456Sets 'path_prefix', as described below.
457
0a2577a8 458=head2 action
459
460Allows you to set the attributes that the dispatcher creates actions out of.
461This allows you to do 'rails style routes', or override some of the
462attribute defintions of actions composed from Roles.
463You can set arguments globally (for all actions of the controller) and
464specifically (for a single action).
465
466 __PACKAGE__->config(
467 action => {
468 '*' => { Chained => 'base', Args => 0 },
469 base => { Chained => '/', PathPart => '', CaptureArgs => 0 },
470 },
471 );
472
473In the case above every sub in the package would be made into a Chain
474endpoint with a URI the same as the sub name for each sub, chained
475to the sub named C<base>. Ergo dispatch to C</example> would call the
476C<base> method, then the C<example> method.
477
c8136648 478=head2 action_args
479
4d4e5de8 480Allows you to set constructor arguments on your actions. You can set arguments
0a2577a8 481globally and specifically (as above).
482This is particularly useful when using C<ActionRole>s
b939ae6b 483(L<Catalyst::Controller::ActionRole>) and custom C<ActionClass>es.
c8136648 484
b939ae6b 485 __PACKAGE__->config(
c8136648 486 action_args => {
b939ae6b 487 '*' => { globalarg1 => 'hello', globalarg2 => 'goodbye' },
488 'specific_action' => { customarg => 'arg1' },
cea3f28a 489 },
b939ae6b 490 );
cea3f28a 491
b939ae6b 492In the case above the action class associated with C<specific_action> would get
493passed the following arguments, in addition to the normal action constructor
494arguments, when it is instantiated:
495
496 (globalarg1 => 'hello', globalarg2 => 'goodbye', customarg => 'arg1')
c8136648 497
234763d4 498=head1 METHODS
499
c4d02967 500=head2 BUILDARGS ($app, @args)
234763d4 501
c4d02967 502From L<Catalyst::Component::ApplicationAttribute>, stashes the application
503instance as $self->_application.
234763d4 504
505=head2 $self->action_for('name')
506
a269e0c2 507Returns the Catalyst::Action object (if any) for a given method name
508in this component.
234763d4 509
234763d4 510=head2 $self->action_namespace($c)
511
a269e0c2 512Returns the private namespace for actions in this component. Defaults
513to a value from the controller name (for
514e.g. MyApp::Controller::Foo::Bar becomes "foo/bar") or can be
515overridden from the "namespace" config key.
234763d4 516
517
518=head2 $self->path_prefix($c)
519
e5d2cfdb 520Returns the default path prefix for :PathPrefix, :Local, :LocalRegex and
521relative :Path actions in this component. Defaults to the action_namespace or
a269e0c2 522can be overridden from the "path" config key.
234763d4 523
c4d02967 524=head2 $self->register_actions($c)
525
526Finds all applicable actions for this component, creates
527Catalyst::Action objects (using $self->create_action) for them and
528registers them with $c->dispatcher.
529
530=head2 $self->get_action_methods()
531
532Returns a list of L<Moose::Meta::Method> objects, doing the
533L<MooseX::MethodAttributes::Role::Meta::Method> role, which are the set of
534action methods for this package.
535
536=head2 $self->register_action_methods($c, @methods)
537
538Creates action objects for a set of action methods using C< create_action >,
539and registers them with the dispatcher.
540
f0a9b791 541=head2 $self->action_class(%args)
542
543Used when a controller is creating an action to determine the correct base
544action class to use.
545
234763d4 546=head2 $self->create_action(%args)
547
a269e0c2 548Called with a hash of data to be use for construction of a new
549Catalyst::Action (or appropriate sub/alternative class) object.
234763d4 550
a269e0c2 551=head2 $self->_application
234763d4 552
553=head2 $self->_app
554
555Returns the application instance stored by C<new()>
5ee249f2 556
0bf7ab71 557=head1 AUTHORS
5ee249f2 558
0bf7ab71 559Catalyst Contributors, see Catalyst.pm
5ee249f2 560
561=head1 COPYRIGHT
562
536bee89 563This library is free software. You can redistribute it and/or modify
a269e0c2 564it under the same terms as Perl itself.
5ee249f2 565
566=cut