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

I am trying to create a model for a ruby on rails project that builds relationships between different words. Think of it as a dictionary where the "Links" between two words shows that they can be used synonymously. My DB looks something like this:

Words
----
id

Links
-----
id
word1_id
word2_id

How do I create a relationship between two words, using the link-table. I've tried to create the model but was not sure how to get the link-table into play:

class Word < ActiveRecord::Base
  has_many :synonyms, :class_name => 'Word', :foreign_key => 'word1_id'
end
link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

In general, if your association has suffixes such as 1 and 2, it's not set up properly. Try this for the Word model:

class Word < ActiveRecord::Base
  has_many :links, :dependent => :destroy
  has_many :synonyms, :through => :links
end

Link model:

class Link < ActiveRecord::Base
  belongs_to :word
  belongs_to :synonym, :class_name => 'Word'

  # Creates the complementary link automatically - this means all synonymous
  # relationships are represented in @word.synonyms
  def after_save_on_create
    if find_complement.nil?
      Link.new(:word => synonym, :synonym => word).save
    end
  end

  # Deletes the complementary link automatically.
  def after_destroy
    if complement = find_complement
      complement.destroy
    end
  end

  protected

  def find_complement
    Link.find(:first, :conditions => 
      ["word_id = ? and synonym_id = ?", synonym.id, word.id])
  end
end

Tables:

Words
----
id

Links
-----
id
word_id
synonym_id
link|improve this answer
The automatic creation of the complementary link is really useful for keeping the connections valid. While I agree that it's not good style to use numbers as suffixes, replacing them with "word_id" & "synonymous_word_id" is just semantics, no? Thank you for your thorough answer. – sdfx Mar 8 '09 at 23:02
You can keep it as word_1 and word_2 in the links table if you want - what I meant was if you have two associations with numeric suffixes, it usually means you should refactor. My code takes you from two sets of associations to one. – Sarah Mei Mar 8 '09 at 23:51
has_many :synonyms won't work because in your link model you're not defining any association called :synonym. Please also break different models into different code sections. – Ryan Bigg Mar 9 '09 at 2:35
This is a good way to do it, probably has some advantages over mine. +1 – Tilendor Mar 9 '09 at 17:35
Nice catch on the association naming, Radar. Fixed, and reads better too. – Sarah Mei Mar 9 '09 at 18:07
feedback

Hmm, this is a tricky one. That is because synonyms can be from either the word1 id or the word2 id or both.

Anyway, when using a Model for the link table, you must use the :through option on the Models that use the Link Table

class Word < ActiveRecord::Base
  has_many :links1, :class_name => 'Link', :foreign_key => 'word1_id'
  has_many :synonyms1, :through => :links1, :source => :word
  has_many :links2, :class_name => 'Link', :foreign_key => 'word2_id'
  has_many :synonyms2, :through => :links2, :source => :word
end

That should do it, but now you must check two places to get all the synonyms. I would add a method that joined these, inside class Word.

def synonyms
  return synonyms1 || synonyms2
end

||ing the results together will join the arrays and eliminate duplicates between them.

*This code is untested.

link|improve this answer
Thanks, this is really an elegant solution to the synonym-problem. – sdfx Mar 8 '09 at 18:00
You're Welcome :) – Tilendor Mar 8 '09 at 18:21
The elegance is lost on me... You're creating two links when you only need one. Check my answer. – Ryan Bigg Mar 9 '09 at 2:57
ok, maybe not "elegant", but it's easy to implement with existing data. But I agree that the solution of Sarah is the way to go. – sdfx Mar 9 '09 at 18:20
feedback

Word model:

class Word < ActiveRecord::Base
  has_many :links, :dependent => :destroy
  has_many :synonyms, :through => :links

  def link_to(word)
    synonyms << word
    word.synonyms << self
  end
end

Setting :dependent => :destroy on the has_many :links will remove all the links associated with that word before destroying the word record.

Link Model:

class Link < ActiveRecord::Base
  belongs_to :word
  belongs_to :synonym, :class_name => "Word"
