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