All expected evals converted to try, except where no test is done,
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / HasMany.pm
CommitLineData
75d07914 1package # hide from PAUSE
c0e7b4e5 2 DBIx::Class::Relationship::HasMany;
07037f89 3
4use strict;
5use warnings;
ed7ab0f4 6use Try::Tiny;
07037f89 7
044e70c7 8our %_pod_inherit_config =
9 (
10 class_map => { 'DBIx::Class::Relationship::HasMany' => 'DBIx::Class::Relationship' }
11 );
12
07037f89 13sub has_many {
14 my ($class, $rel, $f_class, $cond, $attrs) = @_;
c037c03a 15
dcf8330b 16 unless (ref $cond) {
fd4df975 17 $class->ensure_class_loaded($f_class);
ed7ab0f4 18 my ($pri, $too_many) = try { $class->_pri_cols }
19 catch {
20 $class->throw_exception("Can't infer join condition for ${rel} on ${class}: $_");
21 };
fd4df975 22
23 $class->throw_exception(
24 "has_many can only infer join for a single primary key; ".
25 "${class} has more"
26 ) if $too_many;
aeb1bf75 27
e36de82e 28 $class->throw_exception(
29 "has_many needs a primary key to infer a join; ".
30 "${class} has none"
31 ) if !defined $pri && (!defined $cond || !length $cond);
32
aeb1bf75 33 my ($f_key,$guess);
07037f89 34 if (defined $cond && length $cond) {
35 $f_key = $cond;
dcf8330b 36 $guess = "caller specified foreign key '$f_key'";
07037f89 37 } else {
38 $class =~ /([^\:]+)$/;
dcf8330b 39 $f_key = lc $1; # go ahead and guess; best we can do
40 $guess = "using our class name '$class' as foreign key";
07037f89 41 }
aeb1bf75 42
43 my $f_class_loaded = eval { $f_class->columns };
303cf522 44 $class->throw_exception(
45 "No such column ${f_key} on foreign class ${f_class} ($guess)"
46 ) if $f_class_loaded && !$f_class->has_column($f_key);
d4daee7b 47
8e04bf91 48 $cond = { "foreign.${f_key}" => "self.${pri}" };
07037f89 49 }
50
303cf522 51 $class->add_relationship($rel, $f_class, $cond, {
52 accessor => 'multi',
53 join_type => 'LEFT',
54 cascade_delete => 1,
55 cascade_copy => 1,
56 %{$attrs||{}}
57 });
07037f89 58}
59
601;