89aca6263d392c903e27d17ce033da453f716c11
[catagits/Catalyst-Controller-DBIC-API.git] / lib / Catalyst / Controller / DBIC / API.pm
1 package Catalyst::Controller::DBIC::API;
2
3 #ABSTRACT: Provides a DBIx::Class web service automagically
4 use Moose;
5 BEGIN { extends 'Catalyst::Controller'; }
6
7 use CGI::Expand ();
8 use DBIx::Class::ResultClass::HashRefInflator;
9 use JSON::Any;
10 use Test::Deep::NoTest('eq_deeply');
11 use MooseX::Types::Moose(':all');
12 use Moose::Util;
13 use Scalar::Util('blessed', 'reftype');
14 use Try::Tiny;
15 use Catalyst::Controller::DBIC::API::Request;
16 use namespace::autoclean;
17
18 with 'Catalyst::Controller::DBIC::API::StoredResultSource';
19 with 'Catalyst::Controller::DBIC::API::StaticArguments';
20 with 'Catalyst::Controller::DBIC::API::RequestArguments' => { static => 1 };
21
22 __PACKAGE__->config();
23
24 =head1 SYNOPSIS
25
26   package MyApp::Controller::API::RPC::Artist;
27   use Moose;
28   BEGIN { extends 'Catalyst::Controller::DBIC::API::RPC' }
29
30   __PACKAGE__->config
31     ( action => { setup => { PathPart => 'artist', Chained => '/api/rpc/rpc_base' } }, # define parent chain action and partpath
32       class => 'MyAppDB::Artist', # DBIC schema class
33       create_requires => ['name', 'age'], # columns required to create
34       create_allows => ['nickname'], # additional non-required columns that create allows
35       update_allows => ['name', 'age', 'nickname'], # columns that update allows
36       update_allows => ['name', 'age', 'nickname'], # columns that update allows
37       select => [qw/name age/], # columns that data returns
38       prefetch => ['cds'], # relationships that are prefetched when no prefetch param is passed
39       prefetch_allows => [ # every possible prefetch param allowed
40           'cds',
41           qw/ cds /,
42           { cds => 'tracks' },
43           { cds => [qw/ tracks /] }
44       ],
45       ordered_by => [qw/age/], # order of generated list
46       search_exposes => [qw/age nickname/, { cds => [qw/title year/] }], # columns that can be searched on via list
47       data_root => 'data' # defaults to "list" for backwards compatibility
48       use_json_boolean => 1, # use JSON::Any::true|false in the response instead of strings
49       return_object => 1, # makes create and update actions return the object
50       );
51
52   # Provides the following functional endpoints:
53   # /api/rpc/artist/create
54   # /api/rpc/artist/list
55   # /api/rpc/artist/id/[id]/delete
56   # /api/rpc/artist/id/[id]/update
57 =cut
58
59 =method_protected begin
60
61  :Private
62
63 A begin method is provided to apply the L<Catalyst::Controller::DBIC::API::Request> role to $c->request, and perform deserialization and validation of request parameters
64
65 =cut
66
67 sub begin :Private
68 {
69     $DB::single = 1;
70     my ($self, $c) = @_;
71     
72     Catalyst::Controller::DBIC::API::Request->meta->apply($c->req)
73         unless Moose::Util::does_role($c->req, 'Catalyst::Controller::DBIC::API::Request');
74     $c->forward('deserialize');
75 }
76
77 =method_protected setup
78
79  :Chained('specify.in.subclass.config') :CaptureArgs(0) :PathPart('specify.in.subclass.config')
80
81 This action is the chain root of the controller. It must either be overridden or configured to provide a base pathpart to the action and also a parent action. For example, for class MyAppDB::Track you might have
82
83   package MyApp::Controller::API::RPC::Track;
84   use base qw/Catalyst::Controller::DBIC::API::RPC/;
85
86   __PACKAGE__->config
87     ( action => { setup => { PathPart => 'track', Chained => '/api/rpc/rpc_base' } }, 
88         ...
89   );
90
91   # or
92
93   sub setup :Chained('/api/rpc_base') :CaptureArgs(0) :PathPart('track') {
94     my ($self, $c) = @_;
95
96     $self->next::method($c);
97   }
98
99 This action will populate $c->req->current_result_set with $self->stored_result_source->resultset for other actions in the chain to use.
100
101 =cut
102
103 sub setup :Chained('specify.in.subclass.config') :CaptureArgs(0) :PathPart('specify.in.subclass.config')
104 {
105     $DB::single = 1;
106     my ($self, $c) = @_;
107
108     $c->req->_set_current_result_set($self->stored_result_source->resultset);
109 }
110
111 =method_protected object
112
113  :Chained('setup') :CaptureArgs(1) :PathPart('')
114
115 This action is the chain root for all object level actions (such as delete and update). If an identifier is passed it will be used to find that particular object and add it to the request's store of objects. Otherwise, the data stored at the data_root of the request_data will be interpreted as an array of objects on which to operate. If the hashes are missing an 'id' key, they will be considered a new object to be created, otherwise, the values in the hash will be used to perform an update. Please see L<Catalyst::Controller::DBIC::API::Context> for more details on the stored objects.
116
117 =cut
118
119 sub object :Chained('setup') :CaptureArgs(1) :PathPart('')
120 {
121         my ($self, $c, $id) = @_;
122
123     my $vals = $c->req->request_data->{$self->data_root};
124     unless(defined($vals))
125     {
126         # no data root, assume the request_data itself is the payload
127         $vals = [$c->req->request_data || {}];
128     }
129     elsif(reftype($vals) eq 'HASH')
130     {
131         $vals = [ $vals ];
132     }
133
134     if(defined($id))
135     {
136         try
137         {
138             # there can be only one set of data
139             $c->req->add_object([$self->object_lookup($c, $id), $vals->[0]]);
140         }
141         catch
142         {
143             $c->log->error($_);
144             $self->push_error($c, { message => $_ });
145             $c->detach();
146         }
147     }
148     else
149     {
150         unless(reftype($vals) eq 'ARRAY')
151         {
152             $c->log->error('Invalid request data');
153             $self->push_error($c, { message => 'Invalid request data' });
154             $c->detach();
155         }
156
157         foreach my $val (@$vals)
158         {
159             unless(exists($val->{id}))
160             {
161                 $c->req->add_object([$c->req->current_result_set->new_result({}), $val]);
162                 next;
163             }
164
165             try
166             {
167                 $c->req->add_object([$self->object_lookup($c, $val->{id}), $val]);
168             }
169             catch
170             {
171                 $c->log->error($_);
172                 $self->push_error($c, { message => $_ });
173                 $c->detach();
174             }
175         }
176     }
177 }
178
179 =method_protected object_lookup
180
181 This method provides the look up functionality for an object based on 'id'. It is passed the current $c and the $id to be used to perform the lookup. Dies if there is no provided $id or if no object was found.
182
183 =cut
184
185 sub object_lookup
186 {
187     my ($self, $c, $id) = @_;
188
189     die 'No valid ID provided for look up' unless defined $id and length $id;
190     my $object = $c->req->current_result_set->find($id);
191     die "No object found for id '$id'" unless defined $object;
192     return $object;
193 }
194
195 =method_protected deserialize
196
197 deserialize absorbs the request data and transforms it into useful bits by using CGI::Expand->expand_hash and a smattering of JSON::Any->from_json for a handful of arguments. Current only the following arguments are capable of being expressed as JSON:
198
199     search_arg
200     count_arg
201     page_arg
202     ordered_by_arg
203     grouped_by_arg
204     prefetch_arg
205
206 It should be noted that arguments can used mixed modes in with some caveats. Each top level arg can be expressed as CGI::Expand with their immediate child keys expressed as JSON.
207
208 =cut
209
210 sub deserialize :ActionClass('Deserialize')
211 {
212     $DB::single = 1;
213     my ($self, $c) = @_;
214     my $req_params;
215
216     if ($c->req->data && scalar(keys %{$c->req->data}))
217     {
218         $req_params = $c->req->data;
219     }
220     else 
221     {
222         $req_params = CGI::Expand->expand_hash($c->req->params);
223
224         foreach my $param (@{[$self->search_arg, $self->count_arg, $self->page_arg, $self->offset_arg, $self->ordered_by_arg, $self->grouped_by_arg, $self->prefetch_arg]})
225         {
226             # these params can also be composed of JSON
227             # but skip if the parameter is not provided
228             next if not exists $req_params->{$param};
229             # find out if CGI::Expand was involved
230             if (ref $req_params->{$param} eq 'HASH')
231             {
232                 for my $key ( keys %{$req_params->{$param}} )
233                 {
234                     try
235                     {
236                         my $deserialized = JSON::Any->from_json($req_params->{$param}->{$key});
237                         $req_params->{$param}->{$key} = $deserialized;
238                     }
239                     catch
240                     { 
241                         $c->log->debug("Param '$param.$key' did not deserialize appropriately: $_")
242                         if $c->debug;
243                     }
244                 }
245             }
246             else
247             {
248                 try
249                 {
250                     my $deserialized = JSON::Any->from_json($req_params->{$param});
251                     $req_params->{$param} = $deserialized;
252                 }
253                 catch
254                 { 
255                     $c->log->debug("Param '$param' did not deserialize appropriately: $_")
256                     if $c->debug;
257                 }
258             }
259         }
260     }
261     
262     $self->inflate_request($c, $req_params);
263 }
264
265 =method_protected inflate_request
266
267 inflate_request is called at the end of deserialize to populate key portions of the request with the useful bits
268
269 =cut
270
271 sub inflate_request
272 {
273     $DB::single = 1;
274     my ($self, $c, $params) = @_;
275
276     try
277     {
278         # set static arguments
279         $c->req->_set_controller($self); 
280
281         # set request arguments
282         $c->req->_set_request_data($params);
283         
284     }
285     catch
286     {
287         $c->log->error($_);
288         $self->push_error($c, { message => $_ });
289         $c->detach();
290     }
291     
292 }
293
294 =method_protected list
295
296  :Private
297
298 List level action chained from L</setup>. List's steps are broken up into three distinct methods: L</list_munge_parameters>, L</list_perform_search>, and L</list_format_output>.
299
300 The goal of this method is to call ->search() on the current_result_set, HashRefInflator the result, and return it in $c->stash->{response}->{$self->data_root}. Pleasee see the individual methods for more details on what actual processing takes place.
301
302 If the L</select> config param is defined then the hashes will contain only those columns, otherwise all columns in the object will be returned. L</select> of course supports the function/procedure calling semantics that L<DBIx::Class::ResultSet/select>. In order to have proper column names in the result, provide arguments in L</as> (which also follows L<DBIx::Class::ResultSet/as> semantics. Similarly L</count>, L</page>, L</grouped_by> and L</ordered_by> affect the maximum number of rows returned as well as the ordering and grouping. Note that if select, count, ordered_by or grouped_by request parameters are present then these will override the values set on the class with select becoming bound by the select_exposes attribute.
303
304 If not all objects in the resultset are required then it's possible to pass conditions to the method as request parameters. You can use a JSON string as the 'search' parameter for maximum flexibility or use L<CGI::Expand> syntax. In the second case the request parameters are expanded into a structure and then used as the search condition.
305
306 For example, these request parameters:
307
308  ?search.name=fred&search.cd.artist=luke
309  OR
310  ?search={"name":"fred","cd": {"artist":"luke"}}
311
312 Would result in this search (where 'name' is a column of the schema class, 'cd' is a relation of the schema class and 'artist' is a column of the related class):
313
314  $rs->search({ name => 'fred', 'cd.artist' => 'luke' }, { join => ['cd'] })
315
316 It is also possible to use a JSON string for expandeded parameters:
317
318  ?search.datetime={"-between":["2010-01-06 19:28:00","2010-01-07 19:28:00"]}
319
320 Note that if pagination is needed, this can be achieved using a combination of the L</count> and L</page> parameters. For example:
321
322   ?page=2&count=20
323
324 Would result in this search:
325  
326  $rs->search({}, { page => 2, rows => 20 })
327
328 =cut
329
330 sub list :Private 
331 {
332     $DB::single = 1;
333     my ($self, $c) = @_;
334
335     $self->list_munge_parameters($c);
336     $self->list_perform_search($c);
337     $self->list_format_output($c);
338 }
339
340 =method_protected list_munge_parameters
341
342 list_munge_parameters is a noop by default. All arguments will be passed through without any manipulation. In order to successfully manipulate the parameters before the search is performed, simply access $c->req->search_parameters|search_attributes (ArrayRef and HashRef respectively), which correspond directly to ->search($parameters, $attributes). Parameter keys will be in already-aliased form.
343
344 =cut
345
346 sub list_munge_parameters { } # noop by default
347
348 =method_protected list_perform_search
349
350 list_perform_search executes the actual search. current_result_set is updated to contain the result returned from ->search. If paging was requested, search_total_entries will be set as well.
351
352 =cut
353
354 sub list_perform_search
355 {
356     $DB::single = 1;
357     my ($self, $c) = @_;
358     
359     try 
360     {
361         my $req = $c->req;
362         
363         my $rs = $req->current_result_set->search
364         (
365             $req->search_parameters, 
366             $req->search_attributes
367         );
368
369         $req->_set_current_result_set($rs);
370
371         $req->_set_search_total_entries($req->current_result_set->pager->total_entries)
372             if $req->has_search_attributes && 
373             (
374                 (exists($req->search_attributes->{page}) && defined($req->search_attributes->{page}) && length($req->search_attributes->{page}))
375                 ||(exists($req->search_attributes->{offset}) && defined($req->search_attributes->{offset}) && length($req->search_attributes->{offset})) 
376                 ||(exists($req->search_attributes->{rows}) && defined($req->search_attributes->{rows}) && length($req->search_attributes->{rows}))
377             );
378     }
379     catch
380     {
381         $c->log->error($_);
382         $self->push_error($c, { message => 'a database error has occured.' });
383         $c->detach();
384     }
385 }
386
387 =method_protected list_format_output
388
389 list_format_output prepares the response for transmission across the wire. A copy of the current_result_set is taken and its result_class is set to L<DBIx::Class::ResultClass::HashRefInflator>. Each row in the resultset is then iterated and passed to L</row_format_output> with the result of that call added to the output.
390
391 =cut
392
393 sub list_format_output
394 {
395     $DB::single = 1;
396     my ($self, $c) = @_;
397
398     my $rs = $c->req->current_result_set->search;
399     $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
400     
401     try
402     {
403         my $output = {};
404         my $formatted = [];
405         
406         foreach my $row ($rs->all)
407         {
408             push(@$formatted, $self->row_format_output($row));
409         }
410         
411         $output->{$self->data_root} = $formatted;
412
413         if ($c->req->has_search_total_entries)
414         {
415             $output->{$self->total_entries_arg} = $c->req->search_total_entries + 0;
416         }
417
418         $c->stash->{response} = $output;
419     }
420     catch
421     {
422         $c->log->error($_);
423         $self->push_error($c, { message => 'a database error has occured.' });
424         $c->detach();
425     }
426 }
427
428 =method_protected row_format_output
429
430 row_format_output is called each row of the inflated output generated from the search. It receives only one argument, the hashref that represents the row. By default, this method is merely a passthrough.
431
432 =cut
433
434 sub row_format_output { shift; shift; } # passthrough by default
435
436 =method_protected update_or_create
437
438  :Private
439
440 update_or_create is responsible for iterating any stored objects and performing updates or creates. Each object is first validated to ensure it meets the criteria specified in the L</create_requires> and L</create_allows> (or L</update_allows>) parameters of the controller config. The objects are then committed within a transaction via L</transact_objects>.
441
442 =cut
443
444 sub update_or_create :Private
445 {
446     $DB::single = 1;
447     my ($self, $c) = @_;
448     
449     if($c->req->has_objects)
450     {
451         $self->validate_objects($c);
452         $self->transact_objects($c, \&save_objects);
453     }
454     else
455     {
456         $c->log->error($_);
457         $self->push_error($c, { message => 'No objects on which to operate' });
458         $c->detach();
459     }
460 }
461
462 =method_protected transact_objects
463
464 transact_objects performs the actual commit to the database via $schema->txn_do. This method accepts two arguments, the context and a coderef to be used within the transaction. All of the stored objects are passed as an arrayref for the only argument to the coderef.
465
466 =cut
467
468 sub transact_objects
469 {
470     $DB::single = 1;
471     my ($self, $c, $coderef) = @_;
472     
473     try
474     {
475         $self->stored_result_source->schema->txn_do
476         (
477             $coderef,
478             $c->req->objects
479         );
480     }
481     catch
482     {
483         $c->log->error($_);
484         $self->push_error($c, { message => 'a database error has occured.' });
485         $c->detach();
486     }
487 }
488
489 =method_protected validate_objects
490
491 This is a shortcut method for performing validation on all of the stored objects in the request. Each object's provided values (for create or update) are updated to the allowed values permitted by the various config parameters.
492
493 =cut
494
495 sub validate_objects
496 {
497     $DB::single = 1;
498     my ($self, $c) = @_;
499
500     try
501     {
502         foreach my $obj ($c->req->all_objects)
503         {
504             $obj->[1] = $self->validate_object($c, $obj);
505         }
506     }
507     catch
508     {
509         my $err = $_;
510         $c->log->error($err);
511         $err =~ s/\s+at\s+\/.+\n$//g;
512         $self->push_error($c, { message => $err });
513         $c->detach();
514     }
515 }
516
517 =method_protected validate_object
518
519 validate_object takes the context and the object as an argument. It then filters the passed values in slot two of the tuple through the create|update_allows configured. It then returns those filtered values. Values that are not allowed are silently ignored. If there are no values for a particular key, no valid values at all, or multiple of the same key, this method will die.
520
521 =cut
522
523 sub validate_object
524 {
525     $DB::single = 1;
526     my ($self, $c, $obj) = @_;
527     my ($object, $params) = @$obj;
528
529     my %values;
530     my %requires_map = map
531     {
532         $_ => 1
533     } 
534     @{
535         ($object->in_storage) 
536         ? [] 
537         : $c->stash->{create_requires} || $self->create_requires
538     };
539     
540     my %allows_map = map
541     {
542         (ref $_) ? %{$_} : ($_ => 1)
543     } 
544     (
545         keys %requires_map, 
546         @{
547             ($object->in_storage) 
548             ? ($c->stash->{update_allows} || $self->update_allows) 
549             : ($c->stash->{create_allows} || $self->create_allows)
550         }
551     );
552
553     foreach my $key (keys %allows_map)
554     {
555         # check value defined if key required
556         my $allowed_fields = $allows_map{$key};
557         
558         if (ref $allowed_fields)
559         {
560             my $related_source = $object->result_source->related_source($key);
561             my $related_params = $params->{$key};
562             my %allowed_related_map = map { $_ => 1 } @$allowed_fields;
563             my $allowed_related_cols = ($allowed_related_map{'*'}) ? [$related_source->columns] : $allowed_fields;
564             
565             foreach my $related_col (@{$allowed_related_cols})
566             {
567                 if (my $related_col_value = $related_params->{$related_col}) {
568                     $values{$key}{$related_col} = $related_col_value;
569                 }
570             }
571         }
572         else 
573         {
574             my $value = $params->{$key};
575
576             if ($requires_map{$key})
577             {
578                 unless (defined($value))
579                 {
580                     # if not defined look for default
581                     $value = $object->result_source->column_info($key)->{default_value};
582                     unless (defined $value)
583                     {
584                         die "No value supplied for ${key} and no default";
585                     }
586                 }
587             }
588             
589             # check for multiple values
590             if (ref($value) && !($value == JSON::Any::true || $value == JSON::Any::false))
591             {
592                 require Data::Dumper;
593                 die "Multiple values for '${key}': ${\Data::Dumper::Dumper($value)}";
594             }
595
596             # check exists so we don't just end up with hash of undefs
597             # check defined to account for default values being used
598             $values{$key} = $value if exists $params->{$key} || defined $value;
599         }
600     }
601
602     unless (keys %values || !$object->in_storage) 
603     {
604         die 'No valid keys passed';
605     }
606
607     return \%values;  
608 }
609
610 =method_protected delete
611
612  :Private
613
614 delete operates on the stored objects in the request. It first transacts the objects, deleting them in the database, and then clears the request store of objects.
615
616 =cut
617
618 sub delete :Private
619 {
620     $DB::single = 1;
621     my ($self, $c) = @_;
622     
623     if($c->req->has_objects)
624     {
625         $self->transact_objects($c, \&delete_objects);
626         $c->req->clear_objects;
627     }
628     else
629     {
630         $c->log->error($_);
631         $self->push_error($c, { message => 'No objects on which to operate' });
632         $c->detach();
633     }
634 }
635
636 =head1 HELPER FUNCTIONS
637
638 This functions are only helper functions and should have a void invocant. If they are called as methods, they will die. The only reason they are stored in the class is to allow for customization without rewriting the methods that make use of these helper functions.
639
640 =head2 save_objects
641
642 This helper function is used by update_or_create to perform the actual database manipulations.
643
644 =head2 delete_objects
645
646 This helper function is used by delete to perform the actual database delete of objects.
647
648 =cut
649
650 # NOT A METHOD
651 sub save_objects
652 {
653     my ($objects) = @_;
654     die 'save_objects coderef had an invocant and shouldn\'t have had one' if blessed($objects);
655
656     foreach my $obj (@$objects)
657     {
658         my ($object, $params) = @$obj;
659
660         if ($object->in_storage) {
661             foreach my $key (keys %{$params}) {
662                 my $value = $params->{$key};
663                 if (ref($value) && !($value == JSON::Any::true || $value == JSON::Any::false)) {
664                     my $related_params = delete $params->{$key};
665                     my $row = $object->find_related($key, {} , {});
666                     $row->update($related_params);
667                 }
668             }
669             $object->update($params);
670         } else {
671             $object->set_columns($params);
672             $object->insert;
673         }
674     }
675 }
676
677 # NOT A METHOD
678 sub delete_objects
679 {
680     my ($objects) = @_;
681     die 'delete_objects coderef had an invocant and shouldn\'t have had one' if blessed($objects);
682
683     map { $_->[0]->delete } @$objects;
684 }
685
686 =method_protected end
687
688  :Private
689
690 end performs the final manipulation of the response before it is serialized. This includes setting the success of the request both at the HTTP layer and JSON layer. If configured with return_object true, and there are stored objects as the result of create or update, those will be inflated according to the schema and get_inflated_columns
691
692 =cut
693
694 sub end :Private 
695 {
696     $DB::single = 1;
697     my ($self, $c) = @_;
698
699     # check for errors
700     my $default_status;
701
702     # Check for errors caught elsewhere
703     if ( $c->res->status and $c->res->status != 200 ) {
704         $default_status = $c->res->status;
705         $c->stash->{response}->{success} = $self->use_json_boolean ? JSON::Any::false : 'false';
706     } elsif ($self->get_errors($c)) {
707         $c->stash->{response}->{messages} = $self->get_errors($c);
708         $c->stash->{response}->{success} = $self->use_json_boolean ? JSON::Any::false : 'false';
709         $default_status = 400;
710     } else {
711         $c->stash->{response}->{success} = $self->use_json_boolean ? JSON::Any::true : 'true';
712         $default_status = 200;
713     }
714     
715     unless ($default_status == 200)
716     {
717         delete $c->stash->{response}->{$self->data_root};
718     }
719     elsif($self->return_object && $c->req->has_objects)
720     {
721         $DB::single = 1;
722         my $returned_objects = [];
723         push(@$returned_objects, $self->each_object_inflate($c, $_)) for map { $_->[0] } $c->req->all_objects;
724         $c->stash->{response}->{$self->data_root} = scalar(@$returned_objects) > 1 ? $returned_objects : $returned_objects->[0];
725     }
726
727     $c->res->status( $default_status || 200 );
728     $c->forward('serialize');
729 }
730
731 =method_protected each_object_inflate
732
733 each_object_inflate executes during L</end> and allows hooking into the process of inflating the objects to return in the response. Receives, the context, and the object as arguments.
734
735 This only executes if L</return_object> if set and if there are any objects to actually return.
736
737 =cut
738
739 sub each_object_inflate
740 {
741     my ($self, $c, $object) = @_;
742
743     return { $object->get_inflated_columns };
744 }
745
746 # from Catalyst::Action::Serialize
747 sub serialize :ActionClass('Serialize') { }
748
749 =method_protected push_error
750
751 push_error stores an error message into the stash to be later retrieved by L</end>. Accepts a Dict[message => Str] parameter that defines the error message.
752
753 =cut
754
755 sub push_error
756 {
757     my ( $self, $c, $params ) = @_;
758     push( @{$c->stash->{_dbic_crud_errors}}, $params->{message} || 'unknown error' );
759 }
760
761 =method_protected get_errors
762
763 get_errors returns all of the errors stored in the stash
764
765 =cut
766
767 sub get_errors
768 {
769     my ( $self, $c ) = @_;
770     return $c->stash->{_dbic_crud_errors};
771 }
772
773 =head1 DESCRIPTION
774
775 Easily provide common API endpoints based on your L<DBIx::Class> schema classes. Module provides both RPC and REST interfaces to base functionality. Uses L<Catalyst::Action::Serialize> and L<Catalyst::Action::Deserialize> to serialise response and/or deserialise request.
776
777 =head1 OVERVIEW
778
779 This document describes base functionlity such as list, create, delete, update and the setting of config attributes. L<Catalyst::Controller::DBIC::API::RPC> and L<Catalyst::Controller::DBIC::API::REST> describe details of provided endpoints to those base methods.
780
781 You will need to create a controller for each schema class you require API endpoints for. For example if your schema has Artist and Track, and you want to provide a RESTful interface to these, you should create MyApp::Controller::API::REST::Artist and MyApp::Controller::API::REST::Track which both subclass L<Catalyst::Controller::DBIC::API::REST>. Similarly if you wanted to provide an RPC style interface then subclass L<Catalyst::Controller::DBIC::API::RPC>. You then configure these individually as specified in L</CONFIGURATION>.
782
783 Also note that the test suite of this module has an example application used to run tests against. It maybe helpful to look at that until a better tutorial is written.
784
785 =head2 CONFIGURATION
786
787 Each of your controller classes needs to be configured to point at the relevant schema class, specify what can be updated and so on, as shown in the L</SYNOPSIS>.
788
789 The class, create_requires, create_allows and update_requires parameters can also be set in the stash like so:
790
791   sub setup :Chained('/api/rpc/rpc_base') :CaptureArgs(1) :PathPart('any') {
792     my ($self, $c, $object_type) = @_;
793
794     if ($object_type eq 'artist') {
795       $c->stash->{class} = 'MyAppDB::Artist';
796       $c->stash->{create_requires} = [qw/name/];
797       $c->stash->{update_allows} = [qw/name/];
798     } else {
799       $self->push_error($c, { message => "invalid object_type" });
800       return;
801     }
802
803     $self->next::method($c);
804   }
805
806 Generally it's better to have one controller for each DBIC source with the config hardcoded, but in some cases this isn't possible.
807
808 Note that the Chained, CaptureArgs and PathPart are just standard Catalyst configuration parameters and that then endpoint specified in Chained - in this case '/api/rpc/rpc_base' - must actually exist elsewhere in your application. See L<Catalyst::DispatchType::Chained> for more details.
809
810 Below are explanations for various configuration parameters. Please see L<Catalyst::Controller::DBIC::API::StaticArguments> for more details.
811
812 =head3 class
813
814 Whatever you would pass to $c->model to get a resultset for this class. MyAppDB::Track for example.
815
816 =head3 data_root
817
818 By default, the response data is serialized into $c->stash->{response}->{$self->data_root} and data_root defaults to 'list' to preserve backwards compatibility. This is now configuable to meet the needs of the consuming client.
819
820 =head3 use_json_boolean
821
822 By default, the response success status is set to a string value of "true" or "false". If this attribute is true, JSON::Any's true() and false() will be used instead. Note, this does not effect other internal processing of boolean values.
823
824 =head3 count_arg, page_arg, select_arg, search_arg, grouped_by_arg, ordered_by_arg, prefetch_arg, as_arg, total_entries_arg
825
826 These attributes allow customization of the component to understand requests made by clients where these argument names are not flexible and cannot conform to this components defaults.
827
828 =head3 create_requires
829
830 Arrayref listing columns required to be passed to create in order for the request to be valid.
831
832 =head3 create_allows
833
834 Arrayref listing columns additional to those specified in create_requires that are not required to create but which create does allow. Columns passed to create that are not listed in create_allows or create_requires will be ignored.
835
836 =head3 update_allows
837
838 Arrayref listing columns that update will allow. Columns passed to update that are not listed here will be ignored.
839
840 =head3 select
841
842 Arguments to pass to L<DBIx::Class::ResultSet/select> when performing search for L</list>.
843
844 =head3 as
845
846 Complements arguments passed to L<DBIx::Class::ResultSet/select> when performing a search. This allows you to specify column names in the result for RDBMS functions, etc.
847
848 =head3 select_exposes
849
850 Columns and related columns that are okay to return in the resultset since clients can request more or less information specified than the above select argument.
851
852 =head3 prefetch
853
854 Arguments to pass to L<DBIx::Class::ResultSet/prefetch> when performing search for L</list>.
855
856 =head3 prefetch_allows
857
858 Arrayref listing relationships that are allowed to be prefetched.
859 This is necessary to avoid denial of service attacks in form of
860 queries which would return a large number of data
861 and unwanted disclosure of data.
862
863 =head3 grouped_by
864
865 Arguments to pass to L<DBIx::Class::ResultSet/group_by> when performing search for L</list>.
866
867 =head3 ordered_by
868
869 Arguments to pass to L<DBIx::Class::ResultSet/order_by> when performing search for L</list>.
870
871 =head3 search_exposes
872
873 Columns and related columns that are okay to search on. For example if only the position column and all cd columns were to be allowed
874
875  search_exposes => [qw/position/, { cd => ['*'] }]
876
877 You can also use this to allow custom columns should you wish to allow them through in order to be caught by a custom resultset. For example:
878
879   package RestTest::Controller::API::RPC::TrackExposed;
880   
881   ...
882   
883   __PACKAGE__->config
884     ( ...,
885       search_exposes => [qw/position title custom_column/],
886     );
887
888 and then in your custom resultset:
889
890   package RestTest::Schema::ResultSet::Track;
891   
892   use base 'RestTest::Schema::ResultSet';
893   
894   sub search {
895     my $self = shift;
896     my ($clause, $params) = @_;
897
898     # test custom attrs
899     if (my $pretend = delete $clause->{custom_column}) {
900       $clause->{'cd.year'} = $pretend;
901     }
902     my $rs = $self->SUPER::search(@_);
903   }
904
905 =head3 count
906
907 Arguments to pass to L<DBIx::Class::ResultSet/rows> when performing search for L</list>.
908
909 =head3 page
910
911 Arguments to pass to L<DBIx::Class::ResultSet/rows> when performing search for L</list>.
912
913 =head1 EXTENDING
914
915 By default the create, delete and update actions will not return anything apart from the success parameter set in L</end>, often this is not ideal but the required behaviour varies from application to application. So normally it's sensible to write an intermediate class which your main controller classes subclass from.
916
917 For example if you wanted create to return the JSON for the newly created object you might have something like:
918
919   package MyApp::ControllerBase::DBIC::API::RPC;
920   ...
921   use Moose;
922   BEGIN { extends 'Catalyst::Controller::DBIC::API::RPC' };
923   ...
924   sub create :Chained('setup') :Args(0) :PathPart('create') {
925     my ($self, $c) = @_;
926
927     # $c->req->all_objects will contain all of the created
928     $self->next::method($c);
929
930     if ($c->req->has_objects) {    
931       # $c->stash->{response} will be serialized in the end action
932       $c->stash->{response}->{$self->data_root} = [ map { { $_->get_inflated_columns } } ($c->req->all_objects) ] ;
933     }
934   }
935
936
937   package MyApp::Controller::API::RPC::Track;
938   ...
939   use Moose;
940   BEGIN { extends 'MyApp::ControllerBase::DBIC::API::RPC' };
941   ...
942
943 It should be noted that the return_object attribute will produce the above result for you, free of charge.
944
945 For REST the only difference besides the class names would be that create should be :Private rather than an endpoint.
946
947 Similarly you might want create, update and delete to all forward to the list action once they are done so you can refresh your view. This should also be simple enough.
948
949 If more extensive customization is required, it is recommened to peer into the roles that comprise the system and make use 
950
951 =head1 NOTES
952
953 It should be noted that version 1.004 and above makes a rapid depature from the status quo. The internals were revamped to use more modern tools such as Moose and its role system to refactor functionality out into self-contained roles.
954
955 To this end, internally, this module now understands JSON boolean values (as represented by JSON::Any) and will Do The Right Thing in handling those values. This means you can have ColumnInflators installed that can covert between JSON::Any booleans and whatever your database wants for boolean values.
956
957 Validation for various *_allows or *_exposes is now accomplished via Data::DPath::Validator with a lightly simplified, via subclass, Data::DPath::Validator::Visitor. The rough jist of the process goes as follows: Arguments provided to those attributes are fed into the Validator and Data::DPaths are generated. Then, incoming requests are validated against these paths generated. The validator is set in "loose" mode meaning only one path is required to match. For more information, please see L<Data::DPath::Validator> and more specifically L<Catalyst::Controller::DBIC::API::Validator>.
958
959 Since 2.00100:
960 Transactions are used. The stash is put aside in favor of roles applied to the request object with additional accessors.
961 Error handling is now much more consistent with most errors immediately detaching.
962 The internals are much easier to read and understand with lots more documentation.
963
964 =cut
965
966 1;