FIX: Duplicate payments showing up in discourse UI (#118)
Duplicate payments were showing up in the discourse ui for users. Actual transactions in stripe were not being duplicated. This fix ensures that when parsing the api response we don't append any duplicates. Added a duplicate entry to the specs to test for this. I do think there can be some improvements made to this controller endpoint, but I'd like to save those for a different and larger PR and just get this fix out first.
This commit is contained in:
parent
4a27a93e8d
commit
46759c90cd
|
@ -23,7 +23,7 @@ module DiscourseSubscriptions
|
||||||
invoice_ids = invoices_with_products.map { |invoice| invoice[:id] }
|
invoice_ids = invoices_with_products.map { |invoice| invoice[:id] }
|
||||||
payments = ::Stripe::PaymentIntent.list(customer: customer_id)
|
payments = ::Stripe::PaymentIntent.list(customer: customer_id)
|
||||||
payments_from_invoices = payments[:data].select { |payment| invoice_ids.include?(payment[:invoice]) }
|
payments_from_invoices = payments[:data].select { |payment| invoice_ids.include?(payment[:invoice]) }
|
||||||
data.concat(payments_from_invoices)
|
data = data | payments_from_invoices
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -23,13 +23,16 @@ module DiscourseSubscriptions
|
||||||
sign_in(user)
|
sign_in(user)
|
||||||
Fabricate(:customer, customer_id: 'c_345678', user_id: user.id)
|
Fabricate(:customer, customer_id: 'c_345678', user_id: user.id)
|
||||||
Fabricate(:product, external_id: 'prod_8675309')
|
Fabricate(:product, external_id: 'prod_8675309')
|
||||||
|
Fabricate(:product, external_id: 'prod_8675310')
|
||||||
end
|
end
|
||||||
|
|
||||||
it "gets payment intents" do
|
it "gets payment intents" do
|
||||||
|
created_time = Time.now
|
||||||
::Stripe::Invoice.expects(:list).with(
|
::Stripe::Invoice.expects(:list).with(
|
||||||
customer: 'c_345678'
|
customer: 'c_345678'
|
||||||
).returns(
|
).returns(
|
||||||
data: [
|
data: [
|
||||||
|
{
|
||||||
id: "inv_900007",
|
id: "inv_900007",
|
||||||
lines: {
|
lines: {
|
||||||
data: [
|
data: [
|
||||||
|
@ -37,6 +40,27 @@ module DiscourseSubscriptions
|
||||||
product: "prod_8675309"
|
product: "prod_8675309"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "inv_900008",
|
||||||
|
lines: {
|
||||||
|
data: [
|
||||||
|
plan: {
|
||||||
|
product: "prod_8675310"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "inv_900008",
|
||||||
|
lines: {
|
||||||
|
data: [
|
||||||
|
plan: {
|
||||||
|
product: "prod_8675310"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
@ -46,10 +70,22 @@ module DiscourseSubscriptions
|
||||||
).returns(
|
).returns(
|
||||||
data: [
|
data: [
|
||||||
{
|
{
|
||||||
|
id: "pi_900008",
|
||||||
|
invoice: "inv_900008",
|
||||||
|
created: created_time
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "pi_900008",
|
||||||
|
invoice: "inv_900008",
|
||||||
|
created: created_time
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "pi_900007",
|
||||||
invoice: "inv_900007",
|
invoice: "inv_900007",
|
||||||
created: Time.now
|
created: Time.now
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
id: "pi_007",
|
||||||
invoice: "inv_007",
|
invoice: "inv_007",
|
||||||
created: Time.now
|
created: Time.now
|
||||||
}
|
}
|
||||||
|
@ -58,9 +94,11 @@ module DiscourseSubscriptions
|
||||||
|
|
||||||
get "/s/user/payments.json"
|
get "/s/user/payments.json"
|
||||||
|
|
||||||
invoice = response.parsed_body[0]["invoice"]
|
parsed_body = response.parsed_body
|
||||||
|
invoice = parsed_body[0]["invoice"]
|
||||||
|
|
||||||
expect(invoice).to eq("inv_900007")
|
expect(invoice).to eq("inv_900007")
|
||||||
|
expect(parsed_body.count).to eq(2)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue