de143e68864f6b9bbe9bd2c7fe46ad0fcabc94ef
[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::ActionRole'; }
6
7 use CGI::Expand ();
8 use DBIx::Class::ResultClass::HashRefInflator;
9 use JSON ();
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 has '_json' => (
19     is => 'ro',
20     isa => 'JSON',
21     lazy_build => 1,
22 );
23
24 sub _build__json {
25     # no ->utf8 here because the request params get decoded by Catalyst
26     return JSON->new;
27 }
28
29 with 'Catalyst::Controller::DBIC::API::StoredResultSource',
30      'Catalyst::Controller::DBIC::API::StaticArguments',
31      'Catalyst::Controller::DBIC::API::RequestArguments' => { static => 1 };
32
33 __PACKAGE__->config();
34
35 =head1 SYNOPSIS
36
37   package MyApp::Controller::API::RPC::Artist;
38   use Moose;
39   BEGIN { extends 'Catalyst::Controller::DBIC::API::RPC' }
40
41   __PACKAGE__->config
42     ( action => { setup => { PathPart => 'artist', Chained => '/api/rpc/rpc_base' } }, # define parent chain action and partpath
43       class            => 'MyAppDB::Artist',
44       result_class     => 'MyAppDB::ResultSet::Artist',
45       create_requires  => ['name', 'age'],
46       create_allows    => ['nickname'],
47       update_allows    => ['name', 'age', 'nickname'],
48       update_allows    => ['name', 'age', 'nickname'],
49       select           => [qw/name age/],
50       prefetch         => ['cds'],
51       prefetch_allows  => [
52           'cds',
53           qw/ cds /,
54           { cds => 'tracks' },
55           { cds => [qw/ tracks /] },
56       ],
57       ordered_by       => [qw/age/],
58       search_exposes   => [qw/age nickname/, { cds => [qw/title year/] }],
59       data_root        => 'data',
60       use_json_boolean => 1,
61       return_object    => 1,
62       );
63
64   # Provides the following functional endpoints:
65   # /api/rpc/artist/create
66   # /api/rpc/artist/list
67   # /api/rpc/artist/id/[id]/delete
68   # /api/rpc/artist/id/[id]/update
69 =cut
70
71 =method_private begin
72
73  :Private
74
75 begin is provided in the base class to setup the Catalyst Request object, by applying the DBIC::API::Request role.
76
77 =cut
78
79 sub begin :Private
80 {
81     my ($self, $c) = @_;
82
83     Catalyst::Controller::DBIC::API::Request->meta->apply($c->req)
84         unless Moose::Util::does_role($c->req, 'Catalyst::Controller::DBIC::API::Request');
85 }
86
87 =method_protected setup
88
89  :Chained('specify.in.subclass.config') :CaptureArgs(0) :PathPart('specify.in.subclass.config')
90
91 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
92
93   package MyApp::Controller::API::RPC::Track;
94   use Moose;
95   BEGIN { extends 'Catalyst::Controller::DBIC::API::RPC'; }
96
97   __PACKAGE__->config
98     ( action => { setup => { PathPart => 'track', Chained => '/api/rpc/rpc_base' } },
99         ...
100   );
101
102   # or
103
104   sub setup :Chained('/api/rpc_base') :CaptureArgs(0) :PathPart('track') {
105     my ($self, $c) = @_;
106
107     $self->next::method($c);
108   }
109
110 This action does nothing by default.
111
112 =cut
113
114 sub setup :Chained('specify.in.subclass.config') :CaptureArgs(0) :PathPart('specify.in.subclass.config') {}
115
116 =method_protected deserialize
117
118  :Chained('setup') :CaptureArgs(0) :PathPart('') :ActionClass('Deserialize')
119
120 deserialize absorbs the request data and transforms it into useful bits by using CGI::Expand->expand_hash and a smattering of JSON->decode for a handful of arguments. Current only the following arguments are capable of being expressed as JSON:
121
122     search_arg
123     count_arg
124     page_arg
125     ordered_by_arg
126     grouped_by_arg
127     prefetch_arg
128
129 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 when sending the data application/x-www-form-urlencoded. Otherwise, you can send content as raw json and it will be deserialized as is with no CGI::Expand expasion.
130
131 =cut
132
133 sub deserialize :Chained('setup') :CaptureArgs(0) :PathPart('') :ActionClass('Deserialize')
134 {
135     my ($self, $c) = @_;
136     my $req_params;
137
138     if ($c->req->data && scalar(keys %{$c->req->data}))
139     {
140         $req_params = $c->req->data;
141     }
142     else
143     {
144         $req_params = CGI::Expand->expand_hash($c->req->params);
145
146         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]})
147         {
148             # these params can also be composed of JSON
149             # but skip if the parameter is not provided
150             next if not exists $req_params->{$param};
151             # find out if CGI::Expand was involved
152             if (ref $req_params->{$param} eq 'HASH')
153             {
154                 for my $key ( keys %{$req_params->{$param}} )
155                 {
156                     # copy the value because JSON::XS will alter it
157                     # even if decoding failed
158                     my $value = $req_params->{$param}->{$key};
159                     try
160                     {
161                         my $deserialized = $self->_json->decode($value);
162                         $req_params->{$param}->{$key} = $deserialized;
163                     }
164                     catch
165                     {
166                         $c->log->debug("Param '$param.$key' did not deserialize appropriately: $_")
167                         if $c->debug;
168                     }
169                 }
170             }
171             else
172             {
173                 try
174                 {
175                     my $value = $req_params->{$param};
176                     my $deserialized = $self->_json->decode($value);
177                     $req_params->{$param} = $deserialized;
178                 }
179                 catch
180                 {
181                     $c->log->debug("Param '$param' did not deserialize appropriately: $_")
182                     if $c->debug;
183                 }
184             }
185         }
186     }
187
188     $self->inflate_request($c, $req_params);
189 }
190
191 =method_protected generate_rs
192
193 generate_rs is used by inflate_request to generate the resultset stored in the current request. It receives $c as its only argument. And by default it merely returns the resultset from the stored_result_source on the controller. Override this method if you need to manipulate the default implementation of getting the resultset from the controller.
194
195 =cut
196
197 sub generate_rs
198 {
199     #my ($self, $c) = @_;
200     my ($self) = @_;
201
202     return $self->stored_result_source->resultset;
203 }
204
205 =method_protected inflate_request
206
207 inflate_request is called at the end of deserialize to populate key portions of the request with the useful bits
208
209 =cut
210
211 sub inflate_request
212 {
213     my ($self, $c, $params) = @_;
214
215     try
216     {
217         # set static arguments
218         $c->req->_set_controller($self);
219
220         # set request arguments
221         $c->req->_set_request_data($params);
222
223         # set the current resultset
224         $c->req->_set_current_result_set($self->generate_rs($c));
225
226     }
227     catch
228     {
229         $c->log->error($_);
230         $self->push_error($c, { message => $_ });
231         $c->detach();
232     }
233 }
234
235 =method_protected object_with_id
236
237  :Chained('deserialize') :CaptureArgs(1) :PathPart('')
238
239 This action is the chain root for all object level actions (such as delete and update) that operate on a single identifer. The provided identifier will be used to find that particular object and add it to the request's store of objects. Please see L<Catalyst::Controller::DBIC::API::Context> for more details on the stored objects.
240
241 =cut
242
243 sub object_with_id :Chained('deserialize') :CaptureArgs(1) :PathPart('')
244 {
245         my ($self, $c, $id) = @_;
246
247     my $vals = $c->req->request_data->{$self->data_root};
248     unless(defined($vals))
249     {
250         # no data root, assume the request_data itself is the payload
251         $vals = $c->req->request_data;
252     }
253
254     try
255     {
256         # there can be only one set of data
257         $c->req->add_object([$self->object_lookup($c, $id), $vals]);
258     }
259     catch
260     {
261         $c->log->error($_);
262         $self->push_error($c, { message => $_ });
263         $c->detach();
264     }
265 }
266
267 =method_protected objects_no_id
268
269  :Chained('deserialize') :CaptureArgs(0) :PathPart('')
270
271 This action is the chain root for object level actions (such as create, update, or delete) that can involve more than one object. The data stored at the data_root of the request_data will be interpreted as an array of hashes 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. As a special case, a single hash sent will be coerced into an array. Please see L<Catalyst::Controller::DBIC::API::Context> for more details on the stored objects.
272
273 =cut
274
275 sub objects_no_id :Chained('deserialize') :CaptureArgs(0) :PathPart('')
276 {
277     my ($self, $c) = @_;
278
279     if($c->req->has_request_data)
280     {
281         my $data = $c->req->request_data;
282         my $vals;
283
284         if(exists($data->{$self->data_root}) && defined($data->{$self->data_root}))
285         {
286             my $root = $data->{$self->data_root};
287             if(reftype($root) eq 'ARRAY')
288             {
289                 $vals = $root;
290             }
291             elsif(reftype($root) eq 'HASH')
292             {
293                 $vals = [$root];
294             }
295             else
296             {
297                 $c->log->error('Invalid request data');
298                 $self->push_error($c, { message => 'Invalid request data' });
299                 $c->detach();
300             }
301         }
302         else
303         {
304             # no data root, assume the request_data itself is the payload
305             $vals = [$c->req->request_data];
306         }
307
308         foreach my $val (@$vals)
309         {
310             unless(exists($val->{id}))
311             {
312                 $c->req->add_object([$c->req->current_result_set->new_result({}), $val]);
313                 next;
314             }
315
316             try
317             {
318                 $c->req->add_object([$self->object_lookup($c, $val->{id}), $val]);
319             }
320             catch
321             {
322                 $c->log->error($_);
323                 $self->push_error($c, { message => $_ });
324                 $c->detach();
325             }
326         }
327     }
328 }
329
330 =method_protected object_lookup
331
332 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.
333
334 =cut
335
336 sub object_lookup
337 {
338     my ($self, $c, $id) = @_;
339
340     die 'No valid ID provided for look up' unless defined $id and length $id;
341     my $object = $c->req->current_result_set->find($id);
342     die "No object found for id '$id'" unless defined $object;
343     return $object;
344 }
345
346 =method_protected list
347
348 list's steps are broken up into three distinct methods: L</list_munge_parameters>, L</list_perform_search>, and L</list_format_output>.
349
350 The goal of this method is to call ->search() on the current_result_set, change resultset class of the result (if needed), and return it in $c->stash->{$self->stash_key}->{$self->data_root}. Please see the individual methods for more details on what actual processing takes place.
351
352 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.
353
354 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.
355
356 For example, these request parameters:
357
358  ?search.name=fred&search.cd.artist=luke
359  OR
360  ?search={"name":"fred","cd": {"artist":"luke"}}
361
362 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):
363
364  $rs->search({ name => 'fred', 'cd.artist' => 'luke' }, { join => ['cd'] })
365
366 It is also possible to use a JSON string for expandeded parameters:
367
368  ?search.datetime={"-between":["2010-01-06 19:28:00","2010-01-07 19:28:00"]}
369
370 Note that if pagination is needed, this can be achieved using a combination of the L</count> and L</page> parameters. For example:
371
372   ?page=2&count=20
373
374 Would result in this search:
375
376  $rs->search({}, { page => 2, rows => 20 })
377
378 =cut
379
380 sub list
381 {
382     my ($self, $c) = @_;
383
384     $self->list_munge_parameters($c);
385     $self->list_perform_search($c);
386     $self->list_format_output($c);
387
388     # make sure there are no objects lingering
389     $c->req->clear_objects();
390 }
391
392 =method_protected list_munge_parameters
393
394 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.
395 To store the munged parameters call $c->req->_set_search_parameters($newparams) and $c->req->_set_search_attributes($newattrs).
396
397 =cut
398
399 sub list_munge_parameters { } # noop by default
400
401 =method_protected list_perform_search
402
403 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.
404
405 =cut
406
407 sub list_perform_search
408 {
409     my ($self, $c) = @_;
410
411     try
412     {
413         my $req = $c->req;
414
415         my $rs = $req->current_result_set->search
416         (
417             $req->search_parameters,
418             $req->search_attributes
419         );
420
421         $req->_set_current_result_set($rs);
422
423         $req->_set_search_total_entries($req->current_result_set->pager->total_entries)
424             if $req->has_search_attributes && (exists($req->search_attributes->{page}) && defined($req->search_attributes->{page}) && length($req->search_attributes->{page}));
425     }
426     catch
427     {
428         $c->log->error($_);
429         $self->push_error($c, { message => 'a database error has occured.' });
430         $c->detach();
431     }
432 }
433
434 =method_protected list_format_output
435
436 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.
437
438 =cut
439
440 sub list_format_output
441 {
442     my ($self, $c) = @_;
443
444     my $rs = $c->req->current_result_set->search;
445     $rs->result_class($self->result_class) if $self->result_class;
446
447     try
448     {
449         my $output = {};
450         my $formatted = [];
451
452         foreach my $row ($rs->all)
453         {
454             push(@$formatted, $self->row_format_output($c, $row));
455         }
456
457         $output->{$self->data_root} = $formatted;
458
459         if ($c->req->has_search_total_entries)
460         {
461             $output->{$self->total_entries_arg} = $c->req->search_total_entries + 0;
462         }
463
464         $c->stash->{$self->stash_key} = $output;
465     }
466     catch
467     {
468         $c->log->error($_);
469         $self->push_error($c, { message => 'a database error has occured.' });
470         $c->detach();
471     }
472 }
473
474 =method_protected row_format_output
475
476 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.
477
478 =cut
479
480 sub row_format_output
481 {
482     #my ($self, $c, $row) = @_;
483     my ($self, undef, $row) = @_;
484     return $row; # passthrough by default
485 }
486
487 =method_protected item
488
489 item will return a single object called by identifier in the uri. It will be inflated via each_object_inflate.
490
491 =cut
492
493 sub item
494 {
495     my ($self, $c) = @_;
496
497     if($c->req->count_objects != 1)
498     {
499         $c->log->error($_);
500         $self->push_error($c, { message => 'No objects on which to operate' });
501         $c->detach();
502     }
503     else
504     {
505         $c->stash->{$self->stash_key}->{$self->item_root} = $self->each_object_inflate($c, $c->req->get_object(0)->[0]);
506     }
507 }
508
509 =method_protected update_or_create
510
511 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>.
512
513 =cut
514
515 sub update_or_create
516 {
517     my ($self, $c) = @_;
518
519     if($c->req->has_objects)
520     {
521         $self->validate_objects($c);
522         $self->transact_objects($c, sub { $self->save_objects($c, @_) } );
523     }
524     else
525     {
526         $c->log->error($_);
527         $self->push_error($c, { message => 'No objects on which to operate' });
528         $c->detach();
529     }
530 }
531
532 =method_protected transact_objects
533
534 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.
535
536 =cut
537
538 sub transact_objects
539 {
540     my ($self, $c, $coderef) = @_;
541
542     try
543     {
544         $self->stored_result_source->schema->txn_do
545         (
546             $coderef,
547             $c->req->objects
548         );
549     }
550     catch
551     {
552         $c->log->error($_);
553         $self->push_error($c, { message => 'a database error has occured.' });
554         $c->detach();
555     }
556 }
557
558 =method_protected validate_objects
559
560 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.
561
562 =cut
563
564 sub validate_objects
565 {
566     my ($self, $c) = @_;
567
568     try
569     {
570         foreach my $obj ($c->req->all_objects)
571         {
572             $obj->[1] = $self->validate_object($c, $obj);
573         }
574     }
575     catch
576     {
577         my $err = $_;
578         $c->log->error($err);
579         $err =~ s/\s+at\s+.+\n$//g;
580         $self->push_error($c, { message => $err });
581         $c->detach();
582     }
583 }
584
585 =method_protected validate_object
586
587 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.
588
589 =cut
590
591 sub validate_object
592 {
593     my ($self, $c, $obj) = @_;
594     my ($object, $params) = @$obj;
595
596     my %values;
597     my %requires_map = map
598     {
599         $_ => 1
600     }
601     @{
602         ($object->in_storage)
603         ? []
604         : $c->stash->{create_requires} || $self->create_requires
605     };
606
607     my %allows_map = map
608     {
609         (ref $_) ? %{$_} : ($_ => 1)
610     }
611     (
612         keys %requires_map,
613         @{
614             ($object->in_storage)
615             ? ($c->stash->{update_allows} || $self->update_allows)
616             : ($c->stash->{create_allows} || $self->create_allows)
617         }
618     );
619
620     foreach my $key (keys %allows_map)
621     {
622         # check value defined if key required
623         my $allowed_fields = $allows_map{$key};
624
625         if (ref $allowed_fields)
626         {
627             my $related_source = $object->result_source->related_source($key);
628             my $related_params = $params->{$key};
629             my %allowed_related_map = map { $_ => 1 } @$allowed_fields;
630             my $allowed_related_cols = ($allowed_related_map{'*'}) ? [$related_source->columns] : $allowed_fields;
631
632             foreach my $related_col (@{$allowed_related_cols})
633             {
634                 if (defined(my $related_col_value = $related_params->{$related_col})) {
635                     $values{$key}{$related_col} = $related_col_value;
636                 }
637             }
638         }
639         else
640         {
641             my $value = $params->{$key};
642
643             if ($requires_map{$key})
644             {
645                 unless (defined($value))
646                 {
647                     # if not defined look for default
648                     $value = $object->result_source->column_info($key)->{default_value};
649                     unless (defined $value)
650                     {
651                         die "No value supplied for ${key} and no default";
652                     }
653                 }
654             }
655
656             # check for multiple values
657             if (ref($value) && !(reftype($value) eq reftype(JSON::true)))
658             {
659                 require Data::Dumper;
660                 die "Multiple values for '${key}': ${\Data::Dumper::Dumper($value)}";
661             }
662
663             # check exists so we don't just end up with hash of undefs
664             # check defined to account for default values being used
665             $values{$key} = $value if exists $params->{$key} || defined $value;
666         }
667     }
668
669     unless (keys %values || !$object->in_storage)
670     {
671         die 'No valid keys passed';
672     }
673
674     return \%values;
675 }
676
677 =method_protected delete
678
679 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.
680
681 =cut
682
683 sub delete
684 {
685     my ($self, $c) = @_;
686
687     if($c->req->has_objects)
688     {
689         $self->transact_objects($c, sub { $self->delete_objects($c, @_) });
690         $c->req->clear_objects;
691     }
692     else
693     {
694         $c->log->error($_);
695         $self->push_error($c, { message => 'No objects on which to operate' });
696         $c->detach();
697     }
698 }
699
700 =method_protected save_objects
701
702 This method is used by update_or_create to perform the actual database manipulations. It iterates each object calling L</save_object>.
703
704 =cut
705
706 sub save_objects
707 {
708     my ($self, $c, $objects) = @_;
709
710     foreach my $obj (@$objects)
711     {
712         $self->save_object($c, $obj);
713     }
714 }
715
716 =method_protected save_object
717
718 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>
719
720 =cut
721
722 sub save_object
723 {
724     my ($self, $c, $obj) = @_;
725
726     my ($object, $params) = @$obj;
727
728     if ($object->in_storage)
729     {
730         $self->update_object_from_params($c, $object, $params);
731     }
732     else
733     {
734         $self->insert_object_from_params($c, $object, $params);
735     }
736
737 }
738
739 =method_protected update_object_from_params
740
741 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 ->update on the object.
742
743 =cut
744
745 sub update_object_from_params
746 {
747     my ($self, $c, $object, $params) = @_;
748
749     foreach my $key (keys %$params)
750     {
751         my $value = $params->{$key};
752         if (ref($value) && !(reftype($value) eq reftype(JSON::true)))
753         {
754             $self->update_object_relation($c, $object, delete $params->{$key}, $key);
755         }
756         # accessor = colname
757         elsif ($object->can($key)) {
758             $object->$key($value);
759         }
760         # accessor != colname
761         else {
762             my $accessor = $object->result_source->column_info($key)->{accessor};
763             $object->$accessor($value);
764         }
765     }
766
767     $object->update();
768 }
769
770 =method_protected update_object_relation
771
772 update_object_relation finds the relation to the object, then calls ->update with the specified parameters
773
774 =cut
775
776 sub update_object_relation
777 {
778     my ($self, $c, $object, $related_params, $relation) = @_;
779     my $row = $object->find_related($relation, {} , {});
780
781     if ($row) {
782         foreach my $key (keys %$related_params) {
783             my $value = $related_params->{$key};
784             if (ref($value) && !(reftype($value) eq reftype(JSON::true)))
785             {
786                 $self->update_object_relation($c, $row, delete $related_params->{$key}, $key);
787             }
788             # accessor = colname
789             elsif ($row->can($key)) {
790                 $row->$key($value);
791             }
792             # accessor != colname
793             else {
794                 my $accessor = $row->result_source->column_info($key)->{accessor};
795                 $row->$accessor($value);
796             }
797         }
798         $row->update();
799     }
800     else {
801         $object->create_related($relation, $related_params);
802     }
803 }
804
805 =method_protected insert_object_from_params
806
807 insert_object_from_params sets the columns for the object, then calls ->insert
808
809 =cut
810
811 sub insert_object_from_params
812 {
813     #my ($self, $c, $object, $params) = @_;
814     my ($self, undef, $object, $params) = @_;
815
816     my %rels;
817     while (my ($k, $v) = each %{ $params }) {
818         if (ref($v) && !(reftype($v) eq reftype(JSON::true))) {
819             $rels{$k} = $v;
820         }
821         else {
822             $object->set_column($k => $v);
823         }
824     }
825
826     $object->insert;
827
828     while (my ($k, $v) = each %rels) {
829         $object->create_related($k, $v);
830     }
831 }
832
833 =method_protected delete_objects
834
835 delete_objects iterates through each object calling L</delete_object>
836
837 =cut
838
839 sub delete_objects
840 {
841     my ($self, $c, $objects) = @_;
842
843     map { $self->delete_object($c, $_->[0]) } @$objects;
844 }
845
846 =method_protected delete_object
847
848 Performs the actual ->delete on the object
849
850 =cut
851
852 sub delete_object
853 {
854     #my ($self, $c, $object) = @_;
855     my ($self, undef, $object) = @_;
856
857     $object->delete;
858 }
859
860 =method_protected end
861
862 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
863
864 =cut
865
866 sub end :Private
867 {
868     my ($self, $c) = @_;
869
870     # check for errors
871     my $default_status;
872
873     # Check for errors caught elsewhere
874     if ( $c->res->status and $c->res->status != 200 ) {
875         $default_status = $c->res->status;
876         $c->stash->{$self->stash_key}->{success} = $self->use_json_boolean ? JSON::false : 'false';
877     } elsif ($self->get_errors($c)) {
878         $c->stash->{$self->stash_key}->{messages} = $self->get_errors($c);
879         $c->stash->{$self->stash_key}->{success} = $self->use_json_boolean ? JSON::false : 'false';
880         $default_status = 400;
881     } else {
882         $c->stash->{$self->stash_key}->{success} = $self->use_json_boolean ? JSON::true : 'true';
883         $default_status = 200;
884     }
885
886     unless ($default_status == 200)
887     {
888         delete $c->stash->{$self->stash_key}->{$self->data_root};
889     }
890     elsif($self->return_object && $c->req->has_objects)
891     {
892         my $returned_objects = [];
893         push(@$returned_objects, $self->each_object_inflate($c, $_)) for map { $_->[0] } $c->req->all_objects;
894         $c->stash->{$self->stash_key}->{$self->data_root} = scalar(@$returned_objects) > 1 ? $returned_objects : $returned_objects->[0];
895     }
896
897     $c->res->status( $default_status || 200 );
898     $c->forward('serialize');
899 }
900
901 =method_protected each_object_inflate
902
903 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.
904
905 This only executes if L</return_object> if set and if there are any objects to actually return.
906
907 =cut
908
909 sub each_object_inflate
910 {
911     #my ($self, $c, $object) = @_;
912     my ($self, undef, $object) = @_;
913
914     return { $object->get_columns };
915 }
916
917 =method_protected serialize
918
919 multiple actions forward to serialize which uses Catalyst::Action::Serialize.
920
921 =cut
922
923 # from Catalyst::Action::Serialize
924 sub serialize :ActionClass('Serialize') { }
925
926 =method_protected push_error
927
928 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.
929
930 =cut
931
932 sub push_error
933 {
934     my ( $self, $c, $params ) = @_;
935     my $error = 'unknown error';
936     if (exists $params->{message}) {
937         $error = $params->{message};
938         # remove newline from die "error message\n" which is required to not
939         # have the filename and line number in the error text
940         $error =~ s/\n$//;
941     }
942     push( @{$c->stash->{_dbic_crud_errors}}, $error);
943 }
944
945 =method_protected get_errors
946
947 get_errors returns all of the errors stored in the stash
948
949 =cut
950
951 sub get_errors
952 {
953     my ( $self, $c ) = @_;
954     return $c->stash->{_dbic_crud_errors};
955 }
956
957 =method_protected has_errors
958
959 returns returns true if errors are stored in the stash
960
961 =cut
962
963 sub has_errors {
964     my ( $self, $c ) = @_;
965     die 'Catalyst app object missing'
966         unless defined $c;
967     return exists $c->stash->{_dbic_crud_errors};
968 }
969
970 =head1 DESCRIPTION
971
972 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.
973
974 =head1 OVERVIEW
975
976 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.
977
978 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>.
979
980 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.
981
982 =head2 CONFIGURATION
983
984 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>.
985
986 The class, create_requires, create_allows and update_requires parameters can also be set in the stash like so:
987
988   sub setup :Chained('/api/rpc/rpc_base') :CaptureArgs(1) :PathPart('any') {
989     my ($self, $c, $object_type) = @_;
990
991     if ($object_type eq 'artist') {
992       $c->stash->{class} = 'MyAppDB::Artist';
993       $c->stash->{create_requires} = [qw/name/];
994       $c->stash->{update_allows} = [qw/name/];
995     } else {
996       $self->push_error($c, { message => "invalid object_type" });
997       return;
998     }
999
1000     $self->next::method($c);
1001   }
1002
1003 Generally it's better to have one controller for each DBIC source with the config hardcoded, but in some cases this isn't possible.
1004
1005 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.
1006
1007 Below are explanations for various configuration parameters. Please see L<Catalyst::Controller::DBIC::API::StaticArguments> for more details.
1008
1009 =head3 class
1010
1011 Whatever you would pass to $c->model to get a resultset for this class. MyAppDB::Track for example.
1012
1013 =head3 resultset_class
1014
1015 Desired resultset class after accessing your model. MyAppDB::ResultSet::Track for example. By default, it's DBIx::Class::ResultClass::HashRefInflator. Set to empty string to leave resultset class without change.
1016
1017 =head3 stash_key
1018
1019 Controls where in stash request_data should be stored, and defaults to 'response'.
1020
1021 =head3 data_root
1022
1023 By default, the response data is serialized into $c->stash->{$self->stash_key}->{$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.
1024
1025 =head3 use_json_boolean
1026
1027 By default, the response success status is set to a string value of "true" or "false". If this attribute is true, JSON's true() and false() will be used instead. Note, this does not effect other internal processing of boolean values.
1028
1029 =head3 count_arg, page_arg, select_arg, search_arg, grouped_by_arg, ordered_by_arg, prefetch_arg, as_arg, total_entries_arg
1030
1031 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.
1032
1033 =head3 create_requires
1034
1035 Arrayref listing columns required to be passed to create in order for the request to be valid.
1036
1037 =head3 create_allows
1038
1039 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.
1040
1041 =head3 update_allows
1042
1043 Arrayref listing columns that update will allow. Columns passed to update that are not listed here will be ignored.
1044
1045 =head3 select
1046
1047 Arguments to pass to L<DBIx::Class::ResultSet/select> when performing search for L</list>.
1048
1049 =head3 as
1050
1051 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.
1052
1053 =head3 select_exposes
1054
1055 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.
1056
1057 =head3 prefetch
1058
1059 Arguments to pass to L<DBIx::Class::ResultSet/prefetch> when performing search for L</list>.
1060
1061 =head3 prefetch_allows
1062
1063 Arrayref listing relationships that are allowed to be prefetched.
1064 This is necessary to avoid denial of service attacks in form of
1065 queries which would return a large number of data
1066 and unwanted disclosure of data.
1067
1068 =head3 grouped_by
1069
1070 Arguments to pass to L<DBIx::Class::ResultSet/group_by> when performing search for L</list>.
1071
1072 =head3 ordered_by
1073
1074 Arguments to pass to L<DBIx::Class::ResultSet/order_by> when performing search for L</list>.
1075
1076 =head3 search_exposes
1077
1078 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
1079
1080  search_exposes => [qw/position/, { cd => ['*'] }]
1081
1082 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:
1083
1084   package RestTest::Controller::API::RPC::TrackExposed;
1085
1086   ...
1087
1088   __PACKAGE__->config
1089     ( ...,
1090       search_exposes => [qw/position title custom_column/],
1091     );
1092
1093 and then in your custom resultset:
1094
1095   package RestTest::Schema::ResultSet::Track;
1096
1097   use base 'RestTest::Schema::ResultSet';
1098
1099   sub search {
1100     my $self = shift;
1101     my ($clause, $params) = @_;
1102
1103     # test custom attrs
1104     if (my $pretend = delete $clause->{custom_column}) {
1105       $clause->{'cd.year'} = $pretend;
1106     }
1107     my $rs = $self->SUPER::search(@_);
1108   }
1109
1110 =head3 count
1111
1112 Arguments to pass to L<DBIx::Class::ResultSet/rows> when performing search for L</list>.
1113
1114 =head3 page
1115
1116 Arguments to pass to L<DBIx::Class::ResultSet/page> when performing search for L</list>.
1117
1118 =head1 EXTENDING
1119
1120 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.
1121
1122 For example if you wanted create to return the JSON for the newly created object you might have something like:
1123
1124   package MyApp::ControllerBase::DBIC::API::RPC;
1125   ...
1126   use Moose;
1127   BEGIN { extends 'Catalyst::Controller::DBIC::API::RPC' };
1128   ...
1129   sub create :Chained('setup') :Args(0) :PathPart('create') {
1130     my ($self, $c) = @_;
1131
1132     # $c->req->all_objects will contain all of the created
1133     $self->next::method($c);
1134
1135     if ($c->req->has_objects) {
1136       # $c->stash->{$self->stash_key} will be serialized in the end action
1137       $c->stash->{$self->stash_key}->{$self->data_root} = [ map { { $_->get_inflated_columns } } ($c->req->all_objects) ] ;
1138     }
1139   }
1140
1141   package MyApp::Controller::API::RPC::Track;
1142   ...
1143   use Moose;
1144   BEGIN { extends 'MyApp::ControllerBase::DBIC::API::RPC' };
1145   ...
1146
1147 It should be noted that the return_object attribute will produce the above result for you, free of charge.
1148
1149 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.
1150
1151 If more extensive customization is required, it is recommened to peer into the roles that comprise the system and make use
1152
1153 =head1 NOTES
1154
1155 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.
1156
1157 To this end, internally, this module now understands JSON boolean values (as represented by the JSON module) and will Do The Right Thing in handling those values. This means you can have ColumnInflators installed that can covert between JSON booleans and whatever your database wants for boolean values.
1158
1159 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>.
1160
1161 Since 2.00100:
1162 Transactions are used. The stash is put aside in favor of roles applied to the request object with additional accessors.
1163 Error handling is now much more consistent with most errors immediately detaching.
1164 The internals are much easier to read and understand with lots more documentation.
1165
1166 =cut
1167
1168 1;