up vote 0 down vote favorite
1
share [g+] share [fb]

I hope someone has already experienced this. Please help me, how can i solve this problem:

class Article < ActiveRecord::Base
  belongs_to :author
  belongs_to :publisher
  has_one :address, :through => :publisher
end

class Author < ActiveRecord::Base
  has_many :articles
  has_many :addresses, :through => :articles, :source => :address
end

I try to get "addresses" for "author", and i get this error in console:

ActiveRecord::HasManyThroughSourceAssociationMacroError: Invalid source reflection macro :has_one :through for has_many :addresses, :through => :articles.  Use :source to specify the source reflection.

but author.articles[0].address works fine.

I hope you give me advice, how can i solve it. Thanks.

link|improve this question

25% accept rate
feedback

3 Answers

AR does not like sourcing a has_many through a has_one. But you can easily get all the addresses with this method on Author:

def addresses
  articles.map {|article| article.address }
end
link|improve this answer
Thanks, i can also write something like this: articles.map(&:address). But the idea was to write this using relationships. I tried to do this: "has_many :addresses, :through => :publisher" in Article class, it didn't work. I came to conclusion, that AR not allow use has_many :through multiple times. I hope, i am wrong. – thaold Nov 8 '09 at 21:34
I don't think AR relationships can do it. This one line is not a bad solution though - it's very clear what the intent is, and you can wrap it into a method so it looks like an association. – Jonathan Julian Nov 9 '09 at 18:11
feedback

This solution also worked well for different relation types.

e.g. User.registrations.join_table.periods

but you -can't- apply active_record methods on what is mapped.

e.g. user.periods(:order => :date) e.g. user.periods.model etc..

thanks

link|improve this answer
feedback

I notice that:

class Article < ActiveRecord::Base
  belongs_to :author
  belongs_to :publisher
  has_one :address, :through => :publisher
end

does not have

  has_one_publisher
  has_one_address :through => :publisher

that might help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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