I hate you all.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / HasMany.pm
1 package # hide from PAUSE
2     DBIx::Class::Relationship::HasMany;
3
4 use strict;
5 use warnings;
6
7 sub has_many {
8   my ($class, $rel, $f_class, $cond, $attrs) = @_;
9
10   unless (ref $cond) {
11     $class->ensure_class_loaded($f_class);
12     my ($pri, $too_many) = $class->primary_columns;
13
14     $class->throw_exception(
15       "has_many can only infer join for a single primary key; ".
16       "${class} has more"
17     ) if $too_many;
18
19     my ($f_key,$guess);
20     if (defined $cond && length $cond) {
21       $f_key = $cond;
22       $guess = "caller specified foreign key '$f_key'";
23     } else {
24       $class =~ /([^\:]+)$/;
25       $f_key = lc $1; # go ahead and guess; best we can do
26       $guess = "using our class name '$class' as foreign key";
27     }
28
29     my $f_class_loaded = eval { $f_class->columns };
30     $class->throw_exception(
31       "No such column ${f_key} on foreign class ${f_class} ($guess)"
32     ) if $f_class_loaded && !$f_class->has_column($f_key);
33       
34     $cond = { "foreign.${f_key}" => "self.${pri}" };
35   }
36
37   $class->add_relationship($rel, $f_class, $cond, {
38     accessor => 'multi',
39     join_type => 'LEFT',
40     cascade_delete => 1,
41     cascade_copy => 1,
42     %{$attrs||{}}
43   });
44 }
45
46 1;