refactored request/response logging with configurable filters
[catagits/Catalyst-Runtime.git] / lib / Catalyst.pm
1 package Catalyst;
2
3 use Moose;
4 use Moose::Meta::Class ();
5 extends 'Catalyst::Component';
6 use Moose::Util qw/find_meta/;
7 use bytes;
8 use B::Hooks::EndOfScope ();
9 use Catalyst::Exception;
10 use Catalyst::Exception::Detach;
11 use Catalyst::Exception::Go;
12 use Catalyst::Log;
13 use Catalyst::Request;
14 use Catalyst::Request::Upload;
15 use Catalyst::Response;
16 use Catalyst::Utils;
17 use Catalyst::Controller;
18 use Devel::InnerPackage ();
19 use File::stat;
20 use Module::Pluggable::Object ();
21 use Text::SimpleTable ();
22 use Path::Class::Dir ();
23 use Path::Class::File ();
24 use URI ();
25 use URI::http;
26 use URI::https;
27 use Tree::Simple qw/use_weak_refs/;
28 use Tree::Simple::Visitor::FindByUID;
29 use Class::C3::Adopt::NEXT;
30 use attributes;
31 use utf8;
32 use Carp qw/croak carp shortmess/;
33
34 BEGIN { require 5.008001; }
35
36 has stack => (is => 'ro', default => sub { [] });
37 has stash => (is => 'rw', default => sub { {} });
38 has state => (is => 'rw', default => 0);
39 has stats => (is => 'rw');
40 has action => (is => 'rw');
41 has counter => (is => 'rw', default => sub { {} });
42 has request => (is => 'rw', default => sub { $_[0]->request_class->new({}) }, required => 1, lazy => 1);
43 has response => (is => 'rw', default => sub { $_[0]->response_class->new({}) }, required => 1, lazy => 1);
44 has namespace => (is => 'rw');
45
46 sub depth { scalar @{ shift->stack || [] }; }
47 sub comp { shift->component(@_) }
48
49 sub req {
50     my $self = shift; return $self->request(@_);
51 }
52 sub res {
53     my $self = shift; return $self->response(@_);
54 }
55
56 # For backwards compatibility
57 sub finalize_output { shift->finalize_body(@_) };
58
59 # For statistics
60 our $COUNT     = 1;
61 our $START     = time;
62 our $RECURSION = 1000;
63 our $DETACH    = Catalyst::Exception::Detach->new;
64 our $GO        = Catalyst::Exception::Go->new;
65
66 #I imagine that very few of these really need to be class variables. if any.
67 #maybe we should just make them attributes with a default?
68 __PACKAGE__->mk_classdata($_)
69   for qw/components arguments dispatcher engine log dispatcher_class
70   engine_class context_class request_class response_class stats_class
71   setup_finished/;
72
73 __PACKAGE__->dispatcher_class('Catalyst::Dispatcher');
74 __PACKAGE__->engine_class('Catalyst::Engine::CGI');
75 __PACKAGE__->request_class('Catalyst::Request');
76 __PACKAGE__->response_class('Catalyst::Response');
77 __PACKAGE__->stats_class('Catalyst::Stats');
78
79 # Remember to update this in Catalyst::Runtime as well!
80
81 our $VERSION = '5.80007';
82
83 {
84     my $dev_version = $VERSION =~ /_\d{2}$/;
85     *_IS_DEVELOPMENT_VERSION = sub () { $dev_version };
86 }
87
88 $VERSION = eval $VERSION;
89
90 sub import {
91     my ( $class, @arguments ) = @_;
92
93     # We have to limit $class to Catalyst to avoid pushing Catalyst upon every
94     # callers @ISA.
95     return unless $class eq 'Catalyst';
96
97     my $caller = caller();
98     return if $caller eq 'main';
99
100     # Kill Adopt::NEXT warnings if we're a non-RC version
101     unless (_IS_DEVELOPMENT_VERSION()) {
102         Class::C3::Adopt::NEXT->unimport(qr/^Catalyst::/);
103     }
104
105     my $meta = Moose::Meta::Class->initialize($caller);
106     unless ( $caller->isa('Catalyst') ) {
107         my @superclasses = ($meta->superclasses, $class, 'Catalyst::Controller');
108         $meta->superclasses(@superclasses);
109     }
110     # Avoid possible C3 issues if 'Moose::Object' is already on RHS of MyApp
111     $meta->superclasses(grep { $_ ne 'Moose::Object' } $meta->superclasses);
112
113     unless( $meta->has_method('meta') ){
114         $meta->add_method(meta => sub { Moose::Meta::Class->initialize("${caller}") } );
115     }
116
117     $caller->arguments( [@arguments] );
118     $caller->setup_home;
119 }
120
121 sub _application { $_[0] }
122
123 =head1 NAME
124
125 Catalyst - The Elegant MVC Web Application Framework
126
127 =head1 SYNOPSIS
128
129 See the L<Catalyst::Manual> distribution for comprehensive
130 documentation and tutorials.
131
132     # Install Catalyst::Devel for helpers and other development tools
133     # use the helper to create a new application
134     catalyst.pl MyApp
135
136     # add models, views, controllers
137     script/myapp_create.pl model MyDatabase DBIC::Schema create=static dbi:SQLite:/path/to/db
138     script/myapp_create.pl view MyTemplate TT
139     script/myapp_create.pl controller Search
140
141     # built in testserver -- use -r to restart automatically on changes
142     # --help to see all available options
143     script/myapp_server.pl
144
145     # command line testing interface
146     script/myapp_test.pl /yada
147
148     ### in lib/MyApp.pm
149     use Catalyst qw/-Debug/; # include plugins here as well
150
151     ### In lib/MyApp/Controller/Root.pm (autocreated)
152     sub foo : Global { # called for /foo, /foo/1, /foo/1/2, etc.
153         my ( $self, $c, @args ) = @_; # args are qw/1 2/ for /foo/1/2
154         $c->stash->{template} = 'foo.tt'; # set the template
155         # lookup something from db -- stash vars are passed to TT
156         $c->stash->{data} =
157           $c->model('Database::Foo')->search( { country => $args[0] } );
158         if ( $c->req->params->{bar} ) { # access GET or POST parameters
159             $c->forward( 'bar' ); # process another action
160             # do something else after forward returns
161         }
162     }
163
164     # The foo.tt TT template can use the stash data from the database
165     [% WHILE (item = data.next) %]
166         [% item.foo %]
167     [% END %]
168
169     # called for /bar/of/soap, /bar/of/soap/10, etc.
170     sub bar : Path('/bar/of/soap') { ... }
171
172     # called for all actions, from the top-most controller downwards
173     sub auto : Private {
174         my ( $self, $c ) = @_;
175         if ( !$c->user_exists ) { # Catalyst::Plugin::Authentication
176             $c->res->redirect( '/login' ); # require login
177             return 0; # abort request and go immediately to end()
178         }
179         return 1; # success; carry on to next action
180     }
181
182     # called after all actions are finished
183     sub end : Private {
184         my ( $self, $c ) = @_;
185         if ( scalar @{ $c->error } ) { ... } # handle errors
186         return if $c->res->body; # already have a response
187         $c->forward( 'MyApp::View::TT' ); # render template
188     }
189
190     ### in MyApp/Controller/Foo.pm
191     # called for /foo/bar
192     sub bar : Local { ... }
193
194     # called for /blargle
195     sub blargle : Global { ... }
196
197     # an index action matches /foo, but not /foo/1, etc.
198     sub index : Private { ... }
199
200     ### in MyApp/Controller/Foo/Bar.pm
201     # called for /foo/bar/baz
202     sub baz : Local { ... }
203
204     # first Root auto is called, then Foo auto, then this
205     sub auto : Private { ... }
206
207     # powerful regular expression paths are also possible
208     sub details : Regex('^product/(\w+)/details$') {
209         my ( $self, $c ) = @_;
210         # extract the (\w+) from the URI
211         my $product = $c->req->captures->[0];
212     }
213
214 See L<Catalyst::Manual::Intro> for additional information.
215
216 =head1 DESCRIPTION
217
218 Catalyst is a modern framework for making web applications without the
219 pain usually associated with this process. This document is a reference
220 to the main Catalyst application. If you are a new user, we suggest you
221 start with L<Catalyst::Manual::Tutorial> or L<Catalyst::Manual::Intro>.
222
223 See L<Catalyst::Manual> for more documentation.
224
225 Catalyst plugins can be loaded by naming them as arguments to the "use
226 Catalyst" statement. Omit the C<Catalyst::Plugin::> prefix from the
227 plugin name, i.e., C<Catalyst::Plugin::My::Module> becomes
228 C<My::Module>.
229
230     use Catalyst qw/My::Module/;
231
232 If your plugin starts with a name other than C<Catalyst::Plugin::>, you can
233 fully qualify the name by using a unary plus:
234
235     use Catalyst qw/
236         My::Module
237         +Fully::Qualified::Plugin::Name
238     /;
239
240 Special flags like C<-Debug> and C<-Engine> can also be specified as
241 arguments when Catalyst is loaded:
242
243     use Catalyst qw/-Debug My::Module/;
244
245 The position of plugins and flags in the chain is important, because
246 they are loaded in the order in which they appear.
247
248 The following flags are supported:
249
250 =head2 -Debug
251
252 Enables debug output. You can also force this setting from the system
253 environment with CATALYST_DEBUG or <MYAPP>_DEBUG. The environment
254 settings override the application, with <MYAPP>_DEBUG having the highest
255 priority.
256
257 =head2 -Engine
258
259 Forces Catalyst to use a specific engine. Omit the
260 C<Catalyst::Engine::> prefix of the engine name, i.e.:
261
262     use Catalyst qw/-Engine=CGI/;
263
264 =head2 -Home
265
266 Forces Catalyst to use a specific home directory, e.g.:
267
268     use Catalyst qw[-Home=/usr/mst];
269
270 This can also be done in the shell environment by setting either the
271 C<CATALYST_HOME> environment variable or C<MYAPP_HOME>; where C<MYAPP>
272 is replaced with the uppercased name of your application, any "::" in
273 the name will be replaced with underscores, e.g. MyApp::Web should use
274 MYAPP_WEB_HOME. If both variables are set, the MYAPP_HOME one will be used.
275
276 =head2 -Log
277
278     use Catalyst '-Log=warn,fatal,error';
279
280 Specifies a comma-delimited list of log levels.
281
282 =head2 -Stats
283
284 Enables statistics collection and reporting. You can also force this setting
285 from the system environment with CATALYST_STATS or <MYAPP>_STATS. The
286 environment settings override the application, with <MYAPP>_STATS having the
287 highest priority.
288
289 e.g.
290
291    use Catalyst qw/-Stats=1/
292
293 =head1 METHODS
294
295 =head2 INFORMATION ABOUT THE CURRENT REQUEST
296
297 =head2 $c->action
298
299 Returns a L<Catalyst::Action> object for the current action, which
300 stringifies to the action name. See L<Catalyst::Action>.
301
302 =head2 $c->namespace
303
304 Returns the namespace of the current action, i.e., the URI prefix
305 corresponding to the controller of the current action. For example:
306
307     # in Controller::Foo::Bar
308     $c->namespace; # returns 'foo/bar';
309
310 =head2 $c->request
311
312 =head2 $c->req
313
314 Returns the current L<Catalyst::Request> object, giving access to
315 information about the current client request (including parameters,
316 cookies, HTTP headers, etc.). See L<Catalyst::Request>.
317
318 =head2 REQUEST FLOW HANDLING
319
320 =head2 $c->forward( $action [, \@arguments ] )
321
322 =head2 $c->forward( $class, $method, [, \@arguments ] )
323
324 Forwards processing to another action, by its private name. If you give a
325 class name but no method, C<process()> is called. You may also optionally
326 pass arguments in an arrayref. The action will receive the arguments in
327 C<@_> and C<< $c->req->args >>. Upon returning from the function,
328 C<< $c->req->args >> will be restored to the previous values.
329
330 Any data C<return>ed from the action forwarded to, will be returned by the
331 call to forward.
332
333     my $foodata = $c->forward('/foo');
334     $c->forward('index');
335     $c->forward(qw/MyApp::Model::DBIC::Foo do_stuff/);
336     $c->forward('MyApp::View::TT');
337
338 Note that forward implies an C<<eval { }>> around the call (actually
339 C<execute> does), thus de-fatalizing all 'dies' within the called
340 action. If you want C<die> to propagate you need to do something like:
341
342     $c->forward('foo');
343     die $c->error if $c->error;
344
345 Or make sure to always return true values from your actions and write
346 your code like this:
347
348     $c->forward('foo') || return;
349
350 =cut
351
352 sub forward { my $c = shift; no warnings 'recursion'; $c->dispatcher->forward( $c, @_ ) }
353
354 =head2 $c->detach( $action [, \@arguments ] )
355
356 =head2 $c->detach( $class, $method, [, \@arguments ] )
357
358 =head2 $c->detach()
359
360 The same as C<forward>, but doesn't return to the previous action when
361 processing is finished.
362
363 When called with no arguments it escapes the processing chain entirely.
364
365 =cut
366
367 sub detach { my $c = shift; $c->dispatcher->detach( $c, @_ ) }
368
369 =head2 $c->visit( $action [, \@captures, \@arguments ] )
370
371 =head2 $c->visit( $class, $method, [, \@captures, \@arguments ] )
372
373 Almost the same as C<forward>, but does a full dispatch, instead of just
374 calling the new C<$action> / C<$class-E<gt>$method>. This means that C<begin>,
375 C<auto> and the method you go to are called, just like a new request.
376
377 In addition both C<< $c->action >> and C<< $c->namespace >> are localized.
378 This means, for example, that $c->action methods such as C<name>, C<class> and
379 C<reverse> return information for the visited action when they are invoked
380 within the visited action.  This is different from the behavior of C<forward>
381 which continues to use the $c->action object from the caller action even when
382 invoked from the callee.
383
384 C<$c-E<gt>stash> is kept unchanged.
385
386 In effect, C<visit> allows you to "wrap" another action, just as it
387 would have been called by dispatching from a URL, while the analogous
388 C<go> allows you to transfer control to another action as if it had
389 been reached directly from a URL.
390
391 =cut
392
393 sub visit { my $c = shift; $c->dispatcher->visit( $c, @_ ) }
394
395 =head2 $c->go( $action [, \@captures, \@arguments ] )
396
397 =head2 $c->go( $class, $method, [, \@captures, \@arguments ] )
398
399 Almost the same as C<detach>, but does a full dispatch like C<visit>,
400 instead of just calling the new C<$action> /
401 C<$class-E<gt>$method>. This means that C<begin>, C<auto> and the
402 method you visit are called, just like a new request.
403
404 C<$c-E<gt>stash> is kept unchanged.
405
406 =cut
407
408 sub go { my $c = shift; $c->dispatcher->go( $c, @_ ) }
409
410 =head2 $c->response
411
412 =head2 $c->res
413
414 Returns the current L<Catalyst::Response> object, see there for details.
415
416 =head2 $c->stash
417
418 Returns a hashref to the stash, which may be used to store data and pass
419 it between components during a request. You can also set hash keys by
420 passing arguments. The stash is automatically sent to the view. The
421 stash is cleared at the end of a request; it cannot be used for
422 persistent storage (for this you must use a session; see
423 L<Catalyst::Plugin::Session> for a complete system integrated with
424 Catalyst).
425
426     $c->stash->{foo} = $bar;
427     $c->stash( { moose => 'majestic', qux => 0 } );
428     $c->stash( bar => 1, gorch => 2 ); # equivalent to passing a hashref
429
430     # stash is automatically passed to the view for use in a template
431     $c->forward( 'MyApp::View::TT' );
432
433 =cut
434
435 around stash => sub {
436     my $orig = shift;
437     my $c = shift;
438     my $stash = $orig->($c);
439     if (@_) {
440         my $new_stash = @_ > 1 ? {@_} : $_[0];
441         croak('stash takes a hash or hashref') unless ref $new_stash;
442         foreach my $key ( keys %$new_stash ) {
443           $stash->{$key} = $new_stash->{$key};
444         }
445     }
446
447     return $stash;
448 };
449
450
451 =head2 $c->error
452
453 =head2 $c->error($error, ...)
454
455 =head2 $c->error($arrayref)
456
457 Returns an arrayref containing error messages.  If Catalyst encounters an
458 error while processing a request, it stores the error in $c->error.  This
459 method should only be used to store fatal error messages.
460
461     my @error = @{ $c->error };
462
463 Add a new error.
464
465     $c->error('Something bad happened');
466
467 =cut
468
469 sub error {
470     my $c = shift;
471     if ( $_[0] ) {
472         my $error = ref $_[0] eq 'ARRAY' ? $_[0] : [@_];
473         croak @$error unless ref $c;
474         push @{ $c->{error} }, @$error;
475     }
476     elsif ( defined $_[0] ) { $c->{error} = undef }
477     return $c->{error} || [];
478 }
479
480
481 =head2 $c->state
482
483 Contains the return value of the last executed action.
484
485 =head2 $c->clear_errors
486
487 Clear errors.  You probably don't want to clear the errors unless you are
488 implementing a custom error screen.
489
490 This is equivalent to running
491
492     $c->error(0);
493
494 =cut
495
496 sub clear_errors {
497     my $c = shift;
498     $c->error(0);
499 }
500
501 sub _comp_search_prefixes {
502     my $c = shift;
503     return map $c->components->{ $_ }, $c->_comp_names_search_prefixes(@_);
504 }
505
506 # search components given a name and some prefixes
507 sub _comp_names_search_prefixes {
508     my ( $c, $name, @prefixes ) = @_;
509     my $appclass = ref $c || $c;
510     my $filter   = "^${appclass}::(" . join( '|', @prefixes ) . ')::';
511     $filter = qr/$filter/; # Compile regex now rather than once per loop
512
513     # map the original component name to the sub part that we will search against
514     my %eligible = map { my $n = $_; $n =~ s{^$appclass\::[^:]+::}{}; $_ => $n; }
515         grep { /$filter/ } keys %{ $c->components };
516
517     # undef for a name will return all
518     return keys %eligible if !defined $name;
519
520     my $query  = ref $name ? $name : qr/^$name$/i;
521     my @result = grep { $eligible{$_} =~ m{$query} } keys %eligible;
522
523     return @result if @result;
524
525     # if we were given a regexp to search against, we're done.
526     return if ref $name;
527
528     # regexp fallback
529     $query  = qr/$name/i;
530     @result = grep { $eligible{ $_ } =~ m{$query} } keys %eligible;
531
532     # no results? try against full names
533     if( !@result ) {
534         @result = grep { m{$query} } keys %eligible;
535     }
536
537     # don't warn if we didn't find any results, it just might not exist
538     if( @result ) {
539         # Disgusting hack to work out correct method name
540         my $warn_for = lc $prefixes[0];
541         my $msg = "Used regexp fallback for \$c->${warn_for}('${name}'), which found '" .
542            (join '", "', @result) . "'. Relying on regexp fallback behavior for " .
543            "component resolution is unreliable and unsafe.";
544         my $short = $result[0];
545         $short =~ s/.*?Model:://;
546         my $shortmess = Carp::shortmess('');
547         if ($shortmess =~ m#Catalyst/Plugin#) {
548            $msg .= " You probably need to set '$short' instead of '${name}' in this " .
549               "plugin's config";
550         } elsif ($shortmess =~ m#Catalyst/lib/(View|Controller)#) {
551            $msg .= " You probably need to set '$short' instead of '${name}' in this " .
552               "component's config";
553         } else {
554            $msg .= " You probably meant \$c->${warn_for}('$short') instead of \$c->${warn_for}({'${name}'}), " .
555               "but if you really wanted to search, pass in a regexp as the argument " .
556               "like so: \$c->${warn_for}(qr/${name}/)";
557         }
558         $c->log->warn( "${msg}$shortmess" );
559     }
560
561     return @result;
562 }
563
564 # Find possible names for a prefix
565 sub _comp_names {
566     my ( $c, @prefixes ) = @_;
567     my $appclass = ref $c || $c;
568
569     my $filter = "^${appclass}::(" . join( '|', @prefixes ) . ')::';
570
571     my @names = map { s{$filter}{}; $_; }
572         $c->_comp_names_search_prefixes( undef, @prefixes );
573
574     return @names;
575 }
576
577 # Filter a component before returning by calling ACCEPT_CONTEXT if available
578 sub _filter_component {
579     my ( $c, $comp, @args ) = @_;
580
581     if ( eval { $comp->can('ACCEPT_CONTEXT'); } ) {
582         return $comp->ACCEPT_CONTEXT( $c, @args );
583     }
584
585     return $comp;
586 }
587
588 =head2 COMPONENT ACCESSORS
589
590 =head2 $c->controller($name)
591
592 Gets a L<Catalyst::Controller> instance by name.
593
594     $c->controller('Foo')->do_stuff;
595
596 If the name is omitted, will return the controller for the dispatched
597 action.
598
599 If you want to search for controllers, pass in a regexp as the argument.
600
601     # find all controllers that start with Foo
602     my @foo_controllers = $c->controller(qr{^Foo});
603
604
605 =cut
606
607 sub controller {
608     my ( $c, $name, @args ) = @_;
609
610     if( $name ) {
611         my @result = $c->_comp_search_prefixes( $name, qw/Controller C/ );
612         return map { $c->_filter_component( $_, @args ) } @result if ref $name;
613         return $c->_filter_component( $result[ 0 ], @args );
614     }
615
616     return $c->component( $c->action->class );
617 }
618
619 =head2 $c->model($name)
620
621 Gets a L<Catalyst::Model> instance by name.
622
623     $c->model('Foo')->do_stuff;
624
625 Any extra arguments are directly passed to ACCEPT_CONTEXT.
626
627 If the name is omitted, it will look for
628  - a model object in $c->stash->{current_model_instance}, then
629  - a model name in $c->stash->{current_model}, then
630  - a config setting 'default_model', or
631  - check if there is only one model, and return it if that's the case.
632
633 If you want to search for models, pass in a regexp as the argument.
634
635     # find all models that start with Foo
636     my @foo_models = $c->model(qr{^Foo});
637
638 =cut
639
640 sub model {
641     my ( $c, $name, @args ) = @_;
642
643     if( $name ) {
644         my @result = $c->_comp_search_prefixes( $name, qw/Model M/ );
645         return map { $c->_filter_component( $_, @args ) } @result if ref $name;
646         return $c->_filter_component( $result[ 0 ], @args );
647     }
648
649     if (ref $c) {
650         return $c->stash->{current_model_instance}
651           if $c->stash->{current_model_instance};
652         return $c->model( $c->stash->{current_model} )
653           if $c->stash->{current_model};
654     }
655     return $c->model( $c->config->{default_model} )
656       if $c->config->{default_model};
657
658     my( $comp, $rest ) = $c->_comp_search_prefixes( undef, qw/Model M/);
659
660     if( $rest ) {
661         $c->log->warn( Carp::shortmess('Calling $c->model() will return a random model unless you specify one of:') );
662         $c->log->warn( '* $c->config->{default_model} # the name of the default model to use' );
663         $c->log->warn( '* $c->stash->{current_model} # the name of the model to use for this request' );
664         $c->log->warn( '* $c->stash->{current_model_instance} # the instance of the model to use for this request' );
665         $c->log->warn( 'NB: in version 5.81, the "random" behavior will not work at all.' );
666     }
667
668     return $c->_filter_component( $comp );
669 }
670
671
672 =head2 $c->view($name)
673
674 Gets a L<Catalyst::View> instance by name.
675
676     $c->view('Foo')->do_stuff;
677
678 Any extra arguments are directly passed to ACCEPT_CONTEXT.
679
680 If the name is omitted, it will look for
681  - a view object in $c->stash->{current_view_instance}, then
682  - a view name in $c->stash->{current_view}, then
683  - a config setting 'default_view', or
684  - check if there is only one view, and return it if that's the case.
685
686 If you want to search for views, pass in a regexp as the argument.
687
688     # find all views that start with Foo
689     my @foo_views = $c->view(qr{^Foo});
690
691 =cut
692
693 sub view {
694     my ( $c, $name, @args ) = @_;
695
696     if( $name ) {
697         my @result = $c->_comp_search_prefixes( $name, qw/View V/ );
698         return map { $c->_filter_component( $_, @args ) } @result if ref $name;
699         return $c->_filter_component( $result[ 0 ], @args );
700     }
701
702     if (ref $c) {
703         return $c->stash->{current_view_instance}
704           if $c->stash->{current_view_instance};
705         return $c->view( $c->stash->{current_view} )
706           if $c->stash->{current_view};
707     }
708     return $c->view( $c->config->{default_view} )
709       if $c->config->{default_view};
710
711     my( $comp, $rest ) = $c->_comp_search_prefixes( undef, qw/View V/);
712
713     if( $rest ) {
714         $c->log->warn( 'Calling $c->view() will return a random view unless you specify one of:' );
715         $c->log->warn( '* $c->config->{default_view} # the name of the default view to use' );
716         $c->log->warn( '* $c->stash->{current_view} # the name of the view to use for this request' );
717         $c->log->warn( '* $c->stash->{current_view_instance} # the instance of the view to use for this request' );
718         $c->log->warn( 'NB: in version 5.81, the "random" behavior will not work at all.' );
719     }
720
721     return $c->_filter_component( $comp );
722 }
723
724 =head2 $c->controllers
725
726 Returns the available names which can be passed to $c->controller
727
728 =cut
729
730 sub controllers {
731     my ( $c ) = @_;
732     return $c->_comp_names(qw/Controller C/);
733 }
734
735 =head2 $c->models
736
737 Returns the available names which can be passed to $c->model
738
739 =cut
740
741 sub models {
742     my ( $c ) = @_;
743     return $c->_comp_names(qw/Model M/);
744 }
745
746
747 =head2 $c->views
748
749 Returns the available names which can be passed to $c->view
750
751 =cut
752
753 sub views {
754     my ( $c ) = @_;
755     return $c->_comp_names(qw/View V/);
756 }
757
758 =head2 $c->comp($name)
759
760 =head2 $c->component($name)
761
762 Gets a component object by name. This method is not recommended,
763 unless you want to get a specific component by full
764 class. C<< $c->controller >>, C<< $c->model >>, and C<< $c->view >>
765 should be used instead.
766
767 If C<$name> is a regexp, a list of components matched against the full
768 component name will be returned.
769
770 =cut
771
772 sub component {
773     my ( $c, $name, @args ) = @_;
774
775     if( $name ) {
776         my $comps = $c->components;
777
778         if( !ref $name ) {
779             # is it the exact name?
780             return $c->_filter_component( $comps->{ $name }, @args )
781                        if exists $comps->{ $name };
782
783             # perhaps we just omitted "MyApp"?
784             my $composed = ( ref $c || $c ) . "::${name}";
785             return $c->_filter_component( $comps->{ $composed }, @args )
786                        if exists $comps->{ $composed };
787
788             # search all of the models, views and controllers
789             my( $comp ) = $c->_comp_search_prefixes( $name, qw/Model M Controller C View V/ );
790             return $c->_filter_component( $comp, @args ) if $comp;
791         }
792
793         # This is here so $c->comp( '::M::' ) works
794         my $query = ref $name ? $name : qr{$name}i;
795
796         my @result = grep { m{$query} } keys %{ $c->components };
797         return map { $c->_filter_component( $_, @args ) } @result if ref $name;
798
799         if( $result[ 0 ] ) {
800             $c->log->warn( Carp::shortmess(qq(Found results for "${name}" using regexp fallback)) );
801             $c->log->warn( 'Relying on the regexp fallback behavior for component resolution' );
802             $c->log->warn( 'is unreliable and unsafe. You have been warned' );
803             return $c->_filter_component( $result[ 0 ], @args );
804         }
805
806         # I would expect to return an empty list here, but that breaks back-compat
807     }
808
809     # fallback
810     return sort keys %{ $c->components };
811 }
812
813 =head2 CLASS DATA AND HELPER CLASSES
814
815 =head2 $c->config
816
817 Returns or takes a hashref containing the application's configuration.
818
819     __PACKAGE__->config( { db => 'dsn:SQLite:foo.db' } );
820
821 You can also use a C<YAML>, C<XML> or C<Config::General> config file
822 like myapp.conf in your applications home directory. See
823 L<Catalyst::Plugin::ConfigLoader>.
824
825 =head3 Cascading configuration.
826
827 The config method is present on all Catalyst components, and configuration
828 will be merged when an application is started. Configuration loaded with
829 L<Catalyst::Plugin::ConfigLoader> takes precedence over other configuration,
830 followed by configuration in your top level C<MyApp> class. These two
831 configurations are merged, and then configuration data whose hash key matches a
832 component name is merged with configuration for that component.
833
834 The configuration for a component is then passed to the C<new> method when a
835 component is constructed.
836
837 For example:
838
839     MyApp->config({ 'Model::Foo' => { bar => 'baz', overrides => 'me' } });
840     MyApp::Model::Foo->config({ quux => 'frob', 'overrides => 'this' });
841
842 will mean that C<MyApp::Model::Foo> receives the following data when
843 constructed:
844
845     MyApp::Model::Foo->new({
846         bar => 'baz',
847         quux => 'frob',
848         overrides => 'me',
849     });
850
851 =cut
852
853 around config => sub {
854     my $orig = shift;
855     my $c = shift;
856
857     croak('Setting config after setup has been run is not allowed.')
858         if ( @_ and $c->setup_finished );
859
860     $c->$orig(@_);
861 };
862
863 =head2 $c->log
864
865 Returns the logging object instance. Unless it is already set, Catalyst
866 sets this up with a L<Catalyst::Log> object. To use your own log class,
867 set the logger with the C<< __PACKAGE__->log >> method prior to calling
868 C<< __PACKAGE__->setup >>.
869
870  __PACKAGE__->log( MyLogger->new );
871  __PACKAGE__->setup;
872
873 And later:
874
875     $c->log->info( 'Now logging with my own logger!' );
876
877 Your log class should implement the methods described in
878 L<Catalyst::Log>.
879
880
881 =head2 $c->debug
882
883 Returns 1 if debug mode is enabled, 0 otherwise.
884
885 You can enable debug mode in several ways:
886
887 =over
888
889 =item By calling myapp_server.pl with the -d flag
890
891 =item With the environment variables MYAPP_DEBUG, or CATALYST_DEBUG
892
893 =item The -Debug option in your MyApp.pm
894
895 =item By declaring C<sub debug { 1 }> in your MyApp.pm.
896
897 =back
898
899 Calling C<< $c->debug(1) >> has no effect.
900
901 =cut
902
903 sub debug { 0 }
904
905 =head2 $c->dispatcher
906
907 Returns the dispatcher instance. See L<Catalyst::Dispatcher>.
908
909 =head2 $c->engine
910
911 Returns the engine instance. See L<Catalyst::Engine>.
912
913
914 =head2 UTILITY METHODS
915
916 =head2 $c->path_to(@path)
917
918 Merges C<@path> with C<< $c->config->{home} >> and returns a
919 L<Path::Class::Dir> object. Note you can usually use this object as
920 a filename, but sometimes you will have to explicitly stringify it
921 yourself by calling the C<<->stringify>> method.
922
923 For example:
924
925     $c->path_to( 'db', 'sqlite.db' );
926
927 =cut
928
929 sub path_to {
930     my ( $c, @path ) = @_;
931     my $path = Path::Class::Dir->new( $c->config->{home}, @path );
932     if ( -d $path ) { return $path }
933     else { return Path::Class::File->new( $c->config->{home}, @path ) }
934 }
935
936 =head2 $c->plugin( $name, $class, @args )
937
938 Helper method for plugins. It creates a class data accessor/mutator and
939 loads and instantiates the given class.
940
941     MyApp->plugin( 'prototype', 'HTML::Prototype' );
942
943     $c->prototype->define_javascript_functions;
944
945 B<Note:> This method of adding plugins is deprecated. The ability
946 to add plugins like this B<will be removed> in a Catalyst 5.81.
947 Please do not use this functionality in new code.
948
949 =cut
950
951 sub plugin {
952     my ( $class, $name, $plugin, @args ) = @_;
953
954     # See block comment in t/unit_core_plugin.t
955     $class->log->warn(qq/Adding plugin using the ->plugin method is deprecated, and will be removed in Catalyst 5.81/);
956
957     $class->_register_plugin( $plugin, 1 );
958
959     eval { $plugin->import };
960     $class->mk_classdata($name);
961     my $obj;
962     eval { $obj = $plugin->new(@args) };
963
964     if ($@) {
965         Catalyst::Exception->throw( message =>
966               qq/Couldn't instantiate instant plugin "$plugin", "$@"/ );
967     }
968
969     $class->$name($obj);
970     $class->log->debug(qq/Initialized instant plugin "$plugin" as "$name"/)
971       if $class->debug;
972 }
973
974 =head2 MyApp->setup
975
976 Initializes the dispatcher and engine, loads any plugins, and loads the
977 model, view, and controller components. You may also specify an array
978 of plugins to load here, if you choose to not load them in the C<use
979 Catalyst> line.
980
981     MyApp->setup;
982     MyApp->setup( qw/-Debug/ );
983
984 =cut
985
986 sub setup {
987     my ( $class, @arguments ) = @_;
988     croak('Running setup more than once')
989         if ( $class->setup_finished );
990
991     unless ( $class->isa('Catalyst') ) {
992
993         Catalyst::Exception->throw(
994             message => qq/'$class' does not inherit from Catalyst/ );
995     }
996
997     if ( $class->arguments ) {
998         @arguments = ( @arguments, @{ $class->arguments } );
999     }
1000
1001     # Process options
1002     my $flags = {};
1003
1004     foreach (@arguments) {
1005
1006         if (/^-Debug$/) {
1007             $flags->{log} =
1008               ( $flags->{log} ) ? 'debug,' . $flags->{log} : 'debug';
1009         }
1010         elsif (/^-(\w+)=?(.*)$/) {
1011             $flags->{ lc $1 } = $2;
1012         }
1013         else {
1014             push @{ $flags->{plugins} }, $_;
1015         }
1016     }
1017
1018     $class->setup_home( delete $flags->{home} );
1019
1020     $class->setup_log( delete $flags->{log} );
1021     $class->setup_plugins( delete $flags->{plugins} );
1022     $class->setup_dispatcher( delete $flags->{dispatcher} );
1023     $class->setup_engine( delete $flags->{engine} );
1024     $class->setup_stats( delete $flags->{stats} );
1025
1026     for my $flag ( sort keys %{$flags} ) {
1027
1028         if ( my $code = $class->can( 'setup_' . $flag ) ) {
1029             &$code( $class, delete $flags->{$flag} );
1030         }
1031         else {
1032             $class->log->warn(qq/Unknown flag "$flag"/);
1033         }
1034     }
1035
1036     eval { require Catalyst::Devel; };
1037     if( !$@ && $ENV{CATALYST_SCRIPT_GEN} && ( $ENV{CATALYST_SCRIPT_GEN} < $Catalyst::Devel::CATALYST_SCRIPT_GEN ) ) {
1038         $class->log->warn(<<"EOF");
1039 You are running an old script!
1040
1041   Please update by running (this will overwrite existing files):
1042     catalyst.pl -force -scripts $class
1043
1044   or (this will not overwrite existing files):
1045     catalyst.pl -scripts $class
1046
1047 EOF
1048     }
1049
1050     if ( $class->debug ) {
1051         my @plugins = map { "$_  " . ( $_->VERSION || '' ) } $class->registered_plugins;
1052
1053         if (@plugins) {
1054             my $column_width = Catalyst::Utils::term_width() - 6;
1055             my $t = Text::SimpleTable->new($column_width);
1056             $t->row($_) for @plugins;
1057             $class->log->debug( "Loaded plugins:\n" . $t->draw . "\n" );
1058         }
1059
1060         my $dispatcher = $class->dispatcher;
1061         my $engine     = $class->engine;
1062         my $home       = $class->config->{home};
1063
1064         $class->log->debug(sprintf(q/Loaded dispatcher "%s"/, blessed($dispatcher)));
1065         $class->log->debug(sprintf(q/Loaded engine "%s"/, blessed($engine)));
1066
1067         $home
1068           ? ( -d $home )
1069           ? $class->log->debug(qq/Found home "$home"/)
1070           : $class->log->debug(qq/Home "$home" doesn't exist/)
1071           : $class->log->debug(q/Couldn't find home/);
1072     }
1073
1074     # Call plugins setup, this is stupid and evil.
1075     # Also screws C3 badly on 5.10, hack to avoid.
1076     {
1077         no warnings qw/redefine/;
1078         local *setup = sub { };
1079         $class->setup unless $Catalyst::__AM_RESTARTING;
1080     }
1081
1082     # Initialize our data structure
1083     $class->components( {} );
1084
1085     $class->setup_components;
1086
1087     if ( $class->debug ) {
1088         my $column_width = Catalyst::Utils::term_width() - 8 - 9;
1089         my $t = Text::SimpleTable->new( [ $column_width, 'Class' ], [ 8, 'Type' ] );
1090         for my $comp ( sort keys %{ $class->components } ) {
1091             my $type = ref $class->components->{$comp} ? 'instance' : 'class';
1092             $t->row( $comp, $type );
1093         }
1094         $class->log->debug( "Loaded components:\n" . $t->draw . "\n" )
1095           if ( keys %{ $class->components } );
1096     }
1097
1098     # Add our self to components, since we are also a component
1099     if( $class->isa('Catalyst::Controller') ){
1100       $class->components->{$class} = $class;
1101     }
1102
1103     $class->setup_actions;
1104
1105     if ( $class->debug ) {
1106         my $name = $class->config->{name} || 'Application';
1107         $class->log->info("$name powered by Catalyst $Catalyst::VERSION");
1108     }
1109     $class->log->_flush() if $class->log->can('_flush');
1110
1111     # Make sure that the application class becomes immutable at this point,
1112     B::Hooks::EndOfScope::on_scope_end {
1113         return if $@;
1114         my $meta = Class::MOP::get_metaclass_by_name($class);
1115         if (
1116             $meta->is_immutable
1117             && ! { $meta->immutable_options }->{replace_constructor}
1118             && (
1119                    $class->isa('Class::Accessor::Fast')
1120                 || $class->isa('Class::Accessor')
1121             )
1122         ) {
1123             warn "You made your application class ($class) immutable, "
1124                 . "but did not inline the\nconstructor. "
1125                 . "This will break catalyst, as your app \@ISA "
1126                 . "Class::Accessor(::Fast)?\nPlease pass "
1127                 . "(replace_constructor => 1)\nwhen making your class immutable.\n";
1128         }
1129         $meta->make_immutable(replace_constructor => 1)
1130             unless $meta->is_immutable;
1131     };
1132
1133     $class->setup_finalize;
1134 }
1135
1136
1137 =head2 $app->setup_finalize
1138
1139 A hook to attach modifiers to.
1140 Using C<< after setup => sub{}; >> doesn't work, because of quirky things done for plugin setup.
1141 Also better than C< setup_finished(); >, as that is a getter method.
1142
1143     sub setup_finalize {
1144
1145         my $app = shift;
1146
1147         ## do stuff, i.e., determine a primary key column for sessions stored in a DB
1148
1149         $app->next::method(@_);
1150
1151
1152     }
1153
1154 =cut
1155
1156 sub setup_finalize {
1157     my ($class) = @_;
1158     $class->setup_finished(1);
1159 }
1160
1161 =head2 $c->uri_for( $action, \@captures?, @args?, \%query_values? )
1162
1163 =head2 $c->uri_for( $path, @args?, \%query_values? )
1164
1165 =over
1166
1167 =item $action
1168
1169 A Catalyst::Action object representing the Catalyst action you want to
1170 create a URI for. To get one for an action in the current controller,
1171 use C<< $c->action('someactionname') >>. To get one from different
1172 controller, fetch the controller using C<< $c->controller() >>, then
1173 call C<action_for> on it.
1174
1175 You can maintain the arguments captured by an action (e.g.: Regex, Chained)
1176 using C<< $c->req->captures >>.
1177
1178   # For the current action
1179   $c->uri_for($c->action, $c->req->captures);
1180
1181   # For the Foo action in the Bar controller
1182   $c->uri_for($c->controller('Bar')->action_for('Foo'), $c->req->captures);
1183
1184 =back
1185
1186 =cut
1187
1188 sub uri_for {
1189     my ( $c, $path, @args ) = @_;
1190
1191     if ( blessed($path) ) { # action object
1192         my $captures = ( scalar @args && ref $args[0] eq 'ARRAY'
1193                          ? shift(@args)
1194                          : [] );
1195         my $action = $path;
1196         $path = $c->dispatcher->uri_for_action($action, $captures);
1197         if (not defined $path) {
1198             $c->log->debug(qq/Can't find uri_for action '$action' @$captures/)
1199                 if $c->debug;
1200             return undef;
1201         }
1202         $path = '/' if $path eq '';
1203     }
1204
1205     undef($path) if (defined $path && $path eq '');
1206
1207     my $params =
1208       ( scalar @args && ref $args[$#args] eq 'HASH' ? pop @args : {} );
1209
1210     carp "uri_for called with undef argument" if grep { ! defined $_ } @args;
1211     s/([^$URI::uric])/$URI::Escape::escapes{$1}/go for @args;
1212
1213     unshift(@args, $path);
1214
1215     unless (defined $path && $path =~ s!^/!!) { # in-place strip
1216         my $namespace = $c->namespace;
1217         if (defined $path) { # cheesy hack to handle path '../foo'
1218            $namespace =~ s{(?:^|/)[^/]+$}{} while $args[0] =~ s{^\.\./}{};
1219         }
1220         unshift(@args, $namespace || '');
1221     }
1222
1223     # join args with '/', or a blank string
1224     my $args = join('/', grep { defined($_) } @args);
1225     $args =~ s/\?/%3F/g; # STUPID STUPID SPECIAL CASE
1226     $args =~ s!^/+!!;
1227     my $base = $c->req->base;
1228     my $class = ref($base);
1229     $base =~ s{(?<!/)$}{/};
1230
1231     my $query = '';
1232
1233     if (my @keys = keys %$params) {
1234       # somewhat lifted from URI::_query's query_form
1235       $query = '?'.join('&', map {
1236           my $val = $params->{$_};
1237           s/([;\/?:@&=+,\$\[\]%])/$URI::Escape::escapes{$1}/go;
1238           s/ /+/g;
1239           my $key = $_;
1240           $val = '' unless defined $val;
1241           (map {
1242               my $param = "$_";
1243               utf8::encode( $param ) if utf8::is_utf8($param);
1244               # using the URI::Escape pattern here so utf8 chars survive
1245               $param =~ s/([^A-Za-z0-9\-_.!~*'() ])/$URI::Escape::escapes{$1}/go;
1246               $param =~ s/ /+/g;
1247               "${key}=$param"; } ( ref $val eq 'ARRAY' ? @$val : $val ));
1248       } @keys);
1249     }
1250
1251     my $res = bless(\"${base}${args}${query}", $class);
1252     $res;
1253 }
1254
1255 =head2 $c->uri_for_action( $path, \@captures?, @args?, \%query_values? )
1256
1257 =head2 $c->uri_for_action( $action, \@captures?, @args?, \%query_values? )
1258
1259 =over
1260
1261 =item $path
1262
1263 A private path to the Catalyst action you want to create a URI for.
1264
1265 This is a shortcut for calling C<< $c->dispatcher->get_action_by_path($path)
1266 >> and passing the resulting C<$action> and the remaining arguments to C<<
1267 $c->uri_for >>.
1268
1269 You can also pass in a Catalyst::Action object, in which case it is passed to
1270 C<< $c->uri_for >>.
1271
1272 =back
1273
1274 =cut
1275
1276 sub uri_for_action {
1277     my ( $c, $path, @args ) = @_;
1278     my $action = blessed($path)
1279       ? $path
1280       : $c->dispatcher->get_action_by_path($path);
1281     unless (defined $action) {
1282       croak "Can't find action for path '$path'";
1283     }
1284     return $c->uri_for( $action, @args );
1285 }
1286
1287 =head2 $c->welcome_message
1288
1289 Returns the Catalyst welcome HTML page.
1290
1291 =cut
1292
1293 sub welcome_message {
1294     my $c      = shift;
1295     my $name   = $c->config->{name};
1296     my $logo   = $c->uri_for('/static/images/catalyst_logo.png');
1297     my $prefix = Catalyst::Utils::appprefix( ref $c );
1298     $c->response->content_type('text/html; charset=utf-8');
1299     return <<"EOF";
1300 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
1301     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1302 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1303     <head>
1304     <meta http-equiv="Content-Language" content="en" />
1305     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
1306         <title>$name on Catalyst $VERSION</title>
1307         <style type="text/css">
1308             body {
1309                 color: #000;
1310                 background-color: #eee;
1311             }
1312             div#content {
1313                 width: 640px;
1314                 margin-left: auto;
1315                 margin-right: auto;
1316                 margin-top: 10px;
1317                 margin-bottom: 10px;
1318                 text-align: left;
1319                 background-color: #ccc;
1320                 border: 1px solid #aaa;
1321             }
1322             p, h1, h2 {
1323                 margin-left: 20px;
1324                 margin-right: 20px;
1325                 font-family: verdana, tahoma, sans-serif;
1326             }
1327             a {
1328                 font-family: verdana, tahoma, sans-serif;
1329             }
1330             :link, :visited {
1331                     text-decoration: none;
1332                     color: #b00;
1333                     border-bottom: 1px dotted #bbb;
1334             }
1335             :link:hover, :visited:hover {
1336                     color: #555;
1337             }
1338             div#topbar {
1339                 margin: 0px;
1340             }
1341             pre {
1342                 margin: 10px;
1343                 padding: 8px;
1344             }
1345             div#answers {
1346                 padding: 8px;
1347                 margin: 10px;
1348                 background-color: #fff;
1349                 border: 1px solid #aaa;
1350             }
1351             h1 {
1352                 font-size: 0.9em;
1353                 font-weight: normal;
1354                 text-align: center;
1355             }
1356             h2 {
1357                 font-size: 1.0em;
1358             }
1359             p {
1360                 font-size: 0.9em;
1361             }
1362             p img {
1363                 float: right;
1364                 margin-left: 10px;
1365             }
1366             span#appname {
1367                 font-weight: bold;
1368                 font-size: 1.6em;
1369             }
1370         </style>
1371     </head>
1372     <body>
1373         <div id="content">
1374             <div id="topbar">
1375                 <h1><span id="appname">$name</span> on <a href="http://catalyst.perl.org">Catalyst</a>
1376                     $VERSION</h1>
1377              </div>
1378              <div id="answers">
1379                  <p>
1380                  <img src="$logo" alt="Catalyst Logo" />
1381                  </p>
1382                  <p>Welcome to the  world of Catalyst.
1383                     This <a href="http://en.wikipedia.org/wiki/MVC">MVC</a>
1384                     framework will make web development something you had
1385                     never expected it to be: Fun, rewarding, and quick.</p>
1386                  <h2>What to do now?</h2>
1387                  <p>That really depends  on what <b>you</b> want to do.
1388                     We do, however, provide you with a few starting points.</p>
1389                  <p>If you want to jump right into web development with Catalyst
1390                     you might want to start with a tutorial.</p>
1391 <pre>perldoc <a href="http://cpansearch.perl.org/dist/Catalyst-Manual/lib/Catalyst/Manual/Tutorial.pod">Catalyst::Manual::Tutorial</a></code>
1392 </pre>
1393 <p>Afterwards you can go on to check out a more complete look at our features.</p>
1394 <pre>
1395 <code>perldoc <a href="http://cpansearch.perl.org/dist/Catalyst-Manual/lib/Catalyst/Manual/Intro.pod">Catalyst::Manual::Intro</a>
1396 <!-- Something else should go here, but the Catalyst::Manual link seems unhelpful -->
1397 </code></pre>
1398                  <h2>What to do next?</h2>
1399                  <p>Next it's time to write an actual application. Use the
1400                     helper scripts to generate <a href="http://cpansearch.perl.org/search?query=Catalyst%3A%3AController%3A%3A&amp;mode=all">controllers</a>,
1401                     <a href="http://cpansearch.perl.org/search?query=Catalyst%3A%3AModel%3A%3A&amp;mode=all">models</a>, and
1402                     <a href="http://cpansearch.perl.org/search?query=Catalyst%3A%3AView%3A%3A&amp;mode=all">views</a>;
1403                     they can save you a lot of work.</p>
1404                     <pre><code>script/${prefix}_create.pl -help</code></pre>
1405                     <p>Also, be sure to check out the vast and growing
1406                     collection of <a href="http://search.cpan.org/search?query=Catalyst">plugins for Catalyst on CPAN</a>;
1407                     you are likely to find what you need there.
1408                     </p>
1409
1410                  <h2>Need help?</h2>
1411                  <p>Catalyst has a very active community. Here are the main places to
1412                     get in touch with us.</p>
1413                  <ul>
1414                      <li>
1415                          <a href="http://dev.catalyst.perl.org">Wiki</a>
1416                      </li>
1417                      <li>
1418                          <a href="http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst">Mailing-List</a>
1419                      </li>
1420                      <li>
1421                          <a href="irc://irc.perl.org/catalyst">IRC channel #catalyst on irc.perl.org</a>
1422                      </li>
1423                  </ul>
1424                  <h2>In conclusion</h2>
1425                  <p>The Catalyst team hopes you will enjoy using Catalyst as much
1426                     as we enjoyed making it. Please contact us if you have ideas
1427                     for improvement or other feedback.</p>
1428              </div>
1429          </div>
1430     </body>
1431 </html>
1432 EOF
1433 }
1434
1435 =head1 INTERNAL METHODS
1436
1437 These methods are not meant to be used by end users.
1438
1439 =head2 $c->components
1440
1441 Returns a hash of components.
1442
1443 =head2 $c->context_class
1444
1445 Returns or sets the context class.
1446
1447 =head2 $c->counter
1448
1449 Returns a hashref containing coderefs and execution counts (needed for
1450 deep recursion detection).
1451
1452 =head2 $c->depth
1453
1454 Returns the number of actions on the current internal execution stack.
1455
1456 =head2 $c->dispatch
1457
1458 Dispatches a request to actions.
1459
1460 =cut
1461
1462 sub dispatch { my $c = shift; $c->dispatcher->dispatch( $c, @_ ) }
1463
1464 =head2 $c->dispatcher_class
1465
1466 Returns or sets the dispatcher class.
1467
1468 =head2 $c->dump_these
1469
1470 Returns a list of 2-element array references (name, structure) pairs
1471 that will be dumped on the error page in debug mode.
1472
1473 =cut
1474
1475 sub dump_these {
1476     my $c = shift;
1477     [ Request => $c->req ],
1478     [ Response => $c->res ],
1479     [ Stash => $c->stash ],
1480     [ Config => $c->config ];
1481 }
1482
1483 =head2 $c->engine_class
1484
1485 Returns or sets the engine class.
1486
1487 =head2 $c->execute( $class, $coderef )
1488
1489 Execute a coderef in given class and catch exceptions. Errors are available
1490 via $c->error.
1491
1492 =cut
1493
1494 sub execute {
1495     my ( $c, $class, $code ) = @_;
1496     $class = $c->component($class) || $class;
1497     $c->state(0);
1498
1499     if ( $c->depth >= $RECURSION ) {
1500         my $action = $code->reverse();
1501         $action = "/$action" unless $action =~ /->/;
1502         my $error = qq/Deep recursion detected calling "${action}"/;
1503         $c->log->error($error);
1504         $c->error($error);
1505         $c->state(0);
1506         return $c->state;
1507     }
1508
1509     my $stats_info = $c->_stats_start_execute( $code ) if $c->use_stats;
1510
1511     push( @{ $c->stack }, $code );
1512
1513     no warnings 'recursion';
1514     eval { $c->state( $code->execute( $class, $c, @{ $c->req->args } ) || 0 ) };
1515
1516     $c->_stats_finish_execute( $stats_info ) if $c->use_stats and $stats_info;
1517
1518     my $last = pop( @{ $c->stack } );
1519
1520     if ( my $error = $@ ) {
1521         if ( blessed($error) and $error->isa('Catalyst::Exception::Detach') ) {
1522             $error->rethrow if $c->depth > 1;
1523         }
1524         elsif ( blessed($error) and $error->isa('Catalyst::Exception::Go') ) {
1525             $error->rethrow if $c->depth > 0;
1526         }
1527         else {
1528             unless ( ref $error ) {
1529                 no warnings 'uninitialized';
1530                 chomp $error;
1531                 my $class = $last->class;
1532                 my $name  = $last->name;
1533                 $error = qq/Caught exception in $class->$name "$error"/;
1534             }
1535             $c->error($error);
1536             $c->state(0);
1537         }
1538     }
1539     return $c->state;
1540 }
1541
1542 sub _stats_start_execute {
1543     my ( $c, $code ) = @_;
1544
1545     return if ( ( $code->name =~ /^_.*/ )
1546         && ( !$c->config->{show_internal_actions} ) );
1547
1548     my $action_name = $code->reverse();
1549     $c->counter->{$action_name}++;
1550
1551     my $action = $action_name;
1552     $action = "/$action" unless $action =~ /->/;
1553
1554     # determine if the call was the result of a forward
1555     # this is done by walking up the call stack and looking for a calling
1556     # sub of Catalyst::forward before the eval
1557     my $callsub = q{};
1558     for my $index ( 2 .. 11 ) {
1559         last
1560         if ( ( caller($index) )[0] eq 'Catalyst'
1561             && ( caller($index) )[3] eq '(eval)' );
1562
1563         if ( ( caller($index) )[3] =~ /forward$/ ) {
1564             $callsub = ( caller($index) )[3];
1565             $action  = "-> $action";
1566             last;
1567         }
1568     }
1569
1570     my $uid = $action_name . $c->counter->{$action_name};
1571
1572     # is this a root-level call or a forwarded call?
1573     if ( $callsub =~ /forward$/ ) {
1574
1575         # forward, locate the caller
1576         if ( my $parent = $c->stack->[-1] ) {
1577             $c->stats->profile(
1578                 begin  => $action,
1579                 parent => "$parent" . $c->counter->{"$parent"},
1580                 uid    => $uid,
1581             );
1582         }
1583         else {
1584
1585             # forward with no caller may come from a plugin
1586             $c->stats->profile(
1587                 begin => $action,
1588                 uid   => $uid,
1589             );
1590         }
1591     }
1592     else {
1593
1594         # root-level call
1595         $c->stats->profile(
1596             begin => $action,
1597             uid   => $uid,
1598         );
1599     }
1600     return $action;
1601
1602 }
1603
1604 sub _stats_finish_execute {
1605     my ( $c, $info ) = @_;
1606     $c->stats->profile( end => $info );
1607 }
1608
1609 =head2 $c->_localize_fields( sub { }, \%keys );
1610
1611 =cut
1612
1613 #Why does this exist? This is no longer safe and WILL NOT WORK.
1614 # it doesnt seem to be used anywhere. can we remove it?
1615 sub _localize_fields {
1616     my ( $c, $localized, $code ) = ( @_ );
1617
1618     my $request = delete $localized->{request} || {};
1619     my $response = delete $localized->{response} || {};
1620
1621     local @{ $c }{ keys %$localized } = values %$localized;
1622     local @{ $c->request }{ keys %$request } = values %$request;
1623     local @{ $c->response }{ keys %$response } = values %$response;
1624
1625     $code->();
1626 }
1627
1628 =head2 $c->finalize
1629
1630 Finalizes the request.
1631
1632 =cut
1633
1634 sub finalize {
1635     my $c = shift;
1636
1637     for my $error ( @{ $c->error } ) {
1638         $c->log->error($error);
1639     }
1640
1641     # Allow engine to handle finalize flow (for POE)
1642     my $engine = $c->engine;
1643     if ( my $code = $engine->can('finalize') ) {
1644         $engine->$code($c);
1645     }
1646     else {
1647
1648         $c->finalize_uploads;
1649
1650         # Error
1651         if ( $#{ $c->error } >= 0 ) {
1652             $c->finalize_error;
1653         }
1654
1655         $c->finalize_headers;
1656
1657         # HEAD request
1658         if ( $c->request->method eq 'HEAD' ) {
1659             $c->response->body('');
1660         }
1661
1662         $c->finalize_body;
1663     }
1664
1665         $c->log_response;
1666
1667     if ($c->use_stats) {
1668         my $elapsed = sprintf '%f', $c->stats->elapsed;
1669         my $av = $elapsed == 0 ? '??' : sprintf '%.3f', 1 / $elapsed;
1670         $c->log->info(
1671             "Request took ${elapsed}s ($av/s)\n" . $c->stats->report . "\n" );
1672     }
1673
1674     return $c->response->status;
1675 }
1676
1677 =head2 $c->finalize_body
1678
1679 Finalizes body.
1680
1681 =cut
1682
1683 sub finalize_body { my $c = shift; $c->engine->finalize_body( $c, @_ ) }
1684
1685 =head2 $c->finalize_cookies
1686
1687 Finalizes cookies.
1688
1689 =cut
1690
1691 sub finalize_cookies { my $c = shift; $c->engine->finalize_cookies( $c, @_ ) }
1692
1693 =head2 $c->finalize_error
1694
1695 Finalizes error.
1696
1697 =cut
1698
1699 sub finalize_error { my $c = shift; $c->engine->finalize_error( $c, @_ ) }
1700
1701 =head2 $c->finalize_headers
1702
1703 Finalizes headers.
1704
1705 =cut
1706
1707 sub finalize_headers {
1708     my $c = shift;
1709
1710     my $response = $c->response; #accessor calls can add up?
1711
1712     # Check if we already finalized headers
1713     return if $response->finalized_headers;
1714
1715     # Handle redirects
1716     if ( my $location = $response->redirect ) {
1717         $c->log->debug(qq/Redirecting to "$location"/) if $c->debug;
1718         $response->header( Location => $location );
1719
1720         if ( !$response->has_body ) {
1721             # Add a default body if none is already present
1722             $response->body(
1723                 qq{<html><body><p>This item has moved <a href="$location">here</a>.</p></body></html>}
1724             );
1725         }
1726     }
1727
1728     # Content-Length
1729     if ( $response->body && !$response->content_length ) {
1730
1731         # get the length from a filehandle
1732         if ( blessed( $response->body ) && $response->body->can('read') )
1733         {
1734             my $stat = stat $response->body;
1735             if ( $stat && $stat->size > 0 ) {
1736                 $response->content_length( $stat->size );
1737             }
1738             else {
1739                 $c->log->warn('Serving filehandle without a content-length');
1740             }
1741         }
1742         else {
1743             # everything should be bytes at this point, but just in case
1744             $response->content_length( bytes::length( $response->body ) );
1745         }
1746     }
1747
1748     # Errors
1749     if ( $response->status =~ /^(1\d\d|[23]04)$/ ) {
1750         $response->headers->remove_header("Content-Length");
1751         $response->body('');
1752     }
1753
1754     $c->finalize_cookies;
1755
1756     $c->engine->finalize_headers( $c, @_ );
1757
1758     # Done
1759     $response->finalized_headers(1);
1760 }
1761
1762 =head2 $c->finalize_output
1763
1764 An alias for finalize_body.
1765
1766 =head2 $c->finalize_read
1767
1768 Finalizes the input after reading is complete.
1769
1770 =cut
1771
1772 sub finalize_read { my $c = shift; $c->engine->finalize_read( $c, @_ ) }
1773
1774 =head2 $c->finalize_uploads
1775
1776 Finalizes uploads. Cleans up any temporary files.
1777
1778 =cut
1779
1780 sub finalize_uploads { my $c = shift; $c->engine->finalize_uploads( $c, @_ ) }
1781
1782 =head2 $c->get_action( $action, $namespace )
1783
1784 Gets an action in a given namespace.
1785
1786 =cut
1787
1788 sub get_action { my $c = shift; $c->dispatcher->get_action(@_) }
1789
1790 =head2 $c->get_actions( $action, $namespace )
1791
1792 Gets all actions of a given name in a namespace and all parent
1793 namespaces.
1794
1795 =cut
1796
1797 sub get_actions { my $c = shift; $c->dispatcher->get_actions( $c, @_ ) }
1798
1799 =head2 $c->handle_request( $class, @arguments )
1800
1801 Called to handle each HTTP request.
1802
1803 =cut
1804
1805 sub handle_request {
1806     my ( $class, @arguments ) = @_;
1807
1808     # Always expect worst case!
1809     my $status = -1;
1810     eval {
1811         if ($class->debug) {
1812             my $secs = time - $START || 1;
1813             my $av = sprintf '%.3f', $COUNT / $secs;
1814             my $time = localtime time;
1815             $class->log->info("*** Request $COUNT ($av/s) [$$] [$time] ***");
1816         }
1817
1818         my $c = $class->prepare(@arguments);
1819         $c->dispatch;
1820         $status = $c->finalize;
1821     };
1822
1823     if ( my $error = $@ ) {
1824         chomp $error;
1825         $class->log->error(qq/Caught exception in engine "$error"/);
1826     }
1827
1828     $COUNT++;
1829
1830     if(my $coderef = $class->log->can('_flush')){
1831         $class->log->$coderef();
1832     }
1833     return $status;
1834 }
1835
1836 =head2 $c->prepare( @arguments )
1837
1838 Creates a Catalyst context from an engine-specific request (Apache, CGI,
1839 etc.).
1840
1841 =cut
1842
1843 sub prepare {
1844     my ( $class, @arguments ) = @_;
1845
1846     # XXX
1847     # After the app/ctxt split, this should become an attribute based on something passed
1848     # into the application.
1849     $class->context_class( ref $class || $class ) unless $class->context_class;
1850
1851     my $c = $class->context_class->new({});
1852
1853     # For on-demand data
1854     $c->request->_context($c);
1855     $c->response->_context($c);
1856
1857     #surely this is not the most efficient way to do things...
1858     $c->stats($class->stats_class->new)->enable($c->use_stats);
1859     if ( $c->debug ) {
1860         $c->res->headers->header( 'X-Catalyst' => $Catalyst::VERSION );
1861     }
1862
1863     #XXX reuse coderef from can
1864     # Allow engine to direct the prepare flow (for POE)
1865     if ( $c->engine->can('prepare') ) {
1866         $c->engine->prepare( $c, @arguments );
1867     }
1868     else {
1869         $c->prepare_request(@arguments);
1870         $c->prepare_connection;
1871         $c->prepare_query_parameters;
1872         $c->prepare_headers;
1873         $c->prepare_cookies;
1874         $c->prepare_path;
1875
1876         # Prepare the body for reading, either by prepare_body
1877         # or the user, if they are using $c->read
1878         $c->prepare_read;
1879
1880         # Parse the body unless the user wants it on-demand
1881         unless ( $c->config->{parse_on_demand} ) {
1882             $c->prepare_body;
1883         }
1884     }
1885
1886     my $method  = $c->req->method  || '';
1887     my $path    = $c->req->path;
1888     $path       = '/' unless length $path;
1889     my $address = $c->req->address || '';
1890
1891     $c->log_request;
1892
1893     $c->prepare_action;
1894
1895     return $c;
1896 }
1897
1898 =head2 $c->prepare_action
1899
1900 Prepares action. See L<Catalyst::Dispatcher>.
1901
1902 =cut
1903
1904 sub prepare_action { my $c = shift; $c->dispatcher->prepare_action( $c, @_ ) }
1905
1906 =head2 $c->prepare_body
1907
1908 Prepares message body.
1909
1910 =cut
1911
1912 sub prepare_body {
1913     my $c = shift;
1914
1915     return if $c->request->_has_body;
1916
1917     # Initialize on-demand data
1918     $c->engine->prepare_body( $c, @_ );
1919     $c->prepare_parameters;
1920     $c->prepare_uploads;
1921 }
1922
1923 =head2 $c->prepare_body_chunk( $chunk )
1924
1925 Prepares a chunk of data before sending it to L<HTTP::Body>.
1926
1927 See L<Catalyst::Engine>.
1928
1929 =cut
1930
1931 sub prepare_body_chunk {
1932     my $c = shift;
1933     $c->engine->prepare_body_chunk( $c, @_ );
1934 }
1935
1936 =head2 $c->prepare_body_parameters
1937
1938 Prepares body parameters.
1939
1940 =cut
1941
1942 sub prepare_body_parameters {
1943     my $c = shift;
1944     $c->engine->prepare_body_parameters( $c, @_ );
1945 }
1946
1947 =head2 $c->prepare_connection
1948
1949 Prepares connection.
1950
1951 =cut
1952
1953 sub prepare_connection {
1954     my $c = shift;
1955     $c->engine->prepare_connection( $c, @_ );
1956 }
1957
1958 =head2 $c->prepare_cookies
1959
1960 Prepares cookies.
1961
1962 =cut
1963
1964 sub prepare_cookies { my $c = shift; $c->engine->prepare_cookies( $c, @_ ) }
1965
1966 =head2 $c->prepare_headers
1967
1968 Prepares headers.
1969
1970 =cut
1971
1972 sub prepare_headers { my $c = shift; $c->engine->prepare_headers( $c, @_ ) }
1973
1974 =head2 $c->prepare_parameters
1975
1976 Prepares parameters.
1977
1978 =cut
1979
1980 sub prepare_parameters {
1981     my $c = shift;
1982     $c->prepare_body_parameters;
1983     $c->engine->prepare_parameters( $c, @_ );
1984 }
1985
1986 =head2 $c->prepare_path
1987
1988 Prepares path and base.
1989
1990 =cut
1991
1992 sub prepare_path { my $c = shift; $c->engine->prepare_path( $c, @_ ) }
1993
1994 =head2 $c->prepare_query_parameters
1995
1996 Prepares query parameters.
1997
1998 =cut
1999
2000 sub prepare_query_parameters {
2001     my $c = shift;
2002
2003     $c->engine->prepare_query_parameters( $c, @_ );
2004 }
2005
2006 =head2 $c->apply_parameter_debug_filters($params)
2007
2008 =cut
2009
2010 sub _apply_parameter_debug_filters {
2011     my $c      = shift;
2012     my $type   = shift;
2013     my $params = shift;
2014
2015     # take a copy since we don't want to modify the original
2016     my $filtered_params = {%$params};
2017
2018     my @filters;
2019
2020     my $filter_param_config = $c->config->{Debug}->{param_filters};
2021     if ( ref($filter_param_config) eq 'HASH' ) {
2022
2023         # filters broken out by parameter type (i.e. body, query, all)
2024         my $type_filters = $filter_param_config->{$type} || [];
2025         $type_filters = [$type_filters] if ref $type_filters ne 'ARRAY';
2026
2027         my $all_filters = $filter_param_config->{'all'} || [];
2028         $all_filters = [$all_filters] if ref $all_filters ne 'ARRAY';
2029
2030         @filters = $c->_normalize_debug_filters( [ @$type_filters, @$all_filters ] );
2031     } elsif ($filter_param_config) {
2032         @filters = $c->_normalize_debug_filters($filter_param_config);
2033     }
2034
2035     # allow callback to modify each parameter
2036     foreach my $k ( keys %$filtered_params ) {
2037
2038         # apply filters to each param
2039         foreach my $f (@filters) {
2040
2041             # take a copy of the key to avoid the callback inadvertantly
2042             # modifying things
2043             my $copy_key = $k;
2044
2045             my $returned = $f->( $copy_key => $filtered_params->{$k} );
2046
2047             if ( defined $returned ) {
2048
2049                 # if no value is returned, we assume the filter chose not to modify anything
2050                 # otherwise, the returned value is the logged value
2051                 $filtered_params->{$k} = $returned;
2052
2053                 last;    # skip the rest of the filters since this one matched
2054             }
2055         }
2056     }
2057     return $filtered_params;
2058 }
2059
2060 # turn debug filters into a list of CodeRef's
2061 sub _normalize_debug_filters {
2062     my $c = shift;
2063
2064     my @filters = ref( $_[0] ) eq 'ARRAY' ? @{ $_[0] } : grep { defined $_ } @_;
2065
2066     my @normalized = map { _make_filter_callback($_) } @filters;
2067
2068     return @normalized;
2069 }
2070
2071 sub _make_filter_callback {
2072     my $filter = shift;
2073
2074     my $filter_str = '[FILTERED]';
2075     if ( ref($filter) eq 'Regexp' ) {
2076         return sub { return $_[0] =~ $filter ? $filter_str  : undef };
2077     } elsif ( ref($filter) eq 'CODE' ) {
2078         return $filter;
2079     } else {
2080         return sub { return $_[0] eq $filter ? $filter_str : undef };
2081     }
2082 }
2083
2084 =head2 $c->log_request
2085
2086 Writes information about the request to the debug logs.  This includes:
2087
2088 =over 4
2089
2090 =item * Request method, path and remote IP
2091
2092 =item * Query keywords (see L<Catalyst::Request/query_keywords>)
2093
2094 =item * Request parameters (see L</log_request_parameters>)
2095
2096 =item * File uploads
2097
2098 =back
2099
2100 =cut
2101
2102 sub log_request {
2103     my $c = shift;
2104
2105     return unless $c->debug;
2106
2107     my ( $method, $path, $address ) = ( $c->req->method, $c->req->path, $c->req->address );
2108     $method ||= '';
2109     $path = '/' unless length $path;
2110     $address ||= '';
2111     $c->log->debug(qq/"$method" request for "$path" from "$address"/);
2112
2113     if ( my $keywords = $c->req->query_keywords ) {
2114         $c->log->debug("Query keywords are: $keywords");
2115     }
2116
2117     $c->log_request_parameters( query => $c->req->query_parameters, body => $c->req->body_parameters );
2118
2119     $c->log_request_uploads;
2120 }
2121
2122 =head2 $c->log_response
2123
2124 Writes information about the response to the debug logs.  This includes:
2125
2126 =over 4
2127
2128 =item * Response status code
2129
2130 =item * Response headers (see L</log_headers>)
2131
2132 =back
2133
2134 This logging is not enabled by default.  To enable, you must set a flag in your Catalyst config:
2135
2136         __PACKAGE__->config( Debug => { log_response => 1 } );
2137
2138 =cut
2139
2140 sub log_response {
2141     my $c = shift;
2142
2143     return unless $c->debug && $c->config->{Debug}->{log_response};
2144
2145     $c->log->debug('Response Status: ' . $c->response->status);
2146     $c->log_headers('response', $c->response->headers);
2147 }
2148
2149 =head2 $c->log_request_parameters( query => {}, body => {} )
2150
2151 Logs request parameters to debug logs
2152
2153 If you have sensitive data that you do not want written to the Catalyst
2154 debug logs, you can set options in your config to filter those values out.
2155 There are a few different ways you can set these up depending on what
2156 exactly you need to filter.
2157
2158 =head3 Filtering parameters by name
2159
2160 The most basic means of filtering is to add an entry into your config
2161 as shown below.  You can have a simple scalar to just filter a
2162 single parameter or an ARRAY ref to filter out multiple params.
2163
2164     # filters a single param
2165     __PACKAGE__->config( Debug => { param_filters => 'param_name' } );
2166
2167     # filters multiple params
2168     __PACKAGE__->config( Debug => { param_filters => [qw(param1 param2)] } );
2169
2170 When the debug logs are generated for a given request, any parameters
2171 (query or body) that exactly match the specified value(s) will have
2172 their values replaced with '[FILTERED]'.  For instance:
2173
2174     [debug] Query Parameters are:
2175     .-------------------------------------+--------------------------------------.
2176     | Parameter                           | Value                                |
2177     +-------------------------------------+--------------------------------------+
2178     | param_name                          | [FILTERED]                           |
2179     .-------------------------------------+--------------------------------------.
2180
2181 =head3 Filtering parameters by regular expression
2182
2183 If you have a set of parameters you need to filter, you can specify a
2184 regular expression that will be used to match against parameter names.
2185
2186     # filters parameters starting with "private."
2187     __PACKAGE__->config( Debug => { param_filters => qr/^private\./ } );
2188
2189     # filters parameters named "param1" or starting with "private." or "secret."
2190     __PACKAGE__->config( Debug => { param_filters => [ 'param1', qr/^private\./, qr/^secret\./ ] } );
2191
2192 Notice on the second example, the ARRAY ref contains a string as well
2193 as two regular expressions.  This should DWIM and filter parameters that
2194 match any of the filters specified.
2195
2196 =head3 Filtering parameters by callback
2197
2198 If you want even more flexible filtering, you can specify an anonymous
2199 subroutine.  The subroutine is given the parameter name and value and
2200 is expected to return the new value that will be show in the debug log.
2201 An C<undef> return value indicates that no change should be made to
2202 the value.
2203
2204     # transform any "password" param to "********"
2205     __PACKAGE__->config(
2206         Debug => {
2207             param_filters => sub { my ( $k, $v ) = @_; return unless $k eq 'password'; return '*' x 8; }
2208         }
2209     );
2210
2211     # combine with other filtering methods
2212     __PACKAGE__->config(
2213         Debug => {
2214             param_filters => [
2215                 'simple_param_name',
2216                 qr/^private\./,
2217                 sub { my ( $k, $v ) = @_; return unless $k eq 'password'; return '*' x 8; },
2218             ]
2219         }
2220     );
2221
2222 An example of the debug log for a request with 
2223 C<password=secret&some_other_param=some_other_value> would be:
2224
2225     [debug] Body Parameters are:
2226     .-------------------------------------+--------------------------------------.
2227     | Parameter                           | Value                                |
2228     +-------------------------------------+--------------------------------------+
2229     | some_other_param                    | some_other_value                     |
2230     | password                            | ********                             |
2231     .-------------------------------------+--------------------------------------.
2232
2233 =head3 Filtering by parameter location
2234
2235 If you have a different set of filters based on how they were passed
2236 (query vs. body vs. all), you can specify a HASH ref with different sets of
2237 filters:
2238
2239     # filters all body parameters
2240     __PACKAGE__->config( Debug => { param_filters => { body => qr// } } );
2241
2242     # filters query parameters starting with "private."
2243     __PACKAGE__->config( Debug => { param_filters => { query => qr/^private\./ } } );
2244
2245     # filters all parameters (query or body) through the specified callback
2246     __PACKAGE__->config(
2247         Debug => {
2248             param_filters => {
2249                 all => sub { return unless $_[0] eq 'fizzbuzz'; return 'FIZZBUZZ FILTER' }
2250             }
2251         }
2252     );
2253
2254 Of course, you can use any of the above filtering methods with these
2255 "location-specific" filters:
2256
2257     # body parameter filters
2258     __PACKAGE__->config(
2259         Debug => {
2260             param_filters => {
2261                 body => [
2262                     'some_param',
2263                     qr/^private\./,
2264                     sub { return 'XXX' if shift eq 'other_param' }
2265                 ]
2266             }
2267         }
2268     );
2269
2270     # query parameter filters
2271     __PACKAGE__->config(
2272         Debug => {
2273             param_filters => {
2274                 body => [
2275                     'some_param',
2276                     qr/^private\./,
2277                     sub { return 'XXX' if shift eq 'other_param' }
2278                 ]
2279             }
2280         }
2281     );
2282
2283     # query parameter filters
2284     __PACKAGE__->config( Debug => { param_filters => { all => [qw(foo bar)] } } );
2285
2286 =cut
2287
2288 sub log_request_parameters {
2289     my $c          = shift;
2290     my %all_params = @_;
2291
2292     my $column_width = Catalyst::Utils::term_width() - 44;
2293     foreach my $type (qw(query body)) {
2294         my $filtered_params = $c->_apply_parameter_debug_filters( $type, $all_params{$type} || {} );
2295         next unless keys %$filtered_params;
2296         my $t = Text::SimpleTable->new( [ 35, 'Parameter' ], [ $column_width, 'Value' ] );
2297         for my $key ( sort keys %$filtered_params ) {
2298             my $param = $filtered_params->{$key};
2299             my $value = defined($param) ? $param : '';
2300             $t->row( $key, ref $value eq 'ARRAY' ? ( join ', ', @$value ) : $value );
2301         }
2302         $c->log->debug( ucfirst($type) . " Parameters are:\n" . $t->draw );
2303     }
2304 }
2305
2306 =head2 $c->log_request_uploads
2307
2308 Logs file uploads included in the request to the debug logs.
2309 The parameter name, filename, file type and size are all included in
2310 the debug logs.
2311
2312 =cut
2313
2314 sub log_request_uploads {
2315     my $c = shift;
2316     my $uploads = $c->req->uploads;
2317     if ( keys %$uploads ) {
2318         my $t = Text::SimpleTable->new(
2319             [ 12, 'Parameter' ],
2320             [ 26, 'Filename' ],
2321             [ 18, 'Type' ],
2322             [ 9,  'Size' ]
2323         );
2324         for my $key ( sort keys %$uploads ) {
2325             my $upload = $uploads->{$key};
2326             for my $u ( ref $upload eq 'ARRAY' ? @{$upload} : ($upload) ) {
2327                 $t->row( $key, $u->filename, $u->type, $u->size );
2328             }
2329         }
2330         $c->log->debug( "File Uploads are:\n" . $t->draw );
2331     }
2332 }
2333
2334 =head2 $c->log_headers($type => $headers)
2335
2336 Writes HTTP::Headers to debug logs, applying filters as configured.
2337
2338 Similarly to how L</log_request_parameters> is configured, you can
2339 configure Catalyst to filter response header values to avoid writing
2340 sensitive data to your logs (i.e. cookie values, etc).  Take a look at
2341 the examples in L</log_request_parameters> as this configuration works
2342 virtually the same way.  Here are a few examples:
2343
2344     # filters all "Set-Cookie" headers from response logging
2345     __PACKAGE__->config(Debug => { response_header_filters => 'Set-Cookie' } );
2346
2347     # filters only the value of the cookie (and leaves the name, path, expiration)
2348     __PACKAGE__->config(
2349         Debug => {
2350             response_header_filters => sub {
2351                 my ( $n, $v ) = @_;
2352                 return unless $n eq 'Set-Cookie';
2353                 $v =~ s/^.*?;//;
2354                 return $v;
2355             },
2356         }
2357     );
2358
2359 =cut
2360
2361 sub log_headers {
2362     my $c       = shift;
2363     my $type    = shift;
2364     my $headers = shift;    # an HTTP::Headers instance
2365
2366     my $filtered = $c->_apply_header_debug_filters( $type, $headers );
2367
2368     my $t = Text::SimpleTable->new( [ 35, 'Header Name' ], [ 40, 'Value' ] );
2369     $filtered->scan(
2370         sub {
2371             my ( $name, $value ) = @_;
2372             $t->row( $name, $value );
2373         }
2374     );
2375     $c->log->debug( ucfirst($type) . " Headers:\n" . $t->draw );
2376 }
2377
2378 # Applies debug filters to $headers and returns a new HTTP::Headers object which has (potentially) filtered values.
2379 sub _apply_header_debug_filters {
2380     my $c    = shift;
2381     my $type    = shift;
2382     my $headers = shift;
2383
2384     my @header_filters   = $c->_normalize_debug_filters( $c->config->{Debug}->{ $type . '_header_filters' } );
2385     my $filtered_headers = HTTP::Headers->new();
2386     foreach my $name ( $headers->header_field_names ) {
2387         my @values = $headers->header($name);
2388
2389         # headers can be multi-valued
2390         foreach my $value (@values) {
2391             foreach my $f (@header_filters) {
2392                 my $new_value = $f->( $name, $value );
2393
2394                 # if a defined value is returned, we use that
2395                 if ( defined $new_value ) {
2396                     $value = $new_value;
2397                     last;    # skip the rest of the filters
2398                 }
2399             }
2400             $filtered_headers->push_header( $name, $value );
2401         }
2402     }
2403     return $filtered_headers;
2404 }
2405
2406 =head2 $c->prepare_read
2407
2408 Prepares the input for reading.
2409
2410 =cut
2411
2412 sub prepare_read { my $c = shift; $c->engine->prepare_read( $c, @_ ) }
2413
2414 =head2 $c->prepare_request
2415
2416 Prepares the engine request.
2417
2418 =cut
2419
2420 sub prepare_request { my $c = shift; $c->engine->prepare_request( $c, @_ ) }
2421
2422 =head2 $c->prepare_uploads
2423
2424 Prepares uploads.
2425
2426 =cut
2427
2428 sub prepare_uploads {
2429     my $c = shift;
2430
2431     $c->engine->prepare_uploads( $c, @_ );
2432 }
2433
2434 =head2 $c->prepare_write
2435
2436 Prepares the output for writing.
2437
2438 =cut
2439
2440 sub prepare_write { my $c = shift; $c->engine->prepare_write( $c, @_ ) }
2441
2442 =head2 $c->request_class
2443
2444 Returns or sets the request class.
2445
2446 =head2 $c->response_class
2447
2448 Returns or sets the response class.
2449
2450 =head2 $c->read( [$maxlength] )
2451
2452 Reads a chunk of data from the request body. This method is designed to
2453 be used in a while loop, reading C<$maxlength> bytes on every call.
2454 C<$maxlength> defaults to the size of the request if not specified.
2455
2456 You have to set C<< MyApp->config->{parse_on_demand} >> to use this
2457 directly.
2458
2459 Warning: If you use read(), Catalyst will not process the body,
2460 so you will not be able to access POST parameters or file uploads via
2461 $c->request.  You must handle all body parsing yourself.
2462
2463 =cut
2464
2465 sub read { my $c = shift; return $c->engine->read( $c, @_ ) }
2466
2467 =head2 $c->run
2468
2469 Starts the engine.
2470
2471 =cut
2472
2473 sub run { my $c = shift; return $c->engine->run( $c, @_ ) }
2474
2475 =head2 $c->set_action( $action, $code, $namespace, $attrs )
2476
2477 Sets an action in a given namespace.
2478
2479 =cut
2480
2481 sub set_action { my $c = shift; $c->dispatcher->set_action( $c, @_ ) }
2482
2483 =head2 $c->setup_actions($component)
2484
2485 Sets up actions for a component.
2486
2487 =cut
2488
2489 sub setup_actions { my $c = shift; $c->dispatcher->setup_actions( $c, @_ ) }
2490
2491 =head2 $c->setup_components
2492
2493 Sets up components. Specify a C<setup_components> config option to pass
2494 additional options directly to L<Module::Pluggable>. To add additional
2495 search paths, specify a key named C<search_extra> as an array
2496 reference. Items in the array beginning with C<::> will have the
2497 application class name prepended to them.
2498
2499 All components found will also have any
2500 L<Devel::InnerPackage|inner packages> loaded and set up as components.
2501 Note, that modules which are B<not> an I<inner package> of the main
2502 file namespace loaded will not be instantiated as components.
2503
2504 =cut
2505
2506 sub setup_components {
2507     my $class = shift;
2508
2509     my @paths   = qw( ::Controller ::C ::Model ::M ::View ::V );
2510     my $config  = $class->config->{ setup_components };
2511     my $extra   = delete $config->{ search_extra } || [];
2512
2513     push @paths, @$extra;
2514
2515     my $locator = Module::Pluggable::Object->new(
2516         search_path => [ map { s/^(?=::)/$class/; $_; } @paths ],
2517         %$config
2518     );
2519
2520     my @comps = sort { length $a <=> length $b } $locator->plugins;
2521     my %comps = map { $_ => 1 } @comps;
2522
2523     my $deprecated_component_names = grep { /::[CMV]::/ } @comps;
2524     $class->log->warn(qq{Your application is using the deprecated ::[MVC]:: type naming scheme.\n}.
2525         qq{Please switch your class names to ::Model::, ::View:: and ::Controller: as appropriate.\n}
2526     ) if $deprecated_component_names;
2527
2528     for my $component ( @comps ) {
2529
2530         # We pass ignore_loaded here so that overlay files for (e.g.)
2531         # Model::DBI::Schema sub-classes are loaded - if it's in @comps
2532         # we know M::P::O found a file on disk so this is safe
2533
2534         Catalyst::Utils::ensure_class_loaded( $component, { ignore_loaded => 1 } );
2535         #Class::MOP::load_class($component);
2536
2537         my $module  = $class->setup_component( $component );
2538         my %modules = (
2539             $component => $module,
2540             map {
2541                 $_ => $class->setup_component( $_ )
2542             } grep {
2543               not exists $comps{$_}
2544             } Devel::InnerPackage::list_packages( $component )
2545         );
2546
2547         for my $key ( keys %modules ) {
2548             $class->components->{ $key } = $modules{ $key };
2549         }
2550     }
2551 }
2552
2553 =head2 $c->setup_component
2554
2555 =cut
2556
2557 sub _controller_init_base_classes {
2558     my ($app_class, $component) = @_;
2559     foreach my $class ( reverse @{ mro::get_linear_isa($component) } ) {
2560         Moose::Meta::Class->initialize( $class )
2561             unless find_meta($class);
2562     }
2563 }
2564
2565 sub setup_component {
2566     my( $class, $component ) = @_;
2567
2568     unless ( $component->can( 'COMPONENT' ) ) {
2569         return $component;
2570     }
2571
2572     # FIXME - Ugly, ugly hack to ensure the we force initialize non-moose base classes
2573     #         nearest to Catalyst::Controller first, no matter what order stuff happens
2574     #         to be loaded. There are TODO tests in Moose for this, see
2575     #         f2391d17574eff81d911b97be15ea51080500003
2576     if ($component->isa('Catalyst::Controller')) {
2577         $class->_controller_init_base_classes($component);
2578     }
2579
2580     my $suffix = Catalyst::Utils::class2classsuffix( $component );
2581     my $config = $class->config->{ $suffix } || {};
2582
2583     my $instance = eval { $component->COMPONENT( $class, $config ); };
2584
2585     if ( my $error = $@ ) {
2586         chomp $error;
2587         Catalyst::Exception->throw(
2588             message => qq/Couldn't instantiate component "$component", "$error"/
2589         );
2590     }
2591
2592     unless (blessed $instance) {
2593         my $metaclass = Moose::Util::find_meta($component);
2594         my $method_meta = $metaclass->find_method_by_name('COMPONENT');
2595         my $component_method_from = $method_meta->associated_metaclass->name;
2596         my $value = defined($instance) ? $instance : 'undef';
2597         Catalyst::Exception->throw(
2598             message =>
2599             qq/Couldn't instantiate component "$component", COMPONENT() method (from $component_method_from) didn't return an object-like value (value was $value)./
2600         );
2601     }
2602     return $instance;
2603 }
2604
2605 =head2 $c->setup_dispatcher
2606
2607 Sets up dispatcher.
2608
2609 =cut
2610
2611 sub setup_dispatcher {
2612     my ( $class, $dispatcher ) = @_;
2613
2614     if ($dispatcher) {
2615         $dispatcher = 'Catalyst::Dispatcher::' . $dispatcher;
2616     }
2617
2618     if ( my $env = Catalyst::Utils::env_value( $class, 'DISPATCHER' ) ) {
2619         $dispatcher = 'Catalyst::Dispatcher::' . $env;
2620     }
2621
2622     unless ($dispatcher) {
2623         $dispatcher = $class->dispatcher_class;
2624     }
2625
2626     Class::MOP::load_class($dispatcher);
2627
2628     # dispatcher instance
2629     $class->dispatcher( $dispatcher->new );
2630 }
2631
2632 =head2 $c->setup_engine
2633
2634 Sets up engine.
2635
2636 =cut
2637
2638 sub setup_engine {
2639     my ( $class, $engine ) = @_;
2640
2641     if ($engine) {
2642         $engine = 'Catalyst::Engine::' . $engine;
2643     }
2644
2645     if ( my $env = Catalyst::Utils::env_value( $class, 'ENGINE' ) ) {
2646         $engine = 'Catalyst::Engine::' . $env;
2647     }
2648
2649     if ( $ENV{MOD_PERL} ) {
2650         my $meta = Class::MOP::get_metaclass_by_name($class);
2651
2652         # create the apache method
2653         $meta->add_method('apache' => sub { shift->engine->apache });
2654
2655         my ( $software, $version ) =
2656           $ENV{MOD_PERL} =~ /^(\S+)\/(\d+(?:[\.\_]\d+)+)/;
2657
2658         $version =~ s/_//g;
2659         $version =~ s/(\.[^.]+)\./$1/g;
2660
2661         if ( $software eq 'mod_perl' ) {
2662
2663             if ( !$engine ) {
2664
2665                 if ( $version >= 1.99922 ) {
2666                     $engine = 'Catalyst::Engine::Apache2::MP20';
2667                 }
2668
2669                 elsif ( $version >= 1.9901 ) {
2670                     $engine = 'Catalyst::Engine::Apache2::MP19';
2671                 }
2672
2673                 elsif ( $version >= 1.24 ) {
2674                     $engine = 'Catalyst::Engine::Apache::MP13';
2675                 }
2676
2677                 else {
2678                     Catalyst::Exception->throw( message =>
2679                           qq/Unsupported mod_perl version: $ENV{MOD_PERL}/ );
2680                 }
2681
2682             }
2683
2684             # install the correct mod_perl handler
2685             if ( $version >= 1.9901 ) {
2686                 *handler = sub  : method {
2687                     shift->handle_request(@_);
2688                 };
2689             }
2690             else {
2691                 *handler = sub ($$) { shift->handle_request(@_) };
2692             }
2693
2694         }
2695
2696         elsif ( $software eq 'Zeus-Perl' ) {
2697             $engine = 'Catalyst::Engine::Zeus';
2698         }
2699
2700         else {
2701             Catalyst::Exception->throw(
2702                 message => qq/Unsupported mod_perl: $ENV{MOD_PERL}/ );
2703         }
2704     }
2705
2706     unless ($engine) {
2707         $engine = $class->engine_class;
2708     }
2709
2710     Class::MOP::load_class($engine);
2711
2712     # check for old engines that are no longer compatible
2713     my $old_engine;
2714     if ( $engine->isa('Catalyst::Engine::Apache')
2715         && !Catalyst::Engine::Apache->VERSION )
2716     {
2717         $old_engine = 1;
2718     }
2719
2720     elsif ( $engine->isa('Catalyst::Engine::Server::Base')
2721         && Catalyst::Engine::Server->VERSION le '0.02' )
2722     {
2723         $old_engine = 1;
2724     }
2725
2726     elsif ($engine->isa('Catalyst::Engine::HTTP::POE')
2727         && $engine->VERSION eq '0.01' )
2728     {
2729         $old_engine = 1;
2730     }
2731
2732     elsif ($engine->isa('Catalyst::Engine::Zeus')
2733         && $engine->VERSION eq '0.01' )
2734     {
2735         $old_engine = 1;
2736     }
2737
2738     if ($old_engine) {
2739         Catalyst::Exception->throw( message =>
2740               qq/Engine "$engine" is not supported by this version of Catalyst/
2741         );
2742     }
2743
2744     # engine instance
2745     $class->engine( $engine->new );
2746 }
2747
2748 =head2 $c->setup_home
2749
2750 Sets up the home directory.
2751
2752 =cut
2753
2754 sub setup_home {
2755     my ( $class, $home ) = @_;
2756
2757     if ( my $env = Catalyst::Utils::env_value( $class, 'HOME' ) ) {
2758         $home = $env;
2759     }
2760
2761     $home ||= Catalyst::Utils::home($class);
2762
2763     if ($home) {
2764         #I remember recently being scolded for assigning config values like this
2765         $class->config->{home} ||= $home;
2766         $class->config->{root} ||= Path::Class::Dir->new($home)->subdir('root');
2767     }
2768 }
2769
2770 =head2 $c->setup_log
2771
2772 Sets up log by instantiating a L<Catalyst::Log|Catalyst::Log> object and
2773 passing it to C<log()>. Pass in a comma-delimited list of levels to set the
2774 log to.
2775
2776 This method also installs a C<debug> method that returns a true value into the
2777 catalyst subclass if the "debug" level is passed in the comma-delimited list,
2778 or if the C<$CATALYST_DEBUG> environment variable is set to a true value.
2779
2780 Note that if the log has already been setup, by either a previous call to
2781 C<setup_log> or by a call such as C<< __PACKAGE__->log( MyLogger->new ) >>,
2782 that this method won't actually set up the log object.
2783
2784 =cut
2785
2786 sub setup_log {
2787     my ( $class, $levels ) = @_;
2788
2789     $levels ||= '';
2790     $levels =~ s/^\s+//;
2791     $levels =~ s/\s+$//;
2792     my %levels = map { $_ => 1 } split /\s*,\s*/, $levels;
2793
2794     my $env_debug = Catalyst::Utils::env_value( $class, 'DEBUG' );
2795     if ( defined $env_debug ) {
2796         $levels{debug} = 1 if $env_debug; # Ugly!
2797         delete($levels{debug}) unless $env_debug;
2798     }
2799
2800     unless ( $class->log ) {
2801         $class->log( Catalyst::Log->new(keys %levels) );
2802     }
2803
2804     if ( $levels{debug} ) {
2805         Class::MOP::get_metaclass_by_name($class)->add_method('debug' => sub { 1 });
2806         $class->log->debug('Debug messages enabled');
2807     }
2808 }
2809
2810 =head2 $c->setup_plugins
2811
2812 Sets up plugins.
2813
2814 =cut
2815
2816 =head2 $c->setup_stats
2817
2818 Sets up timing statistics class.
2819
2820 =cut
2821
2822 sub setup_stats {
2823     my ( $class, $stats ) = @_;
2824
2825     Catalyst::Utils::ensure_class_loaded($class->stats_class);
2826
2827     my $env = Catalyst::Utils::env_value( $class, 'STATS' );
2828     if ( defined($env) ? $env : ($stats || $class->debug ) ) {
2829         Class::MOP::get_metaclass_by_name($class)->add_method('use_stats' => sub { 1 });
2830         $class->log->debug('Statistics enabled');
2831     }
2832 }
2833
2834
2835 =head2 $c->registered_plugins
2836
2837 Returns a sorted list of the plugins which have either been stated in the
2838 import list or which have been added via C<< MyApp->plugin(@args); >>.
2839
2840 If passed a given plugin name, it will report a boolean value indicating
2841 whether or not that plugin is loaded.  A fully qualified name is required if
2842 the plugin name does not begin with C<Catalyst::Plugin::>.
2843
2844  if ($c->registered_plugins('Some::Plugin')) {
2845      ...
2846  }
2847
2848 =cut
2849
2850 {
2851
2852     sub registered_plugins {
2853         my $proto = shift;
2854         return sort keys %{ $proto->_plugins } unless @_;
2855         my $plugin = shift;
2856         return 1 if exists $proto->_plugins->{$plugin};
2857         return exists $proto->_plugins->{"Catalyst::Plugin::$plugin"};
2858     }
2859
2860     sub _register_plugin {
2861         my ( $proto, $plugin, $instant ) = @_;
2862         my $class = ref $proto || $proto;
2863
2864         Class::MOP::load_class( $plugin );
2865
2866         $proto->_plugins->{$plugin} = 1;
2867         unless ($instant) {
2868             no strict 'refs';
2869             if ( my $meta = Class::MOP::get_metaclass_by_name($class) ) {
2870               my @superclasses = ($plugin, $meta->superclasses );
2871               $meta->superclasses(@superclasses);
2872             } else {
2873               unshift @{"$class\::ISA"}, $plugin;
2874             }
2875         }
2876         return $class;
2877     }
2878
2879     sub setup_plugins {
2880         my ( $class, $plugins ) = @_;
2881
2882         $class->_plugins( {} ) unless $class->_plugins;
2883         $plugins ||= [];
2884
2885         my @plugins = Catalyst::Utils::resolve_namespace($class . '::Plugin', 'Catalyst::Plugin', @$plugins);
2886
2887         for my $plugin ( reverse @plugins ) {
2888             Class::MOP::load_class($plugin);
2889             my $meta = find_meta($plugin);
2890             next if $meta && $meta->isa('Moose::Meta::Role');
2891
2892             $class->_register_plugin($plugin);
2893         }
2894
2895         my @roles =
2896             map { $_->name }
2897             grep { $_ && blessed($_) && $_->isa('Moose::Meta::Role') }
2898             map { find_meta($_) }
2899             @plugins;
2900
2901         Moose::Util::apply_all_roles(
2902             $class => @roles
2903         ) if @roles;
2904     }
2905 }
2906
2907 =head2 $c->stack
2908
2909 Returns an arrayref of the internal execution stack (actions that are
2910 currently executing).
2911
2912 =head2 $c->stats_class
2913
2914 Returns or sets the stats (timing statistics) class.
2915
2916 =head2 $c->use_stats
2917
2918 Returns 1 when stats collection is enabled.  Stats collection is enabled
2919 when the -Stats options is set, debug is on or when the <MYAPP>_STATS
2920 environment variable is set.
2921
2922 Note that this is a static method, not an accessor and should be overridden
2923 by declaring C<sub use_stats { 1 }> in your MyApp.pm, not by calling C<< $c->use_stats(1) >>.
2924
2925 =cut
2926
2927 sub use_stats { 0 }
2928
2929
2930 =head2 $c->write( $data )
2931
2932 Writes $data to the output stream. When using this method directly, you
2933 will need to manually set the C<Content-Length> header to the length of
2934 your output data, if known.
2935
2936 =cut
2937
2938 sub write {
2939     my $c = shift;
2940
2941     # Finalize headers if someone manually writes output
2942     $c->finalize_headers;
2943
2944     return $c->engine->write( $c, @_ );
2945 }
2946
2947 =head2 version
2948
2949 Returns the Catalyst version number. Mostly useful for "powered by"
2950 messages in template systems.
2951
2952 =cut
2953
2954 sub version { return $Catalyst::VERSION }
2955
2956 =head1 INTERNAL ACTIONS
2957
2958 Catalyst uses internal actions like C<_DISPATCH>, C<_BEGIN>, C<_AUTO>,
2959 C<_ACTION>, and C<_END>. These are by default not shown in the private
2960 action table, but you can make them visible with a config parameter.
2961
2962     MyApp->config->{show_internal_actions} = 1;
2963
2964 =head1 CASE SENSITIVITY
2965
2966 By default Catalyst is not case sensitive, so C<MyApp::C::FOO::Bar> is
2967 mapped to C</foo/bar>. You can activate case sensitivity with a config
2968 parameter.
2969
2970     MyApp->config->{case_sensitive} = 1;
2971
2972 This causes C<MyApp::C::Foo::Bar> to map to C</Foo/Bar>.
2973
2974 =head1 ON-DEMAND PARSER
2975
2976 The request body is usually parsed at the beginning of a request,
2977 but if you want to handle input yourself, you can enable on-demand
2978 parsing with a config parameter.
2979
2980     MyApp->config->{parse_on_demand} = 1;
2981
2982 =head1 PROXY SUPPORT
2983
2984 Many production servers operate using the common double-server approach,
2985 with a lightweight frontend web server passing requests to a larger
2986 backend server. An application running on the backend server must deal
2987 with two problems: the remote user always appears to be C<127.0.0.1> and
2988 the server's hostname will appear to be C<localhost> regardless of the
2989 virtual host that the user connected through.
2990
2991 Catalyst will automatically detect this situation when you are running
2992 the frontend and backend servers on the same machine. The following
2993 changes are made to the request.
2994
2995     $c->req->address is set to the user's real IP address, as read from
2996     the HTTP X-Forwarded-For header.
2997
2998     The host value for $c->req->base and $c->req->uri is set to the real
2999     host, as read from the HTTP X-Forwarded-Host header.
3000
3001 Obviously, your web server must support these headers for this to work.
3002
3003 In a more complex server farm environment where you may have your
3004 frontend proxy server(s) on different machines, you will need to set a
3005 configuration option to tell Catalyst to read the proxied data from the
3006 headers.
3007
3008     MyApp->config->{using_frontend_proxy} = 1;
3009
3010 If you do not wish to use the proxy support at all, you may set:
3011
3012     MyApp->config->{ignore_frontend_proxy} = 1;
3013
3014 =head1 THREAD SAFETY
3015
3016 Catalyst has been tested under Apache 2's threading C<mpm_worker>,
3017 C<mpm_winnt>, and the standalone forking HTTP server on Windows. We
3018 believe the Catalyst core to be thread-safe.
3019
3020 If you plan to operate in a threaded environment, remember that all other
3021 modules you are using must also be thread-safe. Some modules, most notably
3022 L<DBD::SQLite>, are not thread-safe.
3023
3024 =head1 SUPPORT
3025
3026 IRC:
3027
3028     Join #catalyst on irc.perl.org.
3029
3030 Mailing Lists:
3031
3032     http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
3033     http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst-dev
3034
3035 Web:
3036
3037     http://catalyst.perl.org
3038
3039 Wiki:
3040
3041     http://dev.catalyst.perl.org
3042
3043 =head1 SEE ALSO
3044
3045 =head2 L<Task::Catalyst> - All you need to start with Catalyst
3046
3047 =head2 L<Catalyst::Manual> - The Catalyst Manual
3048
3049 =head2 L<Catalyst::Component>, L<Catalyst::Base> - Base classes for components
3050
3051 =head2 L<Catalyst::Engine> - Core engine
3052
3053 =head2 L<Catalyst::Log> - Log class.
3054
3055 =head2 L<Catalyst::Request> - Request object
3056
3057 =head2 L<Catalyst::Response> - Response object
3058
3059 =head2 L<Catalyst::Test> - The test suite.
3060
3061 =head1 PROJECT FOUNDER
3062
3063 sri: Sebastian Riedel <sri@cpan.org>
3064
3065 =head1 CONTRIBUTORS
3066
3067 abw: Andy Wardley
3068
3069 acme: Leon Brocard <leon@astray.com>
3070
3071 Andrew Bramble
3072
3073 Andrew Ford
3074
3075 Andrew Ruthven
3076
3077 andyg: Andy Grundman <andy@hybridized.org>
3078
3079 audreyt: Audrey Tang
3080
3081 bricas: Brian Cassidy <bricas@cpan.org>
3082
3083 Caelum: Rafael Kitover <rkitover@io.com>
3084
3085 chansen: Christian Hansen
3086
3087 chicks: Christopher Hicks
3088
3089 David E. Wheeler
3090
3091 dkubb: Dan Kubb <dan.kubb-cpan@onautopilot.com>
3092
3093 Drew Taylor
3094
3095 dwc: Daniel Westermann-Clark <danieltwc@cpan.org>
3096
3097 esskar: Sascha Kiefer
3098
3099 fireartist: Carl Franks <cfranks@cpan.org>
3100
3101 gabb: Danijel Milicevic
3102
3103 Gary Ashton Jones
3104
3105 Geoff Richards
3106
3107 ilmari: Dagfinn Ilmari MannsÃ¥ker <ilmari@ilmari.org>
3108
3109 jcamacho: Juan Camacho
3110
3111 jhannah: Jay Hannah <jay@jays.net>
3112
3113 Jody Belka
3114
3115 Johan Lindstrom
3116
3117 jon: Jon Schutz <jjschutz@cpan.org>
3118
3119 marcus: Marcus Ramberg <mramberg@cpan.org>
3120
3121 miyagawa: Tatsuhiko Miyagawa <miyagawa@bulknews.net>
3122
3123 mst: Matt S. Trout <mst@shadowcatsystems.co.uk>
3124
3125 mugwump: Sam Vilain
3126
3127 naughton: David Naughton
3128
3129 ningu: David Kamholz <dkamholz@cpan.org>
3130
3131 nothingmuch: Yuval Kogman <nothingmuch@woobling.org>
3132
3133 numa: Dan Sully <daniel@cpan.org>
3134
3135 obra: Jesse Vincent
3136
3137 omega: Andreas Marienborg
3138
3139 Oleg Kostyuk <cub.uanic@gmail.com>
3140
3141 phaylon: Robert Sedlacek <phaylon@dunkelheit.at>
3142
3143 rafl: Florian Ragwitz <rafl@debian.org>
3144
3145 random: Roland Lammel <lammel@cpan.org>
3146
3147 sky: Arthur Bergman
3148
3149 the_jester: Jesse Sheidlower
3150
3151 t0m: Tomas Doran <bobtfish@bobtfish.net>
3152
3153 Ulf Edvinsson
3154
3155 willert: Sebastian Willert <willert@cpan.org>
3156
3157 =head1 LICENSE
3158
3159 This library is free software. You can redistribute it and/or modify it under
3160 the same terms as Perl itself.
3161
3162 =cut
3163
3164 no Moose;
3165
3166 __PACKAGE__->meta->make_immutable;
3167
3168 1;