-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathserver.js
128 lines (113 loc) · 3.89 KB
/
server.js
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const express = require('express');
const app = express();
const { resolve } = require('path');
// Replace if using a different env file or config
const env = require('dotenv').config({ path: './.env' });
const stripe = require('stripe')(process.env.STRIPE_SECRET_KEY, {
appInfo: { // For sample support and debugging, not required for production:
name: "stripe-samples/link-with-stripe",
version: "0.0.1",
url: "https://github.com/stripe-samples/link-with-stripe",
}
});
app.use(express.static(process.env.STATIC_DIR));
app.use(
express.json({
// We need the raw body to verify webhook signatures.
// Let's compute it only when hitting the Stripe webhook endpoint.
verify: function(req, res, buf) {
if (req.originalUrl.startsWith('/webhook')) {
req.rawBody = buf.toString();
}
}
})
);
app.get('/config', (req, res) => {
res.send({
publishableKey: process.env.STRIPE_PUBLISHABLE_KEY,
});
});
app.post('/create-payment-intent', async (req, res) => {
// Create a PaymentIntent with the amount, currency, and a payment method type.
//
// See the documentation [0] for the full list of supported parameters.
//
// [0] https://stripe.com/docs/api/payment_intents/create
try {
const paymentIntent = await stripe.paymentIntents.create({
amount: 1999,
currency: 'usd',
// Best practice is to enable Link through the dashboard
// and use automatic payment methods. For this demo,
// we explicitly pass payment_method_types: ['link', 'card'],
// to be extra clear which payment method types are enabled.
//
// automatic_payment_methods: { enabled: true },
//
payment_method_types: ['link', 'card'],
});
// Send publishable key and PaymentIntent details to client
res.send({
clientSecret: paymentIntent.client_secret
});
} catch(e) {
return res.status(400).send({
error: {
message: e.message
}
});
}
});
app.get('/payment/next', async (req, res) => {
const intent = await stripe.paymentIntents.retrieve(
req.query.payment_intent,
{
expand: ["payment_method"],
}
);
const status = intent.status;
res.redirect(`/success?payment_intent_client_secret=${intent.client_secret}`);
});
app.get('/success', async (req, res) => {
const path = resolve(process.env.STATIC_DIR + '/success.html');
res.sendFile(path);
});
// Expose a endpoint as a webhook handler for asynchronous events.
// Configure your webhook in the stripe developer dashboard
// https://dashboard.stripe.com/test/webhooks
app.post('/webhook', async (req, res) => {
let data, eventType;
// Check if webhook signing is configured.
if (process.env.STRIPE_WEBHOOK_SECRET) {
// Retrieve the event by verifying the signature using the raw body and secret.
let event;
let signature = req.headers['stripe-signature'];
try {
event = stripe.webhooks.constructEvent(
req.rawBody,
signature,
process.env.STRIPE_WEBHOOK_SECRET
);
} catch (err) {
console.log(`⚠️ Webhook signature verification failed.`);
return res.sendStatus(400);
}
data = event.data;
eventType = event.type;
} else {
// Webhook signing is recommended, but if the secret is not configured in `config.js`,
// we can retrieve the event data directly from the request body.
data = req.body.data;
eventType = req.body.type;
}
if (eventType === 'payment_intent.succeeded') {
// Funds have been captured
// Fulfill any orders, e-mail receipts, etc
// To cancel the payment after capture you will need to issue a Refund (https://stripe.com/docs/api/refunds)
console.log('💰 Payment captured!');
} else if (eventType === 'payment_intent.payment_failed') {
console.log('❌ Payment failed.');
}
res.sendStatus(200);
});
app.listen(4242, () => console.log(`Node server listening at http://localhost:4242`));