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=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..7d29679 100644 --- a/lib/Catalyst/Action/Serialize/JSON.pm +++ b/lib/Catalyst/Action/Serialize/JSON.pm @@ -4,7 +4,19 @@ use Moose; use namespace::autoclean; extends 'Catalyst::Action'; -use JSON qw(encode_json); +use JSON (); + +# 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; @@ -13,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 ); @@ -22,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;