module OffsitePayments::Integrations::TwoCheckout

Public Class Methods

notification(post, options = {}) click to toggle source
# File lib/offsite_payments/integrations/two_checkout.rb, line 28
def self.notification(post, options = {})
  Notification.new(post, options)
end
return(query_string, options = {}) click to toggle source
# File lib/offsite_payments/integrations/two_checkout.rb, line 32
def self.return(query_string, options = {})
  Return.new(query_string, options)
end
service_url() click to toggle source
# File lib/offsite_payments/integrations/two_checkout.rb, line 7
def self.service_url
  case self.payment_routine
  when :multi_page
    'https://www.2checkout.com/checkout/purchase'
  when :single_page
    'https://www.2checkout.com/checkout/spurchase'
  else
    raise StandardError, "Integration payment routine set to an invalid value: #{self.payment_routine}"
  end
end
service_url=(service_url) click to toggle source
# File lib/offsite_payments/integrations/two_checkout.rb, line 18
def self.service_url=(service_url)
  # Note: do not use this method, it is here for backward compatibility
  # Use the payment_routine method to change service_url
  if service_url =~ /spurchase/
    self.payment_routine = :single_page
  else
    self.payment_routine = :multi_page
  end
end