Sha256: 0db09cd43b0b3865c3eefedd9ce9a29ba7f7fe3ab414b7a7edded9db29fa3dae
Contents?: true
Size: 1.82 KB
Versions: 4
Compression:
Stored size: 1.82 KB
Contents
# frozen_string_literal: true require 'digest' module Fawry module Requests module CreateCardTokenRequest def fire_create_card_token_request fawry_api_response = Connection.post(request[:path], request[:params], request[:body], request[:options]) response_body = JSON.parse(fawry_api_response.body) FawryResponse.new(response_body) end private def build_create_card_token_request { path: 'cards/cardToken', params: {}, body: create_card_token_request_transformed_params, options: options } end def create_card_token_request @create_card_token_request ||= params end def create_card_token_request_transformed_params { merchantCode: fawry_merchant_code, customerProfileId: create_card_token_request[:customer_profile_id], customerMobile: create_card_token_request[:customer_mobile], customerEmail: create_card_token_request[:customer_email], cardNumber: create_card_token_request[:card_number], expiryYear: create_card_token_request[:expiry_year], expiryMonth: create_card_token_request[:expiry_month], cvv: create_card_token_request[:cvv] }.compact end def fawry_merchant_code Fawry.configuration.fawry_merchant_code || ENV.fetch('FAWRY_MERCHANT_CODE') { request_params[:merchant_code] } end def fawry_secure_key Fawry.configuration.fawry_secure_key || ENV.fetch('FAWRY_SECURE_KEY') { request_params[:fawry_secure_key] } end def validate_card_token_params! contract = Contracts::CreateCardTokenRequestContract.new.call(create_card_token_request) raise InvalidFawryRequestError, contract.errors.to_h if contract.failure? end end end end
Version data entries
4 entries across 4 versions & 1 rubygems