Rename (with a silent compat shim) couple of badly named customcond args
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / Base.pm
CommitLineData
55e2d745 1package DBIx::Class::Relationship::Base;
2
3use strict;
4use warnings;
5
1edd1722 6use base qw/DBIx::Class/;
6298a324 7
8use Scalar::Util qw/weaken blessed/;
ed7ab0f4 9use Try::Tiny;
fd323bf1 10use namespace::clean;
55e2d745 11
75d07914 12=head1 NAME
55e2d745 13
8918977e 14DBIx::Class::Relationship::Base - Inter-table relationships
55e2d745 15
16=head1 SYNOPSIS
17
6c4f4d69 18 __PACKAGE__->add_relationship(
19 spiders => 'My::DB::Result::Creatures',
20 sub {
21 my $args = shift;
22 return {
23 "$args->{foreign_alias}.id" => { -ident => "$args->{self_alias}.id" },
24 "$args->{foreign_alias}.type" => 'arachnid'
25 };
26 },
27 );
13523f29 28
55e2d745 29=head1 DESCRIPTION
30
30236e47 31This class provides methods to describe the relationships between the
32tables in your database model. These are the "bare bones" relationships
75d07914 33methods, for predefined ones, look in L<DBIx::Class::Relationship>.
55e2d745 34
35=head1 METHODS
36
8091aa91 37=head2 add_relationship
503536d5 38
27f01d1f 39=over 4
40
13523f29 41=item Arguments: 'relname', 'Foreign::Class', $condition, $attrs
27f01d1f 42
43=back
30236e47 44
6c4f4d69 45 __PACKAGE__->add_relationship('relname',
46 'Foreign::Class',
13523f29 47 $condition, $attrs);
48
49Create a custom relationship between one result source and another
50source, indicated by its class name.
503536d5 51
406734bb 52=head3 condition
53
6c4f4d69 54The condition argument describes the C<ON> clause of the C<JOIN>
55expression used to connect the two sources when creating SQL queries.
30236e47 56
5d2588cc 57=head4 Simple equality
58
59To create simple equality joins, supply a hashref containing the remote
60table column name as the key(s) prefixed by C<'foreign.'>, and the
61corresponding local table column name as the value(s) prefixed by C<'self.'>.
62Both C<foreign> and C<self> are pseudo aliases and must be entered
63literally. They will be replaced with the actual correct table alias
64when the SQL is produced.
65
66For example given:
503536d5 67
6c4f4d69 68 My::Schema::Author->has_many(
69 books => 'My::Schema::Book',
70 { 'foreign.author_id' => 'self.id' }
71 );
503536d5 72
6c4f4d69 73A query like:
74
75 $author_rs->search_related('books')->next
503536d5 76
6c4f4d69 77will result in the following C<JOIN> clause:
78
79 ... FROM author me LEFT JOIN book books ON books.author_id = me.id ...
503536d5 80
13523f29 81This describes a relationship between the C<Author> table and the
82C<Book> table where the C<Book> table has a column C<author_id>
83containing the ID value of the C<Author>.
84
13523f29 85Similarly:
5271499d 86
6c4f4d69 87 My::Schema::Book->has_many(
88 editions => 'My::Schema::Edition',
89 {
90 'foreign.publisher_id' => 'self.publisher_id',
91 'foreign.type_id' => 'self.type_id',
92 }
93 );
94
95 ...
96
97 $book_rs->search_related('editions')->next
5271499d 98
13523f29 99will result in the C<JOIN> clause:
5271499d 100
6c4f4d69 101 ... FROM book me
102 LEFT JOIN edition editions ON
103 editions.publisher_id = me.publisher_id
104 AND editions.type_id = me.type_id ...
5271499d 105
13523f29 106This describes the relationship from C<Book> to C<Edition>, where the
107C<Edition> table refers to a publisher and a type (e.g. "paperback"):
108
5d2588cc 109=head4 Multiple groups of simple equality conditions
110
13523f29 111As is the default in L<SQL::Abstract>, the key-value pairs will be
5d2588cc 112C<AND>ed in the resulting C<JOIN> clause. An C<OR> can be achieved with
113an arrayref. For example a condition like:
13523f29 114
6c4f4d69 115 My::Schema::Item->has_many(
116 related_item_links => My::Schema::Item::Links,
117 [
118 { 'foreign.left_itemid' => 'self.id' },
119 { 'foreign.right_itemid' => 'self.id' },
120 ],
121 );
13523f29 122
6c4f4d69 123will translate to the following C<JOIN> clause:
13523f29 124
6c4f4d69 125 ... FROM item me JOIN item_relations related_item_links ON
126 related_item_links.left_itemid = me.id
127 OR related_item_links.right_itemid = me.id ...
13523f29 128
6c4f4d69 129This describes the relationship from C<Item> to C<Item::Links>, where
130C<Item::Links> is a many-to-many linking table, linking items back to
131themselves in a peer fashion (without a "parent-child" designation)
13523f29 132
84d8c2ad 133=head4 Custom join conditions
134
5d2588cc 135 NOTE: The custom join condition specification mechanism is capable of
136 generating JOIN clauses of virtually unlimited complexity. This may limit
137 your ability to traverse some of the more involved relationship chains the
138 way you expect, *and* may bring your RDBMS to its knees. Exercise care
139 when declaring relationships as described here.
140
6c4f4d69 141To specify joins which describe more than a simple equality of column
142values, the custom join condition coderef syntax can be used. For
143example:
13523f29 144
6c4f4d69 145 My::Schema::Artist->has_many(
146 cds_80s => 'My::Schema::CD',
13523f29 147 sub {
6c4f4d69 148 my $args = shift;
13523f29 149
6c4f4d69 150 return {
151 "$args->{foreign_alias}.artist" => { -ident => "$args->{self_alias}.artistid" },
152 "$args->{foreign_alias}.year" => { '>', "1979", '<', "1990" },
153 };
154 }
155 );
13523f29 156
6c4f4d69 157 ...
13523f29 158
6c4f4d69 159 $artist_rs->search_related('cds_80s')->next;
13523f29 160
6c4f4d69 161will result in the C<JOIN> clause:
13523f29 162
6c4f4d69 163 ... FROM artist me LEFT JOIN cd cds_80s ON
164 cds_80s.artist = me.artistid
165 AND cds_80s.year < ?
166 AND cds_80s.year > ?
13523f29 167
6c4f4d69 168with the bind values:
13523f29 169
6c4f4d69 170 '1990', '1979'
13523f29 171
6c4f4d69 172C<< $args->{foreign_alias} >> and C<< $args->{self_alias} >> are supplied the
173same values that would be otherwise substituted for C<foreign> and C<self>
174in the simple hashref syntax case.
175
176The coderef is expected to return a valid L<SQL::Abstract> query-structure, just
177like what one would supply as the first argument to
178L<DBIx::Class::ResultSet/search>. The return value will be passed directly to
179L<SQL::Abstract> and the resulting SQL will be used verbatim as the C<ON>
180clause of the C<JOIN> statement associated with this relationship.
181
182While every coderef-based condition must return a valid C<ON> clause, it may
8273e845 183elect to additionally return a simplified join-free condition hashref when
dad42de6 184invoked as C<< $result->relationship >>, as opposed to
185C<< $rs->related_resultset('relationship') >>. In this case C<$result> is
6c4f4d69 186passed to the coderef as C<< $args->{self_rowobj} >>, so a user can do the
187following:
188
189 sub {
190 my $args = shift;
191
192 return (
193 {
194 "$args->{foreign_alias}.artist" => { -ident => "$args->{self_alias}.artistid" },
195 "$args->{foreign_alias}.year" => { '>', "1979", '<', "1990" },
196 },
197 $args->{self_rowobj} && {
198 "$args->{foreign_alias}.artist" => $args->{self_rowobj}->artistid,
199 "$args->{foreign_alias}.year" => { '>', "1979", '<', "1990" },
200 },
201 );
13523f29 202 }
203
204Now this code:
205
206 my $artist = $schema->resultset("Artist")->find({ id => 4 });
207 $artist->cds_80s->all;
208
6c4f4d69 209Can skip a C<JOIN> altogether and instead produce:
13523f29 210
6c4f4d69 211 SELECT cds_80s.cdid, cds_80s.artist, cds_80s.title, cds_80s.year, cds_80s.genreid, cds_80s.single_track
212 FROM cd cds_80s
213 WHERE cds_80s.artist = ?
214 AND cds_80s.year < ?
215 AND cds_80s.year > ?
13523f29 216
217With the bind values:
218
219 '4', '1990', '1979'
220
6c4f4d69 221Note that in order to be able to use
47d7b769 222L<< $result->create_related|DBIx::Class::Relationship::Base/create_related >>,
6c4f4d69 223the coderef must not only return as its second such a "simple" condition
224hashref which does not depend on joins being available, but the hashref must
225contain only plain values/deflatable objects, such that the result can be
226passed directly to L<DBIx::Class::Relationship::Base/set_from_related>. For
227instance the C<year> constraint in the above example prevents the relationship
4a0eed52 228from being used to create related objects (an exception will be thrown).
6c4f4d69 229
230In order to allow the user to go truly crazy when generating a custom C<ON>
231clause, the C<$args> hashref passed to the subroutine contains some extra
232metadata. Currently the supplied coderef is executed as:
233
234 $relationship_info->{cond}->({
a446d7f8 235 self_resultsource => The resultsource instance on which rel_name is registered
236 rel_name => The relationship name (does *NOT* always match foreign_alias)
237
238 self_alias => The alias of the invoking resultset
239 foreign_alias => The alias of the to-be-joined resultset (does *NOT* always match rel_name)
240
241 self_resultobj => The invocant object itself in case of a $resultobj->$rel_name() call
242
243 # deprecated inconsistent names, will be forever available for legacy code
244 self_rowobj => Old deprecated slot for self_resultobj
245 foreign_relname => Old deprecated slot for rel_name
6c4f4d69 246 });
8091aa91 247
406734bb 248=head3 attributes
249
250The L<standard ResultSet attributes|DBIx::Class::ResultSet/ATTRIBUTES> may
251be used as relationship attributes. In particular, the 'where' attribute is
252useful for filtering relationships:
253
254 __PACKAGE__->has_many( 'valid_users', 'MyApp::Schema::User',
255 { 'foreign.user_id' => 'self.user_id' },
256 { where => { valid => 1 } }
257 );
258
259The following attributes are also valid:
8091aa91 260
261=over 4
262
263=item join_type
264
265Explicitly specifies the type of join to use in the relationship. Any SQL
266join type is valid, e.g. C<LEFT> or C<RIGHT>. It will be placed in the SQL
267command immediately before C<JOIN>.
268
97c96475 269=item proxy =E<gt> $column | \@columns | \%column
270
9ab122aa 271The 'proxy' attribute can be used to retrieve values, and to perform
272updates if the relationship has 'cascade_update' set. The 'might_have'
273and 'has_one' relationships have this set by default; if you want a proxy
274to update across a 'belongs_to' relationship, you must set the attribute
275yourself.
276
97c96475 277=over 4
278
279=item \@columns
8091aa91 280
30236e47 281An arrayref containing a list of accessors in the foreign class to create in
8091aa91 282the main class. If, for example, you do the following:
d4daee7b 283
03460bef 284 MyApp::Schema::CD->might_have(liner_notes => 'MyApp::Schema::LinerNotes',
27f01d1f 285 undef, {
286 proxy => [ qw/notes/ ],
287 });
d4daee7b 288
03460bef 289Then, assuming MyApp::Schema::LinerNotes has an accessor named notes, you can do:
8091aa91 290
03460bef 291 my $cd = MyApp::Schema::CD->find(1);
30236e47 292 $cd->notes('Notes go here'); # set notes -- LinerNotes object is
293 # created if it doesn't exist
d4daee7b 294
9ab122aa 295For a 'belongs_to relationship, note the 'cascade_update':
296
a5fc4975 297 MyApp::Schema::Track->belongs_to( cd => 'MyApp::Schema::CD', 'cd,
9ab122aa 298 { proxy => ['title'], cascade_update => 1 }
299 );
300 $track->title('New Title');
301 $track->update; # updates title in CD
302
97c96475 303=item \%column
304
305A hashref where each key is the accessor you want installed in the main class,
4a0eed52 306and its value is the name of the original in the foreign class.
97c96475 307
a5fc4975 308 MyApp::Schema::Track->belongs_to( cd => 'MyApp::Schema::CD', 'cd', {
97c96475 309 proxy => { cd_title => 'title' },
310 });
311
dad42de6 312This will create an accessor named C<cd_title> on the C<$track> result object.
97c96475 313
314=back
315
316NOTE: you can pass a nested struct too, for example:
317
a5fc4975 318 MyApp::Schema::Track->belongs_to( cd => 'MyApp::Schema::CD', 'cd', {
97c96475 319 proxy => [ 'year', { cd_title => 'title' } ],
320 });
321
8091aa91 322=item accessor
323
324Specifies the type of accessor that should be created for the relationship.
325Valid values are C<single> (for when there is only a single related object),
326C<multi> (when there can be many), and C<filter> (for when there is a single
327related object, but you also want the relationship accessor to double as
328a column accessor). For C<multi> accessors, an add_to_* method is also
329created, which calls C<create_related> for the relationship.
330
3d618782 331=item is_foreign_key_constraint
332
333If you are using L<SQL::Translator> to create SQL for you and you find that it
fd323bf1 334is creating constraints where it shouldn't, or not creating them where it
3d618782 335should, set this attribute to a true or false value to override the detection
336of when to create constraints.
337
5f7ac523 338=item cascade_copy
339
340If C<cascade_copy> is true on a C<has_many> relationship for an
341object, then when you copy the object all the related objects will
fd323bf1 342be copied too. To turn this behaviour off, pass C<< cascade_copy => 0 >>
343in the C<$attr> hashref.
b7bbc39f 344
345The behaviour defaults to C<< cascade_copy => 1 >> for C<has_many>
346relationships.
5f7ac523 347
348=item cascade_delete
349
b7bbc39f 350By default, DBIx::Class cascades deletes across C<has_many>,
351C<has_one> and C<might_have> relationships. You can disable this
fd323bf1 352behaviour on a per-relationship basis by supplying
b7bbc39f 353C<< cascade_delete => 0 >> in the relationship attributes.
5f7ac523 354
355The cascaded operations are performed after the requested delete,
356so if your database has a constraint on the relationship, it will
357have deleted/updated the related records or raised an exception
358before DBIx::Class gets to perform the cascaded operation.
359
360=item cascade_update
361
b7bbc39f 362By default, DBIx::Class cascades updates across C<has_one> and
5f7ac523 363C<might_have> relationships. You can disable this behaviour on a
b7bbc39f 364per-relationship basis by supplying C<< cascade_update => 0 >> in
365the relationship attributes.
5f7ac523 366
9ab122aa 367The C<belongs_to> relationship does not update across relationships
368by default, so if you have a 'proxy' attribute on a belongs_to and want to
369use 'update' on it, you muse set C<< cascade_update => 1 >>.
370
cee0c9b1 371This is not a RDMS style cascade update - it purely means that when
372an object has update called on it, all the related objects also
373have update called. It will not change foreign keys automatically -
374you must arrange to do this yourself.
5f7ac523 375
e377d723 376=item on_delete / on_update
377
378If you are using L<SQL::Translator> to create SQL for you, you can use these
fd323bf1 379attributes to explicitly set the desired C<ON DELETE> or C<ON UPDATE> constraint
380type. If not supplied the SQLT parser will attempt to infer the constraint type by
e377d723 381interrogating the attributes of the B<opposite> relationship. For any 'multi'
fd323bf1 382relationship with C<< cascade_delete => 1 >>, the corresponding belongs_to
383relationship will be created with an C<ON DELETE CASCADE> constraint. For any
e377d723 384relationship bearing C<< cascade_copy => 1 >> the resulting belongs_to constraint
385will be C<ON UPDATE CASCADE>. If you wish to disable this autodetection, and just
fd323bf1 386use the RDBMS' default constraint type, pass C<< on_delete => undef >> or
e377d723 387C<< on_delete => '' >>, and the same for C<on_update> respectively.
388
13de943d 389=item is_deferrable
390
391Tells L<SQL::Translator> that the foreign key constraint it creates should be
392deferrable. In other words, the user may request that the constraint be ignored
393until the end of the transaction. Currently, only the PostgreSQL producer
394actually supports this.
395
2581038c 396=item add_fk_index
397
398Tells L<SQL::Translator> to add an index for this constraint. Can also be
399specified globally in the args to L<DBIx::Class::Schema/deploy> or
400L<DBIx::Class::Schema/create_ddl_dir>. Default is on, set to 0 to disable.
401
8091aa91 402=back
403
87c4e602 404=head2 register_relationship
405
27f01d1f 406=over 4
407
dad42de6 408=item Arguments: $rel_name, $rel_info
27f01d1f 409
410=back
71e65b39 411
30236e47 412Registers a relationship on the class. This is called internally by
71f9df37 413DBIx::Class::ResultSourceProxy to set up Accessors and Proxies.
71e65b39 414
55e2d745 415=cut
416
71e65b39 417sub register_relationship { }
418
27f01d1f 419=head2 related_resultset
420
421=over 4
422
dad42de6 423=item Arguments: $rel_name
27f01d1f 424
dad42de6 425=item Return Value: L<$related_resultset|DBIx::Class::ResultSet>
27f01d1f 426
427=back
30236e47 428
27f01d1f 429 $rs = $cd->related_resultset('artist');
30236e47 430
27f01d1f 431Returns a L<DBIx::Class::ResultSet> for the relationship named
dad42de6 432$rel_name.
30236e47 433
93711422 434=head2 $relationship_accessor
435
436=over 4
437
dad42de6 438=item Arguments: none
93711422 439
dad42de6 440=item Return Value: L<$result|DBIx::Class::Manual::ResultClass> | L<$related_resultset|DBIx::Class::ResultSet> | undef
93711422 441
442=back
443
444 # These pairs do the same thing
47d7b769 445 $result = $cd->related_resultset('artist')->single; # has_one relationship
446 $result = $cd->artist;
93711422 447 $rs = $cd->related_resultset('tracks'); # has_many relationship
448 $rs = $cd->tracks;
449
8ed69929 450This is the recommended way to traverse through relationships, based
93711422 451on the L</accessor> name given in the relationship definition.
452
dad42de6 453This will return either a L<Result|DBIx::Class::Manual::ResultClass> or a
93711422 454L<ResultSet|DBIx::Class::ResultSet>, depending on if the relationship is
455C<single> (returns only one row) or C<multi> (returns many rows). The
456method may also return C<undef> if the relationship doesn't exist for
457this instance (like in the case of C<might_have> relationships).
458
30236e47 459=cut
460
461sub related_resultset {
462 my $self = shift;
72c2540d 463
bc0c9800 464 $self->throw_exception("Can't call *_related as class methods")
465 unless ref $self;
72c2540d 466
30236e47 467 my $rel = shift;
d4daee7b 468
3d0733aa 469 return $self->{related_resultsets}{$rel}
470 if defined $self->{related_resultsets}{$rel};
471
472 return $self->{related_resultsets}{$rel} = do {
3b4c4d72 473
474 my $rel_info = $self->relationship_info($rel)
475 or $self->throw_exception( "No such relationship '$rel'" );
476
30236e47 477 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
164efde3 478 $attrs = { %{$rel_info->{attrs} || {}}, %$attrs };
30236e47 479
bc0c9800 480 $self->throw_exception( "Invalid query: @_" )
481 if (@_ > 1 && (@_ % 2 == 1));
30236e47 482 my $query = ((@_ > 1) ? {@_} : shift);
483
72c2540d 484 my $rsrc = $self->result_source;
d419ded6 485
486 # condition resolution may fail if an incomplete master-object prefetch
34b6b86f 487 # is encountered - that is ok during prefetch construction (not yet in_storage)
aa56106b 488 my ($cond, $is_crosstable) = try {
72c2540d 489 $rsrc->_resolve_condition( $rel_info->{cond}, $rel, $self, $rel )
52b420dd 490 }
ed7ab0f4 491 catch {
f8193780 492 $self->throw_exception ($_) if $self->in_storage;
493 $DBIx::Class::ResultSource::UNRESOLVABLE_CONDITION; # RV, no return()
ed7ab0f4 494 };
d419ded6 495
aa56106b 496 # keep in mind that the following if() block is part of a do{} - no return()s!!!
03f6d1f7 497 if ($is_crosstable and ref $rel_info->{cond} eq 'CODE') {
aa56106b 498
499 # A WHOREIFFIC hack to reinvoke the entire condition resolution
500 # with the correct alias. Another way of doing this involves a
501 # lot of state passing around, and the @_ positions are already
502 # mapped out, making this crap a less icky option.
503 #
504 # The point of this exercise is to retain the spirit of the original
505 # $obj->search_related($rel) where the resulting rset will have the
506 # root alias as 'me', instead of $rel (as opposed to invoking
507 # $rs->search_related)
508
72c2540d 509 local $rsrc->{_relationships}{me} = $rsrc->{_relationships}{$rel}; # make the fake 'me' rel
510 my $obj_table_alias = lc($rsrc->source_name) . '__row';
93508f48 511 $obj_table_alias =~ s/\W+/_/g;
aa56106b 512
72c2540d 513 $rsrc->resultset->search(
aa56106b 514 $self->ident_condition($obj_table_alias),
515 { alias => $obj_table_alias },
516 )->search_related('me', $query, $attrs)
68f3b0dd 517 }
aa56106b 518 else {
519 # FIXME - this conditional doesn't seem correct - got to figure out
520 # at some point what it does. Also the entire UNRESOLVABLE_CONDITION
521 # business seems shady - we could simply not query *at all*
522 if ($cond eq $DBIx::Class::ResultSource::UNRESOLVABLE_CONDITION) {
72c2540d 523 my $reverse = $rsrc->reverse_relationship_info($rel);
aa56106b 524 foreach my $rev_rel (keys %$reverse) {
525 if ($reverse->{$rev_rel}{attrs}{accessor} && $reverse->{$rev_rel}{attrs}{accessor} eq 'multi') {
0a03206a 526 weaken($attrs->{related_objects}{$rev_rel}[0] = $self);
aa56106b 527 } else {
0a03206a 528 weaken($attrs->{related_objects}{$rev_rel} = $self);
aa56106b 529 }
530 }
9aae3566 531 }
aa56106b 532 elsif (ref $cond eq 'ARRAY') {
7689b9e5 533 $cond = [ map {
534 if (ref $_ eq 'HASH') {
535 my $hash;
536 foreach my $key (keys %$_) {
537 my $newkey = $key !~ /\./ ? "me.$key" : $key;
538 $hash->{$newkey} = $_->{$key};
539 }
540 $hash;
541 } else {
542 $_;
370f2ba2 543 }
7689b9e5 544 } @$cond ];
aa56106b 545 }
546 elsif (ref $cond eq 'HASH') {
547 foreach my $key (grep { ! /\./ } keys %$cond) {
7689b9e5 548 $cond->{"me.$key"} = delete $cond->{$key};
370f2ba2 549 }
30236e47 550 }
a126983e 551
7689b9e5 552 $query = ($query ? { '-and' => [ $cond, $query ] } : $cond);
72c2540d 553 $rsrc->related_source($rel)->resultset->search(
aa56106b 554 $query, $attrs
555 );
7689b9e5 556 }
30236e47 557 };
558}
559
8091aa91 560=head2 search_related
503536d5 561
dad42de6 562=over 4
563
564=item Arguments: $rel_name, $cond?, L<\%attrs?|DBIx::Class::ResultSet/ATTRIBUTES>
565
566=item Return Value: L<$resultset|DBIx::Class::ResultSet> (scalar context) | L<@result_objs|DBIx::Class::Manual::ResultClass> (list context)
567
568=back
30236e47 569
570Run a search on a related resultset. The search will be restricted to the
dad42de6 571results represented by the L<DBIx::Class::ResultSet> it was called
572upon.
573
574See L<DBIx::Class::ResultSet/search_related> for more information.
503536d5 575
576=cut
577
55e2d745 578sub search_related {
ff7bb7a1 579 return shift->related_resultset(shift)->search(@_);
b52e9bf8 580}
581
5b89a768 582=head2 search_related_rs
583
fd323bf1 584This method works exactly the same as search_related, except that
48580715 585it guarantees a resultset, even in list context.
5b89a768 586
587=cut
588
589sub search_related_rs {
590 return shift->related_resultset(shift)->search_rs(@_);
591}
592
b52e9bf8 593=head2 count_related
594
dad42de6 595=over 4
596
597=item Arguments: $rel_name, $cond?, L<\%attrs?|DBIx::Class::ResultSet/ATTRIBUTES>
598
599=item Return Value: $count
b52e9bf8 600
dad42de6 601=back
602
603Returns the count of all the rows in the related resultset, restricted by the
604current result or where conditions.
30236e47 605
b52e9bf8 606=cut
607
608sub count_related {
4b8a53ea 609 shift->search_related(@_)->count;
55e2d745 610}
611
30236e47 612=head2 new_related
613
dad42de6 614=over 4
615
616=item Arguments: $rel_name, \%col_data
617
618=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
30236e47 619
dad42de6 620=back
621
622Create a new result object of the related foreign class. It will magically set
623any foreign key columns of the new object to the related primary key columns
624of the source object for you. The newly created result will not be saved into
625your storage until you call L<DBIx::Class::Row/insert> on it.
30236e47 626
627=cut
628
629sub new_related {
81e4dc3d 630 my ($self, $rel, $values) = @_;
78b948c3 631
632 # FIXME - this is a bad position for this (also an identical copy in
633 # set_from_related), but I have no saner way to hook, and I absolutely
634 # want this to throw at least for coderefs, instead of the "insert a NULL
635 # when it gets hard" insanity --ribasushi
636 #
637 # sanity check - currently throw when a complex coderef rel is encountered
638 # FIXME - should THROW MOAR!
639
640 if (ref $self) { # cdbi calls this as a class method, /me vomits
641
642 my $rsrc = $self->result_source;
3f8affda 643 my $rel_info = $rsrc->relationship_info($rel)
644 or $self->throw_exception( "No such relationship '$rel'" );
f8193780 645 my (undef, $crosstable, $nonequality_foreign_columns) = $rsrc->_resolve_condition (
3f8affda 646 $rel_info->{cond}, $rel, $self, $rel
78b948c3 647 );
648
1daf1363 649 $self->throw_exception("Relationship '$rel' does not resolve to a join-free condition fragment")
78b948c3 650 if $crosstable;
651
f8193780 652 if (
653 $nonequality_foreign_columns
654 and
655 my @unspecified_rel_condition_chunks = grep { ! exists $values->{$_} } @$nonequality_foreign_columns
656 ) {
78b948c3 657 $self->throw_exception(sprintf (
658 "Custom relationship '%s' not definitive - returns conditions instead of values for column(s): %s",
659 $rel,
72c2540d 660 map { "'$_'" } @unspecified_rel_condition_chunks
78b948c3 661 ));
662 }
663 }
664
81e4dc3d 665 return $self->search_related($rel)->new_result($values);
30236e47 666}
667
8091aa91 668=head2 create_related
503536d5 669
dad42de6 670=over 4
30236e47 671
dad42de6 672=item Arguments: $rel_name, \%col_data
673
674=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
675
676=back
677
678 my $result = $obj->create_related($rel_name, \%col_data);
679
680Creates a new result object, similarly to new_related, and also inserts the
681result's data into your storage medium. See the distinction between C<create>
682and C<new> in L<DBIx::Class::ResultSet> for details.
503536d5 683
684=cut
685
55e2d745 686sub create_related {
3842b955 687 my $self = shift;
fea3d045 688 my $rel = shift;
78b948c3 689 my $obj = $self->new_related($rel, @_)->insert;
64acc2bc 690 delete $self->{related_resultsets}->{$rel};
691 return $obj;
55e2d745 692}
693
8091aa91 694=head2 find_related
503536d5 695
dad42de6 696=over 4
697
698=item Arguments: $rel_name, \%col_data | @pk_values, { key => $unique_constraint, L<%attrs|DBIx::Class::ResultSet/ATTRIBUTES> }?
699
700=item Return Value: L<$result|DBIx::Class::Manual::ResultClass> | undef
701
702=back
703
704 my $result = $obj->find_related($rel_name, \%col_data);
30236e47 705
706Attempt to find a related object using its primary key or unique constraints.
27f01d1f 707See L<DBIx::Class::ResultSet/find> for details.
503536d5 708
709=cut
710
1a14aa3f 711sub find_related {
4b8a53ea 712 #my ($self, $rel, @args) = @_;
713 return shift->search_related(shift)->find(@_);
1a14aa3f 714}
715
b3e1f1f5 716=head2 find_or_new_related
717
dad42de6 718=over 4
b3e1f1f5 719
dad42de6 720=item Arguments: $rel_name, \%col_data, { key => $unique_constraint, L<%attrs|DBIx::Class::ResultSet/ATTRIBUTES> }?
721
722=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
723
724=back
725
726Find a result object of a related class. See L<DBIx::Class::ResultSet/find_or_new>
727for details.
b3e1f1f5 728
729=cut
730
731sub find_or_new_related {
732 my $self = shift;
e60dc79f 733 my $obj = $self->find_related(@_);
734 return defined $obj ? $obj : $self->new_related(@_);
b3e1f1f5 735}
736
8091aa91 737=head2 find_or_create_related
503536d5 738
dad42de6 739=over 4
740
741=item Arguments: $rel_name, \%col_data, { key => $unique_constraint, L<%attrs|DBIx::Class::ResultSet/ATTRIBUTES> }?
742
743=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
744
745=back
30236e47 746
dad42de6 747Find or create a result object of a related class. See
b3e1f1f5 748L<DBIx::Class::ResultSet/find_or_create> for details.
503536d5 749
750=cut
751
55e2d745 752sub find_or_create_related {
753 my $self = shift;
9c2c91ea 754 my $obj = $self->find_related(@_);
755 return (defined($obj) ? $obj : $self->create_related(@_));
55e2d745 756}
757
045120e6 758=head2 update_or_create_related
759
dad42de6 760=over 4
761
762=item Arguments: $rel_name, \%col_data, { key => $unique_constraint, L<%attrs|DBIx::Class::ResultSet/ATTRIBUTES> }?
763
764=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
765
766=back
045120e6 767
dad42de6 768Update or create a result object of a related class. See
f7e1846f 769L<DBIx::Class::ResultSet/update_or_create> for details.
045120e6 770
771=cut
772
773sub update_or_create_related {
4b8a53ea 774 #my ($self, $rel, @args) = @_;
775 shift->related_resultset(shift)->update_or_create(@_);
045120e6 776}
777
8091aa91 778=head2 set_from_related
503536d5 779
dad42de6 780=over 4
781
782=item Arguments: $rel_name, L<$result|DBIx::Class::Manual::ResultClass>
783
784=item Return Value: not defined
785
786=back
787
30236e47 788 $book->set_from_related('author', $author_obj);
ac8e89d7 789 $book->author($author_obj); ## same thing
30236e47 790
791Set column values on the current object, using related values from the given
792related object. This is used to associate previously separate objects, for
793example, to set the correct author for a book, find the Author object, then
794call set_from_related on the book.
795
ac8e89d7 796This is called internally when you pass existing objects as values to
48580715 797L<DBIx::Class::ResultSet/create>, or pass an object to a belongs_to accessor.
ac8e89d7 798
27f01d1f 799The columns are only set in the local copy of the object, call L</update> to
800set them in the storage.
503536d5 801
802=cut
803
55e2d745 804sub set_from_related {
805 my ($self, $rel, $f_obj) = @_;
aa56106b 806
78b948c3 807 my $rsrc = $self->result_source;
808 my $rel_info = $rsrc->relationship_info($rel)
e705f529 809 or $self->throw_exception( "No such relationship '$rel'" );
aa56106b 810
2c037e6b 811 if (defined $f_obj) {
164efde3 812 my $f_class = $rel_info->{class};
e705f529 813 $self->throw_exception( "Object '$f_obj' isn't a ".$f_class )
6298a324 814 unless blessed $f_obj and $f_obj->isa($f_class);
2c037e6b 815 }
a126983e 816
a126983e 817
78b948c3 818 # FIXME - this is a bad position for this (also an identical copy in
819 # new_related), but I have no saner way to hook, and I absolutely
820 # want this to throw at least for coderefs, instead of the "insert a NULL
821 # when it gets hard" insanity --ribasushi
822 #
823 # sanity check - currently throw when a complex coderef rel is encountered
824 # FIXME - should THROW MOAR!
f8193780 825 my ($cond, $crosstable, $nonequality_foreign_columns) = $rsrc->_resolve_condition (
78b948c3 826 $rel_info->{cond}, $f_obj, $rel, $rel
827 );
1daf1363 828 $self->throw_exception("Relationship '$rel' does not resolve to a join-free condition fragment")
78b948c3 829 if $crosstable;
f8193780 830
78b948c3 831 $self->throw_exception(sprintf (
832 "Custom relationship '%s' not definitive - returns conditions instead of values for column(s): %s",
833 $rel,
f8193780 834 map { "'$_'" } @$nonequality_foreign_columns
835 )) if $nonequality_foreign_columns;
aa56106b 836
837 $self->set_columns($cond);
a126983e 838
55e2d745 839 return 1;
840}
841
8091aa91 842=head2 update_from_related
503536d5 843
dad42de6 844=over 4
845
846=item Arguments: $rel_name, L<$result|DBIx::Class::Manual::ResultClass>
847
848=item Return Value: not defined
849
850=back
851
30236e47 852 $book->update_from_related('author', $author_obj);
853
27f01d1f 854The same as L</"set_from_related">, but the changes are immediately updated
855in storage.
503536d5 856
857=cut
858
55e2d745 859sub update_from_related {
860 my $self = shift;
861 $self->set_from_related(@_);
862 $self->update;
863}
864
8091aa91 865=head2 delete_related
503536d5 866
dad42de6 867=over 4
30236e47 868
dad42de6 869=item Arguments: $rel_name, $cond?, L<\%attrs?|DBIx::Class::ResultSet/ATTRIBUTES>
870
69bc5f2b 871=item Return Value: $underlying_storage_rv
dad42de6 872
873=back
874
875Delete any related row, subject to the given conditions. Internally, this
876calls:
877
878 $self->search_related(@_)->delete
879
880And returns the result of that.
503536d5 881
882=cut
883
55e2d745 884sub delete_related {
885 my $self = shift;
64acc2bc 886 my $obj = $self->search_related(@_)->delete;
887 delete $self->{related_resultsets}->{$_[0]};
888 return $obj;
55e2d745 889}
890
ec353f53 891=head2 add_to_$rel
892
dad42de6 893B<Currently only available for C<has_many>, C<many_to_many> and 'multi' type
ec353f53 894relationships.>
895
dad42de6 896=head3 has_many / multi
897
ec353f53 898=over 4
899
dad42de6 900=item Arguments: \%col_data
901
902=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
903
904=back
905
906Creates/inserts a new result object. Internally, this calls:
907
908 $self->create_related($rel, @_)
909
910And returns the result of that.
911
912=head3 many_to_many
913
914=over 4
915
916=item Arguments: (\%col_data | L<$result|DBIx::Class::Manual::ResultClass>), \%link_col_data?
917
918=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
ec353f53 919
920=back
921
922 my $role = $schema->resultset('Role')->find(1);
923 $actor->add_to_roles($role);
dad42de6 924 # creates a My::DBIC::Schema::ActorRoles linking table result object
ec353f53 925
926 $actor->add_to_roles({ name => 'lead' }, { salary => 15_000_000 });
dad42de6 927 # creates a new My::DBIC::Schema::Role result object and the linking table
ec353f53 928 # object with an extra column in the link
929
dad42de6 930Adds a linking table object. If the first argument is a hash reference, the
931related object is created first with the column values in the hash. If an object
932reference is given, just the linking table object is created. In either case,
933any additional column values for the linking table object can be specified in
934C<\%link_col_data>.
935
936See L<DBIx::Class::Relationship/many_to_many> for additional details.
ec353f53 937
938=head2 set_$rel
939
dad42de6 940B<Currently only available for C<many_to_many> relationships.>
ec353f53 941
942=over 4
943
dad42de6 944=item Arguments: (\@hashrefs_of_col_data | L<\@result_objs|DBIx::Class::Manual::ResultClass>), $link_vals?
945
946=item Return Value: not defined
ec353f53 947
948=back
949
950 my $actor = $schema->resultset('Actor')->find(1);
fd323bf1 951 my @roles = $schema->resultset('Role')->search({ role =>
debccec3 952 { '-in' => ['Fred', 'Barney'] } } );
ec353f53 953
4d3a827d 954 $actor->set_roles(\@roles);
955 # Replaces all of $actor's previous roles with the two named
ec353f53 956
ac36a402 957 $actor->set_roles(\@roles, { salary => 15_000_000 });
958 # Sets a column in the link table for all roles
959
960
4d3a827d 961Replace all the related objects with the given reference to a list of
962objects. This does a C<delete> B<on the link table resultset> to remove the
963association between the current object and all related objects, then calls
964C<add_to_$rel> repeatedly to link all the new objects.
bba68c67 965
966Note that this means that this method will B<not> delete any objects in the
967table on the right side of the relation, merely that it will delete the link
968between them.
ec353f53 969
4d3a827d 970Due to a mistake in the original implementation of this method, it will also
971accept a list of objects or hash references. This is B<deprecated> and will be
972removed in a future version.
973
ec353f53 974=head2 remove_from_$rel
975
dad42de6 976B<Currently only available for C<many_to_many> relationships.>
ec353f53 977
978=over 4
979
dad42de6 980=item Arguments: L<$result|DBIx::Class::Manual::ResultClass>
981
982=item Return Value: not defined
ec353f53 983
984=back
985
986 my $role = $schema->resultset('Role')->find(1);
987 $actor->remove_from_roles($role);
dad42de6 988 # removes $role's My::DBIC::Schema::ActorRoles linking table result object
ec353f53 989
990Removes the link between the current object and the related object. Note that
991the related object itself won't be deleted unless you call ->delete() on
992it. This method just removes the link between the two objects.
993
0c11ad0e 994=head1 AUTHOR AND CONTRIBUTORS
55e2d745 995
0c11ad0e 996See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
55e2d745 997
998=head1 LICENSE
999
1000You may distribute this code under the same terms as Perl itself.
1001
1002=cut
1003
4d87db01 10041;