Sha256: 6a8111fa52c935863944bffb6bde1d346a279352339fc47f3038779413fdff56

Contents?: true

Size: 1.48 KB

Versions: 6

Compression:

Stored size: 1.48 KB

Contents

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    module Integrations #:nodoc:
      class Notification
        attr_accessor :params
        attr_accessor :raw

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

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

        # the money amount we received in X.2 decimal.
        def gross
          raise NotImplementedError, "Must implement this method in the subclass"
        end

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

        # This combines the gross and currency and returns a proper Money object. 
        # this requires the money library located at http://dist.leetsoft.com/api/money
        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

        # reset the notification. 
        def empty!
          @params  = Hash.new
          @raw     = ""      
        end

        private

        # Take the posted data and move the relevant data into a hash
        def parse(post)
          @raw = post.to_s
          for line in @raw.split('&')    
            key, value = *line.scan( %r{^([A-Za-z0-9_.]+)\=(.*)$} ).flatten
            params[key] = CGI.unescape(value)
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
activemerchant-1.2.0 lib/active_merchant/billing/integrations/notification.rb
activemerchant-1.3.1 lib/active_merchant/billing/integrations/notification.rb
activemerchant-1.3.0 lib/active_merchant/billing/integrations/notification.rb
activemerchant-1.3.2 lib/active_merchant/billing/integrations/notification.rb
activemerchant-1.2.1 lib/active_merchant/billing/integrations/notification.rb
spree-0.2.0 vendor/plugins/active_merchant/lib/active_merchant/billing/integrations/notification.rb