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

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

Direct Known Subclasses

AuthorizeNetSim::Notification, Bogus::Notification, Chronopay::Notification, DirecPay::Notification, Directebanking::Notification, Dotpay::Notification, Dwolla::Notification, EPaymentPlans::Notification, Gestpay::Notification, HiTrust::Notification, Moneybookers::Notification, ActiveMerchant::Billing::Integrations::Nochex::Notification, PayflowLink::Notification, Paypal::Notification, Quickpay::Notification, Robokassa::Notification, SagePayForm::Notification, TwoCheckout::Notification, Valitor::Notification, WorldPay::Notification

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (Notification) initialize(post, options = {})

A new instance of Notification



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

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

Instance Attribute Details

- (Object) params

Returns the value of attribute params



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

def params
  @params
end

- (Object) raw

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

- (Object) amount

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



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

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

- (Object) empty!

reset the notification.



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

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

- (Object) gross

the money amount we received in X.2 decimal.

Raises:

  • (NotImplementedError)


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

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

- (Object) gross_cents



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

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

- (Object) status

Raises:

  • (NotImplementedError)


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

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

- (Boolean) valid_sender?(ip)

Check if the request comes from an official IP

Returns:

  • (Boolean)


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

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