X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FDeserialize%2FXML%2FSimple.pm;h=c1d03717eff5aaa19b9f82c38feed676a876aff8;hb=3d1e10e70eb17bd02ed4c3ba440fce3a94696833;hp=e2ca6fa424b4494f7b984f416ee63257ac6aa217;hpb=be3c588afb1dd6d6c8e6171c01c3d38afa75d6d5;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 e2ca6fa..c1d0371 100644 --- a/lib/Catalyst/Action/Deserialize/XML/Simple.pm +++ b/lib/Catalyst/Action/Deserialize/XML/Simple.pm @@ -1,16 +1,13 @@ -# -# Catlyst::Action::Deserialize::XML::Simple.pm -# Created by: Adam Jacob, Marchex, -# Created on: 10/12/2006 03:00:32 PM PDT -# -# $Id$ - package Catalyst::Action::Deserialize::XML::Simple; -use strict; -use warnings; +use Moose; +use namespace::autoclean; +use Scalar::Util qw(openhandle); + +extends 'Catalyst::Action'; -use base 'Catalyst::Action'; +our $VERSION = '1.10'; +$VERSION = eval $VERSION; sub execute { my $self = shift; @@ -30,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 $@; @@ -48,4 +48,6 @@ sub execute { return 1; } +__PACKAGE__->meta->make_immutable; + 1;