X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=b085a6c09f3f8d4fee3c476cb0fbafcb51fd4fab;hp=ecaeb949a9edbf23b65a8fb2314b1438b053020f;hb=93dd50c3c1ec1b8ec6d1333e84db28e2449f65d1;hpb=5df9a4c5adf79f83fa4e54196c321f323c24670d diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index ecaeb94..b085a6c 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -2466,9 +2466,6 @@ sub prepare { # VERY ugly and probably shouldn't rely on ->finalize actually working catch { # failed prepare is always due to an invalid request, right? - $c->response->status(400); - $c->response->content_type('text/plain'); - $c->response->body('Bad Request'); # Note we call finalize and then die here, which escapes # finalize being called in the enclosing block.. # It in fact couldn't be called, as we don't return $c.. @@ -2476,8 +2473,20 @@ sub prepare { # breaking compat for people doing crazy things (we should set # the 400 and just return the ctx here IMO, letting finalize get called # above... - $c->finalize; - die $_; + if ( $c->_handle_http_exception($_) ) { + foreach my $err (@{$c->error}) { + $c->log->error($err); + } + $c->clear_errors; + $c->log->_flush if $c->log->can('_flush'); + $_->can('rethrow') ? $_->rethrow : croak $_; + } else { + $c->response->status(400); + $c->response->content_type('text/plain'); + $c->response->body('Bad Request'); + $c->finalize; + die $_; + } }; $c->log_request; @@ -3564,14 +3573,31 @@ sub setup_encoding { Hook to let you customize how encoding errors are handled. By default we just throw an exception. Receives a hashref of debug information. -Example: +Example of call: $c->handle_unicode_encoding_exception({ param_value => $value, error_msg => $_, - encoding_step => 'params', + encoding_step => 'params', }); +You can override this for custom handling of unicode errors. If you want a +custom response here, one approach is to throw an HTTP style exception: + + sub handle_unicode_encoding_exception { + my ($c, $params) = @_; + HTTP::Exception::BAD_REQUEST->throw(status_message=>$params->{error_msg}); + } + +Alternatively you can 'catch' the error, stash it and write handling code later +in your application: + + sub handle_unicode_encoding_exception { + my ($c, $params) = @_; + $c->stash(BAD_UNICODE_DATA=>$params); + return 1; + } + =cut sub handle_unicode_encoding_exception {