cal/packages/lib/getAvatarUrl.ts

34 lines
1.0 KiB
TypeScript
Raw Normal View History

import { WEBAPP_URL } from "@calcom/lib/constants";
import { AVATAR_FALLBACK } from "@calcom/lib/constants";
import type { User, Team } from "@calcom/prisma/client";
/**
* Gives an organization aware avatar url for a user
* It ensures that the wrong avatar isn't fetched by ensuring that organizationId is always passed
*/
export const getUserAvatarUrl = (
user: (Pick<User, "username" | "organizationId"> & { avatarUrl?: string | null }) | undefined
) => {
if (user?.avatarUrl) {
return user.avatarUrl;
}
if (!user?.username) return AVATAR_FALLBACK;
// avatar.png automatically redirects to fallback avatar if user doesn't have one
return `${WEBAPP_URL}/${user.username}/avatar.png${
user.organizationId ? `?orgId=${user.organizationId}` : ""
}`;
};
export const getOrgAvatarUrl = (
org: Pick<Team, "id" | "slug"> & {
logoUrl?: string | null;
requestedSlug: string | null;
}
) => {
if (org.logoUrl) {
return org.logoUrl;
}
const slug = org.slug ?? org.requestedSlug;
return `${WEBAPP_URL}/org/${slug}/avatar.png`;
};