Class: OffsitePayments::Return

Inherits:
Object
  • Object
show all
Defined in:
lib/offsite_payments/return.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(query_string, options = {}) ⇒ Return

Returns a new instance of Return.



6
7
8
9
# File 'lib/offsite_payments/return.rb', line 6

def initialize(query_string, options = {})
  @params  = parse(query_string)
  @options = options
end

Instance Attribute Details

#notificationObject (readonly)

Returns the value of attribute notification.



4
5
6
# File 'lib/offsite_payments/return.rb', line 4

def notification
  @notification
end

#paramsObject

Returns the value of attribute params.



3
4
5
# File 'lib/offsite_payments/return.rb', line 3

def params
  @params
end

Instance Method Details

#cancelled?Boolean

Not cancelled by default. Overridden in the child class.

Returns:

  • (Boolean)


17
18
19
# File 'lib/offsite_payments/return.rb', line 17

def cancelled?
  false
end

#messageObject



21
22
# File 'lib/offsite_payments/return.rb', line 21

def message
end

#parse(query_string) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/offsite_payments/return.rb', line 24

def parse(query_string)
  return {} if query_string.blank?

  query_string.split('&').inject({}) do |memo, chunk|
    next memo if chunk.empty?
    key, value = chunk.split('=', 2)
    next memo if key.empty?
    value = value.nil? ? nil : CGI.unescape(value)
    memo[CGI.unescape(key)] = value
    memo
  end
end

#success?Boolean

Successful by default. Overridden in the child class

Returns:

  • (Boolean)


12
13
14
# File 'lib/offsite_payments/return.rb', line 12

def success?
  true
end