X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FSerialize%2FJSON.pm;h=e6182489958204fd57c9d69b8d5a7de3931e5b47;hb=f789417d081b4d519ded07eec046c0b01661e25d;hp=efd45c915cca043cd34e8972e3c34615c9fa367f;hpb=f465980c3c25b475d878716b7341d0a4f5c8f823;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Action/Serialize/JSON.pm b/lib/Catalyst/Action/Serialize/JSON.pm index efd45c9..e618248 100644 --- a/lib/Catalyst/Action/Serialize/JSON.pm +++ b/lib/Catalyst/Action/Serialize/JSON.pm @@ -4,19 +4,32 @@ use Moose; use namespace::autoclean; extends 'Catalyst::Action'; -use JSON qw(encode_json); +use JSON::MaybeXS qw(JSON); -our $VERSION = '0.81'; -$VERSION = eval $VERSION; +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 ); @@ -25,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;