I'm using the rails gem acts-as-taggable on, and am tagging posts on two contexts: tags and topics.

To return a hash of all the topics tags used so far for posts I can use the code:

 Post.tag_counts_on(:topics)

However, I have created a certain number of set topics tags, and if some of these topics tags aren't currently being used as tags on posts, then the code above doesn't return the said topics.

I am wondering if there is a way to return all the relevant tags based on context -- I was hoping for a solution along the lines of :

 topics = Tag.topics

To implement the solution, I created a Tag.rb model:

 class Tag < ActiveRecord::Base
   has_many :relationship_topics, :foreign_key => "topic_followed_id", :dependent => :destroy
   has_many :topic_followers, :through => :relationship_topics, :source => :topic_follower
 end

Here I have some code to allow for following topics, but nothing more.

Does anyone know how I could return all the tags based on context?

link|improve this question

feedback

2 Answers

I have never used acts-as-taggable-on but a quick browse through of the code suggests, you can do:

# to get all the tags with context topic with counts
ActsAsTaggableOn::Tagging.
    includes(:tag).
    where(:context => "topics").
    group("tags.name").
    select("tags.name, count(*) as count")

You should probably take a look at ActsAsTaggableOn::Tagging, ActsAsTaggableOn::Tag and the migration file in your db/migrations folder to figure out how you can go about it.

If you don't want the count, only the tag names:

tags = ActsAsTaggableOn::Tag.includes(:tagging).
           where("taggings.context = 'topics'").select("DISTINCS tags.*)

# usage
tags.each {|tag| puts tag.name}

I hope that answers your question.

link|improve this answer
hmm - still learning rails here -- how would I implement this code in a scope or something? – jay Aug 24 '11 at 3:18
What exactly do you want to achieve? (sidenote: don't create classes Tag and Tagging in your code, there can be conflicts from AATO) – rubish Aug 24 '11 at 3:48
Asked again because I missed part of the question because of unfamiliarity with the gem. – rubish Aug 24 '11 at 3:49
well - ideally, I'd want a Tag.topic to return a hash including all the topics tags.. only ActsAsTaggableOn::Tag and the relevant tags database doesn't store the context of the tag -- only taggings does. – jay Aug 24 '11 at 3:51
feedback

First of all, like rubish said, don't create the Tag class. AATO comes with a Tagging model and you can access that but for your case, you can return tags on context by using the following:

Post.all_tags_on(:topics)

Try it out in your console to ensure it works, but it should. Then you could specify further (if you need or want) by doing things like:

Post.find('ID').all_tags_on(:topics)
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.