X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FDeserialize%2FXML%2FSimple.pm;h=f7843c21c84696173fd6cba9967ee66e5010bdab;hb=40de934ce925aa9fbf1d2fa15846b5c0de9ec790;hp=c4aad0c92125e3cf0a211e64f07b1965f73aedd9;hpb=10bcd217c37d68aabbb0db8a5a7e233e679cb945;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Action/Deserialize/XML/Simple.pm b/lib/Catalyst/Action/Deserialize/XML/Simple.pm index c4aad0c..f7843c2 100644 --- a/lib/Catalyst/Action/Deserialize/XML/Simple.pm +++ b/lib/Catalyst/Action/Deserialize/XML/Simple.pm @@ -1,9 +1,13 @@ package Catalyst::Action::Deserialize::XML::Simple; -use strict; -use warnings; +use Moose; +use namespace::autoclean; +use Scalar::Util qw(openhandle); -use base 'Catalyst::Action'; +extends 'Catalyst::Action'; + +our $VERSION = '1.01'; +$VERSION = eval $VERSION; sub execute { my $self = shift; @@ -23,7 +27,10 @@ sub execute { my $xs = XML::Simple->new('ForceArray' => 0,); my $rdata; eval { - $rdata = $xs->XMLin( "$body" ); + if(openhandle $body){ # make sure we rewind the file handle + seek($body, 0, 0); # in case something has already read from it + } + $rdata = $xs->XMLin( $body ); }; if ($@) { return $@; @@ -41,4 +48,6 @@ sub execute { return 1; } +__PACKAGE__->meta->make_immutable; + 1;