* Revert "Revert "chore: Chore team metadata table + isOrganization migration from metadata (#12828)""
This reverts commit 2408338ed4.
* Remove constraint slug,isOrganization and reset migration
* fix: conflicts
* change schema to bust cache
* Fix issues reported by TS
* change schema to bust cache
* Review fixes
* Colaesce for orgAutoAcceptEmail as well
* Fix missing negation
---------
Co-authored-by: zomars <zomars@me.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
Co-authored-by: Keith Williams <keithwillcode@gmail.com>
Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com>
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { IS_TEAM_BILLING_ENABLED } from "@calcom/lib/constants";
|
|
import { prisma } from "@calcom/prisma";
|
|
import { MembershipRole } from "@calcom/prisma/enums";
|
|
import { teamMetadataSchema } from "@calcom/prisma/zod-utils";
|
|
import type { TrpcSessionUser } from "@calcom/trpc/server/trpc";
|
|
|
|
type GetUpgradeableOptions = {
|
|
ctx: {
|
|
user: NonNullable<TrpcSessionUser>;
|
|
};
|
|
};
|
|
|
|
export const getUpgradeableHandler = async ({ ctx }: GetUpgradeableOptions) => {
|
|
if (!IS_TEAM_BILLING_ENABLED) return [];
|
|
|
|
// Get all teams/orgs where the user is an owner
|
|
let teams = await prisma.membership.findMany({
|
|
where: {
|
|
user: {
|
|
id: ctx.user.id,
|
|
},
|
|
role: MembershipRole.OWNER,
|
|
team: {
|
|
parentId: null, // Since ORGS relay on their parent's subscription, we don't need to return them
|
|
},
|
|
},
|
|
include: {
|
|
team: {
|
|
include: {
|
|
children: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
/** We only need to return teams that don't have a `subscriptionId` on their metadata */
|
|
teams = teams.filter((m) => {
|
|
const metadata = teamMetadataSchema.safeParse(m.team.metadata);
|
|
if (metadata.success && metadata.data?.subscriptionId) return false;
|
|
if (m.team.isOrganization) return false; // We also dont return ORGs as it will be handled in OrgUpgradeBanner
|
|
if (m.team.children.length > 0) return false; // We also dont return ORGs as it will be handled in OrgUpgradeBanner
|
|
return true;
|
|
});
|
|
return teams;
|
|
};
|
|
|
|
export default getUpgradeableHandler;
|