added has_errors method
[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;
53429220 9use JSON ();
d2739840 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
0b0bf911 18has '_json' => (
19 is => 'ro',
20 isa => 'JSON',
21 lazy_build => 1,
22);
23
24sub _build__json {
25 # no ->utf8 here because the request params get decoded by Catalyst
26 return JSON->new;
27}
28
d6993542 29with 'Catalyst::Controller::DBIC::API::StoredResultSource',
30 'Catalyst::Controller::DBIC::API::StaticArguments',
31 'Catalyst::Controller::DBIC::API::RequestArguments' => { static => 1 };
d2739840 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
d6993542 43 class => 'MyAppDB::Artist',
a0a4ed30 44 result_class => 'MyAppDB::ResultSet::Artist',
d6993542 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 => [
d2739840 52 'cds',
53 qw/ cds /,
54 { cds => 'tracks' },
d6993542 55 { cds => [qw/ tracks /] },
d2739840 56 ],
d6993542 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,
d2739840 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
533075c7 71=method_private begin
72
73 :Private
74
75begin is provided in the base class to setup the Catalyst Request object, by applying the DBIC::API::Request role.
76
77=cut
78
79sub 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
d2739840 87=method_protected setup
88
89 :Chained('specify.in.subclass.config') :CaptureArgs(0) :PathPart('specify.in.subclass.config')
90
91This 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;
406086f3 94 use Moose;
533075c7 95 BEGIN { extends 'Catalyst::Controller::DBIC::API::RPC'; }
d2739840 96
97 __PACKAGE__->config
406086f3 98 ( action => { setup => { PathPart => 'track', Chained => '/api/rpc/rpc_base' } },
d2739840 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
533075c7 110This action does nothing by default.
d2739840 111
112=cut
113
533075c7 114sub setup :Chained('specify.in.subclass.config') :CaptureArgs(0) :PathPart('specify.in.subclass.config') {}
d2739840 115
116=method_protected deserialize
117
533075c7 118 :Chained('setup') :CaptureArgs(0) :PathPart('') :ActionClass('Deserialize')
119
0b0bf911 120deserialize 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:
d2739840 121
122 search_arg
123 count_arg
124 page_arg
125 ordered_by_arg
126 grouped_by_arg
127 prefetch_arg
128
533075c7 129It 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 130
131=cut
132
8cf0b66a 133sub deserialize :Chained('setup') :CaptureArgs(0) :PathPart('') :ActionClass('Deserialize')
d2739840 134{
d2739840 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 }
406086f3 142 else
d2739840 143 {
144 $req_params = CGI::Expand->expand_hash($c->req->params);
145
33003023 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]})
d2739840 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 {
0b0bf911 156 # copy the value because JSON::XS will alter it
157 # even if decoding failed
158 my $value = $req_params->{$param}->{$key};
d2739840 159 try
160 {
0b0bf911 161 my $deserialized = $self->_json->decode($value);
d2739840 162 $req_params->{$param}->{$key} = $deserialized;
163 }
164 catch
406086f3 165 {
d2739840 166 $c->log->debug("Param '$param.$key' did not deserialize appropriately: $_")
167 if $c->debug;
168 }
169 }
170 }
171 else
172 {
173 try
174 {
0b0bf911 175 my $value = $req_params->{$param};
176 my $deserialized = $self->_json->decode($value);
d2739840 177 $req_params->{$param} = $deserialized;
178 }
179 catch
406086f3 180 {
d2739840 181 $c->log->debug("Param '$param' did not deserialize appropriately: $_")
182 if $c->debug;
183 }
184 }
185 }
186 }
406086f3 187
d2739840 188 $self->inflate_request($c, $req_params);
189}
190
9a29ee35 191=method_protected generate_rs
192
193generate_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
197sub generate_rs
198{
def4bb3d 199 #my ($self, $c) = @_;
200 my ($self) = @_;
201
9a29ee35 202 return $self->stored_result_source->resultset;
203}
204
d2739840 205=method_protected inflate_request
406086f3 206
d2739840 207inflate_request is called at the end of deserialize to populate key portions of the request with the useful bits
208
209=cut
210
211sub inflate_request
212{
d2739840 213 my ($self, $c, $params) = @_;
214
215 try
216 {
217 # set static arguments
406086f3 218 $c->req->_set_controller($self);
d2739840 219
220 # set request arguments
221 $c->req->_set_request_data($params);
8cf0b66a 222
223 # set the current resultset
9a29ee35 224 $c->req->_set_current_result_set($self->generate_rs($c));
406086f3 225
d2739840 226 }
227 catch
228 {
229 $c->log->error($_);
230 $self->push_error($c, { message => $_ });
231 $c->detach();
232 }
8cf0b66a 233}
234
235=method_protected object_with_id
236
237 :Chained('deserialize') :CaptureArgs(1) :PathPart('')
238
239This 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
243sub 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
271This 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
275sub objects_no_id :Chained('deserialize') :CaptureArgs(0) :PathPart('')
276{
277 my ($self, $c) = @_;
406086f3 278
533075c7 279 if($c->req->has_request_data)
8cf0b66a 280 {
533075c7 281 my $data = $c->req->request_data;
282 my $vals;
406086f3 283
533075c7 284 if(exists($data->{$self->data_root}) && defined($data->{$self->data_root}))
8cf0b66a 285 {
533075c7 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 }
8cf0b66a 301 }
533075c7 302 else
8cf0b66a 303 {
533075c7 304 # no data root, assume the request_data itself is the payload
305 $vals = [$c->req->request_data];
8cf0b66a 306 }
533075c7 307
308 foreach my $val (@$vals)
8cf0b66a 309 {
533075c7 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 }
8cf0b66a 326 }
327 }
328}
329
330=method_protected object_lookup
331
332This 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
336sub 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;
d2739840 344}
345
346=method_protected list
347
3d85db11 348list's steps are broken up into three distinct methods: L</list_munge_parameters>, L</list_perform_search>, and L</list_format_output>.
d2739840 349
810de6af 350The 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.
d2739840 351
352If 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
d666a194 354If 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 355
356For example, these request parameters:
357
358 ?search.name=fred&search.cd.artist=luke
359 OR
360 ?search={"name":"fred","cd": {"artist":"luke"}}
361
362Would 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
366It 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
370Note 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
374Would result in this search:
406086f3 375
d2739840 376 $rs->search({}, { page => 2, rows => 20 })
377
378=cut
379
3d85db11 380sub list
d2739840 381{
d2739840 382 my ($self, $c) = @_;
383
384 $self->list_munge_parameters($c);
385 $self->list_perform_search($c);
386 $self->list_format_output($c);
533075c7 387
388 # make sure there are no objects lingering
406086f3 389 $c->req->clear_objects();
d2739840 390}
391
392=method_protected list_munge_parameters
393
394list_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 395To store the munged parameters call $c->req->_set_search_parameters($newparams) and $c->req->_set_search_attributes($newattrs).
d2739840 396
397=cut
398
399sub list_munge_parameters { } # noop by default
400
401=method_protected list_perform_search
402
403list_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
407sub list_perform_search
408{
d2739840 409 my ($self, $c) = @_;
406086f3 410
411 try
d2739840 412 {
413 my $req = $c->req;
406086f3 414
d2739840 415 my $rs = $req->current_result_set->search
416 (
406086f3 417 $req->search_parameters,
d2739840 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)
df8f3121 424 if $req->has_search_attributes && (exists($req->search_attributes->{page}) && defined($req->search_attributes->{page}) && length($req->search_attributes->{page}));
d2739840 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
436list_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
440sub list_format_output
441{
d2739840 442 my ($self, $c) = @_;
443
444 my $rs = $c->req->current_result_set->search;
a0a4ed30 445 $rs->result_class($self->result_class) if $self->result_class;
406086f3 446
d2739840 447 try
448 {
449 my $output = {};
450 my $formatted = [];
406086f3 451
d2739840 452 foreach my $row ($rs->all)
453 {
4cb15235 454 push(@$formatted, $self->row_format_output($c, $row));
d2739840 455 }
406086f3 456
d2739840 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
810de6af 464 $c->stash->{$self->stash_key} = $output;
d2739840 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
4cb15235 476row_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 477
478=cut
479
4cb15235 480sub row_format_output
481{
def4bb3d 482 #my ($self, $c, $row) = @_;
483 my ($self, undef, $row) = @_;
4cb15235 484 return $row; # passthrough by default
485}
d2739840 486
609916e5 487=method_protected item
609916e5 488
489item will return a single object called by identifier in the uri. It will be inflated via each_object_inflate.
490
491=cut
492
3d85db11 493sub item
609916e5 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 {
810de6af 505 $c->stash->{$self->stash_key}->{$self->item_root} = $self->each_object_inflate($c, $c->req->get_object(0)->[0]);
609916e5 506 }
507}
508
d2739840 509=method_protected update_or_create
510
b421ef50 511update_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 512
513=cut
514
3d85db11 515sub update_or_create
d2739840 516{
d2739840 517 my ($self, $c) = @_;
406086f3 518
d2739840 519 if($c->req->has_objects)
520 {
521 $self->validate_objects($c);
2e978a8c 522 $self->transact_objects($c, sub { $self->save_objects($c, @_) } );
d2739840 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
534transact_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
538sub transact_objects
539{
d2739840 540 my ($self, $c, $coderef) = @_;
406086f3 541
d2739840 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
560This 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
564sub validate_objects
565{
d2739840 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);
bec622aa 579 $err =~ s/\s+at\s+.+\n$//g;
d2739840 580 $self->push_error($c, { message => $err });
581 $c->detach();
582 }
583}
584
585=method_protected validate_object
586
587validate_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
591sub validate_object
592{
d2739840 593 my ($self, $c, $obj) = @_;
594 my ($object, $params) = @$obj;
595
596 my %values;
597 my %requires_map = map
598 {
599 $_ => 1
406086f3 600 }
d2739840 601 @{
406086f3 602 ($object->in_storage)
603 ? []
d2739840 604 : $c->stash->{create_requires} || $self->create_requires
605 };
406086f3 606
d2739840 607 my %allows_map = map
608 {
609 (ref $_) ? %{$_} : ($_ => 1)
406086f3 610 }
d2739840 611 (
406086f3 612 keys %requires_map,
d2739840 613 @{
406086f3 614 ($object->in_storage)
615 ? ($c->stash->{update_allows} || $self->update_allows)
d2739840 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};
406086f3 624
d2739840 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;
406086f3 631
d2739840 632 foreach my $related_col (@{$allowed_related_cols})
633 {
39955b2a 634 if (defined(my $related_col_value = $related_params->{$related_col})) {
d2739840 635 $values{$key}{$related_col} = $related_col_value;
636 }
637 }
638 }
406086f3 639 else
d2739840 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 }
406086f3 655
d2739840 656 # check for multiple values
0b0bf911 657 if (ref($value) && !(reftype($value) eq reftype(JSON::true)))
d2739840 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
406086f3 669 unless (keys %values || !$object->in_storage)
d2739840 670 {
671 die 'No valid keys passed';
672 }
673
406086f3 674 return \%values;
d2739840 675}
676
677=method_protected delete
678
b421ef50 679delete 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 680
681=cut
682
3d85db11 683sub delete
d2739840 684{
d2739840 685 my ($self, $c) = @_;
406086f3 686
d2739840 687 if($c->req->has_objects)
688 {
2e978a8c 689 $self->transact_objects($c, sub { $self->delete_objects($c, @_) });
d2739840 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
b421ef50 700=method_protected save_objects
d2739840 701
b421ef50 702This method is used by update_or_create to perform the actual database manipulations. It iterates each object calling L</save_object>.
d2739840 703
b421ef50 704=cut
705
706sub save_objects
707{
2e978a8c 708 my ($self, $c, $objects) = @_;
d2739840 709
b421ef50 710 foreach my $obj (@$objects)
711 {
2e978a8c 712 $self->save_object($c, $obj);
b421ef50 713 }
714}
d2739840 715
b421ef50 716=method_protected save_object
d2739840 717
b421ef50 718save_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 719
720=cut
721
b421ef50 722sub save_object
d2739840 723{
2e978a8c 724 my ($self, $c, $obj) = @_;
d2739840 725
b421ef50 726 my ($object, $params) = @$obj;
727
728 if ($object->in_storage)
d2739840 729 {
2e978a8c 730 $self->update_object_from_params($c, $object, $params);
b421ef50 731 }
406086f3 732 else
b421ef50 733 {
2e978a8c 734 $self->insert_object_from_params($c, $object, $params);
b421ef50 735 }
736
737}
738
739=method_protected update_object_from_params
740
f5113975 741update_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 742
743=cut
744
745sub update_object_from_params
746{
2e978a8c 747 my ($self, $c, $object, $params) = @_;
b421ef50 748
749 foreach my $key (keys %$params)
750 {
751 my $value = $params->{$key};
0b0bf911 752 if (ref($value) && !(reftype($value) eq reftype(JSON::true)))
b421ef50 753 {
2e978a8c 754 $self->update_object_relation($c, $object, delete $params->{$key}, $key);
d2739840 755 }
16337d41 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 }
d2739840 765 }
406086f3 766
3b12c2cd 767 $object->update();
b421ef50 768}
769
770=method_protected update_object_relation
771
772update_object_relation finds the relation to the object, then calls ->update with the specified parameters
773
774=cut
775
776sub update_object_relation
777{
2e978a8c 778 my ($self, $c, $object, $related_params, $relation) = @_;
b421ef50 779 my $row = $object->find_related($relation, {} , {});
8516bd76 780
781 if ($row) {
3b12c2cd 782 foreach my $key (keys %$related_params) {
783 my $value = $related_params->{$key};
0b0bf911 784 if (ref($value) && !(reftype($value) eq reftype(JSON::true)))
16337d41 785 {
786 $self->update_object_relation($c, $row, delete $related_params->{$key}, $key);
787 }
788 # accessor = colname
0f0f8776 789 elsif ($row->can($key)) {
790 $row->$key($value);
16337d41 791 }
792 # accessor != colname
793 else {
0f0f8776 794 my $accessor = $row->result_source->column_info($key)->{accessor};
795 $row->$accessor($value);
16337d41 796 }
3b12c2cd 797 }
798 $row->update();
8516bd76 799 }
800 else {
801 $object->create_related($relation, $related_params);
802 }
b421ef50 803}
804
805=method_protected insert_object_from_params
806
807insert_object_from_params sets the columns for the object, then calls ->insert
808
809=cut
810
811sub insert_object_from_params
812{
def4bb3d 813 #my ($self, $c, $object, $params) = @_;
814 my ($self, undef, $object, $params) = @_;
d8921389 815
816 my %rels;
817 while (my ($k, $v) = each %{ $params }) {
0b0bf911 818 if (ref($v) && !(reftype($v) eq reftype(JSON::true))) {
d8921389 819 $rels{$k} = $v;
820 }
821 else {
822 $object->set_column($k => $v);
823 }
824 }
825
b421ef50 826 $object->insert;
d8921389 827
828 while (my ($k, $v) = each %rels) {
829 $object->create_related($k, $v);
830 }
d2739840 831}
832
b421ef50 833=method_protected delete_objects
834
835delete_objects iterates through each object calling L</delete_object>
836
837=cut
838
d2739840 839sub delete_objects
840{
2e978a8c 841 my ($self, $c, $objects) = @_;
b421ef50 842
2e978a8c 843 map { $self->delete_object($c, $_->[0]) } @$objects;
b421ef50 844}
845
846=method_protected delete_object
847
848Performs the actual ->delete on the object
849
850=cut
851
852sub delete_object
853{
def4bb3d 854 #my ($self, $c, $object) = @_;
855 my ($self, undef, $object) = @_;
d2739840 856
b421ef50 857 $object->delete;
d2739840 858}
859
860=method_protected end
861
d2739840 862end 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
3d85db11 866sub end :Private
d2739840 867{
d2739840 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;
0b0bf911 876 $c->stash->{$self->stash_key}->{success} = $self->use_json_boolean ? JSON::false : 'false';
d2739840 877 } elsif ($self->get_errors($c)) {
810de6af 878 $c->stash->{$self->stash_key}->{messages} = $self->get_errors($c);
0b0bf911 879 $c->stash->{$self->stash_key}->{success} = $self->use_json_boolean ? JSON::false : 'false';
d2739840 880 $default_status = 400;
881 } else {
0b0bf911 882 $c->stash->{$self->stash_key}->{success} = $self->use_json_boolean ? JSON::true : 'true';
d2739840 883 $default_status = 200;
884 }
406086f3 885
d2739840 886 unless ($default_status == 200)
887 {
810de6af 888 delete $c->stash->{$self->stash_key}->{$self->data_root};
d2739840 889 }
890 elsif($self->return_object && $c->req->has_objects)
891 {
d2739840 892 my $returned_objects = [];
c9b8a798 893 push(@$returned_objects, $self->each_object_inflate($c, $_)) for map { $_->[0] } $c->req->all_objects;
810de6af 894 $c->stash->{$self->stash_key}->{$self->data_root} = scalar(@$returned_objects) > 1 ? $returned_objects : $returned_objects->[0];
d2739840 895 }
896
897 $c->res->status( $default_status || 200 );
898 $c->forward('serialize');
899}
900
c9b8a798 901=method_protected each_object_inflate
902
903each_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
905This only executes if L</return_object> if set and if there are any objects to actually return.
906
907=cut
908
909sub each_object_inflate
910{
def4bb3d 911 #my ($self, $c, $object) = @_;
912 my ($self, undef, $object) = @_;
d2739840 913
8ee81496 914 return { $object->get_columns };
d2739840 915}
916
b66d4310 917=method_protected serialize
918
919multiple actions forward to serialize which uses Catalyst::Action::Serialize.
920
921=cut
922
c9b8a798 923# from Catalyst::Action::Serialize
924sub serialize :ActionClass('Serialize') { }
925
d2739840 926=method_protected push_error
927
928push_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
932sub push_error
933{
934 my ( $self, $c, $params ) = @_;
7821bdec 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);
d2739840 943}
944
945=method_protected get_errors
946
947get_errors returns all of the errors stored in the stash
948
949=cut
950
951sub get_errors
952{
953 my ( $self, $c ) = @_;
954 return $c->stash->{_dbic_crud_errors};
955}
956
71c17090 957=method_protected has_errors
958
959returns returns true if errors are stored in the stash
960
961=cut
962
963sub 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
d2739840 970=head1 DESCRIPTION
971
972Easily 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
976This 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
978You 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
980Also 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
984Each 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
986The 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
1003Generally it's better to have one controller for each DBIC source with the config hardcoded, but in some cases this isn't possible.
1004
1005Note 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
1007Below are explanations for various configuration parameters. Please see L<Catalyst::Controller::DBIC::API::StaticArguments> for more details.
1008
1009=head3 class
1010
1011Whatever you would pass to $c->model to get a resultset for this class. MyAppDB::Track for example.
1012
a0a4ed30 1013=head3 resultset_class
1014
1015Desired 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
810de6af 1017=head3 stash_key
1018
1019Controls where in stash request_data should be stored, and defaults to 'response'.
1020
d2739840 1021=head3 data_root
1022
810de6af 1023By 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.
d2739840 1024
1025=head3 use_json_boolean
1026
0b0bf911 1027By 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.
d2739840 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
1031These 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
1035Arrayref listing columns required to be passed to create in order for the request to be valid.
1036
1037=head3 create_allows
1038
1039Arrayref 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
1043Arrayref listing columns that update will allow. Columns passed to update that are not listed here will be ignored.
1044
1045=head3 select
1046
1047Arguments to pass to L<DBIx::Class::ResultSet/select> when performing search for L</list>.
1048
1049=head3 as
1050
1051Complements 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
1055Columns 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
1059Arguments to pass to L<DBIx::Class::ResultSet/prefetch> when performing search for L</list>.
1060
1061=head3 prefetch_allows
1062
1063Arrayref listing relationships that are allowed to be prefetched.
1064This is necessary to avoid denial of service attacks in form of
1065queries which would return a large number of data
1066and unwanted disclosure of data.
1067
1068=head3 grouped_by
1069
1070Arguments to pass to L<DBIx::Class::ResultSet/group_by> when performing search for L</list>.
1071
1072=head3 ordered_by
1073
1074Arguments to pass to L<DBIx::Class::ResultSet/order_by> when performing search for L</list>.
1075
1076=head3 search_exposes
1077
1078Columns 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
1082You 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;
406086f3 1085
d2739840 1086 ...
406086f3 1087
d2739840 1088 __PACKAGE__->config
1089 ( ...,
1090 search_exposes => [qw/position title custom_column/],
1091 );
1092
1093and then in your custom resultset:
1094
1095 package RestTest::Schema::ResultSet::Track;
406086f3 1096
d2739840 1097 use base 'RestTest::Schema::ResultSet';
406086f3 1098
d2739840 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
1112Arguments to pass to L<DBIx::Class::ResultSet/rows> when performing search for L</list>.
1113
1114=head3 page
1115
04f135e4 1116Arguments to pass to L<DBIx::Class::ResultSet/page> when performing search for L</list>.
d2739840 1117
1118=head1 EXTENDING
1119
1120By 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
1122For 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
406086f3 1135 if ($c->req->has_objects) {
810de6af 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) ] ;
d2739840 1138 }
1139 }
1140
d2739840 1141 package MyApp::Controller::API::RPC::Track;
1142 ...
1143 use Moose;
1144 BEGIN { extends 'MyApp::ControllerBase::DBIC::API::RPC' };
1145 ...
1146
d666a194 1147It should be noted that the return_object attribute will produce the above result for you, free of charge.
d2739840 1148
d2739840 1149Similarly 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
406086f3 1151If more extensive customization is required, it is recommened to peer into the roles that comprise the system and make use
d2739840 1152
1153=head1 NOTES
1154
1155It 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
0b0bf911 1157To 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.
d2739840 1158
1159Validation 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
1161Since 2.00100:
1162Transactions are used. The stash is put aside in favor of roles applied to the request object with additional accessors.
1163Error handling is now much more consistent with most errors immediately detaching.
1164The internals are much easier to read and understand with lots more documentation.
1165
1166=cut
1167
11681;