Sha256: 6f7556c8079b77f19eb987d4719a6974bfeed73301079c8d0e52712f6d921af6

Contents?: true

Size: 1.83 KB

Versions: 42

Compression:

Stored size: 1.83 KB

Contents

require 'active_merchant/billing/gateways/paypal/paypal_common_api'
require 'active_merchant/billing/gateways/paypal/paypal_express_response'
require 'active_merchant/billing/gateways/paypal_express_common'

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class PaypalDigitalGoodsGateway < PaypalExpressGateway
      self.test_redirect_url = 'https://www.sandbox.paypal.com/incontext'
      self.live_redirect_url = 'https://www.paypal.com/incontext'

      self.supported_countries = %w(AU CA CN FI GB ID IN IT MY NO NZ PH PL SE SG TH VN)
      self.homepage_url = 'https://www.x.com/community/ppx/xspaces/digital_goods'
      self.display_name = 'PayPal Express Checkout for Digital Goods'

      def redirect_url_for(token, options = {})
        options[:review] ||= false
        super
      end

      # GATEWAY.setup_purchase(100,
      #  :ip                => "127.0.0.1",
      #  :description       => "Test Title",
      #  :return_url        => "http://return.url",
      #  :cancel_return_url => "http://cancel.url",
      #  :items             => [ { :name => "Charge",
      #                            :number => "1",
      #                            :quantity => "1",
      #                            :amount   => 100,
      #                            :description => "Description",
      #                            :category => "Digital" } ] )
      def build_setup_request(action, money, options)
        requires!(options, :items)
        raise ArgumentError, 'Must include at least 1 Item' unless options[:items].length > 0

        options[:items].each do |item|
          requires!(item, :name, :number, :quantity, :amount, :description, :category)
          raise ArgumentError, "Each of the items must have the category 'Digital'" unless item[:category] == 'Digital'
        end

        super
      end
    end
  end
end

Version data entries

42 entries across 42 versions & 4 rubygems

Version Path
swiss-crm-activemerchant-1.0.13 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-crm-activemerchant-1.0.12 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.11 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.10 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.9 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.8 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.7 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.6 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.5 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.4 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
activemerchant-1.137.0 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.2 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
swiss-activemerchant-1.0.1 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
activemerchant-1.133.0 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
activemerchant-1.131.0 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
activemerchant-1.130.0 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
activemerchant-1.129.0 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
activemerchant-1.126.0 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
activemerchant-1.125.0 lib/active_merchant/billing/gateways/paypal_digital_goods.rb
archetype2142_activemerchant-1.124.0 lib/active_merchant/billing/gateways/paypal_digital_goods.rb