-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
67 lines (56 loc) · 2.05 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { buffer } from 'micro'
import Cors from 'micro-cors'
import { NextApiRequest, NextApiResponse } from 'next'
import Stripe from 'stripe'
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!, {
// https://github.com/stripe/stripe-node#configuration
apiVersion: '2019-12-03',
})
const webhookSecret: string = process.env.STRIPE_WEBHOOK_SECRET!
// Stripe requires the raw body to construct the event.
export const config = {
api: {
bodyParser: false,
},
}
const cors = Cors({
allowMethods: ['POST', 'HEAD'],
})
const webhookHandler = async (req: NextApiRequest, res: NextApiResponse) => {
if (req.method === 'POST') {
const buf = await buffer(req)
const sig = req.headers['stripe-signature']!
let event: Stripe.Event
try {
event = stripe.webhooks.constructEvent(buf.toString(), sig, webhookSecret)
} catch (err) {
// On error, log and return the error message.
console.log(`❌ Error message: ${err.message}`)
res.status(400).send(`Webhook Error: ${err.message}`)
return
}
// Successfully constructed event.
console.log('✅ Success:', event.id)
// Cast event data to Stripe object.
if (event.type === 'payment_intent.succeeded') {
const paymentIntent = event.data.object as Stripe.PaymentIntent
console.log(`💰 PaymentIntent status: ${paymentIntent.status}`)
} else if (event.type === 'payment_intent.payment_failed') {
const paymentIntent = event.data.object as Stripe.PaymentIntent
console.log(
`❌ Payment failed: ${paymentIntent.last_payment_error?.message}`
)
} else if (event.type === 'charge.succeeded') {
const charge = event.data.object as Stripe.Charge
console.log(`💵 Charge id: ${charge.id}`)
} else {
console.warn(`🤷♀️ Unhandled event type: ${event.type}`)
}
// Return a response to acknowledge receipt of the event.
res.json({ received: true })
} else {
res.setHeader('Allow', 'POST')
res.status(405).end('Method Not Allowed')
}
}
export default cors(webhookHandler as any)