1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# frozen_string_literal: true
class LabelLink < ApplicationRecord
include BulkInsertSafe
include Importable
include FromUnion
belongs_to :target, polymorphic: true, inverse_of: :label_links # rubocop:disable Cop/PolymorphicAssociations
belongs_to :label
# rubocop:disable Rails/InverseOf -- needed for unified association
belongs_to :own_label, foreign_key: :label_id, class_name: 'Label'
# rubocop:enable Rails/InverseOf
validates :target, presence: true, unless: :importing?
validates :label, presence: true, unless: :importing?
scope :for_target, ->(target_id, target_type) { where(target_id: target_id, target_type: target_type) }
# Example: Issues has at least one label within a project
# > Issue.where(project_id: 100) # or any scope on issues
# > .where(LabelLink.by_target_for_exists_query('Issue', Issue.arel_table[:id]).arel.exists)
scope :by_target_for_exists_query, ->(target_type, arel_join_column, label_ids = nil) do
relation = LabelLink
.where(target_type: target_type)
.where(arel_table['target_id'].eq(arel_join_column)).select("1")
relation = relation.where(label_id: label_ids) if label_ids
relation
end
end
LabelLink.prepend_mod_with('LabelLink')
|