3f3346670bba9673457e275d1493aaffdf06c675
[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     my ($self, $c) = @_;
70     
71     Catalyst::Controller::DBIC::API::Request->meta->apply($c->req)
72         unless Moose::Util::does_role($c->req, 'Catalyst::Controller::DBIC::API::Request');
73     $c->forward('deserialize');
74 }
75
76 =method_protected setup
77
78  :Chained('specify.in.subclass.config') :CaptureArgs(0) :PathPart('specify.in.subclass.config')
79
80 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
81
82   package MyApp::Controller::API::RPC::Track;
83   use base qw/Catalyst::Controller::DBIC::API::RPC/;
84
85   __PACKAGE__->config
86     ( action => { setup => { PathPart => 'track', Chained => '/api/rpc/rpc_base' } }, 
87         ...
88   );
89
90   # or
91
92   sub setup :Chained('/api/rpc_base') :CaptureArgs(0) :PathPart('track') {
93     my ($self, $c) = @_;
94
95     $self->next::method($c);
96   }
97
98 This action will populate $c->req->current_result_set with $self->stored_result_source->resultset for other actions in the chain to use.
99
100 =cut
101
102 sub setup :Chained('specify.in.subclass.config') :CaptureArgs(0) :PathPart('specify.in.subclass.config')
103 {
104     my ($self, $c) = @_;
105
106     $c->req->_set_current_result_set($self->stored_result_source->resultset);
107 }
108
109 =method_protected object
110
111  :Chained('setup') :CaptureArgs(1) :PathPart('')
112
113 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.
114
115 =cut
116
117 sub object :Chained('setup') :CaptureArgs(1) :PathPart('')
118 {
119         my ($self, $c, $id) = @_;
120
121     my $vals = $c->req->request_data->{$self->data_root};
122     unless(defined($vals))
123     {
124         # no data root, assume the request_data itself is the payload
125         $vals = [$c->req->request_data || {}];
126     }
127     elsif(reftype($vals) eq 'HASH')
128     {
129         $vals = [ $vals ];
130     }
131
132     if(defined($id))
133     {
134         try
135         {
136             # there can be only one set of data
137             $c->req->add_object([$self->object_lookup($c, $id), $vals->[0]]);
138         }
139         catch
140         {
141             $c->log->error($_);
142             $self->push_error($c, { message => $_ });
143             $c->detach();
144         }
145     }
146     else
147     {
148         unless(reftype($vals) eq 'ARRAY')
149         {
150             $c->log->error('Invalid request data');
151             $self->push_error($c, { message => 'Invalid request data' });
152             $c->detach();
153         }
154
155         foreach my $val (@$vals)
156         {
157             unless(exists($val->{id}))
158             {
159                 $c->req->add_object([$c->req->current_result_set->new_result({}), $val]);
160                 next;
161             }
162
163             try
164             {
165                 $c->req->add_object([$self->object_lookup($c, $val->{id}), $val]);
166             }
167             catch
168             {
169                 $c->log->error($_);
170                 $self->push_error($c, { message => $_ });
171                 $c->detach();
172             }
173         }
174     }
175 }
176
177 =method_protected object_lookup
178
179 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.
180
181 =cut
182
183 sub object_lookup
184 {
185     my ($self, $c, $id) = @_;
186
187     die 'No valid ID provided for look up' unless defined $id and length $id;
188     my $object = $c->req->current_result_set->find($id);
189     die "No object found for id '$id'" unless defined $object;
190     return $object;
191 }
192
193 =method_protected deserialize
194
195 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:
196
197     search_arg
198     count_arg
199     page_arg
200     ordered_by_arg
201     grouped_by_arg
202     prefetch_arg
203
204 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.
205
206 =cut
207
208 sub deserialize :ActionClass('Deserialize')
209 {
210     my ($self, $c) = @_;
211     my $req_params;
212
213     if ($c->req->data && scalar(keys %{$c->req->data}))
214     {
215         $req_params = $c->req->data;
216     }
217     else 
218     {
219         $req_params = CGI::Expand->expand_hash($c->req->params);
220
221         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]})
222         {
223             # these params can also be composed of JSON
224             # but skip if the parameter is not provided
225             next if not exists $req_params->{$param};
226             # find out if CGI::Expand was involved
227             if (ref $req_params->{$param} eq 'HASH')
228             {
229                 for my $key ( keys %{$req_params->{$param}} )
230                 {
231                     try
232                     {
233                         my $deserialized = JSON::Any->from_json($req_params->{$param}->{$key});
234                         $req_params->{$param}->{$key} = $deserialized;
235                     }
236                     catch
237                     { 
238                         $c->log->debug("Param '$param.$key' did not deserialize appropriately: $_")
239                         if $c->debug;
240                     }
241                 }
242             }
243             else
244             {
245                 try
246                 {
247                     my $deserialized = JSON::Any->from_json($req_params->{$param});
248                     $req_params->{$param} = $deserialized;
249                 }
250                 catch
251                 { 
252                     $c->log->debug("Param '$param' did not deserialize appropriately: $_")
253                     if $c->debug;
254                 }
255             }
256         }
257     }
258     
259     $self->inflate_request($c, $req_params);
260 }
261
262 =method_protected inflate_request
263
264 inflate_request is called at the end of deserialize to populate key portions of the request with the useful bits
265
266 =cut
267
268 sub inflate_request
269 {
270     my ($self, $c, $params) = @_;
271
272     try
273     {
274         # set static arguments
275         $c->req->_set_controller($self); 
276
277         # set request arguments
278         $c->req->_set_request_data($params);
279         
280     }
281     catch
282     {
283         $c->log->error($_);
284         $self->push_error($c, { message => $_ });
285         $c->detach();
286     }
287     
288 }
289
290 =method_protected list
291
292  :Private
293
294 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>.
295
296 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.
297
298 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.
299
300 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.
301
302 For example, these request parameters:
303
304  ?search.name=fred&search.cd.artist=luke
305  OR
306  ?search={"name":"fred","cd": {"artist":"luke"}}
307
308 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):
309
310  $rs->search({ name => 'fred', 'cd.artist' => 'luke' }, { join => ['cd'] })
311
312 It is also possible to use a JSON string for expandeded parameters:
313
314  ?search.datetime={"-between":["2010-01-06 19:28:00","2010-01-07 19:28:00"]}
315
316 Note that if pagination is needed, this can be achieved using a combination of the L</count> and L</page> parameters. For example:
317
318   ?page=2&count=20
319
320 Would result in this search:
321  
322  $rs->search({}, { page => 2, rows => 20 })
323
324 =cut
325
326 sub list :Private 
327 {
328     my ($self, $c) = @_;
329
330     $self->list_munge_parameters($c);
331     $self->list_perform_search($c);
332     $self->list_format_output($c);
333 }
334
335 =method_protected list_munge_parameters
336
337 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.
338
339 =cut
340
341 sub list_munge_parameters { } # noop by default
342
343 =method_protected list_perform_search
344
345 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.
346
347 =cut
348
349 sub list_perform_search
350 {
351     my ($self, $c) = @_;
352     
353     try 
354     {
355         my $req = $c->req;
356         
357         my $rs = $req->current_result_set->search
358         (
359             $req->search_parameters, 
360             $req->search_attributes
361         );
362
363         $req->_set_current_result_set($rs);
364
365         $req->_set_search_total_entries($req->current_result_set->pager->total_entries)
366             if $req->has_search_attributes && (exists($req->search_attributes->{page}) && defined($req->search_attributes->{page}) && length($req->search_attributes->{page}));
367     }
368     catch
369     {
370         $c->log->error($_);
371         $self->push_error($c, { message => 'a database error has occured.' });
372         $c->detach();
373     }
374 }
375
376 =method_protected list_format_output
377
378 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.
379
380 =cut
381
382 sub list_format_output
383 {
384     my ($self, $c) = @_;
385
386     my $rs = $c->req->current_result_set->search;
387     $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
388     
389     try
390     {
391         my $output = {};
392         my $formatted = [];
393         
394         foreach my $row ($rs->all)
395         {
396             push(@$formatted, $self->row_format_output($c, $row));
397         }
398         
399         $output->{$self->data_root} = $formatted;
400
401         if ($c->req->has_search_total_entries)
402         {
403             $output->{$self->total_entries_arg} = $c->req->search_total_entries + 0;
404         }
405
406         $c->stash->{response} = $output;
407     }
408     catch
409     {
410         $c->log->error($_);
411         $self->push_error($c, { message => 'a database error has occured.' });
412         $c->detach();
413     }
414 }
415
416 =method_protected row_format_output
417
418 row_format_output is called each row of the inflated output generated from the search. It receives two arguments, the catalyst context and the hashref that represents the row. By default, this method is merely a passthrough.
419
420 =cut
421
422 sub row_format_output
423 {
424     my ($self, $c, $row) = @_;
425     return $row; # passthrough by default
426 }
427
428 =method_protected update_or_create
429
430  :Private
431
432 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> using a closure around L</save_objects>.
433
434 =cut
435
436 sub update_or_create :Private
437 {
438     my ($self, $c) = @_;
439     
440     if($c->req->has_objects)
441     {
442         $self->validate_objects($c);
443         $self->transact_objects($c, sub { $self->save_objects($c, @_) } );
444     }
445     else
446     {
447         $c->log->error($_);
448         $self->push_error($c, { message => 'No objects on which to operate' });
449         $c->detach();
450     }
451 }
452
453 =method_protected transact_objects
454
455 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.
456
457 =cut
458
459 sub transact_objects
460 {
461     my ($self, $c, $coderef) = @_;
462     
463     try
464     {
465         $self->stored_result_source->schema->txn_do
466         (
467             $coderef,
468             $c->req->objects
469         );
470     }
471     catch
472     {
473         $c->log->error($_);
474         $self->push_error($c, { message => 'a database error has occured.' });
475         $c->detach();
476     }
477 }
478
479 =method_protected validate_objects
480
481 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.
482
483 =cut
484
485 sub validate_objects
486 {
487     my ($self, $c) = @_;
488
489     try
490     {
491         foreach my $obj ($c->req->all_objects)
492         {
493             $obj->[1] = $self->validate_object($c, $obj);
494         }
495     }
496     catch
497     {
498         my $err = $_;
499         $c->log->error($err);
500         $err =~ s/\s+at\s+\/.+\n$//g;
501         $self->push_error($c, { message => $err });
502         $c->detach();
503     }
504 }
505
506 =method_protected validate_object
507
508 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.
509
510 =cut
511
512 sub validate_object
513 {
514     my ($self, $c, $obj) = @_;
515     my ($object, $params) = @$obj;
516
517     my %values;
518     my %requires_map = map
519     {
520         $_ => 1
521     } 
522     @{
523         ($object->in_storage) 
524         ? [] 
525         : $c->stash->{create_requires} || $self->create_requires
526     };
527     
528     my %allows_map = map
529     {
530         (ref $_) ? %{$_} : ($_ => 1)
531     } 
532     (
533         keys %requires_map, 
534         @{
535             ($object->in_storage) 
536             ? ($c->stash->{update_allows} || $self->update_allows) 
537             : ($c->stash->{create_allows} || $self->create_allows)
538         }
539     );
540
541     foreach my $key (keys %allows_map)
542     {
543         # check value defined if key required
544         my $allowed_fields = $allows_map{$key};
545         
546         if (ref $allowed_fields)
547         {
548             my $related_source = $object->result_source->related_source($key);
549             my $related_params = $params->{$key};
550             my %allowed_related_map = map { $_ => 1 } @$allowed_fields;
551             my $allowed_related_cols = ($allowed_related_map{'*'}) ? [$related_source->columns] : $allowed_fields;
552             
553             foreach my $related_col (@{$allowed_related_cols})
554             {
555                 if (my $related_col_value = $related_params->{$related_col}) {
556                     $values{$key}{$related_col} = $related_col_value;
557                 }
558             }
559         }
560         else 
561         {
562             my $value = $params->{$key};
563
564             if ($requires_map{$key})
565             {
566                 unless (defined($value))
567                 {
568                     # if not defined look for default
569                     $value = $object->result_source->column_info($key)->{default_value};
570                     unless (defined $value)
571                     {
572                         die "No value supplied for ${key} and no default";
573                     }
574                 }
575             }
576             
577             # check for multiple values
578             if (ref($value) && !($value == JSON::Any::true || $value == JSON::Any::false))
579             {
580                 require Data::Dumper;
581                 die "Multiple values for '${key}': ${\Data::Dumper::Dumper($value)}";
582             }
583
584             # check exists so we don't just end up with hash of undefs
585             # check defined to account for default values being used
586             $values{$key} = $value if exists $params->{$key} || defined $value;
587         }
588     }
589
590     unless (keys %values || !$object->in_storage) 
591     {
592         die 'No valid keys passed';
593     }
594
595     return \%values;  
596 }
597
598 =method_protected delete
599
600  :Private
601
602 delete operates on the stored objects in the request. It first transacts the objects, deleting them in the database using L</transact_objects> and a closure around L</delete_objects>, and then clears the request store of objects.
603
604 =cut
605
606 sub delete :Private
607 {
608     my ($self, $c) = @_;
609     
610     if($c->req->has_objects)
611     {
612         $self->transact_objects($c, sub { $self->delete_objects($c, @_) });
613         $c->req->clear_objects;
614     }
615     else
616     {
617         $c->log->error($_);
618         $self->push_error($c, { message => 'No objects on which to operate' });
619         $c->detach();
620     }
621 }
622
623 =method_protected save_objects
624
625 This method is used by update_or_create to perform the actual database manipulations. It iterates each object calling L</save_object>.
626
627 =cut
628
629 sub save_objects
630 {
631     my ($self, $c, $objects) = @_;
632
633     foreach my $obj (@$objects)
634     {
635         $self->save_object($c, $obj);
636     }
637 }
638
639 =method_protected save_object
640
641 save_object first checks to see if the object is already in storage. If so, it calls L</update_object_from_params> otherwise it calls L</insert_object_from_params>
642
643 =cut
644
645 sub save_object
646 {
647     my ($self, $c, $obj) = @_;
648
649     my ($object, $params) = @$obj;
650
651     if ($object->in_storage)
652     {
653         $self->update_object_from_params($c, $object, $params);
654     }
655     else 
656     {
657         $self->insert_object_from_params($c, $object, $params);
658     }
659
660 }
661
662 =method_protected update_object_from_params
663
664 update_object_from_params iterates through the params to see if any of them are pertinent to relations. If so it calls L</update_object_relation> with the object, and the relation parameters. Then it calls ->upbdate on the object.
665
666 =cut
667
668 sub update_object_from_params
669 {
670     my ($self, $c, $object, $params) = @_;
671
672     foreach my $key (keys %$params)
673     {
674         my $value = $params->{$key};
675         if (ref($value) && !($value == JSON::Any::true || $value == JSON::Any::false))
676         {
677             $self->update_object_relation($c, $object, delete $params->{$key}, $key);
678         }
679     }
680     
681     $object->update($params);
682 }
683
684 =method_protected update_object_relation
685
686 update_object_relation finds the relation to the object, then calls ->update with the specified parameters
687
688 =cut
689
690 sub update_object_relation
691 {
692     my ($self, $c, $object, $related_params, $relation) = @_;
693     my $row = $object->find_related($relation, {} , {});
694     $row->update($related_params);
695 }
696
697 =method_protected insert_object_from_params
698
699 insert_object_from_params sets the columns for the object, then calls ->insert
700
701 =cut
702
703 sub insert_object_from_params
704 {
705     my ($self, $c, $object, $params) = @_;
706     $object->set_columns($params);
707     $object->insert;
708 }
709
710 =method_protected delete_objects
711
712 delete_objects iterates through each object calling L</delete_object>
713
714 =cut
715
716 sub delete_objects
717 {
718     my ($self, $c, $objects) = @_;
719
720     map { $self->delete_object($c, $_->[0]) } @$objects;
721 }
722
723 =method_protected delete_object
724
725 Performs the actual ->delete on the object
726
727 =cut
728
729 sub delete_object
730 {
731     my ($self, $c, $object) = @_;
732
733     $object->delete;
734 }
735
736 =method_protected end
737
738  :Private
739
740 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
741
742 =cut
743
744 sub end :Private 
745 {
746     my ($self, $c) = @_;
747
748     # check for errors
749     my $default_status;
750
751     # Check for errors caught elsewhere
752     if ( $c->res->status and $c->res->status != 200 ) {
753         $default_status = $c->res->status;
754         $c->stash->{response}->{success} = $self->use_json_boolean ? JSON::Any::false : 'false';
755     } elsif ($self->get_errors($c)) {
756         $c->stash->{response}->{messages} = $self->get_errors($c);
757         $c->stash->{response}->{success} = $self->use_json_boolean ? JSON::Any::false : 'false';
758         $default_status = 400;
759     } else {
760         $c->stash->{response}->{success} = $self->use_json_boolean ? JSON::Any::true : 'true';
761         $default_status = 200;
762     }
763     
764     unless ($default_status == 200)
765     {
766         delete $c->stash->{response}->{$self->data_root};
767     }
768     elsif($self->return_object && $c->req->has_objects)
769     {
770         my $returned_objects = [];
771         push(@$returned_objects, $self->each_object_inflate($c, $_)) for map { $_->[0] } $c->req->all_objects;
772         $c->stash->{response}->{$self->data_root} = scalar(@$returned_objects) > 1 ? $returned_objects : $returned_objects->[0];
773     }
774
775     $c->res->status( $default_status || 200 );
776     $c->forward('serialize');
777 }
778
779 =method_protected each_object_inflate
780
781 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.
782
783 This only executes if L</return_object> if set and if there are any objects to actually return.
784
785 =cut
786
787 sub each_object_inflate
788 {
789     my ($self, $c, $object) = @_;
790
791     return { $object->get_inflated_columns };
792 }
793
794 # from Catalyst::Action::Serialize
795 sub serialize :ActionClass('Serialize') { }
796
797 =method_protected push_error
798
799 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.
800
801 =cut
802
803 sub push_error
804 {
805     my ( $self, $c, $params ) = @_;
806     push( @{$c->stash->{_dbic_crud_errors}}, $params->{message} || 'unknown error' );
807 }
808
809 =method_protected get_errors
810
811 get_errors returns all of the errors stored in the stash
812
813 =cut
814
815 sub get_errors
816 {
817     my ( $self, $c ) = @_;
818     return $c->stash->{_dbic_crud_errors};
819 }
820
821 =head1 DESCRIPTION
822
823 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.
824
825 =head1 OVERVIEW
826
827 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.
828
829 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>.
830
831 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.
832
833 =head2 CONFIGURATION
834
835 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>.
836
837 The class, create_requires, create_allows and update_requires parameters can also be set in the stash like so:
838
839   sub setup :Chained('/api/rpc/rpc_base') :CaptureArgs(1) :PathPart('any') {
840     my ($self, $c, $object_type) = @_;
841
842     if ($object_type eq 'artist') {
843       $c->stash->{class} = 'MyAppDB::Artist';
844       $c->stash->{create_requires} = [qw/name/];
845       $c->stash->{update_allows} = [qw/name/];
846     } else {
847       $self->push_error($c, { message => "invalid object_type" });
848       return;
849     }
850
851     $self->next::method($c);
852   }
853
854 Generally it's better to have one controller for each DBIC source with the config hardcoded, but in some cases this isn't possible.
855
856 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.
857
858 Below are explanations for various configuration parameters. Please see L<Catalyst::Controller::DBIC::API::StaticArguments> for more details.
859
860 =head3 class
861
862 Whatever you would pass to $c->model to get a resultset for this class. MyAppDB::Track for example.
863
864 =head3 data_root
865
866 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.
867
868 =head3 use_json_boolean
869
870 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.
871
872 =head3 count_arg, page_arg, select_arg, search_arg, grouped_by_arg, ordered_by_arg, prefetch_arg, as_arg, total_entries_arg
873
874 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.
875
876 =head3 create_requires
877
878 Arrayref listing columns required to be passed to create in order for the request to be valid.
879
880 =head3 create_allows
881
882 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.
883
884 =head3 update_allows
885
886 Arrayref listing columns that update will allow. Columns passed to update that are not listed here will be ignored.
887
888 =head3 select
889
890 Arguments to pass to L<DBIx::Class::ResultSet/select> when performing search for L</list>.
891
892 =head3 as
893
894 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.
895
896 =head3 select_exposes
897
898 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.
899
900 =head3 prefetch
901
902 Arguments to pass to L<DBIx::Class::ResultSet/prefetch> when performing search for L</list>.
903
904 =head3 prefetch_allows
905
906 Arrayref listing relationships that are allowed to be prefetched.
907 This is necessary to avoid denial of service attacks in form of
908 queries which would return a large number of data
909 and unwanted disclosure of data.
910
911 =head3 grouped_by
912
913 Arguments to pass to L<DBIx::Class::ResultSet/group_by> when performing search for L</list>.
914
915 =head3 ordered_by
916
917 Arguments to pass to L<DBIx::Class::ResultSet/order_by> when performing search for L</list>.
918
919 =head3 search_exposes
920
921 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
922
923  search_exposes => [qw/position/, { cd => ['*'] }]
924
925 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:
926
927   package RestTest::Controller::API::RPC::TrackExposed;
928   
929   ...
930   
931   __PACKAGE__->config
932     ( ...,
933       search_exposes => [qw/position title custom_column/],
934     );
935
936 and then in your custom resultset:
937
938   package RestTest::Schema::ResultSet::Track;
939   
940   use base 'RestTest::Schema::ResultSet';
941   
942   sub search {
943     my $self = shift;
944     my ($clause, $params) = @_;
945
946     # test custom attrs
947     if (my $pretend = delete $clause->{custom_column}) {
948       $clause->{'cd.year'} = $pretend;
949     }
950     my $rs = $self->SUPER::search(@_);
951   }
952
953 =head3 count
954
955 Arguments to pass to L<DBIx::Class::ResultSet/rows> when performing search for L</list>.
956
957 =head3 page
958
959 Arguments to pass to L<DBIx::Class::ResultSet/rows> when performing search for L</list>.
960
961 =head1 EXTENDING
962
963 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.
964
965 For example if you wanted create to return the JSON for the newly created object you might have something like:
966
967   package MyApp::ControllerBase::DBIC::API::RPC;
968   ...
969   use Moose;
970   BEGIN { extends 'Catalyst::Controller::DBIC::API::RPC' };
971   ...
972   sub create :Chained('setup') :Args(0) :PathPart('create') {
973     my ($self, $c) = @_;
974
975     # $c->req->all_objects will contain all of the created
976     $self->next::method($c);
977
978     if ($c->req->has_objects) {    
979       # $c->stash->{response} will be serialized in the end action
980       $c->stash->{response}->{$self->data_root} = [ map { { $_->get_inflated_columns } } ($c->req->all_objects) ] ;
981     }
982   }
983
984
985   package MyApp::Controller::API::RPC::Track;
986   ...
987   use Moose;
988   BEGIN { extends 'MyApp::ControllerBase::DBIC::API::RPC' };
989   ...
990
991 It should be noted that the return_object attribute will produce the above result for you, free of charge.
992
993 For REST the only difference besides the class names would be that create should be :Private rather than an endpoint.
994
995 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.
996
997 If more extensive customization is required, it is recommened to peer into the roles that comprise the system and make use 
998
999 =head1 NOTES
1000
1001 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.
1002
1003 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.
1004
1005 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>.
1006
1007 Since 2.00100:
1008 Transactions are used. The stash is put aside in favor of roles applied to the request object with additional accessors.
1009 Error handling is now much more consistent with most errors immediately detaching.
1010 The internals are much easier to read and understand with lots more documentation.
1011
1012 =cut
1013
1014 1;