| import { z } from 'zod'; |
| import { NextResponse } from 'next/server'; |
| import { validateUserAndToken } from '@/utils/access'; |
| import { getGoogleIAPVerifier, VerifyPurchaseParams } from '@/libs/payment/iap/google/verifier'; |
| import { processPurchaseData, VerifiedPurchase } from '@/libs/payment/iap/google/server'; |
| import { IAPError } from '@/libs/payment/iap/types'; |
|
|
| const iapVerificationSchema = z.object({ |
| packageName: z.string().min(1, 'Package name is required'), |
| productId: z.string().min(1, 'Product ID is required'), |
| orderId: z.string().min(1, 'Order ID is required'), |
| purchaseToken: z.string().min(1, 'Purchase token is required'), |
| }); |
|
|
| export async function POST(request: Request) { |
| const body = await request.json(); |
| let validatedInput; |
| try { |
| validatedInput = iapVerificationSchema.parse(body); |
| } catch (error) { |
| if (error instanceof z.ZodError) { |
| return NextResponse.json( |
| { |
| error: 'Invalid input data', |
| purchase: null, |
| }, |
| { status: 400 }, |
| ); |
| } |
| } |
| const { orderId, purchaseToken, productId, packageName } = validatedInput!; |
|
|
| const { user, token } = await validateUserAndToken(request.headers.get('authorization')); |
| if (!user || !token) { |
| return NextResponse.json({ error: IAPError.NOT_AUTHENTICATED }, { status: 403 }); |
| } |
|
|
| try { |
| const googleIAPVerifier = getGoogleIAPVerifier(); |
| const verifyParams: VerifyPurchaseParams = { orderId, purchaseToken, productId, packageName }; |
| const verificationResult = await googleIAPVerifier.verifyPurchase(verifyParams); |
| if (!verificationResult.success) { |
| console.error('Google verification failed:', verificationResult.error); |
| return NextResponse.json( |
| { |
| error: verificationResult.error || IAPError.TRANSACTION_CANNOT_BE_VERIFIED, |
| purchase: null, |
| }, |
| { status: 400 }, |
| ); |
| } |
|
|
| const purchaseData = verificationResult.purchaseData!; |
| console.log('Google verification successful:', { |
| orderId: purchaseData.orderId, |
| productId: productId, |
| purchaseState: purchaseData.purchaseState, |
| }); |
|
|
| let purchase: VerifiedPurchase; |
| try { |
| purchase = await processPurchaseData(user, verifyParams, verificationResult); |
| if (verificationResult.purchaseData?.acknowledgementState === 0) { |
| try { |
| await googleIAPVerifier.acknowledgePurchase(verifyParams); |
| purchase.acknowledgementState = 1; |
| } catch (ackError) { |
| console.error('Failed to acknowledge purchase:', ackError); |
| } |
| } |
| return NextResponse.json({ |
| purchase, |
| error: null, |
| }); |
| } catch (dbError) { |
| console.error('Database update failed:', dbError); |
| return NextResponse.json( |
| { |
| error: IAPError.TRANSACTION_SERVICE_UNAVAILABLE, |
| purchase: null, |
| }, |
| { status: 500 }, |
| ); |
| } |
| } catch (error) { |
| console.error('IAP verification error:', error); |
| return NextResponse.json( |
| { error: error instanceof Error ? error.message : IAPError.UNKNOWN_ERROR }, |
| { status: 500 }, |
| ); |
| } |
| } |
|
|