Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / BelongsTo.pm
CommitLineData
9b83fccd 1package # hide from PAUSE
2 DBIx::Class::Relationship::BelongsTo;
3
4# Documentation for these methods can be found in
5# DBIx::Class::Relationship
07037f89 6
7use strict;
8use warnings;
e2741c7f 9use DBIx::Class::_Util qw( dbic_internal_try dbic_internal_catch );
fd323bf1 10use namespace::clean;
07037f89 11
fd323bf1 12our %_pod_inherit_config =
044e70c7 13 (
14 class_map => { 'DBIx::Class::Relationship::BelongsTo' => 'DBIx::Class::Relationship' }
15 );
16
07037f89 17sub belongs_to {
18 my ($class, $rel, $f_class, $cond, $attrs) = @_;
6bf6ba2f 19
4a0eed52 20 # assume a foreign key constraint unless defined otherwise
fd323bf1 21 $attrs->{is_foreign_key_constraint} = 1
6bf6ba2f 22 if not exists $attrs->{is_foreign_key_constraint};
cef1bdda 23 $attrs->{undef_on_null_fk} = 1
24 if not exists $attrs->{undef_on_null_fk};
6bf6ba2f 25
aeb1bf75 26 # no join condition or just a column name
7b601771 27 if (!ref $cond) {
0b0743af 28
29 my ($f_key, $guess);
30 if (defined $cond and length $cond) {
31 $f_key = $cond;
32 $guess = "caller specified foreign key '$f_key'";
33 }
34 else {
35 $f_key = $rel;
36 $guess = "using given relationship name '$rel' as foreign key column name";
37 }
1e3bc087 38
fd4df975 39 $class->throw_exception(
0b0743af 40 "No such column '$f_key' declared yet on ${class} ($guess)"
e570488a 41 ) unless $class->result_source->has_column($f_key);
1e3bc087 42
9e7525a2 43 $class->ensure_class_loaded($f_class);
ddcc02d1 44 my $f_rsrc = dbic_internal_try {
e570488a 45 $f_class->result_source;
9e7525a2 46 }
e2741c7f 47 dbic_internal_catch {
9e7525a2 48 $class->throw_exception(
49 "Foreign class '$f_class' does not seem to be a Result class "
e570488a 50 . "(or it simply did not load entirely due to a circular relation chain): $_"
9e7525a2 51 );
52 };
53
54 my $pri = $f_rsrc->_single_pri_col_or_die;
55
0b0743af 56 $cond = { "foreign.${pri}" => "self.${f_key}" };
35f5c265 57
07037f89 58 }
aeb1bf75 59 # explicit join condition
1adea0d3 60 else {
4ff1b819 61 if (ref $cond eq 'HASH') { # ARRAY is also valid
62 my $cond_rel;
6909ab3c 63 # FIXME This loop is ridiculously incomplete and dangerous
64 # staving off changes until implmentation of the swindon consensus
4ff1b819 65 for (keys %$cond) {
66 if (m/\./) { # Explicit join condition
67 $cond_rel = $cond;
68 last;
69 }
70 $cond_rel->{"foreign.$_"} = "self.".$cond->{$_};
99be059e 71 }
4ff1b819 72 $cond = $cond_rel;
07037f89 73 }
07037f89 74 }
35f5c265 75
76 my $acc_type = (
77 ref $cond eq 'HASH'
78 and
79 keys %$cond == 1
80 and
6dd43920 81 (keys %$cond)[0] =~ /^foreign\./
82 and
e570488a 83 $class->result_source->has_column($rel)
35f5c265 84 ) ? 'filter' : 'single';
85
86 my $fk_columns = ($acc_type eq 'single' and ref $cond eq 'HASH')
87 ? { map { $_ =~ /^self\.(.+)/ ? ( $1 => 1 ) : () } (values %$cond ) }
88 : undef
89 ;
90
91 $class->add_relationship($rel, $f_class,
92 $cond,
93 {
d0cefd99 94 is_depends_on => 1,
35f5c265 95 accessor => $acc_type,
96 $fk_columns ? ( fk_columns => $fk_columns ) : (),
97 %{$attrs || {}}
98 }
99 );
100
07037f89 101 return 1;
102}
103
1041;