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