Class: ForestLiana::StripeSourcesGetter
- Inherits:
-
StripeBaseGetter
- Object
- IntegrationBaseGetter
- StripeBaseGetter
- ForestLiana::StripeSourcesGetter
- Defined in:
- app/services/forest_liana/stripe_sources_getter.rb
Instance Attribute Summary collapse
-
#records ⇒ Object
Returns the value of attribute records.
Instance Method Summary collapse
- #count ⇒ Object
- #ending_before ⇒ Object
- #fetch_bank_accounts(customer, params) ⇒ Object
-
#initialize(params, secret_key, reference) ⇒ StripeSourcesGetter
constructor
A new instance of StripeSourcesGetter.
- #perform ⇒ Object
- #starting_after ⇒ Object
Constructor Details
#initialize(params, secret_key, reference) ⇒ StripeSourcesGetter
Returns a new instance of StripeSourcesGetter.
5 6 7 8 |
# File 'app/services/forest_liana/stripe_sources_getter.rb', line 5 def initialize(params, secret_key, reference) @params = params Stripe.api_key = ForestLiana.integrations[:stripe][:api_key] end |
Instance Attribute Details
#records ⇒ Object
Returns the value of attribute records.
3 4 5 |
# File 'app/services/forest_liana/stripe_sources_getter.rb', line 3 def records @records end |
Instance Method Details
#count ⇒ Object
10 11 12 |
# File 'app/services/forest_liana/stripe_sources_getter.rb', line 10 def count @cards.try(:total_count) || 0 end |
#ending_before ⇒ Object
61 62 63 64 65 |
# File 'app/services/forest_liana/stripe_sources_getter.rb', line 61 def ending_before if pagination? && @params[:ending_before] @params[:ending_before] end end |
#fetch_bank_accounts(customer, params) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'app/services/forest_liana/stripe_sources_getter.rb', line 33 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_REPORTER.report error FOREST_LOGGER.error "Stripe error: #{error.}" @records = [] end end |
#perform ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'app/services/forest_liana/stripe_sources_getter.rb', line 14 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 |
#starting_after ⇒ Object
55 56 57 58 59 |
# File 'app/services/forest_liana/stripe_sources_getter.rb', line 55 def starting_after if pagination? && @params[:starting_after] @params[:starting_after] end end |