X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Controller-DBIC-API.git;a=blobdiff_plain;f=lib%2FCatalyst%2FController%2FDBIC%2FAPI%2FRPC.pm;h=c58b13170544b2f7bb9c10ca11f7afbbb6c59ea2;hp=abcf404d9e48ff3d2f2aba2e1ba9d2fe540d7e60;hb=a623b44aa89d8a2779411e32646599f302bf7aff;hpb=533075c7cc1bfd0ed993d273314ad46f0d85401b diff --git a/lib/Catalyst/Controller/DBIC/API/RPC.pm b/lib/Catalyst/Controller/DBIC/API/RPC.pm index abcf404..c58b131 100644 --- a/lib/Catalyst/Controller/DBIC/API/RPC.pm +++ b/lib/Catalyst/Controller/DBIC/API/RPC.pm @@ -5,7 +5,7 @@ use Moose; BEGIN { extends 'Catalyst::Controller::DBIC::API'; } __PACKAGE__->config( - 'action' => { object_with_id => { PathPart => 'id' } }, + 'action' => { object_with_id => { PathPart => 'id' } }, 'default' => 'application/json', 'stash_key' => 'response', 'map' => { @@ -16,7 +16,7 @@ __PACKAGE__->config( =head1 DESCRIPTION -Provides an RPC API interface to the functionality described in L. +Provides an RPC API interface to the functionality described in L. By default provides the following endpoints: @@ -37,19 +37,12 @@ CaptureArgs: 0 As described in L, this action is the chain root of the controller but has no pathpart or chain parent defined by default, so 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' } }, + ( action => { setup => { PathPart => 'track', Chained => '/api/rpc/rpc_base' } }, ... ); =cut -sub index : Chained('setup') PathPart('') Args(0) { - my ( $self, $c ) = @_; - - $self->push_error($c, { message => 'Not implemented' }); - $c->res->status( '404' ); -} - =method_protected create Chained: L @@ -60,10 +53,10 @@ Provides an endpoint to the functionality described in Lforward('update_or_create'); + $self->update_or_create($c); } =method_protected list @@ -76,7 +69,7 @@ Provides an endpoint to the functionality described in Lnext::method($c); @@ -92,7 +85,7 @@ Provides an endpoint to the functionality described in Lnext::method($c); @@ -108,10 +101,10 @@ Provides an endpoint to the functionality described in Lforward('update_or_create'); + $self->update_or_create($c); } =method_protected delete @@ -124,7 +117,7 @@ Provides an endpoint to the functionality described in Lnext::method($c); @@ -140,10 +133,10 @@ Provides an endpoint to the functionality described in Lforward('update_or_create'); + $self->update_or_create($c); } =method_protected delete_bulk @@ -156,10 +149,10 @@ Provides an endpoint to the functionality described in Lnext::method($c); + $self->delete($c); } 1;