Skip to content

Commit 5e28ebc

Browse files
authoredJan 6, 2023
fix: handling of payment_intent events (#72)
1 parent 176a99e commit 5e28ebc

10 files changed

+534
-0
lines changed
 

‎src/routes/webhooks.ts

+14
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import { upsertSetupIntents } from '../lib/setup_intents'
1212
import { upsertPaymentMethods } from '../lib/payment_methods'
1313
import { upsertDisputes } from '../lib/disputes'
1414
import { deletePlan, upsertPlans } from '../lib/plans'
15+
import { upsertPaymentIntents } from '../lib/payment_intents'
1516

1617
const config = getConfig()
1718

@@ -127,6 +128,19 @@ export default async function routes(fastify: FastifyInstance) {
127128
await upsertDisputes([dispute])
128129
break
129130
}
131+
case 'payment_intent.amount_capturable_updated':
132+
case 'payment_intent.canceled':
133+
case 'payment_intent.created':
134+
case 'payment_intent.partially_funded':
135+
case 'payment_intent.payment_failed':
136+
case 'payment_intent.processing':
137+
case 'payment_intent.requires_action':
138+
case 'payment_intent.succeeded': {
139+
const paymentIntent = event.data.object as Stripe.PaymentIntent
140+
141+
await upsertPaymentIntents([paymentIntent])
142+
break
143+
}
130144

131145
default:
132146
throw new Error('Unhandled webhook event')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"id": "evt_1IlYUUJDPojXS6LN7NEWYSm2",
3+
"object": "event",
4+
"api_version": "2020-03-02",
5+
"created": 1619697430,
6+
"data": {
7+
"object": {
8+
"id": "pi_1IqxJOJDPojXS6LN9uOebAea",
9+
"object": "payment_intent",
10+
"amount": 1000,
11+
"amount_capturable": 0,
12+
"amount_details": {
13+
"tip": {}
14+
},
15+
"amount_received": 0,
16+
"application": null,
17+
"application_fee_amount": null,
18+
"automatic_payment_methods": null,
19+
"canceled_at": null,
20+
"cancellation_reason": null,
21+
"capture_method": "automatic",
22+
"client_secret": "pi_1IqxJOJDPojXS6LN9uOebAea_secret_xAFUlXdrX2V3jcTfidX8eP14p",
23+
"confirmation_method": "automatic",
24+
"created": 1620984482,
25+
"currency": "usd",
26+
"customer": null,
27+
"description": "Created by stripe.com/docs demo",
28+
"invoice": null,
29+
"last_payment_error": null,
30+
"latest_charge": null,
31+
"livemode": false,
32+
"metadata": {},
33+
"next_action": null,
34+
"on_behalf_of": null,
35+
"payment_method": null,
36+
"payment_method_options": {
37+
"card": {
38+
"installments": null,
39+
"mandate_options": null,
40+
"network": null,
41+
"request_three_d_secure": "automatic"
42+
}
43+
},
44+
"payment_method_types": ["card"],
45+
"processing": null,
46+
"receipt_email": null,
47+
"review": null,
48+
"setup_future_usage": null,
49+
"shipping": null,
50+
"statement_descriptor": null,
51+
"statement_descriptor_suffix": null,
52+
"status": "requires_payment_method",
53+
"transfer_data": null,
54+
"transfer_group": null
55+
}
56+
},
57+
"livemode": false,
58+
"pending_webhooks": 3,
59+
"request": {
60+
"id": "req_7oRxuBCEqnfaHa",
61+
"idempotency_key": null
62+
},
63+
"type": "payment_intent.amount_capturable_updated"
64+
}
+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"id": "evt_1IlYUUJDPojXS6LN7NEWYSm2",
3+
"object": "event",
4+
"api_version": "2020-03-02",
5+
"created": 1619697430,
6+
"data": {
7+
"object": {
8+
"id": "pi_1IqxJOJDPojXS6LN9uOebAea",
9+
"object": "payment_intent",
10+
"amount": 1000,
11+
"amount_capturable": 0,
12+
"amount_details": {
13+
"tip": {}
14+
},
15+
"amount_received": 0,
16+
"application": null,
17+
"application_fee_amount": null,
18+
"automatic_payment_methods": null,
19+
"canceled_at": null,
20+
"cancellation_reason": null,
21+
"capture_method": "automatic",
22+
"client_secret": "pi_1IqxJOJDPojXS6LN9uOebAea_secret_xAFUlXdrX2V3jcTfidX8eP14p",
23+
"confirmation_method": "automatic",
24+
"created": 1620984482,
25+
"currency": "usd",
26+
"customer": null,
27+
"description": "Created by stripe.com/docs demo",
28+
"invoice": null,
29+
"last_payment_error": null,
30+
"latest_charge": null,
31+
"livemode": false,
32+
"metadata": {},
33+
"next_action": null,
34+
"on_behalf_of": null,
35+
"payment_method": null,
36+
"payment_method_options": {
37+
"card": {
38+
"installments": null,
39+
"mandate_options": null,
40+
"network": null,
41+
"request_three_d_secure": "automatic"
42+
}
43+
},
44+
"payment_method_types": ["card"],
45+
"processing": null,
46+
"receipt_email": null,
47+
"review": null,
48+
"setup_future_usage": null,
49+
"shipping": null,
50+
"statement_descriptor": null,
51+
"statement_descriptor_suffix": null,
52+
"status": "requires_payment_method",
53+
"transfer_data": null,
54+
"transfer_group": null
55+
}
56+
},
57+
"livemode": false,
58+
"pending_webhooks": 3,
59+
"request": {
60+
"id": "req_7oRxuBCEqnfaHa",
61+
"idempotency_key": null
62+
},
63+
"type": "payment_intent.canceled"
64+
}
+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"id": "evt_1IlYUUJDPojXS6LN7NEWYSm2",
3+
"object": "event",
4+
"api_version": "2020-03-02",
5+
"created": 1619697430,
6+
"data": {
7+
"object": {
8+
"id": "pi_1IqxJOJDPojXS6LN9uOebAea",
9+
"object": "payment_intent",
10+
"amount": 1000,
11+
"amount_capturable": 0,
12+
"amount_details": {
13+
"tip": {}
14+
},
15+
"amount_received": 0,
16+
"application": null,
17+
"application_fee_amount": null,
18+
"automatic_payment_methods": null,
19+
"canceled_at": null,
20+
"cancellation_reason": null,
21+
"capture_method": "automatic",
22+
"client_secret": "pi_1IqxJOJDPojXS6LN9uOebAea_secret_xAFUlXdrX2V3jcTfidX8eP14p",
23+
"confirmation_method": "automatic",
24+
"created": 1620984482,
25+
"currency": "usd",
26+
"customer": null,
27+
"description": "Created by stripe.com/docs demo",
28+
"invoice": null,
29+
"last_payment_error": null,
30+
"latest_charge": null,
31+
"livemode": false,
32+
"metadata": {},
33+
"next_action": null,
34+
"on_behalf_of": null,
35+
"payment_method": null,
36+
"payment_method_options": {
37+
"card": {
38+
"installments": null,
39+
"mandate_options": null,
40+
"network": null,
41+
"request_three_d_secure": "automatic"
42+
}
43+
},
44+
"payment_method_types": ["card"],
45+
"processing": null,
46+
"receipt_email": null,
47+
"review": null,
48+
"setup_future_usage": null,
49+
"shipping": null,
50+
"statement_descriptor": null,
51+
"statement_descriptor_suffix": null,
52+
"status": "requires_payment_method",
53+
"transfer_data": null,
54+
"transfer_group": null
55+
}
56+
},
57+
"livemode": false,
58+
"pending_webhooks": 3,
59+
"request": {
60+
"id": "req_7oRxuBCEqnfaHa",
61+
"idempotency_key": null
62+
},
63+
"type": "payment_intent.created"
64+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"id": "evt_1IlYUUJDPojXS6LN7NEWYSm2",
3+
"object": "event",
4+
"api_version": "2020-03-02",
5+
"created": 1619697430,
6+
"data": {
7+
"object": {
8+
"id": "pi_1IqxJOJDPojXS6LN9uOebAea",
9+
"object": "payment_intent",
10+
"amount": 1000,
11+
"amount_capturable": 0,
12+
"amount_details": {
13+
"tip": {}
14+
},
15+
"amount_received": 0,
16+
"application": null,
17+
"application_fee_amount": null,
18+
"automatic_payment_methods": null,
19+
"canceled_at": null,
20+
"cancellation_reason": null,
21+
"capture_method": "automatic",
22+
"client_secret": "pi_1IqxJOJDPojXS6LN9uOebAea_secret_xAFUlXdrX2V3jcTfidX8eP14p",
23+
"confirmation_method": "automatic",
24+
"created": 1620984482,
25+
"currency": "usd",
26+
"customer": null,
27+
"description": "Created by stripe.com/docs demo",
28+
"invoice": null,
29+
"last_payment_error": null,
30+
"latest_charge": null,
31+
"livemode": false,
32+
"metadata": {},
33+
"next_action": null,
34+
"on_behalf_of": null,
35+
"payment_method": null,
36+
"payment_method_options": {
37+
"card": {
38+
"installments": null,
39+
"mandate_options": null,
40+
"network": null,
41+
"request_three_d_secure": "automatic"
42+
}
43+
},
44+
"payment_method_types": ["card"],
45+
"processing": null,
46+
"receipt_email": null,
47+
"review": null,
48+
"setup_future_usage": null,
49+
"shipping": null,
50+
"statement_descriptor": null,
51+
"statement_descriptor_suffix": null,
52+
"status": "requires_payment_method",
53+
"transfer_data": null,
54+
"transfer_group": null
55+
}
56+
},
57+
"livemode": false,
58+
"pending_webhooks": 3,
59+
"request": {
60+
"id": "req_7oRxuBCEqnfaHa",
61+
"idempotency_key": null
62+
},
63+
"type": "payment_intent.partially_funded"
64+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"id": "evt_1IlYUUJDPojXS6LN7NEWYSm2",
3+
"object": "event",
4+
"api_version": "2020-03-02",
5+
"created": 1619697430,
6+
"data": {
7+
"object": {
8+
"id": "pi_1IqxJOJDPojXS6LN9uOebAea",
9+
"object": "payment_intent",
10+
"amount": 1000,
11+
"amount_capturable": 0,
12+
"amount_details": {
13+
"tip": {}
14+
},
15+
"amount_received": 0,
16+
"application": null,
17+
"application_fee_amount": null,
18+
"automatic_payment_methods": null,
19+
"canceled_at": null,
20+
"cancellation_reason": null,
21+
"capture_method": "automatic",
22+
"client_secret": "pi_1IqxJOJDPojXS6LN9uOebAea_secret_xAFUlXdrX2V3jcTfidX8eP14p",
23+
"confirmation_method": "automatic",
24+
"created": 1620984482,
25+
"currency": "usd",
26+
"customer": null,
27+
"description": "Created by stripe.com/docs demo",
28+
"invoice": null,
29+
"last_payment_error": null,
30+
"latest_charge": null,
31+
"livemode": false,
32+
"metadata": {},
33+
"next_action": null,
34+
"on_behalf_of": null,
35+
"payment_method": null,
36+
"payment_method_options": {
37+
"card": {
38+
"installments": null,
39+
"mandate_options": null,
40+
"network": null,
41+
"request_three_d_secure": "automatic"
42+
}
43+
},
44+
"payment_method_types": ["card"],
45+
"processing": null,
46+
"receipt_email": null,
47+
"review": null,
48+
"setup_future_usage": null,
49+
"shipping": null,
50+
"statement_descriptor": null,
51+
"statement_descriptor_suffix": null,
52+
"status": "requires_payment_method",
53+
"transfer_data": null,
54+
"transfer_group": null
55+
}
56+
},
57+
"livemode": false,
58+
"pending_webhooks": 3,
59+
"request": {
60+
"id": "req_7oRxuBCEqnfaHa",
61+
"idempotency_key": null
62+
},
63+
"type": "payment_intent.payment_failed"
64+
}
+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"id": "evt_1IlYUUJDPojXS6LN7NEWYSm2",
3+
"object": "event",
4+
"api_version": "2020-03-02",
5+
"created": 1619697430,
6+
"data": {
7+
"object": {
8+
"id": "pi_1IqxJOJDPojXS6LN9uOebAea",
9+
"object": "payment_intent",
10+
"amount": 1000,
11+
"amount_capturable": 0,
12+
"amount_details": {
13+
"tip": {}
14+
},
15+
"amount_received": 0,
16+
"application": null,
17+
"application_fee_amount": null,
18+
"automatic_payment_methods": null,
19+
"canceled_at": null,
20+
"cancellation_reason": null,
21+
"capture_method": "automatic",
22+
"client_secret": "pi_1IqxJOJDPojXS6LN9uOebAea_secret_xAFUlXdrX2V3jcTfidX8eP14p",
23+
"confirmation_method": "automatic",
24+
"created": 1620984482,
25+
"currency": "usd",
26+
"customer": null,
27+
"description": "Created by stripe.com/docs demo",
28+
"invoice": null,
29+
"last_payment_error": null,
30+
"latest_charge": null,
31+
"livemode": false,
32+
"metadata": {},
33+
"next_action": null,
34+
"on_behalf_of": null,
35+
"payment_method": null,
36+
"payment_method_options": {
37+
"card": {
38+
"installments": null,
39+
"mandate_options": null,
40+
"network": null,
41+
"request_three_d_secure": "automatic"
42+
}
43+
},
44+
"payment_method_types": ["card"],
45+
"processing": null,
46+
"receipt_email": null,
47+
"review": null,
48+
"setup_future_usage": null,
49+
"shipping": null,
50+
"statement_descriptor": null,
51+
"statement_descriptor_suffix": null,
52+
"status": "requires_payment_method",
53+
"transfer_data": null,
54+
"transfer_group": null
55+
}
56+
},
57+
"livemode": false,
58+
"pending_webhooks": 3,
59+
"request": {
60+
"id": "req_7oRxuBCEqnfaHa",
61+
"idempotency_key": null
62+
},
63+
"type": "payment_intent.processing"
64+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"id": "evt_1IlYUUJDPojXS6LN7NEWYSm2",
3+
"object": "event",
4+
"api_version": "2020-03-02",
5+
"created": 1619697430,
6+
"data": {
7+
"object": {
8+
"id": "pi_1IqxJOJDPojXS6LN9uOebAea",
9+
"object": "payment_intent",
10+
"amount": 1000,
11+
"amount_capturable": 0,
12+
"amount_details": {
13+
"tip": {}
14+
},
15+
"amount_received": 0,
16+
"application": null,
17+
"application_fee_amount": null,
18+
"automatic_payment_methods": null,
19+
"canceled_at": null,
20+
"cancellation_reason": null,
21+
"capture_method": "automatic",
22+
"client_secret": "pi_1IqxJOJDPojXS6LN9uOebAea_secret_xAFUlXdrX2V3jcTfidX8eP14p",
23+
"confirmation_method": "automatic",
24+
"created": 1620984482,
25+
"currency": "usd",
26+
"customer": null,
27+
"description": "Created by stripe.com/docs demo",
28+
"invoice": null,
29+
"last_payment_error": null,
30+
"latest_charge": null,
31+
"livemode": false,
32+
"metadata": {},
33+
"next_action": null,
34+
"on_behalf_of": null,
35+
"payment_method": null,
36+
"payment_method_options": {
37+
"card": {
38+
"installments": null,
39+
"mandate_options": null,
40+
"network": null,
41+
"request_three_d_secure": "automatic"
42+
}
43+
},
44+
"payment_method_types": ["card"],
45+
"processing": null,
46+
"receipt_email": null,
47+
"review": null,
48+
"setup_future_usage": null,
49+
"shipping": null,
50+
"statement_descriptor": null,
51+
"statement_descriptor_suffix": null,
52+
"status": "requires_payment_method",
53+
"transfer_data": null,
54+
"transfer_group": null
55+
}
56+
},
57+
"livemode": false,
58+
"pending_webhooks": 3,
59+
"request": {
60+
"id": "req_7oRxuBCEqnfaHa",
61+
"idempotency_key": null
62+
},
63+
"type": "payment_intent.requires_action"
64+
}
+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"id": "evt_1IlYUUJDPojXS6LN7NEWYSm2",
3+
"object": "event",
4+
"api_version": "2020-03-02",
5+
"created": 1619697430,
6+
"data": {
7+
"object": {
8+
"id": "pi_1IqxJOJDPojXS6LN9uOebAea",
9+
"object": "payment_intent",
10+
"amount": 1000,
11+
"amount_capturable": 0,
12+
"amount_details": {
13+
"tip": {}
14+
},
15+
"amount_received": 0,
16+
"application": null,
17+
"application_fee_amount": null,
18+
"automatic_payment_methods": null,
19+
"canceled_at": null,
20+
"cancellation_reason": null,
21+
"capture_method": "automatic",
22+
"client_secret": "pi_1IqxJOJDPojXS6LN9uOebAea_secret_xAFUlXdrX2V3jcTfidX8eP14p",
23+
"confirmation_method": "automatic",
24+
"created": 1620984482,
25+
"currency": "usd",
26+
"customer": null,
27+
"description": "Created by stripe.com/docs demo",
28+
"invoice": null,
29+
"last_payment_error": null,
30+
"latest_charge": null,
31+
"livemode": false,
32+
"metadata": {},
33+
"next_action": null,
34+
"on_behalf_of": null,
35+
"payment_method": null,
36+
"payment_method_options": {
37+
"card": {
38+
"installments": null,
39+
"mandate_options": null,
40+
"network": null,
41+
"request_three_d_secure": "automatic"
42+
}
43+
},
44+
"payment_method_types": ["card"],
45+
"processing": null,
46+
"receipt_email": null,
47+
"review": null,
48+
"setup_future_usage": null,
49+
"shipping": null,
50+
"statement_descriptor": null,
51+
"statement_descriptor_suffix": null,
52+
"status": "requires_payment_method",
53+
"transfer_data": null,
54+
"transfer_group": null
55+
}
56+
},
57+
"livemode": false,
58+
"pending_webhooks": 3,
59+
"request": {
60+
"id": "req_7oRxuBCEqnfaHa",
61+
"idempotency_key": null
62+
},
63+
"type": "payment_intent.succeeded"
64+
}

‎test/webhooks.test.ts

+8
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,14 @@ describe('/webhooks', () => {
6161
'plan_created',
6262
'plan_deleted',
6363
'plan_updated',
64+
'payment_intent_amount_capturable_updated',
65+
'payment_intent_canceled',
66+
'payment_intent_created',
67+
'payment_intent_partially_funded',
68+
'payment_intent_payment_failed',
69+
'payment_intent_processing',
70+
'payment_intent_requires_action',
71+
'payment_intent_succeeded',
6472
])('process event %s', async (jsonFile) => {
6573
const eventBody = await import(`./stripe/${jsonFile}`).then(({ default: myData }) => myData)
6674
const signature = createHmac('sha256', stripeWebhookSecret)

0 commit comments

Comments
 (0)
Please sign in to comment.