Module: OffsitePayments::Integrations::TwoCheckout

Defined in:
lib/offsite_payments/integrations/two_checkout.rb

Defined Under Namespace

Classes: Helper, Notification, Return

Class Method Summary collapse

Class Method Details

.notification(post, options = {}) ⇒ Object



28
29
30
# File 'lib/offsite_payments/integrations/two_checkout.rb', line 28

def self.notification(post, options = {})
  Notification.new(post, options)
end

.return(query_string, options = {}) ⇒ Object



32
33
34
# File 'lib/offsite_payments/integrations/two_checkout.rb', line 32

def self.return(query_string, options = {})
  Return.new(query_string, options)
end

.service_urlObject



7
8
9
10
11
12
13
14
15
16
# 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) ⇒ Object



18
19
20
21
22
23
24
25
26
# 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