All expected evals converted to try, except where no test is done,
[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;
dc571b76 6use Carp::Clan qw/^DBIx::Class/;
ed7ab0f4 7use Try::Tiny;
22b15c96 8
044e70c7 9our %_pod_inherit_config =
10 (
11 class_map => { 'DBIx::Class::Relationship::HasOne' => 'DBIx::Class::Relationship' }
12 );
13
07037f89 14sub might_have {
15 shift->_has_one('LEFT' => @_);
16}
17
22b15c96 18sub has_one {
e5d98edd 19 shift->_has_one(undef() => @_);
07037f89 20}
21
22sub _has_one {
503536d5 23 my ($class, $join_type, $rel, $f_class, $cond, $attrs) = @_;
99be059e 24 unless (ref $cond) {
fd4df975 25 $class->ensure_class_loaded($f_class);
e36de82e 26
dc571b76 27 my $pri = $class->_get_primary_key;
e8fb771b 28
e36de82e 29 $class->throw_exception(
30 "might_have/has_one needs a primary key to infer a join; ".
31 "${class} has none"
32 ) if !defined $pri && (!defined $cond || !length $cond);
33
103647d5 34 my $f_class_loaded = eval { $f_class->columns };
dc571b76 35 my ($f_key,$too_many,$guess);
dcf8330b 36 if (defined $cond && length $cond) {
99be059e 37 $f_key = $cond;
dcf8330b 38 $guess = "caller specified foreign key '$f_key'";
103647d5 39 } elsif ($f_class_loaded && $f_class->has_column($rel)) {
07037f89 40 $f_key = $rel;
dcf8330b 41 $guess = "using given relationship '$rel' for foreign key";
07037f89 42 } else {
dc571b76 43 $f_key = $class->_get_primary_key($f_class);
dcf8330b 44 $guess = "using primary key of foreign class for foreign key";
22b15c96 45 }
fd4df975 46 $class->throw_exception(
47 "No such column ${f_key} on foreign class ${f_class} ($guess)"
48 ) if $f_class_loaded && !$f_class->has_column($f_key);
503536d5 49 $cond = { "foreign.${f_key}" => "self.${pri}" };
07037f89 50 }
2339d6c7 51 $class->_validate_has_one_condition($cond);
07037f89 52 $class->add_relationship($rel, $f_class,
53 $cond,
503536d5 54 { accessor => 'single',
07037f89 55 cascade_update => 1, cascade_delete => 1,
56 ($join_type ? ('join_type' => $join_type) : ()),
503536d5 57 %{$attrs || {}} });
07037f89 58 1;
22b15c96 59}
60
dc571b76 61sub _get_primary_key {
62 my ( $class, $target_class ) = @_;
63 $target_class ||= $class;
ed7ab0f4 64 my ($pri, $too_many) = try { $target_class->_pri_cols }
65 catch {
66 $class->throw_exception("Can't infer join condition on ${target_class}: $@");
67 };
e8fb771b 68
dc571b76 69 $class->throw_exception(
70 "might_have/has_one can only infer join for a single primary key; ".
71 "${class} has more"
72 ) if $too_many;
73 return $pri;
74}
75
2339d6c7 76sub _validate_has_one_condition {
dc571b76 77 my ($class, $cond ) = @_;
78
79 return if $ENV{DBIC_DONT_VALIDATE_RELS};
80 return unless 'HASH' eq ref $cond;
81 foreach my $foreign_id ( keys %$cond ) {
82 my $self_id = $cond->{$foreign_id};
83
84 # we can ignore a bad $self_id because add_relationship handles this
85 # warning
86 return unless $self_id =~ /^self\.(.*)$/;
87 my $key = $1;
2339d6c7 88 $class->throw_exception("Defining rel on ${class} that includes ${key} but no such column defined here yet")
89 unless $class->has_column($key);
dc571b76 90 my $column_info = $class->column_info($key);
91 if ( $column_info->{is_nullable} ) {
416e0bc0 92 carp(qq'"might_have/has_one" must not be on columns with is_nullable set to true ($class/$key). This might indicate an incorrect use of those relationship helpers instead of belongs_to.');
dc571b76 93 }
94 }
95}
96
22b15c96 971;