X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FSerialize%2FJSON.pm;h=7d29679ae59d1218b97eb372bada6b21ff356a47;hb=cc188065d548c2c53c22000871a7d6dfab5c3c69;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..7d29679 100644 --- a/lib/Catalyst/Action/Serialize/JSON.pm +++ b/lib/Catalyst/Action/Serialize/JSON.pm @@ -4,10 +4,19 @@ use Moose; use namespace::autoclean; extends 'Catalyst::Action'; -use JSON qw(encode_json); +use JSON (); -our $VERSION = '0.81'; -$VERSION = eval $VERSION; +# 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; @@ -16,7 +25,7 @@ sub execute { 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 +34,10 @@ sub execute { sub serialize { my $self = shift; - encode_json( shift ); + my $data = shift; + $self->encoder->encode( $data ); } +__PACKAGE__->meta->make_immutable; + 1;