X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FSerialize%2FYAML.pm;h=f2ed2a5f9f02b73e38b48e6c29b8ecef4f0979c6;hb=44fa7f9429568532ea892e2020c20177b71cb736;hp=fbcb4f8b75b47bbd7f569c064e5bea9fde0b6740;hpb=256c894fcf95e1a0716676afb8f5732854734672;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Action/Serialize/YAML.pm b/lib/Catalyst/Action/Serialize/YAML.pm index fbcb4f8..f2ed2a5 100644 --- a/lib/Catalyst/Action/Serialize/YAML.pm +++ b/lib/Catalyst/Action/Serialize/YAML.pm @@ -1,34 +1,34 @@ -# -# Catlyst::Action::Serialize::YAML.pm -# Created by: Adam Jacob, Marchex, -# Created on: 10/12/2006 03:00:32 PM PDT -# -# $Id$ - package Catalyst::Action::Serialize::YAML; -use strict; -use warnings; +use Moose; +use namespace::autoclean; -use base 'Catalyst::Action'; +extends 'Catalyst::Action'; use YAML::Syck; +our $VERSION = '1.04'; +$VERSION = eval $VERSION; + sub execute { my $self = shift; - my ( $controller, $c, $test ) = @_; - - my $stash_key = $controller->serialize->{'stash_key'} || 'rest'; - - if (! $c->response->content_type ) { - $c->response->content_type($c->req->content_type); - } - return 1 if $c->req->method eq 'HEAD'; - return 1 if length( $c->response->body ); - return 1 if scalar @{ $c->error }; - return 1 if $c->response->status =~ /^(?:204|3\d\d)$/; - - $c->response->output( Dump( $c->stash->{$stash_key} ) ); + my ( $controller, $c ) = @_; + + my $stash_key = ( + $controller->{'serialize'} ? + $controller->{'serialize'}->{'stash_key'} : + $controller->{'stash_key'} + ) || 'rest'; + my $output = $self->serialize($c->stash->{$stash_key}); + $c->response->output( $output ); return 1; -}; +} + +sub serialize { + my $self = shift; + my $data = shift; + Dump($data); +} + +__PACKAGE__->meta->make_immutable; 1;