WebAPI-DBIC/lib/WebAPI/DBIC/Resource/ActiveModel/Role/SetWritable.pm
package WebAPI::DBIC::Resource::ActiveModel::Role::SetWritable;
$WebAPI::DBIC::Resource::ActiveModel::Role::SetWritable::VERSION = '0.004002';
use Devel::Dwarn;
use Carp qw(confess);
use Moo::Role;
requires '_build_content_types_accepted';
requires 'render_item_into_body';
requires 'decode_json';
requires 'set';
requires 'prefetch';
around '_build_content_types_accepted' => sub {
my $orig = shift;
my $self = shift;
my $types = $self->$orig();
unshift @$types, { 'application/json' => 'from_activemodel_json' };
return $types;
};
sub from_activemodel_json {
my $self = shift;
my $item = $self->create_resources_from_activemodel( $self->decode_json($self->request->content) );
return $self->item($item);
}
sub create_resources_from_activemodel { # XXX unify with create_resource in SetWritable, like ItemWritable?
my ($self, $activemodel) = @_;
my $item;
my $schema = $self->set->result_source->schema;
# XXX perhaps the transaction wrapper belongs higher in the stack
# but it has to be below the auth layer which switches schemas
$schema->txn_do(sub {
$item = $self->_create_embedded_resources_from_activemodel($activemodel, $self->set->result_class);
# resync with what's (now) in the db to pick up defaulted fields etc
$item->discard_changes();
# called here because create_path() is too late for Web::Machine
# and we need it to happen inside the transaction for rollback=1 to work
$self->render_item_into_body(item => $item, prefetch => $self->prefetch)
if grep {defined $_->{self}} @{$self->prefetch||[]};
$schema->txn_rollback if $self->param('rollback'); # XXX
});
return $item;
}
sub _create_embedded_resources_from_activemodel {
my ($self, $activemodel, $result_class) = @_;
return $self->set->result_source->schema->resultset($result_class)->create($activemodel);
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
WebAPI::DBIC::Resource::ActiveModel::Role::SetWritable
=head1 VERSION
version 0.004002
=head1 DESCRIPTION
Handles POST requests for resources representing set resources, e.g. to insert
rows into a database table.
=head1 NAME
WebAPI::DBIC::Resource::ActiveModel::Role::SetWritable - methods handling requests to update set resources
=head1 AUTHOR
Tim Bunce <Tim.Bunce@pobox.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by Tim Bunce.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut