2015-04-17 08:31:24 -04:00
|
|
|
require 'carrierwave/orm/activerecord'
|
|
|
|
|
|
|
|
class ProjectImportData < ActiveRecord::Base
|
2017-08-03 08:19:11 -04:00
|
|
|
belongs_to :project, inverse_of: :import_data
|
2016-04-11 05:13:51 -04:00
|
|
|
attr_encrypted :credentials,
|
|
|
|
key: Gitlab::Application.secrets.db_key_base,
|
|
|
|
marshal: true,
|
|
|
|
encode: true,
|
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
|
|
|
algorithm: 'aes-256-cbc'
|
2016-03-03 12:10:06 -05:00
|
|
|
|
2017-07-03 10:01:41 -04:00
|
|
|
serialize :data, JSON # rubocop:disable Cop/ActiveRecordSerialize
|
2015-04-17 08:31:24 -04:00
|
|
|
|
|
|
|
validates :project, presence: true
|
2016-04-01 06:04:41 -04:00
|
|
|
|
2016-04-05 09:41:15 -04:00
|
|
|
before_validation :symbolize_credentials
|
|
|
|
|
|
|
|
def symbolize_credentials
|
2016-04-11 05:13:51 -04:00
|
|
|
# bang doesn't work here - attr_encrypted makes it not to work
|
2016-04-06 04:36:30 -04:00
|
|
|
self.credentials = self.credentials.deep_symbolize_keys unless self.credentials.blank?
|
2016-04-01 06:04:41 -04:00
|
|
|
end
|
2015-04-17 08:31:24 -04:00
|
|
|
end
|