Class: AdditionalTags::Tags
- Inherits:
-
Object
- Object
- AdditionalTags::Tags
- Defined in:
- lib/additional_tags/tags.rb
Class Method Summary collapse
- .all_type_tags(klass, without_projects: false) ⇒ Object
- .available_tags(klass, **options) ⇒ Object
- .build_relation_tags(entries) ⇒ Object
- .entity_group_by(scope:, tags:, statuses: nil, sub_groups: nil, group_id_is_bool: false) ⇒ Object
- .merge(tag_name, tags_to_merge) ⇒ Object
- .remove_unused_tags ⇒ Object
-
.sort_tag_list(tag_list) ⇒ Object
sort tag_list alphabetically with special characters support.
-
.sort_tags(tags) ⇒ Object
sort tags alphabetically with special characters support.
- .subproject_sql(project) ⇒ Object
- .tag_to_joins(klass) ⇒ Object
- .visible_condition(user, **options) ⇒ Object
Class Method Details
.all_type_tags(klass, without_projects: false) ⇒ Object
50 51 52 53 54 |
# File 'lib/additional_tags/tags.rb', line 50 def (klass, without_projects: false) ActsAsTaggableOn::Tag.joins(tag_for_joins(klass, without_projects: without_projects)) .distinct .order(:name) end |
.available_tags(klass, **options) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/additional_tags/tags.rb', line 13 def (klass, **) user = [:user].presence || User.current scope = ActsAsTaggableOn::Tag.where({}) if [:project] scope = if Setting.display_subprojects_issues? scope.where subproject_sql([:project]) else scope.where projects: { id: [:project] } end end if [:permission] scope = scope.where tag_access([:permission], user, skip_pre_condition: [:skip_pre_condition]) elsif [:visible_condition] scope = scope.where klass.visible_condition(user) end # @TODO: this should be activated and replace next line # Additionals::EntityMethodsGlobal should be included for this # # if options[:name_like] # scope = scope.like_with_wildcard columns: "#{TAG_TABLE_NAME}.name", # value: options[:name_like], # wildcard: :both # end scope = scope.where "LOWER(#{TAG_TABLE_NAME}.name) LIKE ?", "%#{[:name_like].downcase}%" if [:name_like] scope = scope.where "#{TAG_TABLE_NAME}.name=?", [:name] if [:name] scope = scope.where "#{TAGGING_TABLE_NAME}.taggable_id!=?", [:exclude_id] if [:exclude_id] scope = scope.where [:where_field] => [:where_value] if [:where_field].present? && [:where_value] scope.select(table_columns([:sort_by])) .joins(tag_for_joins(klass, **.slice(:project_join, :project, :without_projects))) .group("#{TAG_TABLE_NAME}.id, #{TAG_TABLE_NAME}.name, #{TAG_TABLE_NAME}.taggings_count").having('COUNT(*) > 0') .order(build_order_sql([:sort_by], [:order])) end |
.build_relation_tags(entries) ⇒ Object
104 105 106 107 108 109 110 111 112 |
# File 'lib/additional_tags/tags.rb', line 104 def (entries) entries = Array entries return [] if entries.none? = entries.map(&:tags) .flatten! .uniq end |
.entity_group_by(scope:, tags:, statuses: nil, sub_groups: nil, group_id_is_bool: false) ⇒ Object
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/additional_tags/tags.rb', line 114 def entity_group_by(scope:, tags:, statuses: nil, sub_groups: nil, group_id_is_bool: false) counts = {} .each do |tag| values = { tag: tag, total: 0, total_sub_groups: 0, groups: [] } if statuses statuses.each do |status| group_id = status.first group = status.second values[group] = status_for_tag_value scope: scope, tag_id: tag.id, group_id: group_id, group_id_is_bool: group_id_is_bool values[:groups] << { id: group_id, group: group, count: values[group] } values[:total] += values[group] values[:total_sub_groups] += values[group] if sub_groups&.include? group_id end else values[:total] += status_for_tag_value scope: scope, tag_id: tag.id end values[:total_without_sub_groups] = values[:total] - values[:total_sub_groups] counts[tag.name] = values end counts end |
.merge(tag_name, tags_to_merge) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/additional_tags/tags.rb', line 71 def merge(tag_name, ) return if tag_name.blank? || .none? ActsAsTaggableOn::Tagging.transaction do tag = ActsAsTaggableOn::Tag.find_by(name: tag_name) || ActsAsTaggableOn::Tag.create(name: tag_name) # Update old tagging with new tag ActsAsTaggableOn::Tagging.where(tag_id: .map(&:id)).update_all tag_id: tag.id # remove old (merged) tags .reject { |t| t.id == tag.id }.each(&:destroy) # remove duplicate taggings dup_scope = ActsAsTaggableOn::Tagging.where tag_id: tag.id valid_ids = dup_scope.group(:tag_id, :taggable_id, :taggable_type, :tagger_id, :tagger_type, :context) .pluck(Arel.sql('MIN(id)')) dup_scope.where.not(id: valid_ids).destroy_all if valid_ids.any? # recalc count for new tag ActsAsTaggableOn::Tag.reset_counters tag.id, :taggings end end |
.remove_unused_tags ⇒ Object
66 67 68 69 |
# File 'lib/additional_tags/tags.rb', line 66 def ActsAsTaggableOn::Tag.where.missing(:taggings) .each(&:destroy) end |
.sort_tag_list(tag_list) ⇒ Object
sort tag_list alphabetically with special characters support
98 99 100 101 102 |
# File 'lib/additional_tags/tags.rb', line 98 def sort_tag_list(tag_list) tag_list.to_a.sort! do |a, b| ActiveSupport::Inflector.transliterate(a.name.downcase) <=> ActiveSupport::Inflector.transliterate(b.name.downcase) end end |
.sort_tags(tags) ⇒ Object
sort tags alphabetically with special characters support
91 92 93 94 95 |
# File 'lib/additional_tags/tags.rb', line 91 def () .sort! do |a, b| ActiveSupport::Inflector.transliterate(a.downcase) <=> ActiveSupport::Inflector.transliterate(b.downcase) end end |
.subproject_sql(project) ⇒ Object
143 144 145 146 |
# File 'lib/additional_tags/tags.rb', line 143 def subproject_sql(project) "#{Project.table_name}.lft >= #{project.lft} " \ "AND #{Project.table_name}.rgt <= #{project.rgt}" end |
.tag_to_joins(klass) ⇒ Object
56 57 58 59 60 61 62 63 64 |
# File 'lib/additional_tags/tags.rb', line 56 def tag_to_joins(klass) table_name = klass.table_name joins = ["JOIN #{TAGGING_TABLE_NAME} ON #{TAGGING_TABLE_NAME}.taggable_id = #{table_name}.id" \ " AND #{TAGGING_TABLE_NAME}.taggable_type = '#{klass}'"] joins << "JOIN #{TAG_TABLE_NAME} ON #{TAGGING_TABLE_NAME}.tag_id = #{TAG_TABLE_NAME}.id" joins end |
.visible_condition(user, **options) ⇒ Object
6 7 8 9 10 11 |
# File 'lib/additional_tags/tags.rb', line 6 def visible_condition(user, **) = [:permission] || :view_issue_tags skip_pre_condition = [:skip_pre_condition] || true tag_access , user, skip_pre_condition: skip_pre_condition end |