hamid1882
hamid1882
CCConvex Community
Created by hamid1882 on 2/8/2025 in #support-community
Middleware Issue on our Nextjs project
We are facing an issue on our existing middleware setup on our nextjs project, we use to check if a user is authenticated before using this code:
await convexAuth.isAuthenticated()
await convexAuth.isAuthenticated()
but now after upgrading convex auth from 0.0.74 to 0.0.80 we are getting this error: Middleware.ts file code
export default convexAuthNextjsMiddleware(
async (request, { convexAuth }) => {
const url = new URL(request.url);

if (url.pathname === "/login" && (await convexAuth.isAuthenticated())) {
const urlSearchParams = new URL(request.url).searchParams
.get("redirect")
?.replaceAll("/", "");

if (urlSearchParams) {
return NextResponse.redirect(
new URL(`/${urlSearchParams}`, request.url)
);
} else {
return NextResponse.redirect(new URL("/", request.url));
}
}

if (isProtectedRoute(request) && !(await convexAuth.isAuthenticated())) {
const url = new URL(request.url);
const pathAfterLocalhost = url.pathname.replace("application", "");

if (pathAfterLocalhost) {
return NextResponse.redirect(
new URL(`/login?redirect=${pathAfterLocalhost}`, request.url)
);
}

return nextjsMiddlewareRedirect(request, "/login");
}
},
{ cookieConfig: { maxAge: 60 * 60 * 24 * 30 } }
);
export default convexAuthNextjsMiddleware(
async (request, { convexAuth }) => {
const url = new URL(request.url);

if (url.pathname === "/login" && (await convexAuth.isAuthenticated())) {
const urlSearchParams = new URL(request.url).searchParams
.get("redirect")
?.replaceAll("/", "");

if (urlSearchParams) {
return NextResponse.redirect(
new URL(`/${urlSearchParams}`, request.url)
);
} else {
return NextResponse.redirect(new URL("/", request.url));
}
}

if (isProtectedRoute(request) && !(await convexAuth.isAuthenticated())) {
const url = new URL(request.url);
const pathAfterLocalhost = url.pathname.replace("application", "");

if (pathAfterLocalhost) {
return NextResponse.redirect(
new URL(`/login?redirect=${pathAfterLocalhost}`, request.url)
);
}

return nextjsMiddlewareRedirect(request, "/login");
}
},
{ cookieConfig: { maxAge: 60 * 60 * 24 * 30 } }
);
Error:
Server Error
Error: Server Error: could not find api.auth.isAuthenticated. convex-auth 0.0.76 introduced a new export in convex/auth.ts. Add `isAuthenticated` to the list of functions returned from convexAuth(). See convex-auth changelog for more https://github.com/get-convex/convex-auth/blob/main/CHANGELOG.md

This error happened while generating the page. Any console logs will be displayed in the terminal window.
Source
src\middleware.ts (29:38) @ async eval

> 29 | if (isProtectedRoute(request) && !(await convexAuth.isAuthenticated())) {}
Server Error
Error: Server Error: could not find api.auth.isAuthenticated. convex-auth 0.0.76 introduced a new export in convex/auth.ts. Add `isAuthenticated` to the list of functions returned from convexAuth(). See convex-auth changelog for more https://github.com/get-convex/convex-auth/blob/main/CHANGELOG.md

This error happened while generating the page. Any console logs will be displayed in the terminal window.
Source
src\middleware.ts (29:38) @ async eval

> 29 | if (isProtectedRoute(request) && !(await convexAuth.isAuthenticated())) {}
can anyone help me fix this issue.
3 replies
CCConvex Community
Created by hamid1882 on 12/30/2024 in #support-community
Facing difficulty in setting up Convex on Multiple Projects
I have currenty connected Convex database on my Frontend Nextjs project, Now I have created a new nextjs project for Backend (Admin Dashboard) where we gonna use queries & mutations exhaustively. Can anyone help setup this for us?
8 replies
CCConvex Community
Created by hamid1882 on 12/11/2024 in #support-community
OTP Verification after login on Profile dashboard
We are using twillio and resend as SMS and Email services, on intial login we are verifying phone number by sending otp to the user, and google login without otp verification. Now we have built a Profile dashboard where a user can change the mobile number and email address, whenever user changes any of them I want to verify by otp. We've tried using the same TwilioOTP.sendVerificationRequest by passing the required params but its not accepting the ctx which we are trying to pass from a mutation function. when we tried resend.sendVerficationRequest we got the convex auth error saying that we cannot use this function outside the convex auth. is there a way to fix this?
13 replies
CCConvex Community
Created by hamid1882 on 11/20/2024 in #support-community
extra field `ttl` that is not in the validator - cache component
No description
7 replies