Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to create relationships between a user, product and a photo-model. A user can add photos to a product. Therefore, a user has_many photos and a product has_many photos, but each photo belongs_to both a product and a user. How can I achieve this in Rails? As far as I understand a polymorphic association would only allow a photo to belong to a product or a user. Do I have to instead using separate has_many_through relationships for the user-photo and product-photo relationships?

share|improve this question

2 Answers

up vote 2 down vote accepted

You can have multiple belongs_to attributes within the same model. Essentially the Model that is marked as belongs_to will hold a foreign key to the Model that has been marked with has_many.

class MyModel < ActiveRecord::Base

  belongs_to :other_model1
  belongs_to :other_model2

end

If you want to use polymorphic associates as you mentioned below you could do that along these lines

class Photos < ActiveRecord::Base
  belongs_to :imageable, :polymorphic => true
end

class Users < ActiveRecord::Base
  has_many :photos, :as => :imageable
end

class Product < ActiveRecord::Base
  has_many :photos, :as => :imageable
end

In this case you can create the relationship simply by adding the has_many :phots, :as => :imageable attribute without having to revisit the Photos class.

share|improve this answer
Thanks, that clears my confusion. – graphmeter Nov 19 '12 at 16:57

This should work in your situation:

class Product < ActiveRecord::Base
  has_many :photos
end

class User < ActiveRecord::Base
  has_many :photos
end

class Photo < ActiveRecord::Base
  belongs_to :user
  belogns_to :product
end

This also means that a User has many Products through Photos (& vice-versa):

class Product < ActiveRecord::Base
  has_many :photos
  has_many :users, :through => :photos
end

class User < ActiveRecord::Base
  has_many :photos
  has_many :products, :through => :photos
end

So you could use @user.products and @product.users

share|improve this answer
Thanks, that is very useful. So, a polymorphic association could not be used to achieve the same effect? – graphmeter Nov 19 '12 at 17:04
Yes; you could also use a polymorphic association. I have updated my answer above to show how this could be done as well. – bigtunacan Nov 19 '12 at 17:12
You don't need a Polymorphic association. It is kind of complicated to work with polymorphic models. If you are not familiar with them, I advise you to use the method I posted – MrYoshiji Nov 19 '12 at 17:17
Ok, will probably go with non-polymorphic solution. However, if a User adds a Photo, how would one in practise create the association to the Product? By introducing the right product_id to the photo object? – graphmeter Nov 19 '12 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.