cal.pub0.org/apps/web/middleware.ts

36 lines
1.3 KiB
TypeScript
Raw Normal View History

import { collectEvents } from "next-collect/server";
// eslint-disable-next-line @next/next/no-server-import-in-page
2022-08-16 19:50:09 +00:00
import { NextMiddleware, NextResponse, userAgent } from "next/server";
import { extendEventData, nextCollectBasicSettings } from "@calcom/lib/telemetry";
const V2_WHITELIST = ["/settings/admin"];
const middleware: NextMiddleware = async (req) => {
const url = req.nextUrl;
2022-08-16 19:50:09 +00:00
if (url.pathname.startsWith("/api/auth")) {
2022-08-16 17:15:13 +00:00
const callbackUrl = url.searchParams.get("callbackUrl");
2022-08-16 19:50:09 +00:00
const { isBot } = userAgent(req);
if (isBot || (callbackUrl && !callbackUrl.startsWith("https://") && !callbackUrl.startsWith("http://"))) {
2022-08-16 17:15:13 +00:00
// DDOS Prevention: Immediately end request with no response - Avoids a redirect as well initiated by NextAuth on invalid callback
2022-08-16 19:50:09 +00:00
const res = new NextResponse("hey", { status: 400, statusText: "Please don't" });
return res;
2022-08-16 17:15:13 +00:00
}
}
/** Display available V2 pages to users who opted-in to early access */
if (req.cookies.has("calcom-v2-early-access") && V2_WHITELIST.some((p) => url.pathname.startsWith(p))) {
// rewrite to the current subdomain under the pages/sites folder
url.pathname = `/v2${url.pathname}`;
}
return NextResponse.rewrite(url);
};
export default collectEvents({
middleware,
...nextCollectBasicSettings,
cookieName: "__clnds",
extend: extendEventData,
});