Sha256: 67aae4257f94c6023929be4ce9db73141a0a9cfac61c0f4edcc2c6501c8123ab

Contents?: true

Size: 1.51 KB

Versions: 46

Compression:

Stored size: 1.51 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({ id: customer, expand: ['sources'] }).sources.list(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

46 entries across 46 versions & 1 rubygems

Version Path
forest_liana-7.3.0 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-6.6.3 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.2.2 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.2.1 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.2.0 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.1.0 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.0.2 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.0.1 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.0.0 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.0.0.beta.6 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.0.0.beta.5 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.0.0.beta.4 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.0.0.beta.3 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-6.6.2 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-6.6.1 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-6.6.0 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-6.5.1 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-7.0.0.beta.2 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-6.5.0 app/services/forest_liana/stripe_sources_getter.rb
forest_liana-6.4.1 app/services/forest_liana/stripe_sources_getter.rb