How can I prevent users from adding new tags which don't already exist in the tags db?

I want them to be able to add any tags that already exist to another model which they can fully edit, but not be able to create new tags if they don't yet exist?

I'm using declarative_auth so some users with permissions should be create to add whatever tags they want.

user.rb

acts_as_tagger

post.rb

acts_as_taggable_on :features

https://github.com/mbleigh/acts-as-taggable-on

UPDATE:

This seems to do it except I can't get the error message variable to work:

  validates :feature_list, :inclusion => { 
                           :in => SomeModel.tag_counts_on(:features).map(&:name), 
                           :message => "does not include {s}" }
link|improve this question

57% accept rate
feedback

2 Answers

I havn't used acts_as_taggable, but can you pass normal rails validations?

# LIKE is used for cross-database case-insensitivity
validates_inclusion_of :name => lambda { find(:all, :conditions => ["name LIKE ?", name]) }
link|improve this answer
i thought it worked but it doesn't ;-( – holden Feb 22 '11 at 9:41
@holden, sorry, this is beyond me. :( – Trip Feb 22 '11 at 15:06
feedback
up vote 2 down vote accepted

Could probably be more robust and rails validation like but this works:

validate :valid_feature_tag

  def valid_feature_tag
    invalid_tags = false
    feature_list.each do |tag|
      list = SomeModel.tag_counts_on(:features).map(&:name)
      unless list.include?(tag)
        invalid_tags = true  
      end
    end
    unless invalid_tags == false
      errors.add(:feature_list, 'cannot contain new tags, please suggest new tags to us')
      return false
    else
      return true
    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.