Commit | Line | Data |
9b83fccd |
1 | package # hide from PAUSE |
2 | DBIx::Class::Relationship::BelongsTo; |
3 | |
4 | # Documentation for these methods can be found in |
5 | # DBIx::Class::Relationship |
07037f89 |
6 | |
7 | use strict; |
8 | use warnings; |
9 | |
10 | sub belongs_to { |
11 | my ($class, $rel, $f_class, $cond, $attrs) = @_; |
6bf6ba2f |
12 | |
13 | # assume a foreign key contraint unless defined otherwise |
14 | $attrs->{is_foreign_key_constraint} = 1 |
15 | if not exists $attrs->{is_foreign_key_constraint}; |
cef1bdda |
16 | $attrs->{undef_on_null_fk} = 1 |
17 | if not exists $attrs->{undef_on_null_fk}; |
6bf6ba2f |
18 | |
aeb1bf75 |
19 | # no join condition or just a column name |
7b601771 |
20 | if (!ref $cond) { |
fd4df975 |
21 | $class->ensure_class_loaded($f_class); |
aeb1bf75 |
22 | my %f_primaries = map { $_ => 1 } eval { $f_class->primary_columns }; |
fd4df975 |
23 | $class->throw_exception( |
24 | "Can't infer join condition for ${rel} on ${class}; ". |
25 | "unable to load ${f_class}: $@" |
26 | ) if $@; |
1e3bc087 |
27 | |
28 | my ($pri, $too_many) = keys %f_primaries; |
fd4df975 |
29 | $class->throw_exception( |
30 | "Can't infer join condition for ${rel} on ${class}; ". |
31 | "${f_class} has no primary keys" |
32 | ) unless defined $pri; |
33 | $class->throw_exception( |
34 | "Can't infer join condition for ${rel} on ${class}; ". |
35 | "${f_class} has multiple primary keys" |
36 | ) if $too_many; |
1e3bc087 |
37 | |
38 | my $fk = defined $cond ? $cond : $rel; |
fd4df975 |
39 | $class->throw_exception( |
40 | "Can't infer join condition for ${rel} on ${class}; ". |
41 | "$fk is not a column of $class" |
42 | ) unless $class->has_column($fk); |
1e3bc087 |
43 | |
44 | my $acc_type = $class->has_column($rel) ? 'filter' : 'single'; |
07037f89 |
45 | $class->add_relationship($rel, $f_class, |
1e3bc087 |
46 | { "foreign.${pri}" => "self.${fk}" }, |
5a3c5f64 |
47 | { accessor => $acc_type, %{$attrs || {}} } |
07037f89 |
48 | ); |
49 | } |
aeb1bf75 |
50 | # explicit join condition |
4ff1b819 |
51 | elsif (ref $cond) { |
52 | if (ref $cond eq 'HASH') { # ARRAY is also valid |
53 | my $cond_rel; |
54 | for (keys %$cond) { |
55 | if (m/\./) { # Explicit join condition |
56 | $cond_rel = $cond; |
57 | last; |
58 | } |
59 | $cond_rel->{"foreign.$_"} = "self.".$cond->{$_}; |
99be059e |
60 | } |
4ff1b819 |
61 | $cond = $cond_rel; |
07037f89 |
62 | } |
4ff1b819 |
63 | my $acc_type = ((ref $cond eq 'HASH') |
64 | && keys %$cond == 1 |
65 | && $class->has_column($rel)) |
66 | ? 'filter' |
67 | : 'single'; |
07037f89 |
68 | $class->add_relationship($rel, $f_class, |
4ff1b819 |
69 | $cond, |
0cc03829 |
70 | { accessor => $acc_type, %{$attrs || {}} } |
07037f89 |
71 | ); |
72 | } |
7b601771 |
73 | else { |
fd4df975 |
74 | $class->throw_exception( |
75 | 'third argument for belongs_to must be undef, a column name, '. |
76 | 'or a join condition' |
77 | ); |
7b601771 |
78 | } |
07037f89 |
79 | return 1; |
80 | } |
81 | |
503536d5 |
82 | =head1 AUTHORS |
83 | |
84 | Alexander Hartmaier <Alexander.Hartmaier@t-systems.at> |
85 | |
86 | Matt S. Trout <mst@shadowcatsystems.co.uk> |
87 | |
88 | =cut |
89 | |
07037f89 |
90 | 1; |