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) ⇒ Notification

Returns a new instance of Notification.



8
9
10
11
# File 'lib/active_merchant/billing/integrations/notification.rb', line 8

def initialize(post)
  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



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

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.



34
35
36
37
# File 'lib/active_merchant/billing/integrations/notification.rb', line 34

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

#grossObject

the money amount we received in X.2 decimal.

Raises:

  • (NotImplementedError)


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

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

#gross_centsObject



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

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

#statusObject

Raises:

  • (NotImplementedError)


13
14
15
# File 'lib/active_merchant/billing/integrations/notification.rb', line 13

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