Sha256: ceb94e97f5139751ac55751448fe1f1319c575f9c15f7b02659c04d3da838949

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 KB

Contents

require 'active_merchant/billing/gateways/modern_payments_cim'

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class ModernPaymentsGateway < Gateway
      self.supported_countries = ModernPaymentsCimGateway.supported_countries
      self.supported_cardtypes = ModernPaymentsCimGateway.supported_cardtypes
      self.homepage_url = ModernPaymentsCimGateway.homepage_url
      self.display_name = ModernPaymentsCimGateway.display_name

      self.abstract_class = true

      def initialize(options = {})
        requires!(options, :login, :password)
        super
      end

      def purchase(money, credit_card, options = {})
        customer_response = cim.create_customer(options)
        return customer_response unless customer_response.success?

        customer_id = customer_response.params['create_customer_result']

        card_response = cim.modify_customer_credit_card(customer_id, credit_card)
        return card_response unless card_response.success?

        cim.authorize_credit_card_payment(customer_id, money)
      end

      private
      def cim
        @cim ||= ModernPaymentsCimGateway.new(@options)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activemerchant-1.83.0 lib/active_merchant/billing/gateways/modern_payments.rb
activemerchant-1.82.0 lib/active_merchant/billing/gateways/modern_payments.rb
activemerchant-1.81.0 lib/active_merchant/billing/gateways/modern_payments.rb
activemerchant-1.80.0 lib/active_merchant/billing/gateways/modern_payments.rb