Sha256: f7634b72cf8a2757e18e6b9f31c2b8301e89d2bcdbc5ca90c7558fec08804456
Contents?: true
Size: 1.48 KB
Versions: 83
Compression:
Stored size: 1.48 KB
Contents
module ForestLiana class StripeSourcesGetter < StripeBaseGetter attr_accessor :records def initialize(params, secret_key, reference) @params = params Stripe.api_key = ForestLiana.integrations[:stripe][:api_key] end def count @cards.try(:total_count) || 0 end def perform params = { limit: limit, starting_after: starting_after, ending_before: ending_before, object: @params[:object] } params['include[]'] = 'total_count' resource = collection.find(@params[:id]) customer = resource[field] if customer.blank? @records = [] else fetch_bank_accounts(customer, params) end end def fetch_bank_accounts(customer, params) begin @cards = ::Stripe::Customer.retrieve(customer).sources.all(params) if @cards.blank? @records = [] return end @records = @cards.data.map do |d| query = {} query[field] = d.customer d.customer = collection.find_by(query) d end rescue ::Stripe::InvalidRequestError => error FOREST_LOGGER.error "Stripe error: #{error.message}" @records = [] end end def starting_after if pagination? && @params[:starting_after] @params[:starting_after] end end def ending_before if pagination? && @params[:ending_before] @params[:ending_before] end end end end
Version data entries
83 entries across 83 versions & 1 rubygems