X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=21c04d8e18ae6e03604873557f0773fe44691bfc;hp=9afbe9d6346789d9ac031e4a41949ce6ff43270d;hb=29817f46bdaaa28fb0c1471fc74084482ce6f3ee;hpb=0580fbde03a86b92ed9e34cad157a177ba979953 diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 9afbe9d..21c04d8 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -1,9 +1,5 @@ package Catalyst; -# we don't need really need this, but if we load it before MRO::Compat gets -# loaded (via Moose and Class::MOP), we can avoid some nasty warnings -use Class::C3; - use Moose; extends 'Catalyst::Component'; use bytes; @@ -25,7 +21,7 @@ use Time::HiRes qw/gettimeofday tv_interval/; use URI (); use URI::http; use URI::https; -use Scalar::Util qw/weaken blessed/; +use Scalar::Util qw/weaken/; use Tree::Simple qw/use_weak_refs/; use Tree::Simple::Visitor::FindByUID; use attributes; @@ -361,6 +357,13 @@ Almost the same as C, but does a full dispatch, instead of just calling the new C<$action> / C<$class-E$method>. This means that C, C and the method you go to are called, just like a new request. +In addition both C<< $c->action >> and C<< $c->namespace >> are localized. +This means, for example, that $c->action methods such as C, C and +C return information for the visited action when they are invoked +within the visited action. This is different from the behavior of C +which continues to use the $c->action object from the caller action even when +invoked from the callee. + C<$c-Estash> is kept unchanged. In effect, C allows you to "wrap" another action, just as it @@ -986,7 +989,8 @@ EOF my @plugins = map { "$_ " . ( $_->VERSION || '' ) } $class->registered_plugins; if (@plugins) { - my $t = Text::SimpleTable->new(74); + my $column_width = Catalyst::Utils::term_width() - 6; + my $t = Text::SimpleTable->new($column_width); $t->row($_) for @plugins; $class->log->debug( "Loaded plugins:\n" . $t->draw . "\n" ); } @@ -1018,7 +1022,8 @@ EOF $class->setup_components; if ( $class->debug ) { - my $t = Text::SimpleTable->new( [ 63, 'Class' ], [ 8, 'Type' ] ); + my $column_width = Catalyst::Utils::term_width() - 8 - 9; + my $t = Text::SimpleTable->new( [ $column_width, 'Class' ], [ 8, 'Type' ] ); for my $comp ( sort keys %{ $class->components } ) { my $type = ref $class->components->{$comp} ? 'instance' : 'class'; $t->row( $comp, $type ); @@ -1049,8 +1054,33 @@ EOF Scope::Upper::reap(sub { my $meta = Class::MOP::get_metaclass_by_name($class); $meta->make_immutable unless $meta->is_immutable; - }, 1); + }, Scope::Upper::SCOPE(1)); + + $class->setup_finalize; +} + + +=head2 $app->setup_finalize + +A hook to attach modifiers to. +Using C< after setup => sub{}; > doesn't work, because of quirky things done for plugin setup. +Also better than C< setup_finished(); >, as that is a getter method. + + sub setup_finalize { + + my $app = shift; + + ## do stuff, i.e., determine a primary key column for sessions stored in a DB + + $app->next::method(@_); + + } + +=cut + +sub setup_finalize { + my ($class) = @_; $class->setup_finished(1); } @@ -1776,15 +1806,10 @@ sub prepare_body { $c->prepare_parameters; $c->prepare_uploads; - if ( $c->debug && keys %{ $c->req->body_parameters } ) { - my $t = Text::SimpleTable->new( [ 35, 'Parameter' ], [ 36, 'Value' ] ); - for my $key ( sort keys %{ $c->req->body_parameters } ) { - my $param = $c->req->body_parameters->{$key}; - my $value = defined($param) ? $param : ''; - $t->row( $key, - ref $value eq 'ARRAY' ? ( join ', ', @$value ) : $value ); - } - $c->log->debug( "Body Parameters are:\n" . $t->draw ); + if ( $c->debug ) { + $c->log_parameters( + 'Body Parameters are', $c->request->body_parameters + ); } } @@ -1870,15 +1895,65 @@ sub prepare_query_parameters { $c->engine->prepare_query_parameters( $c, @_ ); - if ( $c->debug && keys %{ $c->request->query_parameters } ) { - my $t = Text::SimpleTable->new( [ 35, 'Parameter' ], [ 36, 'Value' ] ); - for my $key ( sort keys %{ $c->req->query_parameters } ) { - my $param = $c->req->query_parameters->{$key}; + if ( $c->debug ) { + $c->log_parameters( + 'Query Parameters are', $c->request->query_parameters + ); + } +} + +=head2 $c->log_parameters($name, $parameters) + +Logs a hash reference of key value pairs, with a caption above the table. + +Looks like: + + [debug] Query Parameters are: + .-------------------------------------+--------------------------------------. + | Parameter | Value | + +-------------------------------------+--------------------------------------+ + | search | Moose | + | searchtype | modules | + '-------------------------------------+--------------------------------------' + +If there are query parameters you don't want to display in this output, such +as passwords or other sensitive input, you can configure your application to +redact those parameters: + + C<< MyApp->config->{Debug}->{redact_parameters} = [ 'password' ] >> + +In that case, the output will look like: + + [debug] Query Parameters are: + .-------------------------------------+--------------------------------------. + | Parameter | Value | + +-------------------------------------+--------------------------------------+ + | password | (redacted by config) | + | username | some_user | + '-------------------------------------+--------------------------------------' + +=cut + +sub log_parameters { + my ( $c, $name, $parameters ) = @_; + + my $skip = $c->config->{Debug}->{redact_parameters}; + if ( + ( not defined $skip or ref $skip eq 'ARRAY' ) + && keys %{ $parameters } + ) { + my $t = Text::SimpleTable->new( + [ 35, 'Parameter' ], [ 36, 'Value' ] ); + my %skip_params = map { $_ => $_ } @{ $skip || [] }; + for my $key ( sort keys %$parameters ) { + my $param = $parameters->{$key}; my $value = defined($param) ? $param : ''; + $value = '(redacted by config)' if exists $skip_params{$key}; + $t->row( $key, ref $value eq 'ARRAY' ? ( join ', ', @$value ) : $value ); } - $c->log->debug( "Query Parameters are:\n" . $t->draw ); + $c->log->debug( "$name:\n" . $t->draw ); } } @@ -2535,6 +2610,8 @@ audreyt: Audrey Tang bricas: Brian Cassidy +Byron Young + Caelum: Rafael Kitover chansen: Christian Hansen @@ -2589,6 +2666,8 @@ obra: Jesse Vincent omega: Andreas Marienborg +Oleg Kostyuk + phaylon: Robert Sedlacek rafl: Florian Ragwitz @@ -2597,6 +2676,8 @@ sky: Arthur Bergman the_jester: Jesse Sheidlower +t0m: Tomas Doran + Ulf Edvinsson willert: Sebastian Willert