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