Fix and guard against erroneous use of list context in internal DBIC code
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / ManyToMany.pm
CommitLineData
75d07914 1package # hide from PAUSE
c0e7b4e5 2 DBIx::Class::Relationship::ManyToMany;
8973b6f1 3
4use strict;
5use warnings;
b234e9d9 6
70c28808 7use DBIx::Class::Carp;
a9da9b6a 8use Sub::Name 'subname';
9use Scalar::Util 'blessed';
10use DBIx::Class::_Util 'fail_on_internal_wantarray';
8f4b5c08 11use namespace::clean;
12
13our %_pod_inherit_config =
044e70c7 14 (
15 class_map => { 'DBIx::Class::Relationship::ManyToMany' => 'DBIx::Class::Relationship' }
16 );
17
8973b6f1 18sub many_to_many {
78af1010 19 my ($class, $meth, $rel, $f_rel, $rel_attrs) = @_;
d0ed3b55 20
21 $class->throw_exception(
22 "missing relation in many-to-many"
23 ) unless $rel;
24
25 $class->throw_exception(
26 "missing foreign relation in many-to-many"
27 ) unless $f_rel;
28
8973b6f1 29 {
30 no strict 'refs';
31 no warnings 'redefine';
4b3ab474 32
b3f358b5 33 my $add_meth = "add_to_${meth}";
34 my $remove_meth = "remove_from_${meth}";
35 my $set_meth = "set_${meth}";
18788bf2 36 my $rs_meth = "${meth}_rs";
303cf522 37
35210a5d 38 for ($add_meth, $remove_meth, $set_meth, $rs_meth) {
d81b2771 39 if ( $class->can ($_) ) {
b7d1831a 40 carp (<<"EOW") unless $ENV{DBIC_OVERWRITE_HELPER_METHODS_OK};
b234e9d9 41
35678f0b 42***************************************************************************
b234e9d9 43The many-to-many relationship '$meth' is trying to create a utility method
44called $_.
45This will completely overwrite one such already existing method on class
46$class.
d81b2771 47
b234e9d9 48You almost certainly want to rename your method or the many-to-many
49relationship, as the functionality of the original method will not be
50accessible anymore.
d81b2771 51
b7d1831a 52To disable this warning set to a true value the environment variable
53DBIC_OVERWRITE_HELPER_METHODS_OK
35678f0b 54
35678f0b 55***************************************************************************
56EOW
d81b2771 57 }
35210a5d 58 }
59
7141bdfc 60 $rel_attrs->{alias} ||= $f_rel;
61
ddc0a6c8 62 my $rs_meth_name = join '::', $class, $rs_meth;
8f4b5c08 63 *$rs_meth_name = subname $rs_meth_name, sub {
0f6ac8bb 64 my $self = shift;
65 my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {};
78060df8 66 my @args = ($f_rel, @_ > 0 ? @_ : undef, { %{$rel_attrs||{}}, %$attrs });
18788bf2 67 my $rs = $self->search_related($rel)->search_related(
3a868fb2 68 $f_rel, @_ > 0 ? @_ : undef, { %{$rel_attrs||{}}, %$attrs }
69 );
d7a58a29 70 return $rs;
78af1010 71 };
4b3ab474 72
ddc0a6c8 73 my $meth_name = join '::', $class, $meth;
8f4b5c08 74 *$meth_name = subname $meth_name, sub {
a9da9b6a 75 DBIx::Class::_ENV_::ASSERT_NO_INTERNAL_WANTARRAY and wantarray and my $sog = fail_on_internal_wantarray($_[0]);
d7a58a29 76 my $self = shift;
77 my $rs = $self->$rs_meth( @_ );
78 return (wantarray ? $rs->all : $rs);
79 };
18788bf2 80
ddc0a6c8 81 my $add_meth_name = join '::', $class, $add_meth;
8f4b5c08 82 *$add_meth_name = subname $add_meth_name, sub {
303cf522 83 my $self = shift;
84 @_ > 0 or $self->throw_exception(
b3f358b5 85 "${add_meth} needs an object or hashref"
303cf522 86 );
87 my $source = $self->result_source;
88 my $schema = $source->schema;
89 my $rel_source_name = $source->relationship_info($rel)->{source};
90 my $rel_source = $schema->resultset($rel_source_name)->result_source;
91 my $f_rel_source_name = $rel_source->relationship_info($f_rel)->{source};
78060df8 92 my $f_rel_rs = $schema->resultset($f_rel_source_name)->search({}, $rel_attrs||{});
93
94 my $obj;
95 if (ref $_[0]) {
96 if (ref $_[0] eq 'HASH') {
577ef680 97 $obj = $f_rel_rs->find_or_create($_[0]);
78060df8 98 } else {
99 $obj = $_[0];
100 }
101 } else {
577ef680 102 $obj = $f_rel_rs->find_or_create({@_});
78060df8 103 }
104
3bd6e3e0 105 my $link_vals = @_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {};
6cc5b382 106 my $link = $self->search_related($rel)->new_result($link_vals);
303cf522 107 $link->set_from_related($f_rel, $obj);
108 $link->insert();
d7a58a29 109 return $obj;
4b3ab474 110 };
111
ddc0a6c8 112 my $set_meth_name = join '::', $class, $set_meth;
8f4b5c08 113 *$set_meth_name = subname $set_meth_name, sub {
b3f358b5 114 my $self = shift;
115 @_ > 0 or $self->throw_exception(
116 "{$set_meth} needs a list of objects or hashrefs"
117 );
f72f9361 118 my @to_set = (ref($_[0]) eq 'ARRAY' ? @{ $_[0] } : @_);
f1f9ee17 119 # if there is a where clause in the attributes, ensure we only delete
120 # rows that are within the where restriction
121 if ($rel_attrs && $rel_attrs->{where}) {
122 $self->search_related( $rel, $rel_attrs->{where},{join => $f_rel})->delete;
123 } else {
124 $self->search_related( $rel, {} )->delete;
125 }
126 # add in the set rel objects
ac36a402 127 $self->$add_meth($_, ref($_[1]) ? $_[1] : {}) for (@to_set);
b3f358b5 128 };
129
ddc0a6c8 130 my $remove_meth_name = join '::', $class, $remove_meth;
8f4b5c08 131 *$remove_meth_name = subname $remove_meth_name, sub {
132 my ($self, $obj) = @_;
133 $self->throw_exception("${remove_meth} needs an object")
134 unless blessed ($obj);
303cf522 135 my $rel_source = $self->search_related($rel)->result_source;
136 my $cond = $rel_source->relationship_info($f_rel)->{cond};
aa56106b 137 my ($link_cond, $crosstable) = $rel_source->_resolve_condition(
138 $cond, $obj, $f_rel, $f_rel
303cf522 139 );
aa56106b 140
141 $self->throw_exception(
142 "Custom relationship '$rel' does not resolve to a join-free condition, "
143 ."unable to use with the ManyToMany helper '$f_rel'"
144 ) if $crosstable;
145
303cf522 146 $self->search_related($rel, $link_cond)->delete;
4b3ab474 147 };
148
8973b6f1 149 }
150}
151
1521;