Sha256: e0fac10a193317af229a07efa41d65ec1a897a0f7d7ab0e491d10b32bdebabd8

Contents?: true

Size: 1.65 KB

Versions: 4

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

require 'base64'
require 'json'
require 'faraday'
require 'fintecture/utils/validation'
require 'fintecture/exceptions'
require 'fintecture/utils/date'
require 'fintecture/utils/constants'

module Fintecture
  module Ais
    class AccountHolders
      class << self
        # ------------ PUBLIC METHOD ------------
        def get(client, customer_id, remove_nulls)
          @client = client

          # Do the request
          _request customer_id, remove_nulls
        end

        private

        # ------------ REQUEST ------------
        def _request(customer_id, remove_nulls)
          # Get the url request
          url = _endpoint customer_id

          # Build uri params
          query_string = ''
          if remove_nulls
            params = {}
            params['remove_nulls'] = remove_nulls if remove_nulls
            query_string = "?#{params.map { |key, value| "#{key}=#{value}" }.join('&')}"
          end

          # Do connect request
          Fintecture::Faraday::Authentication::Connection.get(
            url: url + query_string,
            client: @client,
            custom_content_type: 'application/json',
            bearer: "Bearer #{@client.token}",
            secure_headers: true
          )
        end

        # ------------ API ENDPOINT ------------
        def _endpoint(customer_id)
          "#{_api_base_url}/#{Fintecture::Api::Endpoints::Ais::ACCOUNTHOLDERS}/#{customer_id}/accountholders"
        end

        # ------------ BASE URL ------------
        def _api_base_url
          Fintecture::Api::BaseUrl::FINTECTURE_API_URL[@client.environment.to_sym]
        end

      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fintecture-0.6.2 lib/fintecture/api/ais/account_holders.rb
fintecture-0.6.1 lib/fintecture/api/ais/account_holders.rb
fintecture-0.6.0 lib/fintecture/api/ais/account_holders.rb
fintecture-0.4.0 lib/fintecture/api/ais/account_holders.rb