1 package # hide from PAUSE
2 DBIx::Class::Relationship::ManyToMany;
9 my ($class, $meth, $rel, $f_rel, $rel_attrs) = @_;
11 $class->throw_exception(
12 "missing relation in many-to-many"
15 $class->throw_exception(
16 "missing foreign relation in many-to-many"
21 no warnings 'redefine';
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";
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"
35 $rel_attrs->{alias} ||= $f_rel;
37 my $rs_meth_name = join '::', $class, $rs_meth;
38 *$rs_meth_name = Sub::Name::subname $rs_meth_name, sub {
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 }
48 my $meth_name = join '::', $class, $meth;
49 *$meth_name = Sub::Name::subname $meth_name, sub {
51 my $rs = $self->$rs_meth( @_ );
52 return (wantarray ? $rs->all : $rs);
55 my $add_meth_name = join '::', $class, $add_meth;
56 *$add_meth_name = Sub::Name::subname $add_meth_name, sub {
58 @_ > 0 or $self->throw_exception(
59 "${add_meth} needs an object or hashref"
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||{});
70 if (ref $_[0] eq 'HASH') {
71 $obj = $f_rel_rs->create($_[0]);
76 $obj = $f_rel_rs->create({@_});
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);
86 my $set_meth_name = join '::', $class, $set_meth;
87 *$set_meth_name = Sub::Name::subname $set_meth_name, sub {
89 @_ > 0 or $self->throw_exception(
90 "{$set_meth} needs a list of objects or hashrefs"
92 my @to_set = (ref($_[0]) eq 'ARRAY' ? @{ $_[0] } : @_);
93 $self->search_related($rel, {})->delete;
94 $self->$add_meth($_) for (@to_set);
97 my $remove_meth_name = join '::', $class, $remove_meth;
98 *$remove_meth_name = Sub::Name::subname $remove_meth_name, sub {
100 @_ > 0 && ref $_[0] ne 'HASH'
101 or $self->throw_exception("${remove_meth} needs an object");
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(
108 $self->search_related($rel, $link_cond)->delete;