Module: ActsAsTaggableOn::Taggable::Ownership::InstanceMethods

Defined in:
lib/acts_as_taggable_on/acts_as_taggable_on/ownership.rb

Instance Method Summary collapse

Instance Method Details

#cached_owned_tag_list_on(context) ⇒ Object



42
43
44
45
# File 'lib/acts_as_taggable_on/acts_as_taggable_on/ownership.rb', line 42

def cached_owned_tag_list_on(context)
  variable_name = "@owned_#{context}_list"
  cache = instance_variable_get(variable_name) || instance_variable_set(variable_name, {})
end

#owner_tag_list_on(owner, context) ⇒ Object



47
48
49
50
51
52
53
54
# File 'lib/acts_as_taggable_on/acts_as_taggable_on/ownership.rb', line 47

def owner_tag_list_on(owner, context)
  add_custom_context(context)

  cache = cached_owned_tag_list_on(context)
  cache.delete_if { |key, value| key.id == owner.id && key.class == owner.class }
  
  cache[owner] ||= ActsAsTaggableOn::TagList.new(*owner_tags_on(owner, context).map(&:name))
end

#owner_tags_on(owner, context) ⇒ Object



32
33
34
35
36
37
38
39
40
# File 'lib/acts_as_taggable_on/acts_as_taggable_on/ownership.rb', line 32

def owner_tags_on(owner, context)
  if owner.nil?
    base_tags.where([%(#{ActsAsTaggableOn::Tagging.table_name}.context = ?), context.to_s]).all                    
  else
    base_tags.where([%(#{ActsAsTaggableOn::Tagging.table_name}.context = ? AND
                       #{ActsAsTaggableOn::Tagging.table_name}.tagger_id = ? AND
                       #{ActsAsTaggableOn::Tagging.table_name}.tagger_type = ?), context.to_s, owner.id, owner.class.to_s]).all          
  end
end

#reload(*args) ⇒ Object



65
66
67
68
69
70
71
# File 'lib/acts_as_taggable_on/acts_as_taggable_on/ownership.rb', line 65

def reload(*args)
  self.class.tag_types.each do |context|
    instance_variable_set("@owned_#{context}_list", nil)
  end

  super(*args)
end

#save_owned_tagsObject



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/acts_as_taggable_on/acts_as_taggable_on/ownership.rb', line 73

def save_owned_tags
  tagging_contexts.each do |context|
    cached_owned_tag_list_on(context).each do |owner, tag_list|
      # Find existing tags or create non-existing tags:
      tag_list = ActsAsTaggableOn::Tag.find_or_create_all_with_like_by_name(tag_list.uniq)            

      owned_tags = owner_tags_on(owner, context)              
      old_tags   = owned_tags - tag_list
      new_tags   = tag_list   - owned_tags
    
      # Find all taggings that belong to the taggable (self), are owned by the owner, 
      # have the correct context, and are removed from the list.
      old_taggings = ActsAsTaggableOn::Tagging.where(:taggable_id => id, :taggable_type => self.class.base_class.to_s,
                                                     :tagger_type => owner.class.to_s, :tagger_id => owner.id,
                                                     :tag_id => old_tags, :context => context).all
    
      if old_taggings.present?
        # Destroy old taggings:
        ActsAsTaggableOn::Tagging.destroy_all(:id => old_taggings.map(&:id))
      end

      # Create new taggings:
      new_tags.each do |tag|
        taggings.create!(:tag_id => tag.id, :context => context.to_s, :tagger => owner, :taggable => self)
      end
    end
  end
  
  true
end

#set_owner_tag_list_on(owner, context, new_list) ⇒ Object



56
57
58
59
60
61
62
63
# File 'lib/acts_as_taggable_on/acts_as_taggable_on/ownership.rb', line 56

def set_owner_tag_list_on(owner, context, new_list)
  add_custom_context(context)
  
  cache = cached_owned_tag_list_on(context)
  cache.delete_if { |key, value| key.id == owner.id && key.class == owner.class }

  cache[owner] = ActsAsTaggableOn::TagList.from(new_list)
end