Create branch register_actions.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Controller.pm
CommitLineData
5ee249f2 1package Catalyst::Controller;
2
ae29b412 3use Moose;
4use Moose::Util qw/find_meta/;
5
6use namespace::clean -except => 'meta';
7
8# Note - Must be done at compile time due to attributes (::AttrContainer)
9BEGIN { extends qw/Catalyst::Component Catalyst::AttrContainer/; }
234763d4 10
11use Catalyst::Exception;
12use Catalyst::Utils;
ae29b412 13
14with 'Catalyst::Component::ApplicationAttribute';
15
16has path_prefix =>
17 (
18 is => 'rw',
19 isa => 'Str',
20 init_arg => 'path',
21 predicate => 'has_path_prefix',
22 );
23
24has action_namespace =>
25 (
26 is => 'rw',
27 isa => 'Str',
28 init_arg => 'namespace',
29 predicate => 'has_action_namespace',
30 );
31
32has actions =>
33 (
34 is => 'rw',
35 isa => 'HashRef',
36 init_arg => undef,
37 );
38
39sub BUILD {
40 my ($self, $args) = @_;
41 my $action = delete $args->{action} || {};
42 my $actions = delete $args->{actions} || {};
43 my $attr_value = $self->merge_config_hashes($actions, $action);
44 $self->actions($attr_value);
45}
5ee249f2 46
47=head1 NAME
48
49Catalyst::Controller - Catalyst Controller base class
50
51=head1 SYNOPSIS
52
234763d4 53 package MyApp::Controller::Search
a269e0c2 54 use base qw/Catalyst::Controller/;
234763d4 55
56 sub foo : Local {
85d9fce6 57 my ($self,$c,@args) = @_;
58 ...
234763d4 59 } # Dispatches to /search/foo
5ee249f2 60
61=head1 DESCRIPTION
62
a269e0c2 63Controllers are where the actions in the Catalyst framework
64reside. Each action is represented by a function with an attribute to
65identify what kind of action it is. See the L<Catalyst::Dispatcher>
66for more info about how Catalyst dispatches to actions.
234763d4 67
68=cut
69
ae29b412 70#I think both of these could be attributes. doesn't really seem like they need
71#to ble class data. i think that attributes +default would work just fine
234763d4 72__PACKAGE__->mk_classdata($_) for qw/_dispatch_steps _action_class/;
73
74__PACKAGE__->_dispatch_steps( [qw/_BEGIN _AUTO _ACTION/] );
75__PACKAGE__->_action_class('Catalyst::Action');
76
234763d4 77
78sub _DISPATCH : Private {
79 my ( $self, $c ) = @_;
80
81 foreach my $disp ( @{ $self->_dispatch_steps } ) {
82 last unless $c->forward($disp);
83 }
84
85 $c->forward('_END');
86}
87
88sub _BEGIN : Private {
89 my ( $self, $c ) = @_;
90 my $begin = ( $c->get_actions( 'begin', $c->namespace ) )[-1];
91 return 1 unless $begin;
92 $begin->dispatch( $c );
93 return !@{ $c->error };
94}
95
96sub _AUTO : Private {
97 my ( $self, $c ) = @_;
98 my @auto = $c->get_actions( 'auto', $c->namespace );
99 foreach my $auto (@auto) {
100 $auto->dispatch( $c );
101 return 0 unless $c->state;
102 }
103 return 1;
104}
105
106sub _ACTION : Private {
107 my ( $self, $c ) = @_;
108 if ( ref $c->action
109 && $c->action->can('execute')
53119b78 110 && defined $c->req->action )
234763d4 111 {
112 $c->action->dispatch( $c );
113 }
114 return !@{ $c->error };
115}
116
117sub _END : Private {
118 my ( $self, $c ) = @_;
119 my $end = ( $c->get_actions( 'end', $c->namespace ) )[-1];
120 return 1 unless $end;
121 $end->dispatch( $c );
122 return !@{ $c->error };
123}
124
234763d4 125sub action_for {
126 my ( $self, $name ) = @_;
127 my $app = ($self->isa('Catalyst') ? $self : $self->_application);
128 return $app->dispatcher->get_action($name, $self->action_namespace);
129}
130
ae29b412 131#my opinion is that this whole sub really should be a builder method, not
132#something that happens on every call. Anyone else disagree?? -- groditi
133## -- apparently this is all just waiting for app/ctx split
134around action_namespace => sub {
135 my $orig = shift;
234763d4 136 my ( $self, $c ) = @_;
ae29b412 137
138 if( ref($self) ){
139 return $self->$orig if $self->has_action_namespace;
140 } else {
141 return $self->config->{namespace} if exists $self->config->{namespace};
234763d4 142 }
234763d4 143
ae29b412 144 my $case_s;
145 if( $c ){
146 $case_s = $c->config->{case_sensitive};
147 } else {
148 if ($self->isa('Catalyst')) {
149 $case_s = $self->config->{case_sensitive};
150 } else {
151 if (ref $self) {
152 $case_s = $self->_application->config->{case_sensitive};
153 } else {
154 confess("Can't figure out case_sensitive setting");
155 }
156 }
234763d4 157 }
ae29b412 158
159 my $namespace = Catalyst::Utils::class2prefix(ref($self) || $self, $case_s) || '';
160 $self->$orig($namespace) if ref($self);
161 return $namespace;
162};
163
164#Once again, this is probably better written as a builder method
165around path_prefix => sub {
166 my $orig = shift;
167 my $self = shift;
168 if( ref($self) ){
169 return $self->$orig if $self->has_path_prefix;
170 } else {
171 return $self->config->{path} if exists $self->config->{path};
172 }
173 my $namespace = $self->action_namespace(@_);
174 $self->$orig($namespace) if ref($self);
175 return $namespace;
176};
234763d4 177
178
179sub register_actions {
180 my ( $self, $c ) = @_;
181 my $class = ref $self || $self;
ae29b412 182 #this is still not correct for some reason.
234763d4 183 my $namespace = $self->action_namespace($c);
ae29b412 184 my $meta = find_meta($self);
185 my %methods = map { $_->body => $_->name }
186 $meta->get_all_methods;
234763d4 187
188 # Advanced inheritance support for plugins and the like
ae29b412 189 #moose todo: migrate to eliminate CDI compat
234763d4 190 my @action_cache;
ae29b412 191 for my $isa ( $meta->superclasses, $class ) {
192 if(my $coderef = $isa->can('_action_cache')){
193 push(@action_cache, @{ $isa->$coderef });
234763d4 194 }
195 }
196
197 foreach my $cache (@action_cache) {
198 my $code = $cache->[0];
199 my $method = delete $methods{$code}; # avoid dupe registers
200 next unless $method;
201 my $attrs = $self->_parse_attrs( $c, $method, @{ $cache->[1] } );
202 if ( $attrs->{Private} && ( keys %$attrs > 1 ) ) {
203 $c->log->debug( 'Bad action definition "'
204 . join( ' ', @{ $cache->[1] } )
205 . qq/" for "$class->$method"/ )
206 if $c->debug;
207 next;
208 }
ae29b412 209 my $reverse = $namespace ? "${namespace}/${method}" : $method;
234763d4 210 my $action = $self->create_action(
211 name => $method,
212 code => $code,
213 reverse => $reverse,
214 namespace => $namespace,
215 class => $class,
216 attributes => $attrs,
217 );
218
219 $c->dispatcher->register( $c, $action );
220 }
221}
222
223sub create_action {
224 my $self = shift;
225 my %args = @_;
226
227 my $class = (exists $args{attributes}{ActionClass}
228 ? $args{attributes}{ActionClass}[0]
229 : $self->_action_class);
230
ae29b412 231 Class::MOP::load_class($class);
234763d4 232 return $class->new( \%args );
233}
234
235sub _parse_attrs {
236 my ( $self, $c, $name, @attrs ) = @_;
237
238 my %raw_attributes;
239
240 foreach my $attr (@attrs) {
241
242 # Parse out :Foo(bar) into Foo => bar etc (and arrayify)
243
244 if ( my ( $key, $value ) = ( $attr =~ /^(.*?)(?:\(\s*(.+?)\s*\))?$/ ) )
245 {
246
247 if ( defined $value ) {
248 ( $value =~ s/^'(.*)'$/$1/ ) || ( $value =~ s/^"(.*)"/$1/ );
249 }
250 push( @{ $raw_attributes{$key} }, $value );
251 }
252 }
253
ae29b412 254 #I know that the original behavior was to ignore action if actions was set
255 # but i actually think this may be a little more sane? we can always remove
256 # the merge behavior quite easily and go back to having actions have
257 # presedence over action by modifying the keys. i honestly think this is
258 # superior while mantaining really high degree of compat
259 my $actions;
260 if( ref($self) ) {
261 $actions = $self->actions;
262 } else {
263 my $cfg = $self->config;
264 $actions = $self->merge_config_hashes($cfg->{actions}, $cfg->{action});
234763d4 265 }
266
ae29b412 267 %raw_attributes = ((exists $actions->{'*'} ? %{$actions->{'*'}} : ()),
268 %raw_attributes,
269 (exists $actions->{$name} ? %{$actions->{$name}} : ()));
270
271
234763d4 272 my %final_attributes;
273
274 foreach my $key (keys %raw_attributes) {
275
276 my $raw = $raw_attributes{$key};
277
278 foreach my $value (ref($raw) eq 'ARRAY' ? @$raw : $raw) {
279
280 my $meth = "_parse_${key}_attr";
ae29b412 281 if ( my $code = $self->can($meth) ) {
282 ( $key, $value ) = $self->$code( $c, $name, $value );
234763d4 283 }
284 push( @{ $final_attributes{$key} }, $value );
285 }
286 }
287
288 return \%final_attributes;
289}
290
291sub _parse_Global_attr {
292 my ( $self, $c, $name, $value ) = @_;
293 return $self->_parse_Path_attr( $c, $name, "/$name" );
294}
295
296sub _parse_Absolute_attr { shift->_parse_Global_attr(@_); }
297
298sub _parse_Local_attr {
299 my ( $self, $c, $name, $value ) = @_;
300 return $self->_parse_Path_attr( $c, $name, $name );
301}
302
303sub _parse_Relative_attr { shift->_parse_Local_attr(@_); }
304
305sub _parse_Path_attr {
306 my ( $self, $c, $name, $value ) = @_;
53119b78 307 $value = '' if !defined $value;
234763d4 308 if ( $value =~ m!^/! ) {
309 return ( 'Path', $value );
310 }
311 elsif ( length $value ) {
312 return ( 'Path', join( '/', $self->path_prefix($c), $value ) );
313 }
314 else {
315 return ( 'Path', $self->path_prefix($c) );
316 }
317}
318
319sub _parse_Regex_attr {
320 my ( $self, $c, $name, $value ) = @_;
321 return ( 'Regex', $value );
322}
323
324sub _parse_Regexp_attr { shift->_parse_Regex_attr(@_); }
325
326sub _parse_LocalRegex_attr {
327 my ( $self, $c, $name, $value ) = @_;
328 unless ( $value =~ s/^\^// ) { $value = "(?:.*?)$value"; }
19c01ee1 329
330 my $prefix = $self->path_prefix( $c );
331 $prefix .= '/' if length( $prefix );
332
333 return ( 'Regex', "^${prefix}${value}" );
234763d4 334}
335
336sub _parse_LocalRegexp_attr { shift->_parse_LocalRegex_attr(@_); }
337
f3107403 338sub _parse_Chained_attr {
339 my ($self, $c, $name, $value) = @_;
340
341 if (defined($value) && length($value)) {
342 if ($value eq '.') {
343 $value = '/'.$self->action_namespace($c);
fb56008f 344 } elsif (my ($rel, $rest) = $value =~ /^((?:\.{2}\/)+)(.*)$/) {
eb270c30 345 my @parts = split '/', $self->action_namespace($c);
fb56008f 346 my @levels = split '/', $rel;
347
348 $value = '/'.join('/', @parts[0 .. $#parts - @levels], $rest);
f3107403 349 } elsif ($value !~ m/^\//) {
350 my $action_ns = $self->action_namespace($c);
351
352 if ($action_ns) {
353 $value = '/'.join('/', $action_ns, $value);
354 } else {
355 $value = '/'.$value; # special case namespace '' (root)
356 }
357 }
358 } else {
359 $value = '/'
360 }
361
362 return Chained => $value;
363}
364
9356b981 365sub _parse_ChainedParent_attr {
366 my ($self, $c, $name, $value) = @_;
367 return $self->_parse_Chained_attr($c, $name, '../'.$name);
368}
369
e5d2cfdb 370sub _parse_PathPrefix_attr {
371 my $self = shift;
372 return PathPart => $self->path_prefix;
373}
374
234763d4 375sub _parse_ActionClass_attr {
376 my ( $self, $c, $name, $value ) = @_;
377 unless ( $value =~ s/^\+// ) {
378 $value = join('::', $self->_action_class, $value );
379 }
380 return ( 'ActionClass', $value );
381}
382
9287719b 383sub _parse_MyAction_attr {
384 my ( $self, $c, $name, $value ) = @_;
385
386 my $appclass = Catalyst::Utils::class2appclass($self);
387 $value = "${appclass}::Action::${value}";
234763d4 388
9287719b 389 return ( 'ActionClass', $value );
390}
234763d4 391
ae29b412 392__PACKAGE__->meta->make_immutable;
393
234763d4 3941;
395
396__END__
397
398=head1 CONFIGURATION
399
a269e0c2 400Like any other L<Catalyst::Component>, controllers have a config hash,
401accessible through $self->config from the controller actions. Some
402settings are in use by the Catalyst framework:
234763d4 403
404=head2 namespace
405
a269e0c2 406This specifies the internal namespace the controller should be bound
407to. By default the controller is bound to the URI version of the
408controller name. For instance controller 'MyApp::Controller::Foo::Bar'
409will be bound to 'foo/bar'. The default Root controller is an example
410of setting namespace to '' (the null string).
234763d4 411
2cbd9d12 412=head2 path
234763d4 413
414Sets 'path_prefix', as described below.
415
416=head1 METHODS
417
418=head2 $class->new($app, @args)
419
420Proxies through to NEXT::new and stashes the application instance as
421$self->_application.
422
423=head2 $self->action_for('name')
424
a269e0c2 425Returns the Catalyst::Action object (if any) for a given method name
426in this component.
234763d4 427
428=head2 $self->register_actions($c)
429
a269e0c2 430Finds all applicable actions for this component, creates
431Catalyst::Action objects (using $self->create_action) for them and
432registers them with $c->dispatcher.
234763d4 433
434=head2 $self->action_namespace($c)
435
a269e0c2 436Returns the private namespace for actions in this component. Defaults
437to a value from the controller name (for
438e.g. MyApp::Controller::Foo::Bar becomes "foo/bar") or can be
439overridden from the "namespace" config key.
234763d4 440
441
442=head2 $self->path_prefix($c)
443
e5d2cfdb 444Returns the default path prefix for :PathPrefix, :Local, :LocalRegex and
445relative :Path actions in this component. Defaults to the action_namespace or
a269e0c2 446can be overridden from the "path" config key.
234763d4 447
448=head2 $self->create_action(%args)
449
a269e0c2 450Called with a hash of data to be use for construction of a new
451Catalyst::Action (or appropriate sub/alternative class) object.
234763d4 452
453Primarily designed for the use of register_actions.
454
a269e0c2 455=head2 $self->_application
234763d4 456
457=head2 $self->_app
458
459Returns the application instance stored by C<new()>
5ee249f2 460
0bf7ab71 461=head1 AUTHORS
5ee249f2 462
0bf7ab71 463Catalyst Contributors, see Catalyst.pm
5ee249f2 464
465=head1 COPYRIGHT
466
a269e0c2 467This program is free software, you can redistribute it and/or modify
468it under the same terms as Perl itself.
5ee249f2 469
470=cut