Sha256: abc511f7c18eb5eb2c3039e838dde58e8bf1d2db7a52d4bbb54ecfb05af6db66
Contents?: true
Size: 1.4 KB
Versions: 22
Compression:
Stored size: 1.4 KB
Contents
class PaymentMethod < ActiveRecord::Base DISPLAY = [:both, :front_end, :back_end] default_scope where(:deleted_at => nil) @provider = nil @@providers = Set.new def self.register @@providers.add(self) end def self.providers @@providers.to_a end def provider_class raise "You must implement provider_class method for this gateway." end # The class that will process payments for this payment type, used for @payment.source # e.g. Creditcard in the case of a the Gateway payment type # nil means the payment method doesn't require a source e.g. check def payment_source_class raise "You must implement payment_source_class method for this gateway." end def self.available(display_on='both') PaymentMethod.all.select { |p| p.active && (p.display_on == display_on.to_s || p.display_on.blank?) && (p.environment == Rails.env || p.environment.blank?) } end def self.active? self.count(:conditions => {:type => self.to_s, :environment => Rails.env, :active => true}) > 0 end def self.current PaymentMethod.find(:first, :conditions => {:active => true, :environment => Rails.env}) end def method_type type.demodulize.downcase end def destroy self.update_attribute(:deleted_at, Time.now.utc) end def self.find_with_destroyed *args self.with_exclusive_scope { find(*args) } end def payment_profiles_supported? false end end
Version data entries
22 entries across 22 versions & 1 rubygems