Sha256: 901154b02e895d374ef51d19d69fd2aabdaff00eafddf90f3a70832349c8be77

Contents?: true

Size: 1.59 KB

Versions: 47

Compression:

Stored size: 1.59 KB

Contents

module ForestLiana
  class StripeInvoicesGetter < StripeBaseGetter
    attr_accessor :records

    def initialize(params, secret_key, reference)
      @params = params
      Stripe.api_key = ForestLiana.integrations[:stripe][:api_key]
    end

    def count
      @invoices.try(:total_count) || 0
    end

    def perform
      query = {
        limit: limit,
        starting_after: starting_after,
        ending_before: ending_before
      }

      if @params[:id] && collection && field
        resource = collection.find(@params[:id])
        query[:customer] = resource[field]
      end

      query['include[]'] = 'total_count'
      @invoices = fetch_invoices(query)
      if @invoices.blank?
        @records = []
        return
      end

      @records = @invoices.data.map do |d|
        d.date = Time.at(d.date).to_datetime
        d.period_start = Time.at(d.period_start).to_datetime
        d.period_end = Time.at(d.period_end).to_datetime
        d.subtotal /= 100.00
        d.total /= 100.00
        d.amount_due /= 100.00

        query = {}
        query[field] = d.customer
        if collection
          d.customer = collection.find_by(query)
        else
          d.customer = nil
        end

        d
      end
    end

    def fetch_invoices(params)
      return if @params[:id] && params[:customer].blank?
      Stripe::Invoice.all(params)
    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

47 entries across 47 versions & 1 rubygems

Version Path
forest_liana-2.10.0 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.9.2 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.9.1 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.9.0 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.8.6 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.8.5 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.8.4 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.8.3 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.8.2 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.8.1 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.8.0 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.7.0 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.6.1 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.6.0 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.5.5 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.5.4 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.5.3 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.5.2 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.5.1 app/services/forest_liana/stripe_invoices_getter.rb
forest_liana-2.5.0 app/services/forest_liana/stripe_invoices_getter.rb