use sub::name to fix compat with moose method modifiers
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / ManyToMany.pm
1 package # hide from PAUSE
2     DBIx::Class::Relationship::ManyToMany;
3
4 use strict;
5 use warnings;
6 use Sub::Name ();
7
8 sub many_to_many {
9   my ($class, $meth, $rel, $f_rel, $rel_attrs) = @_;
10
11   $class->throw_exception(
12     "missing relation in many-to-many"
13   ) unless $rel;
14
15   $class->throw_exception(
16     "missing foreign relation in many-to-many"
17   ) unless $f_rel;
18
19   {
20     no strict 'refs';
21     no warnings 'redefine';
22
23     my $add_meth = "add_to_${meth}";
24     my $remove_meth = "remove_from_${meth}";
25     my $set_meth = "set_${meth}";
26     my $rs_meth = "${meth}_rs";
27
28     for ($add_meth, $remove_meth, $set_meth, $rs_meth) {
29       warn "***************************************************************************\n".
30            "The many-to-many relationship $meth is trying to create a utility method called $_. This will overwrite the existing method on $class. You almost certainly want to rename your method or the many-to-many relationship, as your method will not be callable (it will use the one from the relationship instead.) YOU HAVE BEEN WARNED\n".
31            "***************************************************************************\n"
32         if $class->can($_);
33     }
34
35     $rel_attrs->{alias} ||= $f_rel;
36
37     my $rs_meth_name = join '::', $class, $rs_meth;
38     *$rs_meth_name = Sub::Name::subname $rs_meth_name, sub {
39       my $self = shift;
40       my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {};
41       my @args = ($f_rel, @_ > 0 ? @_ : undef, { %{$rel_attrs||{}}, %$attrs });
42       my $rs = $self->search_related($rel)->search_related(
43         $f_rel, @_ > 0 ? @_ : undef, { %{$rel_attrs||{}}, %$attrs }
44       );
45           return $rs;
46     };
47
48     my $meth_name = join '::', $class, $meth;
49     *$meth_name = Sub::Name::subname $meth_name, sub {
50                 my $self = shift;
51                 my $rs = $self->$rs_meth( @_ );
52                 return (wantarray ? $rs->all : $rs);
53         };
54
55     my $add_meth_name = join '::', $class, $add_meth;
56     *$add_meth_name = Sub::Name::subname $add_meth_name, sub {
57       my $self = shift;
58       @_ > 0 or $self->throw_exception(
59         "${add_meth} needs an object or hashref"
60       );
61       my $source = $self->result_source;
62       my $schema = $source->schema;
63       my $rel_source_name = $source->relationship_info($rel)->{source};
64       my $rel_source = $schema->resultset($rel_source_name)->result_source;
65       my $f_rel_source_name = $rel_source->relationship_info($f_rel)->{source};
66       my $f_rel_rs = $schema->resultset($f_rel_source_name)->search({}, $rel_attrs||{});
67
68       my $obj;
69       if (ref $_[0]) {
70         if (ref $_[0] eq 'HASH') {
71           $obj = $f_rel_rs->create($_[0]);
72         } else {
73           $obj = $_[0];
74         }
75       } else {
76         $obj = $f_rel_rs->create({@_});
77       }
78
79       my $link_vals = @_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {};
80       my $link = $self->search_related($rel)->new_result($link_vals);
81       $link->set_from_related($f_rel, $obj);
82       $link->insert();
83           return $obj;
84     };
85
86     my $set_meth_name = join '::', $class, $set_meth;
87     *$set_meth_name = Sub::Name::subname $set_meth_name, sub {
88       my $self = shift;
89       @_ > 0 or $self->throw_exception(
90         "{$set_meth} needs a list of objects or hashrefs"
91       );
92       my @to_set = (ref($_[0]) eq 'ARRAY' ? @{ $_[0] } : @_);
93       $self->search_related($rel, {})->delete;
94       $self->$add_meth($_) for (@to_set);
95     };
96
97     my $remove_meth_name = join '::', $class, $remove_meth;
98     *$remove_meth_name = Sub::Name::subname $remove_meth_name, sub {
99       my $self = shift;
100       @_ > 0 && ref $_[0] ne 'HASH'
101         or $self->throw_exception("${remove_meth} needs an object");
102       my $obj = shift;
103       my $rel_source = $self->search_related($rel)->result_source;
104       my $cond = $rel_source->relationship_info($f_rel)->{cond};
105       my $link_cond = $rel_source->resolve_condition(
106         $cond, $obj, $f_rel
107       );
108       $self->search_related($rel, $link_cond)->delete;
109     };
110
111   }
112 }
113
114 1;