Class: ActiveMerchant::Billing::Integrations::Notification

Inherits:
Object
  • Object
show all
Defined in:
lib/active_merchant/billing/integrations/notification.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(post, options = {}) ⇒ Notification

  • Args :

    • doc -> raw post string

    • options -> custom options which individual implementations can

      utilize
      


16
17
18
19
20
# File 'lib/active_merchant/billing/integrations/notification.rb', line 16

def initialize(post, options = {})
  @options = options
  empty!
  parse(post)
end

Instance Attribute Details

#paramsObject

Returns the value of attribute params.



5
6
7
# File 'lib/active_merchant/billing/integrations/notification.rb', line 5

def params
  @params
end

#rawObject

Returns the value of attribute raw.



6
7
8
# File 'lib/active_merchant/billing/integrations/notification.rb', line 6

def raw
  @raw
end

Instance Method Details

#amountObject

This combines the gross and currency and returns a proper Money object. this requires the money library located at dist.leetsoft.com/api/money



37
38
39
40
# File 'lib/active_merchant/billing/integrations/notification.rb', line 37

def amount
  return Money.new(gross_cents, currency) rescue ArgumentError
  return Money.new(gross_cents) # maybe you have an own money object which doesn't take a currency?
end

#empty!Object

reset the notification.



43
44
45
46
# File 'lib/active_merchant/billing/integrations/notification.rb', line 43

def empty!
  @params  = Hash.new
  @raw     = ""
end

#grossObject

the money amount we received in X.2 decimal.

Raises:

  • (NotImplementedError)


27
28
29
# File 'lib/active_merchant/billing/integrations/notification.rb', line 27

def gross
  raise NotImplementedError, "Must implement this method in the subclass"
end

#gross_centsObject



31
32
33
# File 'lib/active_merchant/billing/integrations/notification.rb', line 31

def gross_cents
  (gross.to_f * 100.0).round
end

#statusObject

Raises:

  • (NotImplementedError)


22
23
24
# File 'lib/active_merchant/billing/integrations/notification.rb', line 22

def status
  raise NotImplementedError, "Must implement this method in the subclass"
end

#test?Boolean

Returns:

  • (Boolean)


54
55
56
# File 'lib/active_merchant/billing/integrations/notification.rb', line 54

def test?
  false
end

#valid_sender?(ip) ⇒ Boolean

Check if the request comes from an official IP

Returns:

  • (Boolean)


49
50
51
52
# File 'lib/active_merchant/billing/integrations/notification.rb', line 49

def valid_sender?(ip)
  return true if ActiveMerchant::Billing::Base.integration_mode == :test || production_ips.blank?
  production_ips.include?(ip)
end