debian-mirror-gitlab/app/models/concerns/ci/has_variable.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.3 KiB
Ruby
Raw Normal View History

2020-04-22 19:07:51 +05:30
# frozen_string_literal: true
module Ci
module HasVariable
extend ActiveSupport::Concern
included do
enum variable_type: {
env_var: 1,
file: 2
}
validates :key,
presence: true,
length: { maximum: 255 },
format: { with: /\A[a-zA-Z0-9_]+\z/,
message: "can contain only letters, digits and '_'." }
2021-04-17 20:07:23 +05:30
scope :by_key, -> (key) { where(key: key) }
2020-04-22 19:07:51 +05:30
scope :order_key_asc, -> { reorder(key: :asc) }
attr_encrypted :value,
mode: :per_attribute_iv_and_salt,
insecure_mode: true,
key: Settings.attr_encrypted_db_key_base,
algorithm: 'aes-256-cbc'
def key=(new_key)
super(new_key.to_s.strip)
end
end
def to_runner_variable
2022-04-04 11:22:00 +05:30
var_cache_key = to_runner_variable_cache_key
return uncached_runner_variable unless var_cache_key
::Gitlab::SafeRequestStore.fetch(var_cache_key) { uncached_runner_variable }
end
private
def uncached_runner_variable
2020-04-22 19:07:51 +05:30
{ key: key, value: value, public: false, file: file? }
end
2022-04-04 11:22:00 +05:30
def to_runner_variable_cache_key
return unless persisted?
variable_id = read_attribute(self.class.primary_key)
"#{self.class}#to_runner_variable:#{variable_id}:#{key}"
end
2020-04-22 19:07:51 +05:30
end
end