2020-04-29 11:09:58 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Ci
|
2021-06-29 05:08:03 -04:00
|
|
|
class InstanceVariable < ::Ci::BaseModel
|
2020-04-29 11:09:58 -04:00
|
|
|
extend Gitlab::Ci::Model
|
2020-05-25 08:08:23 -04:00
|
|
|
extend Gitlab::ProcessMemoryCache::Helper
|
2020-04-29 11:09:58 -04:00
|
|
|
include Ci::NewHasVariable
|
|
|
|
include Ci::Maskable
|
2020-06-09 11:08:05 -04:00
|
|
|
include Limitable
|
|
|
|
|
|
|
|
self.limit_name = 'ci_instance_level_variables'
|
|
|
|
self.limit_scope = Limitable::GLOBAL_SCOPE
|
2020-04-29 11:09:58 -04:00
|
|
|
|
|
|
|
alias_attribute :secret_value, :value
|
|
|
|
|
|
|
|
validates :key, uniqueness: {
|
2020-07-24 17:09:16 -04:00
|
|
|
message: -> (object, data) { _("(%{value}) has already been taken") }
|
2020-04-29 11:09:58 -04:00
|
|
|
}
|
|
|
|
|
2020-07-24 17:09:16 -04:00
|
|
|
validates :value, length: {
|
|
|
|
maximum: 10_000,
|
|
|
|
too_long: -> (object, data) do
|
|
|
|
_('The value of the provided variable exceeds the %{count} character limit')
|
|
|
|
end
|
2020-05-26 11:08:17 -04:00
|
|
|
}
|
|
|
|
|
2020-04-29 11:09:58 -04:00
|
|
|
scope :unprotected, -> { where(protected: false) }
|
2020-05-25 08:08:23 -04:00
|
|
|
|
|
|
|
after_commit { self.class.invalidate_memory_cache(:ci_instance_variable_data) }
|
2020-05-18 05:08:12 -04:00
|
|
|
|
|
|
|
class << self
|
|
|
|
def all_cached
|
|
|
|
cached_data[:all]
|
|
|
|
end
|
|
|
|
|
|
|
|
def unprotected_cached
|
|
|
|
cached_data[:unprotected]
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def cached_data
|
|
|
|
fetch_memory_cache(:ci_instance_variable_data) do
|
|
|
|
all_records = unscoped.all.to_a
|
|
|
|
|
|
|
|
{ all: all_records, unprotected: all_records.reject(&:protected?) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-04-29 11:09:58 -04:00
|
|
|
end
|
|
|
|
end
|