-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
169 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
import express, { Request, Response } from "express"; | ||
import Stripe from "stripe"; | ||
import dotenv from "dotenv"; | ||
import { findOrderById, findProductById } from "../services/paymentService"; | ||
|
||
dotenv.config(); | ||
|
||
const stripe = new Stripe(`${process.env.STRIPE_SECRET_KEY}`); | ||
export const checkout = async (req: Request, res: Response) => { | ||
try { | ||
const orderId = req.params.id; | ||
const order = await findOrderById(orderId); | ||
if (!order) { | ||
return res.status(404).json({ message: "Order not found" }); | ||
} | ||
const line_items: any[] = await Promise.all( | ||
order.products.map(async (item: any) => { | ||
const productDetails:any = await findProductById(item.productId); | ||
const unit_amount = Math.round(productDetails!.price * 100); | ||
return { | ||
price_data: { | ||
currency: "usd", | ||
product_data: { | ||
name: productDetails?.name, | ||
images: [productDetails?.image[0]], | ||
}, | ||
unit_amount: unit_amount, | ||
}, | ||
quantity: item.quantity, | ||
}; | ||
}) | ||
); | ||
console.log(line_items) | ||
|
||
|
||
const session = await stripe.checkout.sessions.create({ | ||
line_items, | ||
mode: "payment", | ||
success_url: process.env.SUCCESS_PAYMENT_URL, | ||
cancel_url: process.env.CANCEL_PAYMENT_URL, | ||
metadata: { | ||
orderId: orderId, | ||
}, | ||
}); | ||
|
||
|
||
res.status(200).json({ url: session.url }); | ||
} catch (error: any) { | ||
res.status(500).json({ message: error.message }); | ||
} | ||
}; | ||
|
||
export const webhook = async (req: Request, res: Response) => { | ||
const sig: any = req.headers["stripe-signature"]; | ||
const webhookSecret: any = process.env.WEBHOOK_SECRET_KEY; | ||
let event: any; | ||
try { | ||
event = stripe.webhooks.constructEvent(req.body, sig, webhookSecret); | ||
} catch (err: any) { | ||
console.log(`⚠️ Webhook signature verification failed.`, err.message); | ||
return res.status(400).send(`Webhook Error: ${err.message}`); | ||
} | ||
|
||
switch (event.type) { | ||
case "checkout.session.completed": | ||
const session = event.data.object; | ||
|
||
try { | ||
const lineItems = await stripe.checkout.sessions.listLineItems( | ||
session.id | ||
); | ||
|
||
const orderId = session.metadata.orderId; | ||
const order = await findOrderById(orderId); | ||
if (order) { | ||
order.status = "paid"; | ||
await order.save(); | ||
} else { | ||
console.error("Order not found:", orderId); | ||
} | ||
} catch (err) { | ||
console.error("Error processing session completed event:", err); | ||
} | ||
break; | ||
|
||
case "payment_intent.succeeded": | ||
const paymentIntent = event.data.object; | ||
console.log("Payment Intent succeeded: ", paymentIntent); | ||
break; | ||
case "payment_method.attached": | ||
const paymentMethod = event.data.object; | ||
console.log("Payment Method attached: ", paymentMethod); | ||
break; | ||
|
||
default: | ||
console.log(`Unhandled event type ${event.type}`); | ||
} | ||
res.json({ received: true }); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
import express from 'express' | ||
import express, { Request, Response } from 'express' | ||
import { createOrder } from '../controllers/checkout.controller' | ||
import { checkout, webhook } from '../controllers/Payment'; | ||
import { VerifyAccessToken } from '../middleware/verfiyToken'; | ||
const router = express.Router() | ||
|
||
router.post('/checkout', createOrder) | ||
|
||
router.post("/payment/:id", VerifyAccessToken, checkout); | ||
|
||
router.post('/webhook', express.raw({ type: 'application/json' }), webhook); | ||
|
||
router.get("/success", async(req:Request,res:Response)=>{ | ||
res.send("Succesfully") | ||
}); | ||
router.get("/cancel", async(req:Request,res:Response)=>{ | ||
res.send("Cancel") | ||
}); | ||
|
||
export default router |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import Order from "../database/models/order" | ||
import Product from "../database/models/product" | ||
|
||
|
||
export const findOrderById = async (orderId: any)=>{ | ||
const order = await Order.findByPk(orderId) | ||
return order | ||
} | ||
export const findProductById = async (productId:any)=>{ | ||
const product = await Product.findByPk(productId) | ||
return product | ||
} |