mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import type { CheckoutSchema } from '../../types/checkout'
|
|
import type { GetAPISchema } from '..'
|
|
|
|
import { CommerceAPIError } from '../utils/errors'
|
|
import isAllowedOperation from '../utils/is-allowed-operation'
|
|
|
|
const checkoutEndpoint: GetAPISchema<
|
|
any,
|
|
CheckoutSchema
|
|
>['endpoint']['handler'] = async (ctx) => {
|
|
const { req, res, handlers, config } = ctx
|
|
|
|
if (
|
|
!isAllowedOperation(req, res, {
|
|
GET: handlers['getCheckout'],
|
|
POST: handlers['submitCheckout'],
|
|
})
|
|
) {
|
|
return
|
|
}
|
|
|
|
const { cookies } = req
|
|
const cartId = cookies[config.cartCookie]
|
|
|
|
try {
|
|
// Create checkout
|
|
if (req.method === 'GET') {
|
|
const body = { ...req.body, cartId }
|
|
return await handlers['getCheckout']({ ...ctx, body })
|
|
}
|
|
|
|
// Create checkout
|
|
if (req.method === 'POST' && handlers['submitCheckout']) {
|
|
const body = { ...req.body, cartId }
|
|
return await handlers['submitCheckout']({ ...ctx, body })
|
|
}
|
|
} catch (error) {
|
|
console.error(error)
|
|
|
|
const message =
|
|
error instanceof CommerceAPIError
|
|
? 'An unexpected error ocurred with the Commerce API'
|
|
: 'An unexpected error ocurred'
|
|
|
|
res.status(500).json({ data: null, errors: [{ message }] })
|
|
}
|
|
}
|
|
|
|
export default checkoutEndpoint
|