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.85 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.84 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.83 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.82 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.81 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.80 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.79 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.78 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.77 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.76 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.75 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.74 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.73 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.72 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.71 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.70 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.69 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.68 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.67 app/models/caboose/payment_processors/base.rb
caboose-cms-0.7.66 app/models/caboose/payment_processors/base.rb