34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import { type EmailOtpType } from "@supabase/supabase-js";
|
|
import { type NextRequest, NextResponse } from "next/server";
|
|
import { buildPathWithQuery, sanitizeNextPath } from "@/lib/auth/navigation";
|
|
import { hasSupabaseEnv } from "@/lib/supabase/config";
|
|
import { createClient } from "@/lib/supabase/server";
|
|
|
|
export async function GET(request: NextRequest) {
|
|
const { searchParams } = new URL(request.url);
|
|
const tokenHash = searchParams.get("token_hash");
|
|
const type = searchParams.get("type") as EmailOtpType | null;
|
|
const next = sanitizeNextPath(searchParams.get("next"));
|
|
|
|
if (!hasSupabaseEnv()) {
|
|
return NextResponse.redirect(
|
|
new URL(buildPathWithQuery("/login", { error: "auth-not-configured" }), request.url),
|
|
);
|
|
}
|
|
|
|
if (tokenHash && type) {
|
|
const supabase = await createClient();
|
|
const { error } = await supabase.auth.verifyOtp({
|
|
type,
|
|
token_hash: tokenHash,
|
|
});
|
|
|
|
if (!error) {
|
|
return NextResponse.redirect(new URL(next, request.url));
|
|
}
|
|
}
|
|
|
|
return NextResponse.redirect(
|
|
new URL(buildPathWithQuery("/login", { error: "verification-failed" }), request.url),
|
|
);
|
|
}
|