The issue is if the user subscribes to a product, a charge is created and the amount is deducted from the subscriber. Then the invoice will be generated and at the same time, again the amount will be deducted from the subscriber a/c. Double-time payment cuts from the subscriber's account.
The backend code:
exports.createSubscription = function(req, res, next) {
console.log("1");
if (req.body.payment_method_id == undefined || req.body.payment_method_id == ''){
console.log("2")
console.log("Payment : -"+req.body.payment_method_id)
Response.failure(req, res, '', 'payment_method_id is required')
}
else{
console.log("package_name : -"+req.body.package_name)
if (req.body.package_name == undefined || req.body.package_name == '') {
console.log("4")
Response.failure(req, res, '', 'package_name is required')
}
else{
console.log("5")
console.log("amount : -"+req.body.amount)
if (req.body.amount == undefined || req.body.amount == '') {
console.log("6")
Response.failure(req, res, '', 'amount is required')
}
else{
console.log("7")
User.findById(req.userId,function(err, user){
console.log("7")
if(user){
console.log("8")
console.log("Inside User")
if(user.stripe_customer_id){
console.log("Inside User Stripe")
stripe.paymentMethods.attach(req.body.payment_method_id, {
customer: user.stripe_customer_id,
}).then((attch) => {
console.log("10")
console.log("Attch :- "+JSON.stringify(attch))
stripe.customers.update(
user.stripe_customer_id,
{
invoice_settings: {
default_payment_method: req.body.payment_method_id,
},
}
).then((up) => {
console.log("11")
console.log("UP :- "+JSON.stringify(up))
stripe.products.create({
name: req.body.package_name,
}).then((product) => {
console.log("12")
console.log("product :- "+JSON.stringify(product))
stripe.prices.create({
unit_amount: req.body.amount * 100,
currency: 'gbp',
recurring: {interval: 'month'},
product: product.id,
}).then((price) => {
console.log("13")
console.log("Price :- "+JSON.stringify(price))
stripe.subscriptions.create({
customer: user.stripe_customer_id,
items: [{ price: price.id }],
expand: ['latest_invoice.payment_intent'],
}).then((subscription) => {
console.log("14")
Response.success(req, res, subscription, 'Subscription created.')
console.log("done")
}).catch((error) => {
console.log("15")
Response.failure(req, res, {}, error.raw.message)
});
}).catch((error) => {
console.log("16")
Response.failure(req, res, {}, error.raw.message)
});
}).catch((error) => {
console.log("15")
Response.failure(req, res, {}, error.raw.message)
});
}).catch((error) => {
console.log("15")
Response.failure(req, res, {}, error.raw.message)
});
}).catch((error) => {
console.log("17")
Response.failure(req, res, {}, error.raw.message)
});
}
}
})
}
}
}
}
Can anyone suggest to me how I fix it?
A few things:
req.body.amount * 100
is very dangerous. It means malicious users could change the price they pay..then()
.Here's what I would recommend doing instead: