summaryrefslogtreecommitdiff
path: root/app/models/protected_tag.rb
blob: 5b2467daddc0f5bd5e892f1115283f31bf0951d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class ProtectedTag < ApplicationRecord
  include ProtectedRef

  validates :name, uniqueness: { scope: :project_id }

  protected_ref_access_levels :create

  def self.protected?(project, ref_name)
    return false if ref_name.blank?

    refs = Gitlab::SafeRequestStore.fetch("protected-tag:#{project.cache_key}:refs") do
      project.protected_tags.select(:name)
    end

    self.matching(ref_name, protected_refs: refs).present?
  end
end