Sha256: 668eafe04a0467851fe3d63f2130b556fcbebde02ba8898bfd1a38e5f6ddbbdf

Contents?: true

Size: 593 Bytes

Versions: 105

Compression:

Stored size: 593 Bytes

Contents

module ForestLiana
  class StripeSourceGetter < StripeBaseGetter
    attr_accessor :record

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

    def perform
      resource = collection.find(@params[:recordId])
      customer = resource[field]

      @record = ::Stripe::Customer
        .retrieve(customer)
        .sources.retrieve(@params[:objectId])

      query = {}
      query[field] = @record.customer
      @record.customer = collection.find_by(query)

      @record
    end
  end
end

Version data entries

105 entries across 105 versions & 1 rubygems

Version Path
forest_liana-5.4.1 app/services/forest_liana/stripe_source_getter.rb
forest_liana-6.0.0.pre.beta.4 app/services/forest_liana/stripe_source_getter.rb
forest_liana-6.0.0.pre.beta.3 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.4.0 app/services/forest_liana/stripe_source_getter.rb
forest_liana-6.0.0.pre.beta.2 app/services/forest_liana/stripe_source_getter.rb
forest_liana-6.0.0.pre.beta.1 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.3.3 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.3.2 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.3.1 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.3.0 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.2.3 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.2.2 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.2.1 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.2.0 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.1.3 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.1.2 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.1.1 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.1.0 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.0.0 app/services/forest_liana/stripe_source_getter.rb
forest_liana-5.0.0.pre.beta.0 app/services/forest_liana/stripe_source_getter.rb