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