I would like to uniquely use owner tags in my app. My problem is that when I create / update a post via a form I only have f.text_field :tag_list which only updates the tags for the post but has no owner. If I use f.text_field :all_tags_list it doesn't know the attribute on create / update. I could add in my controller:

User.find(:first).tag( @post, :with => params[:post][:tag_list], :on => :tags )

but then I have duplicate tags, for post and for the owner tags. How can I just work with owner tags?

link|improve this question
I'm trying to achieve the same thing. Did you get anywhere with this? – tsdbrown Sep 23 '10 at 10:01
I've asked about this on github: github.com/mbleigh/acts-as-taggable-on/issues/issue/111/#issue/… – tsdbrown Sep 23 '10 at 10:53
1  
Have you thought about having an owner_tags model that belongs to Owner and Post? It would require a bit more legwork, but then you will know who owns the tags as well as which post they belong to. You would probably need to have attr_accessor :tag_list so that the form views still work and then get the model to split them out to the owner_tags model on create/udpate. – Adam21e Dec 20 '10 at 1:06
In the readme of acts_as_taggable_on it shows you how to declare ownership tags. I don't 'get' what you are trying to do. How can a tag have a post but no owner? – pjammer Jan 12 '11 at 3:53
feedback

3 Answers

Try using delegation:

class User < ActiveRecord::Base
  acts_as_taggable_on
end

class Post < ActiveRecord::Base
  delegate :tag_list, :tag_list=, :to => :user
end

So when you save your posts it sets the tag on the user object directly.

link|improve this answer
feedback

The answer proposed by customersure (tsdbrown on SO) on https://github.com/mbleigh/acts-as-taggable-on/issues/111 works for me

# In a taggable model:
before_save :set_tag_owner
def set_tag_owner
    # Set the owner of some tags based on the current tag_list
    set_owner_tag_list_on(account, :tags, self.tag_list)
    # Clear the list so we don't get duplicate taggings
    self.tag_list = nil
 end

# In the view:
<%= f.text_field :tag_list, :value => @obj.all_tags_list %>
link|improve this answer
This doesn't seem to be working for me in this example stackoverflow.com/questions/6933659/… – Simpleton Aug 9 '11 at 17:59
feedback

I used an observer to solve this. Something like:

in /app/models/tagging_observer.rb

class TaggingObserver < ActiveRecord::Observer
  observe ActsAsTaggableOn::Tagging

  def before_save(tagging)
    tagging.tagger = tagging.taggable.user if (tagging.taggable.respond_to?(:user) and tagging.tagger != tagging.taggable.user)
  end
end

Don't forget to declare your observer in application.rb

config.active_record.observers = :tagging_observer
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.