Sha256: 21908b6a2adb0c2f6776c792b9bd5d0a14be6bba7e4fb74d51010457adbceb9e
Contents?: true
Size: 1.63 KB
Versions: 117
Compression:
Stored size: 1.63 KB
Contents
module ForestLiana class StripeSubscriptionsGetter < StripeBaseGetter attr_accessor :records def initialize(params, secret_key, reference) @params = params Stripe.api_key = ForestLiana.integrations[:stripe][:api_key] end def count @subscriptions.try(:total_count) || 0 end def perform begin 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' @subscriptions = fetch_subscriptions(query) if @subscriptions.blank? @records = [] return end @records = @subscriptions.data.map do |d| query = {} query[field] = d.customer if collection d.customer = collection.find_by(query) else d.customer = nil end d end rescue ::Stripe::InvalidRequestError => error FOREST_REPORTER.report error FOREST_LOGGER.error "Stripe error: #{error.message}" @records = [] end end def fetch_subscriptions(params) return if @params[:id] && params[:customer].blank? ::Stripe::Subscription.list(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
117 entries across 117 versions & 1 rubygems