2015-09-25 12:07:36 +05:30
|
|
|
module Ci
|
|
|
|
class Variable < ActiveRecord::Base
|
|
|
|
extend Ci::Model
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
belongs_to :project, class_name: '::Project', foreign_key: :gl_project_id
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
validates_uniqueness_of :key, scope: :gl_project_id
|
2016-01-19 16:12:03 +05:30
|
|
|
validates :key,
|
|
|
|
presence: true,
|
|
|
|
length: { within: 0..255 },
|
|
|
|
format: { with: /\A[a-zA-Z0-9_]+\z/,
|
|
|
|
message: "can contain only letters, digits and '_'." }
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
scope :order_key_asc, -> { reorder(key: :asc) }
|
|
|
|
|
|
|
|
attr_encrypted :value,
|
2016-06-16 23:09:34 +05:30
|
|
|
mode: :per_attribute_iv_and_salt,
|
2016-08-24 12:49:21 +05:30
|
|
|
insecure_mode: true,
|
2016-06-16 23:09:34 +05:30
|
|
|
key: Gitlab::Application.secrets.db_key_base,
|
|
|
|
algorithm: 'aes-256-cbc'
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|