2020-04-22 19:07:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
module Integrations
|
|
|
|
module BaseDataFields
|
2020-04-22 19:07:51 +05:30
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
LEGACY_FOREIGN_KEY_NAME = %w(
|
|
|
|
Integrations::IssueTrackerData
|
|
|
|
Integrations::JiraTrackerData
|
|
|
|
).freeze
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
included do
|
2021-09-04 01:27:46 +05:30
|
|
|
# TODO: Once we rename the tables we can't rely on `table_name` anymore.
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/331953
|
2022-07-23 23:45:48 +05:30
|
|
|
belongs_to :integration, inverse_of: self.table_name.to_sym, foreign_key: foreign_key_name
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
validates :integration, presence: true
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
class_methods do
|
|
|
|
def encryption_options
|
|
|
|
{
|
|
|
|
key: Settings.attr_encrypted_db_key_base_32,
|
|
|
|
encode: true,
|
|
|
|
mode: :per_attribute_iv,
|
|
|
|
algorithm: 'aes-256-gcm'
|
|
|
|
}
|
|
|
|
end
|
2022-07-23 23:45:48 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Older data field models use the `service_id` foreign key for the
|
|
|
|
# integration association.
|
|
|
|
def foreign_key_name
|
|
|
|
return :service_id if self.name.in?(LEGACY_FOREIGN_KEY_NAME)
|
|
|
|
|
|
|
|
:integration_id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def activated?
|
|
|
|
!!integration&.activated?
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_database_hash
|
|
|
|
as_json(
|
|
|
|
only: self.class.column_names
|
|
|
|
).except('id', 'service_id', 'integration_id', 'created_at', 'updated_at')
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|