X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FSerialize%2FJSON.pm;h=e6182489958204fd57c9d69b8d5a7de3931e5b47;hb=HEAD;hp=c462e58ba26ef52e411b474ad75be1c7281d99a6;hpb=7f36b63e1e7aca928955af6da4c18ac76d7afd4c;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Action/Serialize/JSON.pm b/lib/Catalyst/Action/Serialize/JSON.pm index c462e58..e618248 100644 --- a/lib/Catalyst/Action/Serialize/JSON.pm +++ b/lib/Catalyst/Action/Serialize/JSON.pm @@ -4,16 +4,32 @@ use Moose; use namespace::autoclean; extends 'Catalyst::Action'; -use JSON qw(encode_json); +use JSON::MaybeXS qw(JSON); + +has encoder => ( + is => 'ro', + lazy_build => 1, +); + +sub _build_encoder { + my $self = shift; + return JSON->new->utf8->convert_blessed; +} sub execute { my $self = shift; my ( $controller, $c ) = @_; + if (my $options = $controller->{json_options_encode}) { + foreach my $opt (keys %$options) { + $self->encoder->$opt( $options->{$opt} ); + } + } + my $stash_key = ( $controller->{'serialize'} ? $controller->{'serialize'}->{'stash_key'} : - $controller->{'stash_key'} + $controller->{'stash_key'} ) || 'rest'; my $output = $self->serialize( $c->stash->{$stash_key} ); $c->response->output( $output ); @@ -22,7 +38,10 @@ sub execute { sub serialize { my $self = shift; - encode_json( shift ); + my $data = shift; + $self->encoder->encode( $data ); } +__PACKAGE__->meta->make_immutable; + 1;