summaryrefslogtreecommitdiff
path: root/app/models/concerns/services/data_fields.rb
blob: fd56af449bc88d0916883bf8dbd2e4a1bc3a6057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module Services
  module DataFields
    extend ActiveSupport::Concern

    included do
      belongs_to :integration, inverse_of: self.name.underscore.to_sym, foreign_key: :service_id

      delegate :activated?, to: :integration, allow_nil: true

      validates :integration, presence: true
    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
    end
  end
end