2023-04-19 20:55:40 +00:00
|
|
|
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { z } from "zod";
|
|
|
|
|
2023-04-20 13:43:06 +00:00
|
|
|
import { IS_SELF_HOSTED, LOGO, LOGO_ICON, WEBAPP_URL } from "@calcom/lib/constants";
|
2023-04-19 20:55:40 +00:00
|
|
|
|
|
|
|
function removePort(url: string) {
|
|
|
|
return url.replace(/:\d+$/, "");
|
|
|
|
}
|
|
|
|
|
2023-04-20 13:43:06 +00:00
|
|
|
function extractSubdomainAndDomain(hostname: string) {
|
|
|
|
const hostParts = removePort(hostname).split(".");
|
|
|
|
|
|
|
|
const subdomainParts = hostParts.slice(0, hostParts.length - 2);
|
|
|
|
const domain = hostParts.slice(hostParts.length - 2).join(".");
|
|
|
|
|
|
|
|
return [subdomainParts[0], domain];
|
2023-04-19 20:55:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const logoApiSchema = z.object({
|
|
|
|
icon: z.coerce.boolean().optional(),
|
|
|
|
});
|
|
|
|
|
2023-04-20 13:43:06 +00:00
|
|
|
const SYSTEM_SUBDOMAINS = ["console", "app", "www"];
|
2023-04-19 20:55:40 +00:00
|
|
|
|
2023-04-20 13:43:06 +00:00
|
|
|
async function getTeamLogos(subdomain: string) {
|
|
|
|
if (
|
|
|
|
// if not cal.com
|
|
|
|
IS_SELF_HOSTED ||
|
|
|
|
// missing subdomain (empty string)
|
|
|
|
!subdomain ||
|
|
|
|
// in SYSTEM_SUBDOMAINS list
|
|
|
|
SYSTEM_SUBDOMAINS.includes(subdomain)
|
|
|
|
) {
|
|
|
|
return {
|
|
|
|
appLogo: `${WEBAPP_URL}${LOGO}`,
|
|
|
|
appIconLogo: `${WEBAPP_URL}${LOGO_ICON}`,
|
|
|
|
};
|
2023-04-19 20:55:40 +00:00
|
|
|
}
|
2023-04-20 13:43:06 +00:00
|
|
|
// load from DB
|
|
|
|
const { default: prisma } = await import("@calcom/prisma");
|
|
|
|
const team = await prisma.team.findUniqueOrThrow({
|
|
|
|
where: {
|
|
|
|
slug: subdomain,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
appLogo: true,
|
|
|
|
appIconLogo: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
// try to use team logos, otherwise default to LOGO/LOGO_ICON regardless
|
|
|
|
return {
|
|
|
|
appLogo: team.appLogo || `${WEBAPP_URL}${LOGO}`,
|
|
|
|
appIconLogo: team.appIconLogo || `${WEBAPP_URL}${LOGO_ICON}`,
|
|
|
|
};
|
2023-04-19 20:55:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This API endpoint is used to serve the logo associated with a team if no logo is found we serve our default logo
|
|
|
|
*/
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
2023-04-20 13:43:06 +00:00
|
|
|
const { query } = req;
|
|
|
|
const parsedQuery = logoApiSchema.parse(query);
|
2023-04-19 20:55:40 +00:00
|
|
|
|
2023-04-20 13:43:06 +00:00
|
|
|
const hostname = req?.headers["host"];
|
|
|
|
if (!hostname) throw new Error("No hostname");
|
|
|
|
const domains = extractSubdomainAndDomain(hostname);
|
|
|
|
if (!domains) throw new Error("No domains");
|
2023-04-19 20:55:40 +00:00
|
|
|
|
2023-04-20 13:43:06 +00:00
|
|
|
const [subdomain] = domains;
|
|
|
|
const { appLogo, appIconLogo } = await getTeamLogos(subdomain);
|
2023-04-19 20:55:40 +00:00
|
|
|
|
2023-04-20 13:43:06 +00:00
|
|
|
const filteredLogo = parsedQuery?.icon ? appIconLogo : appLogo;
|
2023-04-19 20:55:40 +00:00
|
|
|
|
2023-04-20 13:43:06 +00:00
|
|
|
const response = await fetch(filteredLogo);
|
|
|
|
const arrayBuffer = await response.arrayBuffer();
|
|
|
|
const buffer = Buffer.from(arrayBuffer);
|
|
|
|
res.setHeader("Content-Type", response.headers.get("content-type") as string);
|
|
|
|
res.setHeader("Cache-Control", "s-maxage=86400");
|
|
|
|
res.send(buffer);
|
2023-04-19 20:55:40 +00:00
|
|
|
}
|