Catalyst-Controller-DBIC-API
view release on metacpan or search on metacpan
lib/Catalyst/Controller/DBIC/API/RPC.pm view on Meta::CPAN
package Catalyst::Controller::DBIC::API::RPC;
$Catalyst::Controller::DBIC::API::RPC::VERSION = '2.009000';
#ABSTRACT: Provides an RPC interface to DBIx::Class
use Moose;
BEGIN { extends 'Catalyst::Controller::DBIC::API'; }
__PACKAGE__->config(
'action' => { object_with_id => { PathPart => 'id' } },
'default' => 'application/json',
'stash_key' => 'response',
'map' => {
'application/x-www-form-urlencoded' => 'JSON',
'application/json' => 'JSON',
},
);
sub create : Chained('objects_no_id') : PathPart('create') : Args(0) {
my ( $self, $c ) = @_;
$self->update_or_create($c);
}
sub list : Chained('deserialize') : PathPart('list') : Args(0) {
my ( $self, $c ) = @_;
$self->next::method($c);
}
sub item : Chained('object_with_id') : PathPart('') : Args(0) {
my ( $self, $c ) = @_;
$self->next::method($c);
}
sub update : Chained('object_with_id') : PathPart('update') : Args(0) {
my ( $self, $c ) = @_;
$self->update_or_create($c);
}
sub delete : Chained('object_with_id') : PathPart('delete') : Args(0) {
my ( $self, $c ) = @_;
$self->next::method($c);
}
sub update_bulk : Chained('objects_no_id') : PathPart('update') : Args(0) {
my ( $self, $c ) = @_;
$self->update_or_create($c);
}
sub delete_bulk : Chained('objects_no_id') : PathPart('delete') : Args(0) {
my ( $self, $c ) = @_;
$self->delete($c);
}
1;
__END__
=pod
=head1 NAME
Catalyst::Controller::DBIC::API::RPC - Provides an RPC interface to DBIx::Class
=head1 VERSION
version 2.009000
=head1 DESCRIPTION
Provides an RPC API interface to the functionality described in
L<Catalyst::Controller::DBIC::API>.
By default provides the following endpoints:
$base/create
$base/list
$base/id/[identifier]
$base/id/[identifier]/delete
$base/id/[identifier]/update
Where $base is the URI described by L</setup>, the chain root of the controller.
=head1 PROTECTED_METHODS
=head2 setup
Chained: override
PathPart: override
CaptureArgs: 0
As described in L<Catalyst::Controller::DBIC::API/setup>, this action is the
chain root of the controller but has no pathpart or chain parent defined by
default.
These must be defined in order for the controller to function.
The neatest way is normally to define these using the controller's config.
__PACKAGE__->config
( action => { setup => { PathPart => 'track', Chained => '/api/rpc/rpc_base' } },
...
);
( run in 3.368 seconds using v1.01-cache-2.11-cpan-98e64b0badf )