/[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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1057 - (show annotations)
Thu Apr 23 22:18:46 2009 UTC (15 years ago) by dpavlin
File size: 7264 byte(s)
fix _all_docs to work with startkey, endkey and limit
1 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;
18 use strict;
19
20 use JSON;
21 use Data::Dump qw/dump/;
22 use URI::Escape;
23 use File::Path qw(make_path remove_tree);
24 use Storable;
25
26 our $VERSION = '0.2';
27 $VERSION .= " (Frey $Frey::VERSION)" if $Frey::VERSION;
28
29 our $debug = $Frey::debug || 0;
30
31 sub rewrite_urls {
32 my ( $self, $tx ) = @_;
33 if ( $tx->req->url->path =~ m{/_utils/} ) {
34 my $path = $tx->req->url->path;
35 $path =~ s{(/_utils)/?$}{$1/index.html}; # poor man's DirectoryIndex
36 $path =~ s{/_utils}{/static/futon};
37 $tx->req->url->path( $path );
38 my $url = $tx->req->url->to_string;
39 my $old = $url;
40 $url = $tx->req->url->to_string;
41 warn "# rewrite $old -> $url\n";
42 }
43 }
44
45 our $config = {
46 path => '/data/webpac2/var/row',
47 };
48
49 my $p = $config->{path};
50 my @all_dbs = map {
51 s{^\Q$p\E/*}{};
52 $_;
53 } glob "$p/*/*";
54
55 my $regex_dbs = '[a-z][a-z0-9_\$\(\)\+\-/]+';
56
57 our $json = {};
58 our $status;
59
60 sub ok {
61 $json = { ok => JSON::true };
62 $status = 200;
63 warn "ok from ",join(' ',caller),$/;
64 }
65
66 sub file_rev { (stat($_[0]))[9] } # mtime
67
68 sub dispatch {
69 my ($self,$tx) = @_;
70
71 $status = 500; # Internal Error
72
73 my $url = $tx->req->url->to_string;
74 $url = uri_unescape( $url );
75 my $method = $tx->req->method;
76 my $path = $config->{path};
77
78 if ( $url eq '/' ) {
79 $json = {
80 couchdb => "Welcome",
81 version => "CouchAPI $VERSION",
82 };
83 $status = 200;
84 } elsif ( $url eq '/_all_dbs' ) {
85 $json = [ @all_dbs ];
86 $status = 200;
87 } elsif ( $url =~ m{^/_config/?(.+)} ) {
88
89 $json = { CouchAPI => $config };
90
91 if ( $method eq 'PUT' ) {
92
93 my $part = $1;
94 warn "## part $part";
95
96 $part =~ s!^!->{'!;
97 $part =~ s!/!'}->{'!;
98 $part =~ s/$/'}/;
99
100 my $data = $tx->req->content->file->slurp;
101 $data = JSON->new->allow_nonref->decode( $data );
102 warn "## data ",dump( $data );
103 # poor man's transaction :-)
104 my $code = "\$json$part = \$data; \$config$part = \$data;";
105 eval $code;
106 if ( $@ ) {
107 warn "ERROR: $code -> $@";
108 $status = 500;
109 } else {
110 $status = 200;
111 }
112
113 warn "json ",dump( $json ), " config ", dump( $config );
114
115 } elsif ( $method eq 'GET' ) {
116 $status = 200;
117 } else {
118 $status = 501;
119 }
120
121 } elsif ( $url =~ m{($regex_dbs)/$} ) {
122
123 =head2 Database
124
125 L<http://wiki.apache.org/couchdb/HTTP_database_API> except compaction
126
127 =cut
128
129 my $database = $1;
130
131 my $dir = "$path/$database";
132
133 if ( $method eq 'GET' ) {
134 $json = database_get( $database );
135 } elsif ( $method eq 'DELETE' ) {
136 if ( ! -e $dir ) {
137 $status = 404;
138 } else {
139 remove_tree($dir);
140 if ( ! -d $dir ) {
141 ok;
142 } else {
143 $status = 500;
144 }
145 }
146 } elsif ( $method eq 'PUT' ) {
147 if ( -e $dir ) {
148 $status = 412;
149 } else {
150 make_path($dir);
151 if ( -e $path ) {
152 ok;
153 $status = 201;
154 } else {
155 $status = 500;
156 }
157 }
158 }
159
160 } elsif ( $url =~ m{($regex_dbs)/([^?]+)\??(.+)?$} ) {
161 my ($database,$id,$args) = ($1,$2,$3);
162
163 =head2 Document
164
165 L<http://wiki.apache.org/couchdb/HTTP_Document_API>
166
167 =cut
168
169 my $arg;
170 if ( $args ) {
171 foreach my $a ( split(/[&;]/,$args) ) {
172 my ($n,$v) = split(/=/,$a);
173 $v =~ s{(["'])(.+)\1}{$2};
174 $arg->{$n} = $v;
175 }
176 }
177
178 warn "ERROR: path $path doesn't exist\n" unless -e $path;
179
180 my $p = "$path/$database/$id";
181 warn "## database: $database id: $id -> $p ", dump( $arg ),"\n";
182
183
184 if ( $id =~ m{_all_docs(\w*)$} ) {
185
186 my $by = $1;
187 my $offset = 0;
188 my $startkey = delete $arg->{startkey};
189 my $endkey = delete $arg->{endkey};
190 my $limit = delete $arg->{limit};
191 my $total_rows = 0;
192
193 my @docs = grep { length $_ } map {
194
195 if ( $limit > 0 && $total_rows == $limit ) {
196 '';
197 } else {
198
199 s{^$path/$database/}{};
200
201 if ( defined $endkey && $_ gt $endkey ) {
202 '';
203 } elsif ( $startkey ) {
204 if ( $_ ge $startkey ) {
205 $total_rows++;
206 $_;
207 } else {
208 $offset++;
209 '';
210 }
211 } else {
212 $total_rows++;
213 $_;
214 }
215 }
216
217 } glob( "$path/$database/*" );
218
219
220 warn "## docs $startkey -> $endkey limit $limit ", dump( @docs ); # if $debug;
221
222 $json = {
223 total_rows => $total_rows,
224 offset => $offset,
225 rows => [],
226 };
227
228 my $rows;
229 my @ids;
230
231 foreach my $id ( @docs ) {
232 warn "++ $id\n" if $debug;
233 my $p = "$path/$database/$id";
234 my $data = eval { Storable::retrieve( $p ) };
235 if ( $@ ) {
236 warn "ERROR: $p | $@\n";
237 next;
238 }
239 push @ids, $id;
240 $rows->{$id} = {
241 id => $id,
242 key => $id,
243 value => {
244 rev => file_rev $p,
245 }
246 };
247 }
248
249 my $descending = delete $arg->{descending};
250 my @sorted = sort @ids;
251
252 warn "creating rows in ", $descending ? "descending" : "", " order\n";
253
254 foreach my $id ( $descending ? reverse @sorted : @sorted ) {
255 warn ">> $id ", $descending ? 'desc' : 'asc', "\n" if $debug;
256 push @{ $json->{rows} }, $rows->{$id};
257 }
258
259 $status = 200;
260
261 } elsif ( $method eq 'PUT' ) {
262
263 warn "## ",dump( $tx->req ); # if $debug;
264
265 my $data = $tx->req->content->file->slurp;
266
267 Storable::store( from_json($data), $p );
268 my $rev = file_rev $p;
269 warn "store $p $rev size ", -s $p, " bytes | $data\n";
270
271 $status = 201; # Created
272 $json = {
273 id => $id,
274 ok => JSON::true,
275 rev => $rev,
276 };
277
278 } elsif ( $method eq 'GET' ) {
279 if ( ! -e $p ) {
280 $status = 404;
281 } else {
282 warn "retrive $p ", -s $p, " bytes\n";
283 $json = Storable::retrieve( $p );
284 if ( delete $arg->{revs_info} ) {
285 my $rev = file_rev $p;
286 $json->{_rev} = $rev;
287 $json->{_revs_info} = [
288 { rev => $rev, status => 'available' }
289 ];
290 }
291 $status = 200;
292
293 }
294 } elsif ( $method eq 'DELETE' ) {
295 if ( -e $p ) {
296 unlink $p && ok || { $status = 500 };
297 } else {
298 $status = 404;
299 }
300 } elsif ( $method eq 'POST' ) {
301 $json = { total_rows => 0, offset => 0 };
302 $status = 202; # FIXME implement real view server and return 200
303 } else {
304 $status = 501;
305 }
306
307 warn "WARNING: arg left from $url = ",dump( $arg ),$/ if keys %$arg;
308
309 }
310
311 $json = { error => 'not_found', reason => 'Missing' } if $status == 404;
312
313 if ( $method =~ m{(DELETE|PUT)} ) {
314 $tx->res->headers->add_line( 'Location' => $tx->req->url->to_abs );
315 }
316
317 $tx->res->code( $status );
318 $tx->res->headers->content_type( 'text/plain;charset=utf-8' );
319 my $body = to_json $json;
320 $tx->res->body( $body );
321 $tx->res->headers->add_line( 'Cache-Control' => 'must-revalidate' );
322 $tx->res->headers->add_line( 'Server' => "Frey::CouchAPI/$VERSION" );
323
324 print "$method $url $status\n$body\n";
325
326 warn "## headers ", $tx->res->headers->to_string;
327
328 return $tx;
329
330 }
331
332 sub database_get {
333 my ($db_name) = @_;
334 my $path = $config->{path};
335 warn "# collecting docs from $path/$db_name/*\n";
336 my @docs = glob "$path/$db_name/*";
337 my $json = {
338 db_name => $db_name,
339 doc_count => $#docs + 1,
340 doc_del_count => 0,
341 update_seq => 0,
342 purge_seq => 0,
343 capacity_running => JSON::false,
344 disk_size => 0,
345 instance_start_time => time(),
346 };
347
348 warn "## calculating disk_size\n";
349 $json->{disk_size} += -s $_ foreach @docs;
350 $status = 200;
351 return $json;
352 }
353
354 1;
355 __END__
356
357 =head1 SEE ALSO
358
359 L<http://wiki.apache.org/couchdb/Reference>
360

  ViewVC Help
Powered by ViewVC 1.1.26