Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use Moose;
extends 'Catalyst::Action';
sub execute {
my $self = shift;
my ( $controller, $c, $test ) = @_;
my $body = $c->request->body;
if ($body) {
my $rdata;
eval {
my $body = $c->request->body;
$rdata = LoadFile( "$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;
}
1;