2019-12-17 00:31:58 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module DiscourseSubscriptions
|
|
|
|
module User
|
|
|
|
class PaymentsController < ::ApplicationController
|
|
|
|
include DiscourseSubscriptions::Stripe
|
|
|
|
before_action :set_api_key
|
|
|
|
requires_login
|
|
|
|
|
|
|
|
def index
|
|
|
|
begin
|
2020-06-09 13:07:46 -04:00
|
|
|
customer = Customer.where(user_id: current_user.id)
|
|
|
|
customer_ids = customer.map { |c| c.customer_id } if customer
|
2020-05-22 12:20:05 -04:00
|
|
|
product_ids = Product.all.pluck(:external_id)
|
2019-12-17 00:31:58 -05:00
|
|
|
|
|
|
|
data = []
|
|
|
|
|
2020-06-09 13:07:46 -04:00
|
|
|
if customer_ids.present? && product_ids.present?
|
|
|
|
customer_ids.each do |customer_id|
|
|
|
|
# lots of matching because the Stripe API doesn't make it easy to match products => payments except from invoices
|
|
|
|
all_invoices = ::Stripe::Invoice.list(customer: customer_id)
|
2020-10-21 14:36:31 -04:00
|
|
|
invoices_with_products = parse_invoices(all_invoices, product_ids)
|
2020-06-09 13:07:46 -04:00
|
|
|
invoice_ids = invoices_with_products.map { |invoice| invoice[:id] }
|
|
|
|
payments = ::Stripe::PaymentIntent.list(customer: customer_id)
|
|
|
|
payments_from_invoices = payments[:data].select { |payment| invoice_ids.include?(payment[:invoice]) }
|
|
|
|
data.concat(payments_from_invoices)
|
|
|
|
end
|
2019-12-17 00:31:58 -05:00
|
|
|
end
|
|
|
|
|
2020-06-09 13:07:46 -04:00
|
|
|
data = data.sort_by { |pmt| pmt[:created] }.reverse
|
|
|
|
|
2019-12-17 00:31:58 -05:00
|
|
|
render_json_dump data
|
|
|
|
|
|
|
|
rescue ::Stripe::InvalidRequestError => e
|
|
|
|
render_json_error e.message
|
|
|
|
end
|
|
|
|
end
|
2020-10-21 14:36:31 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def parse_invoices(all_invoices, product_ids)
|
|
|
|
invoices_with_products = all_invoices[:data].select do |invoice|
|
|
|
|
invoice_lines = invoice[:lines][:data][0] if invoice[:lines] && invoice[:lines][:data]
|
|
|
|
invoice_product_id = parse_invoice_lines(invoice_lines)
|
|
|
|
product_ids.include?(invoice_product_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def parse_invoice_lines(invoice_lines)
|
|
|
|
invoice_product_id = invoice_lines[:price][:product] if invoice_lines[:price] && invoice_lines[:price][:product]
|
|
|
|
invoice_product_id = invoice_lines[:plan][:product] if invoice_lines[:plan] && invoice_lines[:plan][:product]
|
2021-01-06 15:01:16 -05:00
|
|
|
invoice_product_id
|
2020-10-21 14:36:31 -04:00
|
|
|
end
|
2019-12-17 00:31:58 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|