feat: implement payment proxy routes and add security validation tests for wallet and intent operations

This commit is contained in:
2569718930@qq.com
2026-05-30 15:41:15 +08:00
parent 853a652e9b
commit c0b1edaed0
10 changed files with 58 additions and 22 deletions
+34 -4
View File
@@ -11,6 +11,7 @@ export type BackendHeaderBuildResult = {
response: NextResponse | null;
authUserId?: string | null;
authEmail?: string | null;
hasBearerAuth?: boolean;
};
type HeaderBuildOptions = {
@@ -53,13 +54,25 @@ export async function buildBackendRequestHeaders(
const incomingAuth = extractBearerToken(request.headers.get("authorization"));
if (incomingAuth) {
headers.set("Authorization", `Bearer ${incomingAuth}`);
return { headers, response: null, authUserId: null, authEmail: null };
return {
headers,
response: null,
authUserId: null,
authEmail: null,
hasBearerAuth: true,
};
}
const includeSupabaseIdentity = options?.includeSupabaseIdentity !== false;
if (hasSupabaseServerEnv() && includeSupabaseIdentity) {
if (!hasSupabaseSessionCookie(request)) {
return { headers, response: null, authUserId: null, authEmail: null };
return {
headers,
response: null,
authUserId: null,
authEmail: null,
hasBearerAuth: false,
};
}
const passthroughResponse = new NextResponse(null, { status: 200 });
@@ -81,10 +94,22 @@ export async function buildBackendRequestHeaders(
if (forwardedEmail) {
headers.set(FORWARDED_SUPABASE_EMAIL_HEADER, forwardedEmail);
}
return { headers, response: passthroughResponse, authUserId: forwardedUserId || null, authEmail: forwardedEmail || null };
return {
headers,
response: passthroughResponse,
authUserId: forwardedUserId || null,
authEmail: forwardedEmail || null,
hasBearerAuth: Boolean(accessToken),
};
}
return { headers, response: null, authUserId: null, authEmail: null };
return {
headers,
response: null,
authUserId: null,
authEmail: null,
hasBearerAuth: false,
};
}
export function applyAuthResponseCookies(
@@ -110,3 +135,8 @@ export function requireBackendAuthUser(auth: BackendHeaderBuildResult) {
auth.response,
);
}
export function requireBackendPaymentAuth(auth: BackendHeaderBuildResult) {
if (auth.authUserId || auth.hasBearerAuth) return null;
return requireBackendAuthUser(auth);
}