WebAPI-DBIC/lib/WebAPI/DBIC/Resource/JSONAPI/Role/Item.pm
package WebAPI::DBIC::Resource::JSONAPI::Role::Item;
$WebAPI::DBIC::Resource::JSONAPI::Role::Item::VERSION = '0.004002';
use Moo::Role;
requires '_build_content_types_provided';
requires 'render_item_as_jsonapi_hash';
requires 'encode_json';
requires 'item';
around '_build_content_types_provided' => sub {
my $orig = shift;
my $self = shift;
my $types = $self->$orig();
unshift @$types, { 'application/vnd.api+json' => 'to_json_as_jsonapi' };
return $types;
};
#sub to_json_as_jsonapi { return $_[0]->encode_json($_[0]->render_item_as_jsonapi_hash($_[0]->item)) }
sub to_json_as_jsonapi {
my $self = shift;
# narrow the set to just contain the specified item
# XXX this narrowing ought to be moved elsewhere
# it's a bad idea to be a side effect of to_json_as_jsonapi
my @id_cols = $self->set->result_source->unique_constraint_columns( $self->id_unique_constraint_name );
@id_cols = map { $self->set->current_source_alias.".$_" } @id_cols;
my %id_search; @id_search{ @id_cols } = @{ $self->id };
$self->set( $self->set->search_rs(\%id_search) ); # narrow the set
# set has been narrowed to the item, so we can render the item as if a set
# (which is what we need to do for JSON API, which doesn't really have an 'item')
return $self->encode_json( $self->render_jsonapi_response() );
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
WebAPI::DBIC::Resource::JSONAPI::Role::Item
=head1 VERSION
version 0.004002
=head1 DESCRIPTION
Provides methods to support the C<application/vnd.api+json> media type
for GET and HEAD requests for requests representing individual resources,
e.g. a single row of a database table.
=head1 NAME
WebAPI::DBIC::Resource::JSONAPI::Role::Item - methods related to handling JSON API requests for item 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