new_related works again
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / Base.pm
1 package DBIx::Class::Relationship::Base;
2
3 use strict;
4 use warnings;
5
6 use Scalar::Util ();
7 use base qw/DBIx::Class/;
8
9 =head1 NAME
10
11 DBIx::Class::Relationship::Base - Inter-table relationships
12
13 =head1 SYNOPSIS
14
15 =head1 DESCRIPTION
16
17 This class provides methods to describe the relationships between the
18 tables in your database model. These are the "bare bones" relationships
19 methods, for predefined ones, look in L<DBIx::Class::Relationship>.
20
21 =head1 METHODS
22
23 =head2 add_relationship
24
25 =over 4
26
27 =item Arguments: 'relname', 'Foreign::Class', $cond, $attrs
28
29 =back
30
31   __PACKAGE__->add_relationship('relname', 'Foreign::Class', $cond, $attrs);
32
33 The condition needs to be an L<SQL::Abstract>-style representation of the
34 join between the tables. When resolving the condition for use in a C<JOIN>,
35 keys using the pseudo-table C<foreign> are resolved to mean "the Table on the
36 other side of the relationship", and values using the pseudo-table C<self>
37 are resolved to mean "the Table this class is representing". Other
38 restrictions, such as by value, sub-select and other tables, may also be
39 used. Please check your database for C<JOIN> parameter support.
40
41 For example, if you're creating a relationship from C<Author> to C<Book>, where
42 the C<Book> table has a column C<author_id> containing the ID of the C<Author>
43 row:
44
45   { 'foreign.author_id' => 'self.id' }
46
47 will result in the C<JOIN> clause
48
49   author me JOIN book book ON book.author_id = me.id
50
51 For multi-column foreign keys, you will need to specify a C<foreign>-to-C<self>
52 mapping for each column in the key. For example, if you're creating a
53 relationship from C<Book> to C<Edition>, where the C<Edition> table refers to a
54 publisher and a type (e.g. "paperback"):
55
56   {
57     'foreign.publisher_id' => 'self.publisher_id',
58     'foreign.type_id'      => 'self.type_id',
59   }
60
61 This will result in the C<JOIN> clause:
62
63   book me JOIN edition edition ON edition.publisher_id = me.publisher_id
64     AND edition.type_id = me.type_id
65
66 Each key-value pair provided in a hashref will be used as C<AND>ed conditions.
67 To add an C<OR>ed condition, use an arrayref of hashrefs. See the
68 L<SQL::Abstract> documentation for more details.
69
70 In addition to standard result set attributes, the following attributes are also valid:
71
72 =over 4
73
74 =item join_type
75
76 Explicitly specifies the type of join to use in the relationship. Any SQL
77 join type is valid, e.g. C<LEFT> or C<RIGHT>. It will be placed in the SQL
78 command immediately before C<JOIN>.
79
80 =item proxy
81
82 An arrayref containing a list of accessors in the foreign class to create in
83 the main class. If, for example, you do the following:
84   
85   MyDB::Schema::CD->might_have(liner_notes => 'MyDB::Schema::LinerNotes',
86     undef, {
87       proxy => [ qw/notes/ ],
88     });
89   
90 Then, assuming MyDB::Schema::LinerNotes has an accessor named notes, you can do:
91
92   my $cd = MyDB::Schema::CD->find(1);
93   $cd->notes('Notes go here'); # set notes -- LinerNotes object is
94                                # created if it doesn't exist
95   
96 =item accessor
97
98 Specifies the type of accessor that should be created for the relationship.
99 Valid values are C<single> (for when there is only a single related object),
100 C<multi> (when there can be many), and C<filter> (for when there is a single
101 related object, but you also want the relationship accessor to double as
102 a column accessor). For C<multi> accessors, an add_to_* method is also
103 created, which calls C<create_related> for the relationship.
104
105 =item is_foreign_key_constraint
106
107 If you are using L<SQL::Translator> to create SQL for you and you find that it
108 is creating constraints where it shouldn't, or not creating them where it 
109 should, set this attribute to a true or false value to override the detection
110 of when to create constraints.
111
112 =item on_delete / on_update
113
114 If you are using L<SQL::Translator> to create SQL for you, you can use these
115 attributes to explicitly set the desired C<ON DELETE> or C<ON UPDATE> constraint 
116 type. If not supplied the SQLT parser will attempt to infer the constraint type by 
117 interrogating the attributes of the B<opposite> relationship. For any 'multi'
118 relationship with C<< cascade_delete => 1 >>, the corresponding belongs_to 
119 relationship will be created with an C<ON DELETE CASCADE> constraint. For any 
120 relationship bearing C<< cascade_copy => 1 >> the resulting belongs_to constraint
121 will be C<ON UPDATE CASCADE>. If you wish to disable this autodetection, and just
122 use the RDBMS' default constraint type, pass C<< on_delete => undef >> or 
123 C<< on_delete => '' >>, and the same for C<on_update> respectively.
124
125 =item is_deferrable
126
127 Tells L<SQL::Translator> that the foreign key constraint it creates should be
128 deferrable. In other words, the user may request that the constraint be ignored
129 until the end of the transaction. Currently, only the PostgreSQL producer
130 actually supports this.
131
132 =item add_fk_index
133
134 Tells L<SQL::Translator> to add an index for this constraint. Can also be
135 specified globally in the args to L<DBIx::Class::Schema/deploy> or
136 L<DBIx::Class::Schema/create_ddl_dir>. Default is on, set to 0 to disable.
137
138 =back
139
140 =head2 register_relationship
141
142 =over 4
143
144 =item Arguments: $relname, $rel_info
145
146 =back
147
148 Registers a relationship on the class. This is called internally by
149 DBIx::Class::ResultSourceProxy to set up Accessors and Proxies.
150
151 =cut
152
153 sub register_relationship { }
154
155 =head2 related_resultset
156
157 =over 4
158
159 =item Arguments: $relationship_name
160
161 =item Return Value: $related_resultset
162
163 =back
164
165   $rs = $cd->related_resultset('artist');
166
167 Returns a L<DBIx::Class::ResultSet> for the relationship named
168 $relationship_name.
169
170 =cut
171
172 sub related_resultset {
173   my $self = shift;
174   $self->throw_exception("Can't call *_related as class methods")
175     unless ref $self;
176   my $rel = shift;
177   my $rel_obj = $self->relationship_info($rel);
178   $self->throw_exception( "No such relationship ${rel}" )
179     unless $rel_obj;
180   
181   return $self->{related_resultsets}{$rel} ||= do {
182     my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
183     $attrs = { %{$rel_obj->{attrs} || {}}, %$attrs };
184
185     $self->throw_exception( "Invalid query: @_" )
186       if (@_ > 1 && (@_ % 2 == 1));
187     my $query = ((@_ > 1) ? {@_} : shift);
188
189     my $source = $self->result_source;
190     my $cond = $source->resolve_condition(
191       $rel_obj->{cond}, $rel, $self
192     );
193     if ($cond eq $DBIx::Class::ResultSource::UNRESOLVABLE_CONDITION) {
194       my $reverse = $source->reverse_relationship_info($rel);
195       foreach my $rev_rel (keys %$reverse) {
196         $attrs->{related_objects}{$rev_rel} = $self;
197         Scalar::Util::weaken($attrs->{related_object}{$rev_rel});
198       }
199     }
200     if (ref $cond eq 'ARRAY') {
201       $cond = [ map {
202         if (ref $_ eq 'HASH') {
203           my $hash;
204           foreach my $key (keys %$_) {
205             my $newkey = $key =~ /\./ ? "me.$key" : $key;
206             $hash->{$newkey} = $_->{$key};
207           }
208           $hash;
209         } else {
210           $_;
211         }
212       } @$cond ];
213     } elsif (ref $cond eq 'HASH') {
214       foreach my $key (grep { ! /\./ } keys %$cond) {
215         $cond->{"me.$key"} = delete $cond->{$key};
216       }
217     }
218     $query = ($query ? { '-and' => [ $cond, $query ] } : $cond);
219     $self->result_source->related_source($rel)->resultset->search(
220       $query, $attrs
221     );
222   };
223 }
224
225 =head2 search_related
226
227   @objects = $rs->search_related('relname', $cond, $attrs);
228   $objects_rs = $rs->search_related('relname', $cond, $attrs);
229
230 Run a search on a related resultset. The search will be restricted to the
231 item or items represented by the L<DBIx::Class::ResultSet> it was called
232 upon. This method can be called on a ResultSet, a Row or a ResultSource class.
233
234 =cut
235
236 sub search_related {
237   return shift->related_resultset(shift)->search(@_);
238 }
239
240 =head2 search_related_rs
241
242   ( $objects_rs ) = $rs->search_related_rs('relname', $cond, $attrs);
243
244 This method works exactly the same as search_related, except that 
245 it guarantees a restultset, even in list context.
246
247 =cut
248
249 sub search_related_rs {
250   return shift->related_resultset(shift)->search_rs(@_);
251 }
252
253 =head2 count_related
254
255   $obj->count_related('relname', $cond, $attrs);
256
257 Returns the count of all the items in the related resultset, restricted by the
258 current item or where conditions. Can be called on a
259 L<DBIx::Class::Manual::Glossary/"ResultSet"> or a
260 L<DBIx::Class::Manual::Glossary/"Row"> object.
261
262 =cut
263
264 sub count_related {
265   my $self = shift;
266   return $self->search_related(@_)->count;
267 }
268
269 =head2 new_related
270
271   my $new_obj = $obj->new_related('relname', \%col_data);
272
273 Create a new item of the related foreign class. If called on a
274 L<Row|DBIx::Class::Manual::Glossary/"Row"> object, it will magically 
275 set any foreign key columns of the new object to the related primary 
276 key columns of the source object for you.  The newly created item will 
277 not be saved into your storage until you call L<DBIx::Class::Row/insert>
278 on it.
279
280 =cut
281
282 sub new_related {
283   my ($self, $rel, $values, $attrs) = @_;
284   return $self->search_related($rel)->new($values, $attrs);
285 }
286
287 =head2 create_related
288
289   my $new_obj = $obj->create_related('relname', \%col_data);
290
291 Creates a new item, similarly to new_related, and also inserts the item's data
292 into your storage medium. See the distinction between C<create> and C<new>
293 in L<DBIx::Class::ResultSet> for details.
294
295 =cut
296
297 sub create_related {
298   my $self = shift;
299   my $rel = shift;
300   my $obj = $self->search_related($rel)->create(@_);
301   delete $self->{related_resultsets}->{$rel};
302   return $obj;
303 }
304
305 =head2 find_related
306
307   my $found_item = $obj->find_related('relname', @pri_vals | \%pri_vals);
308
309 Attempt to find a related object using its primary key or unique constraints.
310 See L<DBIx::Class::ResultSet/find> for details.
311
312 =cut
313
314 sub find_related {
315   my $self = shift;
316   my $rel = shift;
317   return $self->search_related($rel)->find(@_);
318 }
319
320 =head2 find_or_new_related
321
322   my $new_obj = $obj->find_or_new_related('relname', \%col_data);
323
324 Find an item of a related class. If none exists, instantiate a new item of the
325 related class. The object will not be saved into your storage until you call
326 L<DBIx::Class::Row/insert> on it.
327
328 =cut
329
330 sub find_or_new_related {
331   my $self = shift;
332   my $obj = $self->find_related(@_);
333   return defined $obj ? $obj : $self->new_related(@_);
334 }
335
336 =head2 find_or_create_related
337
338   my $new_obj = $obj->find_or_create_related('relname', \%col_data);
339
340 Find or create an item of a related class. See
341 L<DBIx::Class::ResultSet/find_or_create> for details.
342
343 =cut
344
345 sub find_or_create_related {
346   my $self = shift;
347   my $obj = $self->find_related(@_);
348   return (defined($obj) ? $obj : $self->create_related(@_));
349 }
350
351 =head2 update_or_create_related
352
353   my $updated_item = $obj->update_or_create_related('relname', \%col_data, \%attrs?);
354
355 Update or create an item of a related class. See
356 L<DBIx::Class::ResultSet/update_or_create> for details.
357
358 =cut
359
360 sub update_or_create_related {
361   my $self = shift;
362   my $rel = shift;
363   return $self->related_resultset($rel)->update_or_create(@_);
364 }
365
366 =head2 set_from_related
367
368   $book->set_from_related('author', $author_obj);
369   $book->author($author_obj);                      ## same thing
370
371 Set column values on the current object, using related values from the given
372 related object. This is used to associate previously separate objects, for
373 example, to set the correct author for a book, find the Author object, then
374 call set_from_related on the book.
375
376 This is called internally when you pass existing objects as values to
377 L<DBIx::Class::ResultSet/create>, or pass an object to a belongs_to acessor.
378
379 The columns are only set in the local copy of the object, call L</update> to
380 set them in the storage.
381
382 =cut
383
384 sub set_from_related {
385   my ($self, $rel, $f_obj) = @_;
386   my $rel_obj = $self->relationship_info($rel);
387   $self->throw_exception( "No such relationship ${rel}" ) unless $rel_obj;
388   my $cond = $rel_obj->{cond};
389   $self->throw_exception(
390     "set_from_related can only handle a hash condition; the ".
391     "condition for $rel is of type ".
392     (ref $cond ? ref $cond : 'plain scalar')
393   ) unless ref $cond eq 'HASH';
394   if (defined $f_obj) {
395     my $f_class = $self->result_source->schema->class($rel_obj->{class});
396     $self->throw_exception( "Object $f_obj isn't a ".$f_class )
397       unless Scalar::Util::blessed($f_obj) and $f_obj->isa($f_class);
398   }
399   $self->set_columns(
400     $self->result_source->resolve_condition(
401        $rel_obj->{cond}, $f_obj, $rel));
402   return 1;
403 }
404
405 =head2 update_from_related
406
407   $book->update_from_related('author', $author_obj);
408
409 The same as L</"set_from_related">, but the changes are immediately updated
410 in storage.
411
412 =cut
413
414 sub update_from_related {
415   my $self = shift;
416   $self->set_from_related(@_);
417   $self->update;
418 }
419
420 =head2 delete_related
421
422   $obj->delete_related('relname', $cond, $attrs);
423
424 Delete any related item subject to the given conditions.
425
426 =cut
427
428 sub delete_related {
429   my $self = shift;
430   my $obj = $self->search_related(@_)->delete;
431   delete $self->{related_resultsets}->{$_[0]};
432   return $obj;
433 }
434
435 =head2 add_to_$rel
436
437 B<Currently only available for C<has_many>, C<many-to-many> and 'multi' type
438 relationships.>
439
440 =over 4
441
442 =item Arguments: ($foreign_vals | $obj), $link_vals?
443
444 =back
445
446   my $role = $schema->resultset('Role')->find(1);
447   $actor->add_to_roles($role);
448       # creates a My::DBIC::Schema::ActorRoles linking table row object
449
450   $actor->add_to_roles({ name => 'lead' }, { salary => 15_000_000 });
451       # creates a new My::DBIC::Schema::Role row object and the linking table
452       # object with an extra column in the link
453
454 Adds a linking table object for C<$obj> or C<$foreign_vals>. If the first
455 argument is a hash reference, the related object is created first with the
456 column values in the hash. If an object reference is given, just the linking
457 table object is created. In either case, any additional column values for the
458 linking table object can be specified in C<$link_vals>.
459
460 =head2 set_$rel
461
462 B<Currently only available for C<many-to-many> relationships.>
463
464 =over 4
465
466 =item Arguments: (\@hashrefs | \@objs)
467
468 =back
469
470   my $actor = $schema->resultset('Actor')->find(1);
471   my @roles = $schema->resultset('Role')->search({ role => 
472      { '-in' => ['Fred', 'Barney'] } } );
473
474   $actor->set_roles(\@roles);
475      # Replaces all of $actor's previous roles with the two named
476
477 Replace all the related objects with the given reference to a list of
478 objects. This does a C<delete> B<on the link table resultset> to remove the
479 association between the current object and all related objects, then calls
480 C<add_to_$rel> repeatedly to link all the new objects.
481
482 Note that this means that this method will B<not> delete any objects in the
483 table on the right side of the relation, merely that it will delete the link
484 between them.
485
486 Due to a mistake in the original implementation of this method, it will also
487 accept a list of objects or hash references. This is B<deprecated> and will be
488 removed in a future version.
489
490 =head2 remove_from_$rel
491
492 B<Currently only available for C<many-to-many> relationships.>
493
494 =over 4
495
496 =item Arguments: $obj
497
498 =back
499
500   my $role = $schema->resultset('Role')->find(1);
501   $actor->remove_from_roles($role);
502       # removes $role's My::DBIC::Schema::ActorRoles linking table row object
503
504 Removes the link between the current object and the related object. Note that
505 the related object itself won't be deleted unless you call ->delete() on
506 it. This method just removes the link between the two objects.
507
508 =head1 AUTHORS
509
510 Matt S. Trout <mst@shadowcatsystems.co.uk>
511
512 =head1 LICENSE
513
514 You may distribute this code under the same terms as Perl itself.
515
516 =cut
517
518 1;