add_relationship, relationship_info, relationships moved to ResultSource
[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/;
55e2d745 7
8__PACKAGE__->mk_classdata('_relationships', { } );
9
10=head1 NAME
11
8918977e 12DBIx::Class::Relationship::Base - Inter-table relationships
55e2d745 13
14=head1 SYNOPSIS
15
16=head1 DESCRIPTION
17
18This class handles relationships between the tables in your database
19model. It allows your to set up relationships, and to perform joins
20on searches.
21
22=head1 METHODS
23
8091aa91 24=head2 add_relationship
503536d5 25
26 __PACKAGE__->add_relationship('relname', 'Foreign::Class', $cond, $attrs);
27
28The condition needs to be an SQL::Abstract-style representation of the
8091aa91 29join between the tables. For example, if you're creating a rel from Foo to Bar,
503536d5 30
31 { 'foreign.foo_id' => 'self.id' }
32
8091aa91 33will result in the JOIN clause
503536d5 34
35 foo me JOIN bar bar ON bar.foo_id = me.id
36
8091aa91 37You can specify as many foreign => self mappings as necessary.
38
39Valid attributes are as follows:
40
41=over 4
42
43=item join_type
44
45Explicitly specifies the type of join to use in the relationship. Any SQL
46join type is valid, e.g. C<LEFT> or C<RIGHT>. It will be placed in the SQL
47command immediately before C<JOIN>.
48
49=item proxy
50
51An arrayref containing a list of accessors in the foreign class to proxy in
52the main class. If, for example, you do the following:
53
54 __PACKAGE__->might_have(bar => 'Bar', undef, { proxy => qw[/ margle /] });
55
56Then, assuming Bar has an accessor named margle, you can do:
57
58 my $obj = Foo->find(1);
59 $obj->margle(10); # set margle; Bar object is created if it doesn't exist
60
61=item accessor
62
63Specifies the type of accessor that should be created for the relationship.
64Valid values are C<single> (for when there is only a single related object),
65C<multi> (when there can be many), and C<filter> (for when there is a single
66related object, but you also want the relationship accessor to double as
67a column accessor). For C<multi> accessors, an add_to_* method is also
68created, which calls C<create_related> for the relationship.
69
70=back
71
55e2d745 72=cut
73
74sub add_relationship {
8452e496 75 shift->result_source->add_relationship(@_);
76}
77
78sub relationships {
79 shift->result_source->relationships(@_);
80}
81
82sub relationship_info {
83 shift->result_source->relationship_info(@_);
55e2d745 84}
85
fef5d100 86sub _resolve_join {
87 my ($class, $join, $alias) = @_;
88 if (ref $join eq 'ARRAY') {
89 return map { $class->_resolve_join($_, $alias) } @$join;
90 } elsif (ref $join eq 'HASH') {
91 return map { $class->_resolve_join($_, $alias),
4685e006 92 $class->relationship_info($_)->{class}->_resolve_join($join->{$_}, $_) }
fef5d100 93 keys %$join;
94 } elsif (ref $join) {
95 $class->throw("No idea how to resolve join reftype ".ref $join);
96 } else {
4685e006 97 my $rel_obj = $class->relationship_info($join);
8452e496 98 #use Data::Dumper; warn Dumper($class->result_source) unless $rel_obj;
fef5d100 99 $class->throw("No such relationship ${join}") unless $rel_obj;
100 my $j_class = $rel_obj->{class};
101 my %join = (_action => 'join',
102 _aliases => { 'self' => $alias, 'foreign' => $join },
103 _classes => { $alias => $class, $join => $j_class });
104 my $j_cond = $j_class->resolve_condition($rel_obj->{cond}, \%join);
105 return [ { $join => $j_class->_table_name,
106 -join_type => $rel_obj->{attrs}{join_type} || '' }, $j_cond ];
107 }
108}
109
438adc0e 110sub resolve_condition {
111 my ($self, $cond, $attrs) = @_;
112 if (ref $cond eq 'HASH') {
113 my %ret;
114 foreach my $key (keys %$cond) {
115 my $val = $cond->{$key};
116 if (ref $val) {
117 $self->throw("Can't handle this yet :(");
118 } else {
119 $ret{$self->_cond_key($attrs => $key)}
120 = $self->_cond_value($attrs => $key => $val);
121 }
122 }
123 return \%ret;
124 } else {
125 $self->throw("Can't handle this yet :(");
126 }
127}
128
55e2d745 129sub _cond_key {
b52e9bf8 130 my ($self, $attrs, $key, $alias) = @_;
55e2d745 131 my $action = $attrs->{_action} || '';
132 if ($action eq 'convert') {
133 unless ($key =~ s/^foreign\.//) {
134 $self->throw("Unable to convert relationship to WHERE clause: invalid key ${key}");
135 }
b52e9bf8 136 if (defined (my $alias = $attrs->{_aliases}{foreign})) {
137 return "${alias}.${key}";
138 } else {
139 return $key;
140 }
55e2d745 141 } elsif ($action eq 'join') {
d3dec624 142 return $key unless $key =~ /\./;
55e2d745 143 my ($type, $field) = split(/\./, $key);
144 if (my $alias = $attrs->{_aliases}{$type}) {
145 my $class = $attrs->{_classes}{$alias};
146 $self->throw("Unknown column $field on $class as $alias")
103647d5 147 unless $class->has_column($field);
55e2d745 148 return join('.', $alias, $field);
149 } else {
150 $self->throw( "Unable to resolve type ${type}: only have aliases for ".
151 join(', ', keys %{$attrs->{_aliases} || {}}) );
152 }
153 }
147dd158 154 return $self->next::method($attrs, $key);
55e2d745 155}
156
157sub _cond_value {
158 my ($self, $attrs, $key, $value) = @_;
159 my $action = $attrs->{_action} || '';
160 if ($action eq 'convert') {
161 unless ($value =~ s/^self\.//) {
162 $self->throw( "Unable to convert relationship to WHERE clause: invalid value ${value}" );
163 }
103647d5 164 unless ($self->has_column($value)) {
55e2d745 165 $self->throw( "Unable to convert relationship to WHERE clause: no such accessor ${value}" );
166 }
438adc0e 167 return $self->get_column($value);
55e2d745 168 } elsif ($action eq 'join') {
d3dec624 169 return $key unless $key =~ /\./;
55e2d745 170 my ($type, $field) = split(/\./, $value);
171 if (my $alias = $attrs->{_aliases}{$type}) {
172 my $class = $attrs->{_classes}{$alias};
173 $self->throw("Unknown column $field on $class as $alias")
103647d5 174 unless $class->has_column($field);
fef5d100 175 return join('.', $alias, $field);
55e2d745 176 } else {
177 $self->throw( "Unable to resolve type ${type}: only have aliases for ".
178 join(', ', keys %{$attrs->{_aliases} || {}}) );
179 }
180 }
181
147dd158 182 return $self->next::method($attrs, $key, $value)
55e2d745 183}
184
8091aa91 185=head2 search_related
503536d5 186
187 My::Table->search_related('relname', $cond, $attrs);
188
189=cut
190
55e2d745 191sub search_related {
192 my $self = shift;
55e2d745 193 my $rel = shift;
194 my $attrs = { };
195 if (@_ > 1 && ref $_[$#_] eq 'HASH') {
196 $attrs = { %{ pop(@_) } };
197 }
4685e006 198 my $rel_obj = $self->relationship_info($rel);
55e2d745 199 $self->throw( "No such relationship ${rel}" ) unless $rel_obj;
200 $attrs = { %{$rel_obj->{attrs} || {}}, %{$attrs || {}} };
201
202 $self->throw( "Invalid query: @_" ) if (@_ > 1 && (@_ % 2 == 1));
203 my $query = ((@_ > 1) ? {@_} : shift);
204
205 $attrs->{_action} = 'convert'; # shouldn't we resolve the cond to something
206 # to merge into the AST really?
438adc0e 207 my ($cond) = $self->resolve_condition($rel_obj->{cond}, $attrs);
208 $query = ($query ? { '-and' => [ $cond, $query ] } : $cond);
55e2d745 209 #use Data::Dumper; warn Dumper($query);
438adc0e 210 #warn $rel_obj->{class}." $meth $cond ".join(', ', @{$attrs->{bind}||[]});
55e2d745 211 delete $attrs->{_action};
7fb16f1a 212 return $self->result_source->schema->resultset($rel_obj->{class}
b52e9bf8 213 )->search($query, $attrs);
214}
215
216=head2 count_related
217
218 My::Table->count_related('relname', $cond, $attrs);
219
220=cut
221
222sub count_related {
223 my $self = shift;
224 return $self->search_related(@_)->count;
55e2d745 225}
226
8091aa91 227=head2 create_related
503536d5 228
229 My::Table->create_related('relname', \%col_data);
230
231=cut
232
55e2d745 233sub create_related {
234 my $class = shift;
fea3d045 235 my $rel = shift;
236 return $class->search_related($rel)->create(@_);
55e2d745 237}
238
8091aa91 239=head2 new_related
503536d5 240
241 My::Table->new_related('relname', \%col_data);
242
243=cut
244
55e2d745 245sub new_related {
246 my ($self, $rel, $values, $attrs) = @_;
fea3d045 247 return $self->search_related($rel)->new($values, $attrs);
55e2d745 248}
249
8091aa91 250=head2 find_related
503536d5 251
252 My::Table->find_related('relname', @pri_vals | \%pri_vals);
253
254=cut
255
1a14aa3f 256sub find_related {
257 my $self = shift;
258 my $rel = shift;
716b3d29 259 return $self->search_related($rel)->find(@_);
1a14aa3f 260}
261
8091aa91 262=head2 find_or_create_related
503536d5 263
264 My::Table->find_or_create_related('relname', \%col_data);
265
266=cut
267
55e2d745 268sub find_or_create_related {
269 my $self = shift;
1a14aa3f 270 return $self->find_related(@_) || $self->create_related(@_);
55e2d745 271}
272
8091aa91 273=head2 set_from_related
503536d5 274
275 My::Table->set_from_related('relname', $rel_obj);
276
277=cut
278
55e2d745 279sub set_from_related {
280 my ($self, $rel, $f_obj) = @_;
4685e006 281 my $rel_obj = $self->relationship_info($rel);
55e2d745 282 $self->throw( "No such relationship ${rel}" ) unless $rel_obj;
283 my $cond = $rel_obj->{cond};
284 $self->throw( "set_from_related can only handle a hash condition; the "
285 ."condition for $rel is of type ".(ref $cond ? ref $cond : 'plain scalar'))
286 unless ref $cond eq 'HASH';
7fb16f1a 287 my $f_class = $self->result_source->schema->class($rel_obj->{class});
55e2d745 288 $self->throw( "Object $f_obj isn't a ".$f_class )
289 unless $f_obj->isa($f_class);
290 foreach my $key (keys %$cond) {
291 next if ref $cond->{$key}; # Skip literals and complex conditions
292 $self->throw("set_from_related can't handle $key as key")
293 unless $key =~ m/^foreign\.([^\.]+)$/;
294 my $val = $f_obj->get_column($1);
295 $self->throw("set_from_related can't handle ".$cond->{$key}." as value")
296 unless $cond->{$key} =~ m/^self\.([^\.]+)$/;
297 $self->set_column($1 => $val);
298 }
299 return 1;
300}
301
8091aa91 302=head2 update_from_related
503536d5 303
304 My::Table->update_from_related('relname', $rel_obj);
305
306=cut
307
55e2d745 308sub update_from_related {
309 my $self = shift;
310 $self->set_from_related(@_);
311 $self->update;
312}
313
8091aa91 314=head2 delete_related
503536d5 315
316 My::Table->delete_related('relname', $cond, $attrs);
317
318=cut
319
55e2d745 320sub delete_related {
321 my $self = shift;
322 return $self->search_related(@_)->delete;
323}
324
3251;
326
55e2d745 327=head1 AUTHORS
328
daec44b8 329Matt S. Trout <mst@shadowcatsystems.co.uk>
55e2d745 330
331=head1 LICENSE
332
333You may distribute this code under the same terms as Perl itself.
334
335=cut
336