Multiple has_many_polymorphs in one model - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T10:35:58Zhttp://stackoverflow.com/feeds/question/983225http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/983225/multiple-hasmanypolymorphs-in-one-model0Multiple has_many_polymorphs in one modelTamer Salama2009-06-11T19:46:58Z2009-06-27T14:26:20Z
<p>I'm trying to define multiple polymorphic relations (<code>has_many_polymorphs plugin</code>) from a single parent to same children.</p>
<p>Note has many viewers<br/>
Note has many editors<br/>
Viewers could be either Users or Groups<br/>
Editors could be either Users or Groups<br/>
Permission is the association model with <code>note_id</code>, <code>viewer_id</code>, <code>viewer_type</code>, <code>editor_id</code>, <code>editor_type</code> fields</p>
<p>Everything works out as expect as long as I have only one has_many_polymorphs relation defined in Note model</p>
<pre><code>class User < ActiveRecord::Base; end
class Group < ActiveRecord::Base; end
class Note < ActiveRecord::Base
has_many_polymorphs :viewers, :through => :permissions, :from => [:users, :groups]
end
class Permission < ActiveRecord::Base
belongs_to :note
belongs_to :viewer, :polymorphic => true
end
Note.first.viewers << User.first # => [#<User id: 1, ....>]
Note.first.viewers << Group.first # => [#<User id: 1, ....>, #<Group ...>]
Note.first.viewers.first # => #<User ....>
Note.first.viewers.second # => #<Group ....>
</code></pre>
<p>Now, problems start to appear when I add the second relation</p>
<pre><code>class Note < ActiveRecord::Base
has_many_polymorphs :viewers, :through => :permissions, :from => [:users, :groups]
has_many_polymorphs :editors, :through => :permissions, :from => [:users, :groups]
end
class Permission < ActiveRecord::Base
belongs_to :note
belongs_to :viewer, :polymorphic => true
belongs_to :editor, :polymorphic => true
end
Note.first.viewers << User.first # => [#<User id: ....>]
# >>>>>>>>
Note.first.editors << User.first
NoMethodError: You have a nil object when you didn't expect it!
The error occurred while evaluating nil.constantize
... vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/base.rb:18:in `instantiate'
</code></pre>
<p><hr /></p>
<p>I've tried refining the definition of <code>has_many_polymorphs</code> but it didn't work. Not even with an STI model for <code>ViewPermission < Permission</code>, and <code>EditPermission < Permission</code>.</p>
<p>Any thoughts / workarounds / issue pointers are appreciated.</p>
<p>Rails 2.3.0</p>
http://stackoverflow.com/questions/983225/multiple-hasmanypolymorphs-in-one-model/983295#9832950Answer by Ryan Oberoi for Multiple has_many_polymorphs in one modelRyan Oberoi2009-06-11T19:59:34Z2009-06-11T21:21:50Z<p>Dont you need to add </p>
<pre><code>has_many :permissions
</code></pre>
<p>to your Note.
FYI. I used <code>has_many_polymorphs</code> once but then dropped it, it wasn't working as expected. </p>
<p>Can you post the schema that you are using for Permission? My guess is the root of the problem lies there, you need to have multiple type, id pairs in the schema since you have two different <code>belongs_to</code> in the definition.</p>
<p>Edit:</p>
<p>I see you have posted the question on github as well. Not sure if you tried using the Double sided polymorphism. You probably have... like I said, I was not impressed by this plugin, as it brought in some instability when I used it.</p>
<pre><code>== Double-sided polymorphism
Double-sided relationships are defined on the join model:
class Devouring < ActiveRecord::Base
belongs_to :guest, :polymorphic => true
belongs_to :eaten, :polymorphic => true
acts_as_double_polymorphic_join(
:guests =>[:dogs, :cats],
:eatens => [:cats, :birds]
)
end
Now, dogs and cats can eat birds and cats. Birds can't eat anything (they aren't <tt>guests</tt>) and dogs can't be
eaten by anything (since they aren't <tt>eatens</tt>). The keys stand for what the models are, not what they do.
</code></pre>
http://stackoverflow.com/questions/983225/multiple-hasmanypolymorphs-in-one-model/1052908#10529080Answer by Steve DeWald for Multiple has_many_polymorphs in one modelSteve DeWald2009-06-27T14:26:20Z2009-06-27T14:26:20Z<p>@Tamer</p>
<p>I was getting the same error. The problem was that <code>has_many_polymorphs</code> creates the record in the join table using mass association and was failing. I added attr_accessible <code>:note_id</code>, <code>:editor_id</code>, and <code>:editor_type</code> to my <code>Permission</code> class and it worked afterwards. (Note: I substituted your model names for mine.)</p>
<p>I haven't looked too much into it, but I'd be curious if there's a way to alter this behavior. I'm fairly new to this framework and letting anything sensitive (like an Order-Payment association) be mass-assigned seems like asking to shoot myself in the foot. Let me know if this fixed your problem, and if you figure anything else out.</p>
<p>Best,<br />
Steve</p>