debian-mirror-gitlab/lib/gitlab/pages/cache_control.rb
2022-08-13 15:12:31 +05:30

31 lines
708 B
Ruby

# frozen_string_literal: true
module Gitlab
module Pages
class CacheControl
CACHE_KEY_FORMAT = 'pages_domain_for_%{type}_%{id}'
attr_reader :cache_key
class << self
def for_project(project_id)
new(type: :project, id: project_id)
end
def for_namespace(namespace_id)
new(type: :namespace, id: namespace_id)
end
end
def initialize(type:, id:)
raise(ArgumentError, "type must be :namespace or :project") unless %i[namespace project].include?(type)
@cache_key = CACHE_KEY_FORMAT % { type: type, id: id }
end
def clear_cache
Rails.cache.delete(cache_key)
end
end
end
end