I'm writing a mentorship program for our church in rails (im still farily new to rails)..
And i need to model this..
contact
has_one :father, :class_name => "Contact"
has_one :mother, :class_name => "Contact"
has_many :children, :class_name => "Contact"
has_many :siblings, :through <Mother and Father>, :source => :children
So basically an objects "siblings" needs to map all the children from both the father and mother not including the object itself..
Is this possible?
Thanks
Daniel
It's funny how questions that appear simple can have complex answers. In this case, implementing the reflexive parent/child relationship is fairly simple, but adding the father/mother and siblings relationships creates a few twists.
To start, we create tables to hold the parent-child relationships. Relationship has two foreign keys, both pointing at Contact:
In the Relationship model we point the father and mother back to Contact:
and define the inverse associations in Contact:
Now a relationship can be created:
This is not so great, what we really want is to build the relationship in a single call:
so we can do:
To find the children of a Contact, add a scope to Contact and (for convenience) an instance method:
Siblings are the tricky part. We can leverage the Contact.children method and manipulate the results:
This is non-optimal, since father.children and mother.children will overlap (thus the need for
uniq
), and could be done more efficiently by working out the necessary SQL (left as an exercise :)), but keeping in mind thatself.father.children
andself.mother.children
won't overlap in the case of half-siblings (same father, different mother), and a Contact might not have a father or a mother.Here are the complete models and some specs: