From: Dobrica Pavlinusic Date: Mon, 8 Nov 2010 18:26:57 +0000 (+0100) Subject: fix update in CouchDB by passing _rev around X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=097081fe8c7e0a5227f92188d331586c0ebf6b31;p=angular-mojolicious.git fix update in CouchDB by passing _rev around --- diff --git a/angular-server.pl b/angular-server.pl index 4471a06..1f253a3 100755 --- a/angular-server.pl +++ b/angular-server.pl @@ -23,15 +23,23 @@ sub _couchdb_put { my $json = Mojo::JSON->new->encode( $data ); + my $rev; + warn "# _couchdb_put $url = $json"; $client->put( "$couchdb/$url" => $json => sub { my ($client,$tx) = @_; + my ($message, $code) = $tx->error; + my $response = $tx->res->json; + warn "## response $code ",dump($response); if ($tx->error) { - die "ERROR CouchDB ",$tx->error; + die "ERROR $code $message"; } - my $response = $tx->res->json; - warn "## CouchDB response ",dump($response); + return + $rev = $response->{rev}; })->process; + + warn "## rev = $rev"; + return $rev; } sub _couchdb_get { @@ -160,7 +168,8 @@ any [ 'post' ] => '/data/:database/:entity' => sub { $json->{'$id'} ||= $id; # make sure $id is in there - _couchdb_put "/$database/$entity.$id" => $json; + my $rev = _couchdb_put "/$database/$entity.$id" => $json; + $json->{_rev} = $rev; _render_jsonp( $self, $json ); };