2016-04-25 15:55:15 -04:00
|
|
|
module DiscourseTagging
|
|
|
|
|
|
|
|
TAGS_FIELD_NAME = "tags"
|
|
|
|
TAGS_FILTER_REGEXP = /[<\\\/\>\#\?\&\s]/
|
|
|
|
|
|
|
|
# class Engine < ::Rails::Engine
|
|
|
|
# engine_name "discourse_tagging"
|
|
|
|
# isolate_namespace DiscourseTagging
|
|
|
|
# end
|
|
|
|
|
2016-05-04 14:02:47 -04:00
|
|
|
def self.tag_topic_by_names(topic, guardian, tag_names_arg)
|
|
|
|
if SiteSetting.tagging_enabled
|
|
|
|
tag_names = DiscourseTagging.tags_for_saving(tag_names_arg, guardian) || []
|
|
|
|
|
|
|
|
old_tag_names = topic.tags.map(&:name) || []
|
|
|
|
new_tag_names = tag_names - old_tag_names
|
|
|
|
removed_tag_names = old_tag_names - tag_names
|
|
|
|
|
|
|
|
# Protect staff-only tags
|
|
|
|
unless guardian.is_staff?
|
|
|
|
staff_tags = DiscourseTagging.staff_only_tags(new_tag_names)
|
|
|
|
if staff_tags.present?
|
|
|
|
topic.errors[:base] << I18n.t("tags.staff_tag_disallowed", tag: staff_tags.join(" "))
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
staff_tags = DiscourseTagging.staff_only_tags(removed_tag_names)
|
|
|
|
if staff_tags.present?
|
|
|
|
topic.errors[:base] << I18n.t("tags.staff_tag_remove_disallowed", tag: staff_tags.join(" "))
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if tag_names.present?
|
2016-05-30 16:37:06 -04:00
|
|
|
category = topic.category
|
|
|
|
tags = filter_allowed_tags(Tag.where(name: tag_names), guardian, { for_input: true, category: category }).to_a
|
|
|
|
|
|
|
|
if tags.size < tag_names.size && (category.nil? || category.tags.count == 0)
|
2016-05-04 14:02:47 -04:00
|
|
|
tag_names.each do |name|
|
2016-05-30 16:37:06 -04:00
|
|
|
unless Tag.where(name: name).exists?
|
|
|
|
tags << Tag.create(name: name)
|
|
|
|
end
|
2016-05-04 14:02:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
auto_notify_for(tags, topic)
|
|
|
|
|
|
|
|
topic.tags = tags
|
|
|
|
else
|
|
|
|
auto_notify_for([], topic)
|
|
|
|
topic.tags = []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2016-05-30 16:37:06 -04:00
|
|
|
# Options:
|
|
|
|
# term: a search term to filter tags by name
|
|
|
|
# for_input: result is for an input field, so only show permitted tags
|
|
|
|
# category: a Category to which the object being tagged belongs
|
|
|
|
def self.filter_allowed_tags(query, guardian, opts={})
|
|
|
|
term = opts[:term]
|
|
|
|
if term.present?
|
|
|
|
term.gsub!(/[^a-z0-9\.\-\_]*/, '')
|
|
|
|
term.gsub!("_", "\\_")
|
|
|
|
query = query.where('tags.name like ?', "%#{term}%")
|
|
|
|
end
|
|
|
|
|
|
|
|
if opts[:for_input]
|
|
|
|
unless guardian.is_staff?
|
|
|
|
staff_tag_names = SiteSetting.staff_tags.split("|")
|
|
|
|
query = query.where('tags.name NOT IN (?)', staff_tag_names) if staff_tag_names.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
if opts[:category] && opts[:category].tags.count > 0
|
|
|
|
query = query.where("tags.id IN (SELECT tag_id FROM category_tags WHERE category_id = ?)", opts[:category].id)
|
|
|
|
elsif CategoryTag.exists?
|
|
|
|
query = query.where("tags.id NOT IN (SELECT tag_id FROM category_tags)")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
query
|
|
|
|
end
|
|
|
|
|
2016-05-04 14:02:47 -04:00
|
|
|
def self.auto_notify_for(tags, topic)
|
|
|
|
TagUser.auto_watch_new_topic(topic, tags)
|
|
|
|
TagUser.auto_track_new_topic(topic, tags)
|
|
|
|
end
|
|
|
|
|
2016-04-25 15:55:15 -04:00
|
|
|
def self.clean_tag(tag)
|
|
|
|
tag.downcase.strip[0...SiteSetting.max_tag_length].gsub(TAGS_FILTER_REGEXP, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.staff_only_tags(tags)
|
|
|
|
return nil if tags.nil?
|
|
|
|
|
|
|
|
staff_tags = SiteSetting.staff_tags.split("|")
|
|
|
|
|
|
|
|
tag_diff = tags - staff_tags
|
|
|
|
tag_diff = tags - tag_diff
|
|
|
|
|
|
|
|
tag_diff.present? ? tag_diff : nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.tags_for_saving(tags, guardian)
|
|
|
|
|
|
|
|
return [] unless guardian.can_tag_topics?
|
|
|
|
|
2016-05-06 11:20:05 -04:00
|
|
|
return unless tags.present?
|
2016-04-25 15:55:15 -04:00
|
|
|
|
2016-05-30 16:37:06 -04:00
|
|
|
tag_names = tags.map {|t| clean_tag(t) }
|
|
|
|
tag_names.delete_if {|t| t.blank? }
|
|
|
|
tag_names.uniq!
|
2016-04-25 15:55:15 -04:00
|
|
|
|
|
|
|
# If the user can't create tags, remove any tags that don't already exist
|
|
|
|
unless guardian.can_create_tag?
|
2016-05-30 16:37:06 -04:00
|
|
|
tag_names = Tag.where(name: tag_names).pluck(:name)
|
2016-04-25 15:55:15 -04:00
|
|
|
end
|
|
|
|
|
2016-05-30 16:37:06 -04:00
|
|
|
return tag_names[0...SiteSetting.max_tags_per_topic]
|
2016-04-25 15:55:15 -04:00
|
|
|
end
|
|
|
|
|
2016-06-06 14:18:15 -04:00
|
|
|
def self.add_or_create_tags_by_name(taggable, tag_names_arg)
|
|
|
|
tag_names = DiscourseTagging.tags_for_saving(tag_names_arg, Guardian.new(Discourse.system_user)) || []
|
|
|
|
if taggable.tags.pluck(:name).sort != tag_names.sort
|
|
|
|
taggable.tags = Tag.where(name: tag_names).all
|
|
|
|
if taggable.tags.size < tag_names.size
|
|
|
|
new_tag_names = tag_names - taggable.tags.map(&:name)
|
|
|
|
new_tag_names.each do |name|
|
|
|
|
taggable.tags << Tag.create(name: name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: this is unused?
|
2016-04-25 15:55:15 -04:00
|
|
|
def self.notification_key(tag_id)
|
|
|
|
"tags_notification:#{tag_id}"
|
|
|
|
end
|
|
|
|
|
2016-06-06 14:18:15 -04:00
|
|
|
# TODO: this is unused?
|
2016-04-25 15:55:15 -04:00
|
|
|
def self.muted_tags(user)
|
|
|
|
return [] unless user
|
|
|
|
UserCustomField.where(user_id: user.id, value: TopicUser.notification_levels[:muted]).pluck(:name).map { |x| x[0,17] == "tags_notification" ? x[18..-1] : nil}.compact
|
|
|
|
end
|
|
|
|
end
|