mirror of
https://github.com/documenso/documenso.git
synced 2026-07-25 17:35:05 +10:00
70 lines
2.2 KiB
TypeScript
70 lines
2.2 KiB
TypeScript
import { IS_BILLING_ENABLED } from '@documenso/lib/constants/app';
|
|
import { TEAM_MEMBER_ROLE_PERMISSIONS_MAP } from '@documenso/lib/constants/teams';
|
|
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import { buildBrandingLogoData } from '@documenso/lib/server-only/branding/store-branding-logo';
|
|
import { getOrganisationClaimByTeamId } from '@documenso/lib/server-only/organisation/get-organisation-claims';
|
|
import { buildTeamWhereQuery } from '@documenso/lib/utils/teams';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { authenticatedProcedure } from '../trpc';
|
|
import {
|
|
ZUpdateTeamBrandingLogoRequestSchema,
|
|
ZUpdateTeamBrandingLogoResponseSchema,
|
|
} from './update-team-branding-logo.types';
|
|
|
|
export const updateTeamBrandingLogoRoute = authenticatedProcedure
|
|
.input(ZUpdateTeamBrandingLogoRequestSchema)
|
|
.output(ZUpdateTeamBrandingLogoResponseSchema)
|
|
.mutation(async ({ ctx, input }) => {
|
|
const { user } = ctx;
|
|
const { payload, brandingLogo } = input;
|
|
const { teamId } = payload;
|
|
|
|
ctx.logger.info({
|
|
input: {
|
|
teamId,
|
|
},
|
|
});
|
|
|
|
const team = await prisma.team.findFirst({
|
|
where: buildTeamWhereQuery({
|
|
teamId,
|
|
userId: user.id,
|
|
roles: TEAM_MEMBER_ROLE_PERMISSIONS_MAP['MANAGE_TEAM'],
|
|
}),
|
|
});
|
|
|
|
if (!team) {
|
|
throw new AppError(AppErrorCode.UNAUTHORIZED, {
|
|
message: 'You do not have permission to update this team.',
|
|
});
|
|
}
|
|
|
|
// Setting a logo requires the custom-branding entitlement; clearing it is
|
|
// always allowed so a downgraded team can still remove its logo.
|
|
if (brandingLogo && IS_BILLING_ENABLED()) {
|
|
const claim = await getOrganisationClaimByTeamId({ teamId });
|
|
|
|
if (claim.flags?.allowCustomBranding !== true) {
|
|
throw new AppError(AppErrorCode.UNAUTHORIZED, {
|
|
message: 'Your plan does not allow custom branding.',
|
|
});
|
|
}
|
|
}
|
|
|
|
const brandingLogoValue = brandingLogo ? await buildBrandingLogoData(brandingLogo) : '';
|
|
|
|
await prisma.team.update({
|
|
where: {
|
|
id: team.id,
|
|
},
|
|
data: {
|
|
teamGlobalSettings: {
|
|
update: {
|
|
brandingLogo: brandingLogoValue,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
});
|