/[Frey]/trunk/lib/Frey/CouchAPI.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Frey/CouchAPI.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1050 by dpavlin, Thu Apr 23 18:45:42 2009 UTC revision 1053 by dpavlin, Thu Apr 23 20:24:48 2009 UTC
# Line 1  Line 1 
1  package Frey::CouchAPI;  package Frey::CouchAPI;
2    
3    =head1 DESCRIPTION
4    
5    This is REST wrapper using following L<Mojo> implement Apache's CouchDB API
6    
7    
8    L<Mojo::URL>
9    
10    L<Mojo::Transaction>
11    
12    
13    =head1 Supported HTTP API
14    
15    =cut
16    
17  use warnings;  use warnings;
18  use strict;  use strict;
19    
# Line 9  use URI::Escape; Line 23  use URI::Escape;
23  use File::Path qw(make_path remove_tree);  use File::Path qw(make_path remove_tree);
24  use Storable;  use Storable;
25    
26  our $VERSION = '0.1';  our $VERSION = '0.2';
27  $VERSION .= ' on Frey ' . $Frey::VERSION;  $VERSION .= " (Frey $Frey::VERSION)" if $Frey::VERSION;
28    
29  our $debug = $Frey::debug || 0;  our $debug = $Frey::debug || 0;
30    
# Line 41  my @all_dbs = map { Line 55  my @all_dbs = map {
55  my $regex_dbs = '[a-z][a-z0-9_\$\(\)\+\-/]+';  my $regex_dbs = '[a-z][a-z0-9_\$\(\)\+\-/]+';
56    
57  our $json = {};  our $json = {};
58  our $status = 500;  our $status;
59    
60  sub ok {  sub ok {
61          $json = { ok => JSON::true };          $json = { ok => JSON::true };
62          $status = 200;          $status = 200;
63            warn "ok\n";
64  }  }
65    
66    
67  sub dispatch {  sub dispatch {
68          my ($self,$tx) = @_;          my ($self,$tx) = @_;
69    
70            $status = 500; # Internal Error
71    
72          my $url = $tx->req->url->to_string;          my $url = $tx->req->url->to_string;
73          $url = uri_unescape( $url );          $url = uri_unescape( $url );
74          my $method = $tx->req->method;          my $method = $tx->req->method;
# Line 60  sub dispatch { Line 77  sub dispatch {
77                  $json = {                  $json = {
78                          couchdb => "Welcome",                          couchdb => "Welcome",
79                          version => "CouchAPI $VERSION",                          version => "CouchAPI $VERSION",
80                  }                  };
81                    $status = 200;
82          } elsif ( $url eq '/_all_dbs' ) {          } elsif ( $url eq '/_all_dbs' ) {
83                  $json = [ @all_dbs ];                  $json = [ @all_dbs ];
84                  $status = 200;                  $status = 200;
# Line 100  warn "json ",dump( $json ), " config ", Line 118  warn "json ",dump( $json ), " config ",
118    
119          } elsif ( $url =~ m{($regex_dbs)/$} ) {          } elsif ( $url =~ m{($regex_dbs)/$} ) {
120    
121    =head2 Database
122    
123    L<http://wiki.apache.org/couchdb/HTTP_database_API> except compaction
124    
125    =cut
126    
127                  my $database = $1;                  my $database = $1;
128                  my $dir = "$config->{path}/$database";                  my $dir = "$config->{path}/$database";
129    
# Line 109  warn "json ",dump( $json ), " config ", Line 133  warn "json ",dump( $json ), " config ",
133                          if ( ! -e $dir ) {                          if ( ! -e $dir ) {
134                                  $status = 404;                                  $status = 404;
135                          } else {                          } else {
136                                  remove_tree($dir) && ok || { $status = 501 };                                  remove_tree($dir) && ok || { $status = 500 };
137                          }                          }
138                  } elsif ( $method eq 'PUT' ) {                  } elsif ( $method eq 'PUT' ) {
139                          if ( ! -e $dir ) {                          if ( ! -e $dir ) {
140                                  make_path($dir) && ok && warn "created $dir" || { $status = 501 };                                  make_path($dir) && ok && warn "created $dir" || { $status = 500 };
141                          } else {                          } else {
142                                  $status = 412;                                  $status = 412;
143                          }                          }
# Line 122  warn "json ",dump( $json ), " config ", Line 146  warn "json ",dump( $json ), " config ",
146          } elsif ( $url =~ m{($regex_dbs)/([^?]+)\??(.+)?$} ) {          } elsif ( $url =~ m{($regex_dbs)/([^?]+)\??(.+)?$} ) {
147                  my ($database,$id,$args) = ($1,$2,$3);                  my ($database,$id,$args) = ($1,$2,$3);
148    
149    =head2 Document
150    
151    L<http://wiki.apache.org/couchdb/HTTP_Document_API>
152    
153    =cut
154    
155                  my $arg;                  my $arg;
156                  if ( $args ) {                  if ( $args ) {
157                          foreach my $a ( split(/[&;]/,$args) ) {                          foreach my $a ( split(/[&;]/,$args) ) {
# Line 135  warn "json ",dump( $json ), " config ", Line 165  warn "json ",dump( $json ), " config ",
165                  warn "ERROR: path $path doesn't exist\n" unless -e $path;                  warn "ERROR: path $path doesn't exist\n" unless -e $path;
166    
167                  my $p = "$path/$database/$id";                  my $p = "$path/$database/$id";
168                  warn "## database: $database id: $id -> $p [$args]\n";                  warn "## database: $database id: $id -> $p ", dump( $arg ),"\n";
169    
170    
171                  if ( $id =~ m{_all_docs(\w+)?$} ) {                  if ( $id =~ m{_all_docs(\w+)?$} ) {
# Line 143  warn "json ",dump( $json ), " config ", Line 173  warn "json ",dump( $json ), " config ",
173                          my $by = $1;                          my $by = $1;
174                          my $offset = 0;                          my $offset = 0;
175                          my $startkey = delete $arg->{startkey};                          my $startkey = delete $arg->{startkey};
176  warn "STARTKEY: $startkey\n";                          my $endkey   = delete $arg->{endkey};
177                            my $limit    = delete $arg->{limit};
178                          my $total_rows = 0;                          my $total_rows = 0;
179    
180                          my @docs = grep { length $_ } map {                          my @docs = grep { length $_ } map {
181                                    return '' if defined $limit && $total_rows == $limit;
182            
183                                  s{^$path/$database/}{};                                  s{^$path/$database/}{};
184                                    return '' if defined $endkey && $_ gt $endkey;
185    
186                                  if ( $startkey ) {                                  if ( $startkey ) {
187                                          if ( $_ >= $startkey ) {                                          if ( $_ ge $startkey ) {
188                                                  $total_rows++;                                                  $total_rows++;
189                                                  $_;                                                  $_;
190                                          } else {                                          } else {
191                                                  $offset++;                                                  $offset++;
192                                                    return '';
193                                          }                                          }
194                                  } else {                                  } else {
195                                          $total_rows++;                                          $total_rows++;
196                                          $_;                                          $_;
197                                  }                                  }
198    
199                          } glob( "$path/$database/*" );                          } glob( "$path/$database/*" );
200    
201                          warn "## docs ", dump( @docs ) if $debug;                          warn "## docs $startkey -> $endkey limit $limit ", dump( @docs ); # if $debug;
202    
203                          $json = {                          $json = {
204                                  total_rows =>  $total_rows,                                  total_rows =>  $total_rows,
# Line 208  warn "STARTKEY: $startkey\n"; Line 245  warn "STARTKEY: $startkey\n";
245    
246                          Storable::store( from_json($data), $p );                          Storable::store( from_json($data), $p );
247                          warn "store $p ", -s $p, " bytes: $data\n";                          warn "store $p ", -s $p, " bytes: $data\n";
248                            $status = 201; # Created
249            
250                  } elsif ( $method eq 'GET' ) {                  } elsif ( $method eq 'GET' ) {
251                          if ( ! -e $p ) {                          if ( ! -e $p ) {
252                                  $status = 404;                                  $status = 404;
# Line 217  warn "STARTKEY: $startkey\n"; Line 256  warn "STARTKEY: $startkey\n";
256                          }                          }
257                  } elsif ( $method eq 'DELETE' ) {                  } elsif ( $method eq 'DELETE' ) {
258                          if ( -e $p ) {                          if ( -e $p ) {
259                                  unlink $p || { $status = 501 };                                  unlink $p || { $status = 500 };
260                          } else {                          } else {
261                                  $status = 404;                                  $status = 404;
262                          }                          }
# Line 229  warn "STARTKEY: $startkey\n"; Line 268  warn "STARTKEY: $startkey\n";
268    
269          }          }
270    
271          if ( $status >= 400 && $status < 500 && ! defined $json) {          $json = { error => 'not_found', reason => 'Missing' } if $status == 404;
272                  $json = { error => 'not_found', reason => 'Missing' };  
273                  warn "fake $status";          if ( $method =~ m{(DELETE|PUT)} ) {
274                    $tx->res->headers->add_line( 'Location' => $tx->req->url->to_abs );
275          }          }
276    
277          $tx->res->code( $status );          $tx->res->code( $status );
278          $tx->res->headers->content_type( 'text/json' );          $tx->res->headers->content_type( 'text/plain;charset=utf-8' );
279          my $body = to_json $json;          my $body = to_json $json;
280          $tx->res->body( $body );          $tx->res->body( $body );
281          warn "CouchDB API: $method $url $status $body\n";          $tx->res->headers->add_line( 'Cache-Control' => 'must-revalidate' );
282            $tx->res->headers->add_line( 'Server' => "Frey::CouchAPI/$VERSION" );
283    
284            warn "INFO CouchDB API $method $url $status\n$body\n";
285    
286            warn "## headers ", $tx->res->headers->to_string;
287    
288          return $tx;          return $tx;
289    
290  }  }
# Line 266  sub database_get { Line 312  sub database_get {
312  }  }
313    
314  1;  1;
315    __END__
316    
317    =head1 SEE ALSO
318    
319    L<http://wiki.apache.org/couchdb/Reference>
320    

Legend:
Removed from v.1050  
changed lines
  Added in v.1053

  ViewVC Help
Powered by ViewVC 1.1.26