X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FSerialize%2FXML%2FSimple.pm;h=2d8694d6133609545689749e405c269a2ec8e4c3;hb=351f252f57354a5a0c50e3c931b0addd4f1988ff;hp=de297d21a13822c42e04950bc366f9ae3448387f;hpb=e601addaf89882fccbc824c1a53328f0d049b32b;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Action/Serialize/XML/Simple.pm b/lib/Catalyst/Action/Serialize/XML/Simple.pm index de297d2..2d8694d 100644 --- a/lib/Catalyst/Action/Serialize/XML/Simple.pm +++ b/lib/Catalyst/Action/Serialize/XML/Simple.pm @@ -1,16 +1,12 @@ -# -# Catlyst::Action::Serialize::XML::Simple.pm -# Created by: Adam Jacob, Marchex, -# Created on: 10/12/2006 03:00:32 PM PDT -# -# $Id$ - package Catalyst::Action::Serialize::XML::Simple; -use strict; -use warnings; +use Moose; +use namespace::autoclean; + +extends 'Catalyst::Action'; -use base 'Catalyst::Action'; +our $VERSION = '0.98'; +$VERSION = eval $VERSION; sub execute { my $self = shift; @@ -20,21 +16,22 @@ sub execute { require XML::Simple }; if ($@) { - $c->log->debug("Could not load XML::Serializer, refusing to serialize: $@"); - return 0; + $c->log->debug("Could not load XML::Serializer, refusing to serialize: $@") + if $c->debug; + return; } my $xs = XML::Simple->new(ForceArray => 0,); - my $stash_key = $controller->config->{'serialize'}->{'stash_key'} || 'rest'; - my $output; - eval { - $output = $xs->XMLout({ data => $c->stash->{$stash_key} }); - }; - if ($@) { - return $@; - } + my $stash_key = ( + $controller->{'serialize'} ? + $controller->{'serialize'}->{'stash_key'} : + $controller->{'stash_key'} + ) || 'rest'; + my $output = $xs->XMLout({ data => $c->stash->{$stash_key} }); $c->response->output( $output ); return 1; } +__PACKAGE__->meta->make_immutable; + 1;