X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FSerialize%2FYAML.pm;h=b27cda8aaac6f8b020b7b0a0898e5a1601e501aa;hb=HEAD;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..b27cda8 100644 --- a/lib/Catalyst/Action/Serialize/YAML.pm +++ b/lib/Catalyst/Action/Serialize/YAML.pm @@ -1,34 +1,31 @@ -# -# 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; 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)$/; + my ( $controller, $c ) = @_; - $c->response->output( Dump( $c->stash->{$stash_key} ) ); + 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;