namespace::clean Catalyst::Controller.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Controller.pm
CommitLineData
5ee249f2 1package Catalyst::Controller;
2
6e58f383 3use Moose;
38c73727 4
5use namespace::clean -except => 'meta';
6
1a23d3da 7# Note - Must be done at compile time due to attributes (::AttrContainer)
8BEGIN { extends qw/Catalyst::Component Catalyst::AttrContainer/; }
e8b9f2a9 9
74c89dea 10use Class::MOP::Object ();
234763d4 11use Catalyst::Exception;
12use Catalyst::Utils;
5ee249f2 13
c1ec627e 14with 'Catalyst::Component::ApplicationAttribute';
9cc543bc 15
0bc4c3ab 16has path_prefix =>
17 (
84ff88cf 18 is => 'rw',
0bc4c3ab 19 isa => 'Str',
20 init_arg => 'path',
21 predicate => 'has_path_prefix',
22 );
23
24has action_namespace =>
25 (
84ff88cf 26 is => 'rw',
0bc4c3ab 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
0bc4c3ab 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}
46
5ee249f2 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
ac5c933b 56 sub foo : Local {
85d9fce6 57 my ($self,$c,@args) = @_;
ac5c933b 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
2361ed67 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
e8b9f2a9 72__PACKAGE__->mk_classdata($_) for qw/_dispatch_steps _action_class/;
234763d4 73
e8b9f2a9 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')
2f381252 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
0fc2d522 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
96d8d513 133## -- apparently this is all just waiting for app/ctx split
0bc4c3ab 134around action_namespace => sub {
0fc2d522 135 my $orig = shift;
136 my ( $self, $c ) = @_;
0bc4c3ab 137
5fb67d52 138 if( ref($self) ){
0bc4c3ab 139 return $self->$orig if $self->has_action_namespace;
4090e3bb 140 } else {
0bc4c3ab 141 return $self->config->{namespace} if exists $self->config->{namespace};
142 }
234763d4 143
0bc4c3ab 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 }
0bc4c3ab 158
84ff88cf 159 my $namespace = Catalyst::Utils::class2prefix(ref($self) || $self, $case_s) || '';
160 $self->$orig($namespace) if ref($self);
161 return $namespace;
0bc4c3ab 162};
163
0fc2d522 164#Once again, this is probably better written as a builder method
0bc4c3ab 165around path_prefix => sub {
166 my $orig = shift;
167 my $self = shift;
5fb67d52 168 if( ref($self) ){
0bc4c3ab 169 return $self->$orig if $self->has_path_prefix;
170 } else {
5fb67d52 171 return $self->config->{path} if exists $self->config->{path};
0bc4c3ab 172 }
84ff88cf 173 my $namespace = $self->action_namespace(@_);
174 $self->$orig($namespace) if ref($self);
175 return $namespace;
0bc4c3ab 176};
234763d4 177
178
179sub register_actions {
180 my ( $self, $c ) = @_;
181 my $class = ref $self || $self;
5fb67d52 182 #this is still not correct for some reason.
234763d4 183 my $namespace = $self->action_namespace($c);
74c89dea 184 my $meta = $self->Class::MOP::Object::meta();
86b3c7aa 185 my %methods = map { $_->body => $_->name }
186 grep { $_->package_name ne 'Moose::Object' } #ignore Moose::Object methods
187 $meta->get_all_methods;
234763d4 188
189 # Advanced inheritance support for plugins and the like
0bc4c3ab 190 #moose todo: migrate to eliminate CDI compat
234763d4 191 my @action_cache;
84ff88cf 192 for my $isa ( $meta->superclasses, $class ) {
193 if(my $coderef = $isa->can('_action_cache')){
194 push(@action_cache, @{ $isa->$coderef });
234763d4 195 }
196 }
197
198 foreach my $cache (@action_cache) {
199 my $code = $cache->[0];
200 my $method = delete $methods{$code}; # avoid dupe registers
201 next unless $method;
202 my $attrs = $self->_parse_attrs( $c, $method, @{ $cache->[1] } );
203 if ( $attrs->{Private} && ( keys %$attrs > 1 ) ) {
204 $c->log->debug( 'Bad action definition "'
205 . join( ' ', @{ $cache->[1] } )
206 . qq/" for "$class->$method"/ )
207 if $c->debug;
208 next;
209 }
5fb67d52 210 my $reverse = $namespace ? "${namespace}/${method}" : $method;
234763d4 211 my $action = $self->create_action(
212 name => $method,
213 code => $code,
214 reverse => $reverse,
215 namespace => $namespace,
216 class => $class,
217 attributes => $attrs,
218 );
219
220 $c->dispatcher->register( $c, $action );
221 }
222}
223
224sub create_action {
225 my $self = shift;
226 my %args = @_;
227
228 my $class = (exists $args{attributes}{ActionClass}
229 ? $args{attributes}{ActionClass}[0]
230 : $self->_action_class);
231
2361ed67 232 Class::MOP::load_class($class);
234763d4 233 return $class->new( \%args );
234}
235
236sub _parse_attrs {
237 my ( $self, $c, $name, @attrs ) = @_;
238
239 my %raw_attributes;
240
241 foreach my $attr (@attrs) {
242
243 # Parse out :Foo(bar) into Foo => bar etc (and arrayify)
244
245 if ( my ( $key, $value ) = ( $attr =~ /^(.*?)(?:\(\s*(.+?)\s*\))?$/ ) )
246 {
247
248 if ( defined $value ) {
249 ( $value =~ s/^'(.*)'$/$1/ ) || ( $value =~ s/^"(.*)"/$1/ );
250 }
251 push( @{ $raw_attributes{$key} }, $value );
252 }
253 }
254
0bc4c3ab 255 #I know that the original behavior was to ignore action if actions was set
256 # but i actually think this may be a little more sane? we can always remove
257 # the merge behavior quite easily and go back to having actions have
258 # presedence over action by modifying the keys. i honestly think this is
259 # superior while mantaining really high degree of compat
260 my $actions;
261 if( ref($self) ) {
262 $actions = $self->actions;
263 } else {
264 my $cfg = $self->config;
265 $actions = $self->merge_config_hashes($cfg->{actions}, $cfg->{action});
234763d4 266 }
267
0bc4c3ab 268 %raw_attributes = ((exists $actions->{'*'} ? %{$actions->{'*'}} : ()),
269 %raw_attributes,
270 (exists $actions->{$name} ? %{$actions->{$name}} : ()));
271
272
234763d4 273 my %final_attributes;
274
275 foreach my $key (keys %raw_attributes) {
276
277 my $raw = $raw_attributes{$key};
278
279 foreach my $value (ref($raw) eq 'ARRAY' ? @$raw : $raw) {
280
281 my $meth = "_parse_${key}_attr";
0bc4c3ab 282 if ( my $code = $self->can($meth) ) {
283 ( $key, $value ) = $self->$code( $c, $name, $value );
234763d4 284 }
285 push( @{ $final_attributes{$key} }, $value );
286 }
287 }
288
289 return \%final_attributes;
290}
291
292sub _parse_Global_attr {
293 my ( $self, $c, $name, $value ) = @_;
294 return $self->_parse_Path_attr( $c, $name, "/$name" );
295}
296
297sub _parse_Absolute_attr { shift->_parse_Global_attr(@_); }
298
299sub _parse_Local_attr {
300 my ( $self, $c, $name, $value ) = @_;
301 return $self->_parse_Path_attr( $c, $name, $name );
302}
303
304sub _parse_Relative_attr { shift->_parse_Local_attr(@_); }
305
306sub _parse_Path_attr {
307 my ( $self, $c, $name, $value ) = @_;
2f381252 308 $value = '' if !defined $value;
234763d4 309 if ( $value =~ m!^/! ) {
310 return ( 'Path', $value );
311 }
312 elsif ( length $value ) {
313 return ( 'Path', join( '/', $self->path_prefix($c), $value ) );
314 }
315 else {
316 return ( 'Path', $self->path_prefix($c) );
317 }
318}
319
320sub _parse_Regex_attr {
321 my ( $self, $c, $name, $value ) = @_;
322 return ( 'Regex', $value );
323}
324
325sub _parse_Regexp_attr { shift->_parse_Regex_attr(@_); }
326
327sub _parse_LocalRegex_attr {
328 my ( $self, $c, $name, $value ) = @_;
329 unless ( $value =~ s/^\^// ) { $value = "(?:.*?)$value"; }
2f381252 330
331 my $prefix = $self->path_prefix( $c );
332 $prefix .= '/' if length( $prefix );
333
334 return ( 'Regex', "^${prefix}${value}" );
234763d4 335}
336
337sub _parse_LocalRegexp_attr { shift->_parse_LocalRegex_attr(@_); }
338
2f381252 339sub _parse_Chained_attr {
340 my ($self, $c, $name, $value) = @_;
341
342 if (defined($value) && length($value)) {
343 if ($value eq '.') {
344 $value = '/'.$self->action_namespace($c);
345 } elsif (my ($rel, $rest) = $value =~ /^((?:\.{2}\/)+)(.*)$/) {
346 my @parts = split '/', $self->action_namespace($c);
347 my @levels = split '/', $rel;
348
349 $value = '/'.join('/', @parts[0 .. $#parts - @levels], $rest);
350 } elsif ($value !~ m/^\//) {
351 my $action_ns = $self->action_namespace($c);
352
353 if ($action_ns) {
354 $value = '/'.join('/', $action_ns, $value);
355 } else {
356 $value = '/'.$value; # special case namespace '' (root)
357 }
358 }
359 } else {
360 $value = '/'
361 }
362
363 return Chained => $value;
364}
365
366sub _parse_ChainedParent_attr {
367 my ($self, $c, $name, $value) = @_;
368 return $self->_parse_Chained_attr($c, $name, '../'.$name);
369}
370
371sub _parse_PathPrefix_attr {
372 my $self = shift;
373 return PathPart => $self->path_prefix;
374}
375
234763d4 376sub _parse_ActionClass_attr {
377 my ( $self, $c, $name, $value ) = @_;
378 unless ( $value =~ s/^\+// ) {
379 $value = join('::', $self->_action_class, $value );
380 }
381 return ( 'ActionClass', $value );
382}
383
9287719b 384sub _parse_MyAction_attr {
385 my ( $self, $c, $name, $value ) = @_;
386
387 my $appclass = Catalyst::Utils::class2appclass($self);
388 $value = "${appclass}::Action::${value}";
234763d4 389
9287719b 390 return ( 'ActionClass', $value );
391}
234763d4 392
46d0346d 393__PACKAGE__->meta->make_immutable;
394
234763d4 3951;
396
397__END__
398
399=head1 CONFIGURATION
400
a269e0c2 401Like any other L<Catalyst::Component>, controllers have a config hash,
402accessible through $self->config from the controller actions. Some
403settings are in use by the Catalyst framework:
234763d4 404
405=head2 namespace
406
a269e0c2 407This specifies the internal namespace the controller should be bound
408to. By default the controller is bound to the URI version of the
409controller name. For instance controller 'MyApp::Controller::Foo::Bar'
410will be bound to 'foo/bar'. The default Root controller is an example
411of setting namespace to '' (the null string).
234763d4 412
ac5c933b 413=head2 path
234763d4 414
415Sets 'path_prefix', as described below.
416
417=head1 METHODS
418
419=head2 $class->new($app, @args)
420
421Proxies through to NEXT::new and stashes the application instance as
422$self->_application.
423
424=head2 $self->action_for('name')
425
a269e0c2 426Returns the Catalyst::Action object (if any) for a given method name
427in this component.
234763d4 428
429=head2 $self->register_actions($c)
430
a269e0c2 431Finds all applicable actions for this component, creates
432Catalyst::Action objects (using $self->create_action) for them and
433registers them with $c->dispatcher.
234763d4 434
435=head2 $self->action_namespace($c)
436
a269e0c2 437Returns the private namespace for actions in this component. Defaults
438to a value from the controller name (for
439e.g. MyApp::Controller::Foo::Bar becomes "foo/bar") or can be
440overridden from the "namespace" config key.
234763d4 441
442
443=head2 $self->path_prefix($c)
444
2f381252 445Returns the default path prefix for :PathPrefix, :Local, :LocalRegex and
446relative :Path actions in this component. Defaults to the action_namespace or
a269e0c2 447can be overridden from the "path" config key.
234763d4 448
449=head2 $self->create_action(%args)
450
a269e0c2 451Called with a hash of data to be use for construction of a new
452Catalyst::Action (or appropriate sub/alternative class) object.
234763d4 453
454Primarily designed for the use of register_actions.
455
a269e0c2 456=head2 $self->_application
234763d4 457
458=head2 $self->_app
459
460Returns the application instance stored by C<new()>
5ee249f2 461
2f381252 462=head1 AUTHORS
5ee249f2 463
2f381252 464Catalyst Contributors, see Catalyst.pm
5ee249f2 465
466=head1 COPYRIGHT
467
a269e0c2 468This program is free software, you can redistribute it and/or modify
469it under the same terms as Perl itself.
5ee249f2 470
471=cut