end

Assuming you're using the latest Rails, you won't have to specify the foreign key for the belongs_to :synonym. If I recall correctly, this was introduced as a standard in Rails 2.

Word table:

name

Link table:

word_id
synonym_id

To link an existing word as a synonym to another word:

word = Word.find_by_name("feline")
word.link_to(Word.find_by_name("cat"))

To create a new word as a synonym to another word:

word = Word.find_by_name("canine")
word.link_to(Word.create(:name => "dog"))
link|improve this answer
I think that your issue has one problem: word = Word.find_by_name("feline") word.synonyms << Word.find_by_name("cat") Makes cat a synonym to feline, but not vice versa. You either need to check both columns in the link table, like mine, or create a compliment like Sarah. – Tilendor Mar 9 '09 at 17:38
@Tilendor saw that too. If you add the creation of the compliment, this solution should be exactly like the corrected version of Sarah – sdfx Mar 9 '09 at 18:13
Now to link the two words together use the link_to method defined on the word model. – Ryan Bigg Mar 10 '09 at 4:05
feedback

I'd view it from a different angle; since all the words are synonymous, you shouldn't promote any one of them to be the "best". Try something like this:

class Concept < ActiveRecord::Base
  has_many :words
end

class Word < ActiveRecord::Base
  belongs_to :concept

  validates_presence_of :text
  validates_uniqueness_of :text, :scope => :concept_id

  # A sophisticated association would be better than this.
  def synonyms
    concept.words - [self]
  end
end

Now you can do

word = Word.find_by_text("epiphany")
word.synonyms
link|improve this answer
While this might be the conceptual cleanest way of doing it, you run into problems when you are linking existing words. E.g. if wordA & B are synonymous and wordC & wordD also, and now you want to connect wordA & wordD. You have two different "concepts" which you need to combine. – sdfx Mar 8 '09 at 22:34
If A == B, C == D, and A == D, then A == B == C == D. Equality is transitive, so they should all share a single concept. This is an idealized example, since words can have more than one meaning, but that just means that you need a many-to-many relationship between words and concepts. – Daniel Schierbeck Mar 9 '09 at 22:20
I suspect the reciprocal links approach is better for most situations, but this is an interesting approach, thanks for posting it. – Jason Watkins Jul 1 '09 at 20:31
feedback

Trying to implement Sarah's solution I came across 2 issues:

Firstly, the solution doesn't work when wanting to assign synonyms by doing

word.synonyms << s1 or word.synonyms = [s1,s2]

Also deleting synonyms indirectly doesn't work properly. This is because Rails doesn't trigger the after_save_on_create and after_destroy callbacks when it automatically creates or deletes the Link records. At least not in Rails 2.3.5 where I tried it on.

This can be fixed by using :after_add and :after_remove callbacks in the Word model:

has_many :synonyms, :through => :links,
                    :after_add => :after_add_synonym,
                    :after_remove => :after_remove_synonym

Where the callbacks are Sarah's methods, slightly adjusted:

def after_add_synonym synonym
  if find_synonym_complement(synonym).nil?
    Link.new(:word => synonym, :synonym => self).save
  end
end

def after_remove_synonym synonym
  if complement = find_synonym_complement(synonym)
    complement.destroy
  end
end

protected

def find_synonym_complement synonym
  Link.find(:first, :conditions => ["word_id = ? and synonym_id = ?", synonym.id, self.id])
end

The second issue of Sarah's solution is that synonyms that other words already have when linked together with a new word are not added to the new word and vice versa. Here is a small modification that fixes this problem and ensures that all synonyms of a group are always linked to all other synonyms in that group:

def after_add_synonym synonym
  for other_synonym in self.synonyms
    synonym.synonyms << other_synonym if other_synonym != synonym and !synonym.synonyms.include?(other_synonym)
  end
  if find_synonym_complement(synonym).nil?
    Link.new(:word => synonym, :synonym => self).save
  end
end 
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.