Sha256: 0e30ad6787c28fbf348d3de2fc8bc34d5e8672ee875bf38da7147a7910c6fdcc

Contents?: true

Size: 1.33 KB

Versions: 352

Compression:

Stored size: 1.33 KB

Contents

class Caboose::PaymentProcessors::Base
  
  # Gets a transaction object that obfuscates transaction info.  
  # Included in this info is the relay URL, which should be set to /checkout/payment-relay.  
  def get_authorize_transaction(order)
    return {}
  end
    
  # Gets the hidden form and hidden iframe to which the form will be submitted.  
  # Both are shown on the /checkout/billing page.                                                                                  
  def get_authorize_form(transaction)
    return ""
  end
  
  # Handles the relay during an authorize transaction.                                          
  # Should save the transaction information if a successful authorize.
  # Returns the response required to make the processor to redirect to /checkout/payment-receipt.
  def authorize_relay(params)
    return ""
  end
     
  # Called during the receipt of an authorize transaction.
  # Returns true of false indicating whether the authorize transaction was successful.
  def authorized?(params)
    return false
  end
  
  # Called if authorized? returns false.
  # Returns the error given by the processor.
  def authorize_error(params)
    return ""
  end
  
  # Captures funds for the given order.
  # Returns true or false indicating the success of the transaction.
  def capture(order)
    return false
  end
end

Version data entries

352 entries across 352 versions & 1 rubygems

Version Path
caboose-cms-0.7.3 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.2 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.1 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.36 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.35 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.34 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.33 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.32 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.31 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.30 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.29 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.28 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.27 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.26 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.25 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.24 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.23 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.22 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.21 app/models/caboose/payment_processors/base.rb
caboose-cms-0.6.20 app/models/caboose/payment_processors/base.rb