Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / HasOne.pm
CommitLineData
c0e7b4e5 1package # hide from PAUSE
2 DBIx::Class::Relationship::HasOne;
22b15c96 3
4use strict;
5use warnings;
70c28808 6use DBIx::Class::Carp;
e2741c7f 7use DBIx::Class::_Util qw( dbic_internal_try dbic_internal_catch );
fd323bf1 8use namespace::clean;
22b15c96 9
fd323bf1 10our %_pod_inherit_config =
044e70c7 11 (
12 class_map => { 'DBIx::Class::Relationship::HasOne' => 'DBIx::Class::Relationship' }
13 );
14
07037f89 15sub might_have {
16 shift->_has_one('LEFT' => @_);
17}
18
22b15c96 19sub has_one {
e5d98edd 20 shift->_has_one(undef() => @_);
07037f89 21}
22
23sub _has_one {
503536d5 24 my ($class, $join_type, $rel, $f_class, $cond, $attrs) = @_;
99be059e 25 unless (ref $cond) {
e570488a 26 my $pri = $class->result_source->_single_pri_col_or_die;
e36de82e 27
9e7525a2 28 my ($f_key,$guess,$f_rsrc);
dcf8330b 29 if (defined $cond && length $cond) {
99be059e 30 $f_key = $cond;
dcf8330b 31 $guess = "caller specified foreign key '$f_key'";
22b15c96 32 }
9e7525a2 33 else {
34 # at this point we need to load the foreigner, expensive or not
35 $class->ensure_class_loaded($f_class);
36
ddcc02d1 37 $f_rsrc = dbic_internal_try {
e570488a 38 my $r = $f_class->result_source;
38fe1ff9 39 die "There got to be some columns by now... (exception caught and rewritten by catch below)"
40 unless $r->columns;
41 $r;
9e7525a2 42 }
e2741c7f 43 dbic_internal_catch {
9e7525a2 44 $class->throw_exception(
45 "Foreign class '$f_class' does not seem to be a Result class "
46 . "(or it simply did not load entirely due to a circular relation chain)"
47 );
48 };
0b0743af 49
9e7525a2 50 if ($f_rsrc->has_column($rel)) {
51 $f_key = $rel;
52 $guess = "using given relationship name '$rel' as foreign key column name";
53 }
54 else {
55 $f_key = $f_rsrc->_single_pri_col_or_die;
56 $guess = "using primary key of foreign class for foreign key";
57 }
58 }
59
38fe1ff9 60# FIXME - this check needs to be moved to schema-composition time...
61# # only perform checks if the far side was not preloaded above *AND*
e570488a 62# # appears to have been loaded by something else (has a rsrc)
63# if (! $f_rsrc and $f_rsrc = dbic_internal_try { $f_class->result_source }) {
38fe1ff9 64# $class->throw_exception(
65# "No such column '$f_key' on foreign class ${f_class} ($guess)"
66# ) if !$f_rsrc->has_column($f_key);
67# }
0b0743af 68
503536d5 69 $cond = { "foreign.${f_key}" => "self.${pri}" };
07037f89 70 }
2339d6c7 71 $class->_validate_has_one_condition($cond);
edcecdbb 72
73 my $default_cascade = ref $cond eq 'CODE' ? 0 : 1;
74
07037f89 75 $class->add_relationship($rel, $f_class,
76 $cond,
503536d5 77 { accessor => 'single',
edcecdbb 78 cascade_update => $default_cascade,
79 cascade_delete => $default_cascade,
29d57632 80 is_depends_on => 0,
07037f89 81 ($join_type ? ('join_type' => $join_type) : ()),
503536d5 82 %{$attrs || {}} });
07037f89 83 1;
22b15c96 84}
85
2339d6c7 86sub _validate_has_one_condition {
dc571b76 87 my ($class, $cond ) = @_;
88
89 return if $ENV{DBIC_DONT_VALIDATE_RELS};
90 return unless 'HASH' eq ref $cond;
91 foreach my $foreign_id ( keys %$cond ) {
92 my $self_id = $cond->{$foreign_id};
93
94 # we can ignore a bad $self_id because add_relationship handles this
6909ab3c 95 # exception
dc571b76 96 return unless $self_id =~ /^self\.(.*)$/;
6909ab3c 97
dc571b76 98 my $key = $1;
b83736a7 99
100 my $column_info = $class->result_source->columns_info->{$key}
101 or $class->throw_exception(
102 "Defining rel on ${class} that includes '$key' "
103 . 'but no such column defined there yet'
104 );
105
106 carp(
107 "'might_have'/'has_one' must not be used on columns with is_nullable "
108 . "set to true ($class/$key). This almost certainly indicates an "
109 . "incorrect use of these relationship helpers instead of 'belongs_to'"
110 ) if $column_info->{is_nullable};
dc571b76 111 }
112}
113
22b15c96 1141;