Adding changelog entries
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Serialize / XML / Simple.pm
CommitLineData
e601adda 1#
2# Catlyst::Action::Serialize::XML::Simple.pm
3# Created by: Adam Jacob, Marchex, <adam@marchex.com>
4# Created on: 10/12/2006 03:00:32 PM PDT
5#
6# $Id$
7
8package Catalyst::Action::Serialize::XML::Simple;
9
10use strict;
11use warnings;
12
13use base 'Catalyst::Action';
14
15sub execute {
16 my $self = shift;
17 my ( $controller, $c ) = @_;
18
19 eval {
20 require XML::Simple
21 };
22 if ($@) {
23 $c->log->debug("Could not load XML::Serializer, refusing to serialize: $@");
24 return 0;
25 }
26 my $xs = XML::Simple->new(ForceArray => 0,);
27
faf5c20b 28 my $stash_key = (
29 $controller->config->{'serialize'} ?
30 $controller->config->{'serialize'}->{'stash_key'} :
31 $controller->config->{'stash_key'}
32 ) || 'rest';
e601adda 33 my $output;
34 eval {
35 $output = $xs->XMLout({ data => $c->stash->{$stash_key} });
36 };
37 if ($@) {
38 return $@;
39 }
40 $c->response->output( $output );
41 return 1;
42}
43
441;