2022-06-02 16:19:01 +00:00
|
|
|
import { collectEvents } from "next-collect/server";
|
2022-08-16 19:50:09 +00:00
|
|
|
import { NextMiddleware, NextResponse, userAgent } from "next/server";
|
2022-06-02 16:19:01 +00:00
|
|
|
|
2022-08-16 19:55:50 +00:00
|
|
|
import { CONSOLE_URL, WEBAPP_URL, WEBSITE_URL } from "@calcom/lib/constants";
|
2022-08-23 21:34:10 +00:00
|
|
|
import { isIpInBanlist } from "@calcom/lib/getIP";
|
2022-07-28 19:58:26 +00:00
|
|
|
import { extendEventData, nextCollectBasicSettings } from "@calcom/lib/telemetry";
|
2022-06-02 16:19:01 +00:00
|
|
|
|
2022-08-09 09:21:15 +00:00
|
|
|
const middleware: NextMiddleware = async (req) => {
|
|
|
|
const url = req.nextUrl;
|
|
|
|
|
2022-08-23 21:34:10 +00:00
|
|
|
if (["/api/collect-events", "/api/auth"].some((p) => url.pathname.startsWith(p))) {
|
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);
|
2022-08-16 19:55:50 +00:00
|
|
|
|
|
|
|
if (
|
|
|
|
isBot ||
|
2022-08-23 21:34:10 +00:00
|
|
|
(callbackUrl && ![CONSOLE_URL, WEBAPP_URL, WEBSITE_URL].some((u) => callbackUrl.startsWith(u))) ||
|
|
|
|
isIpInBanlist(req)
|
2022-08-16 19:55:50 +00:00
|
|
|
) {
|
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:59:38 +00:00
|
|
|
req.nextUrl.pathname = "/api/nope";
|
|
|
|
return NextResponse.redirect(req.nextUrl);
|
2022-08-16 17:15:13 +00:00
|
|
|
}
|
|
|
|
}
|
2022-09-22 17:23:43 +00:00
|
|
|
|
2022-10-19 21:25:03 +00:00
|
|
|
// Ensure that embed query param is there in when /embed is added.
|
|
|
|
// query param is the way in which client side code knows that it is in embed mode.
|
|
|
|
if (url.pathname.endsWith("/embed") && typeof url.searchParams.get("embed") !== "string") {
|
|
|
|
url.searchParams.set("embed", "");
|
|
|
|
return NextResponse.redirect(url);
|
|
|
|
}
|
|
|
|
|
2022-09-22 17:23:43 +00:00
|
|
|
// Don't 404 old routing_forms links
|
|
|
|
if (url.pathname.startsWith("/apps/routing_forms")) {
|
|
|
|
url.pathname = url.pathname.replace("/apps/routing_forms", "/apps/routing-forms");
|
|
|
|
return NextResponse.rewrite(url);
|
|
|
|
}
|
|
|
|
|
2022-08-26 18:07:44 +00:00
|
|
|
return NextResponse.next();
|
2022-08-09 09:21:15 +00:00
|
|
|
};
|
|
|
|
|
2022-11-03 14:51:43 +00:00
|
|
|
export const config = {
|
|
|
|
matcher: ["/api/collect-events/:path*", "/api/auth/:path*", "/apps/routing_forms/:path*", "/:path*/embed"],
|
|
|
|
};
|
|
|
|
|
2022-06-02 16:19:01 +00:00
|
|
|
export default collectEvents({
|
2022-08-09 09:21:15 +00:00
|
|
|
middleware,
|
2022-06-02 16:19:01 +00:00
|
|
|
...nextCollectBasicSettings,
|
|
|
|
cookieName: "__clnds",
|
|
|
|
extend: extendEventData,
|
|
|
|
});
|