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