Sha256: 6b274581a6394f4e7a3c4506afa531c5a3c374f1cd80df99aa98a2c9adf6a88d

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

require 'dry-validation'

module Fawry
  module Contracts
    class RefundRequestContract < Dry::Validation::Contract
      params do
        required(:reference_number).value(:string)
        required(:refund_amount).value(:decimal)
        optional(:merchant_code).value(:string)
        optional(:fawry_secure_key).value(:string)
        optional(:reason).value(:string)
      end

      rule(:fawry_secure_key) do
        if Fawry.configuration.fawry_secure_key.nil? && ENV['FAWRY_SECURE_KEY'].nil? && value.nil?
          key(:fawry_secure_key).failure('fawry secure key is required in either Fawry.configuration or'\
            'as an environment variable (FAWRY_SECURE_KEY), or as an argument to this method')
        end
      end

      rule(:merchant_code) do
        if Fawry.configuration.fawry_merchant_code.nil? && ENV['FAWRY_MERCHANT_CODE'].nil? && value.nil?
          key(:merchant_code).failure('fawry merchant code is required in either Fawry.configuration or'\
            'as an environment variable (FAWRY_MERCHANT_CODE), or as an argument to this method')
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fawry-1.3.1 lib/fawry/contracts/refund_request_contract.rb
fawry-1.3.0 lib/fawry/contracts/refund_request_contract.rb