rename ActionRole::Serialize -> ActionRole::SerializeFormat
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Deserialize / YAML.pm
index bae0fc7..ec6063d 100644 (file)
@@ -1,38 +1,10 @@
-#
-# Catlyst::Action::Deserialize::YAML.pm
-# Created by: Adam Jacob, Marchex, <adam@marchex.com>
-# Created on: 10/12/2006 03:00:32 PM PDT
-#
-# $Id$
-
 package Catalyst::Action::Deserialize::YAML;
-
-use strict;
-use warnings;
-
-use base 'Catalyst::Action';
+use Moose;
+extends 'Catalyst::Action';
+with 'Catalyst::ActionRole::DeserializeFormat';
 use YAML::Syck;
+use namespace::clean -except => 'meta';
 
-sub execute {
-    my $self = shift;
-    my ( $controller, $c, $test ) = @_;
-
-    my $body = $c->request->body;
-    if ($body) {
-        my $rdata;
-        eval {
-            $rdata = LoadFile( $c->request->body );
-        };
-        if ($@) {
-            return $@;
-        }
-        $c->request->data($rdata);
-    } else {
-        $c->log->debug(
-            'I would have deserialized, but there was nothing in the body!')
-            if $c->debug;
-    }
-    return 1;
-}
+sub deserialize { Load $_[1] }
 
 1;