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%2FREST.pm;h=d615b8a080dcbcbb71d7138fc2bc88b8f17a8e67;hp=04fe041baccc5d0aa7b44301d8c75389904a7750;hb=b66d43106c928f395d6e0628f9f80b72a274b9d8;hpb=406086f3da2f020cf98b01d994ffe2d1b8a478c4 diff --git a/lib/Catalyst/Controller/DBIC/API/REST.pm b/lib/Catalyst/Controller/DBIC/API/REST.pm index 04fe041..d615b8a 100644 --- a/lib/Catalyst/Controller/DBIC/API/REST.pm +++ b/lib/Catalyst/Controller/DBIC/API/REST.pm @@ -36,81 +36,103 @@ As described in L, this action is the cha ... ); -=method_protected no_id +=method_protected update_or_create_objects Chained: L PathPart: none -CaptureArgs: 0 - -Calls list level methods described in L as follows: +Args: 0 +Method: POST/PUT -DELETE: L -POST/PUT: L -GET: forwards to L +Calls L. =cut -sub no_id : Chained('objects_no_id') PathPart('') ActionClass('REST') :Args(0) {} - -sub no_id_PUT +sub update_or_create_objects : Chained('objects_no_id') PathPart('') Does('MatchRequestMethod') Method('POST') Method('PUT') Args(0) { my ( $self, $c ) = @_; $self->update_or_create($c); } -sub no_id_POST -{ - my ( $self, $c ) = @_; - $self->update_or_create($c); -} +=method_protected delete_many_objects + +Chained: L +PathPart: none +Args: 0 +Method: DELETE -sub no_id_DELETE +Calls L. + +=cut + +sub delete_many_objects : Chained('objects_no_id') PathPart('') Does('MatchRequestMethod') Method('DELETE') Args(0) { my ( $self, $c ) = @_; $self->delete($c); } -sub no_id_GET +=method_protected list_objects + +Chained: L +PathPart: none +Args: 0 +Method: GET + +Calls L. + +=cut + +sub list_objects : Chained('objects_no_id') PathPart('') Does('MatchRequestMethod') Method('GET') Args(0) { my ( $self, $c ) = @_; $self->list($c); } -=method_protected with_id +=method_protected update_or_create_one_object Chained: L PathPart: none -CaptureArgs: 0 - -Forwards to list level methods described in L as follows: +Args: 0 +Method: POST/PUT -DELETE: L -POST/PUT: L -GET: forwards to L +Calls L. =cut -sub with_id :Chained('object_with_id') :PathPart('') :ActionClass('REST') :Args(0) {} - -sub with_id_PUT +sub update_or_create_one_object : Chained('object_with_id') PathPart('') Does('MatchRequestMethod') Method('POST') Method('PUT') Args(0) { my ( $self, $c ) = @_; $self->update_or_create($c); } -sub with_id_POST -{ - my ( $self, $c ) = @_; - $self->update_or_create($c); -} +=method_protected delete_one_object + +Chained: L +PathPart: none +Args: 0 +Method: DELETE -sub with_id_DELETE +Calls L. + +=cut + +sub delete_one_object : Chained('object_with_id') PathPart('') Does('MatchRequestMethod') Method('DELETE') Args(0) { my ( $self, $c ) = @_; $self->delete($c); } -sub with_id_GET +=method_protected list_one_object + +Chained: L +PathPart: none +Args: 0 +Method: GET + +Calls L. + +=cut + +sub list_one_object : Chained('object_with_id') PathPart('') Does('MatchRequestMethod') Method('GET') Args(0) { my ( $self, $c ) = @_; $self->item($c);