mirror of
https://github.com/documenso/documenso.git
synced 2026-08-23 23:02:22 +10:00
80 lines
2.4 KiB
TypeScript
80 lines
2.4 KiB
TypeScript
import { ORGANISATION_MEMBER_ROLE_PERMISSIONS_MAP } from '@documenso/lib/constants/organisations';
|
|
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import { getMemberOrganisationRole } from '@documenso/lib/server-only/team/get-member-roles';
|
|
import { buildOrganisationWhereQuery, isOrganisationRoleWithinUserHierarchy } from '@documenso/lib/utils/organisations';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { authenticatedProcedure } from '../trpc';
|
|
import {
|
|
ZDeleteOrganisationMemberInvitesRequestSchema,
|
|
ZDeleteOrganisationMemberInvitesResponseSchema,
|
|
} from './delete-organisation-member-invites.types';
|
|
|
|
export const deleteOrganisationMemberInvitesRoute = authenticatedProcedure
|
|
// .meta(deleteOrganisationMemberInvitesMeta)
|
|
.input(ZDeleteOrganisationMemberInvitesRequestSchema)
|
|
.output(ZDeleteOrganisationMemberInvitesResponseSchema)
|
|
.mutation(async ({ ctx, input }) => {
|
|
const { organisationId, invitationIds } = input;
|
|
const userId = ctx.user.id;
|
|
|
|
ctx.logger.info({
|
|
input: {
|
|
organisationId,
|
|
invitationIds,
|
|
},
|
|
});
|
|
|
|
const organisation = await prisma.organisation.findFirst({
|
|
where: buildOrganisationWhereQuery({
|
|
organisationId,
|
|
userId,
|
|
roles: ORGANISATION_MEMBER_ROLE_PERMISSIONS_MAP['MANAGE_ORGANISATION'],
|
|
}),
|
|
});
|
|
|
|
if (!organisation) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND);
|
|
}
|
|
|
|
const currentOrganisationMemberRole = await getMemberOrganisationRole({
|
|
organisationId: organisation.id,
|
|
reference: {
|
|
type: 'User',
|
|
id: userId,
|
|
},
|
|
});
|
|
|
|
const invitesToDelete = await prisma.organisationMemberInvite.findMany({
|
|
where: {
|
|
id: {
|
|
in: invitationIds,
|
|
},
|
|
organisationId: organisation.id,
|
|
},
|
|
select: {
|
|
id: true,
|
|
organisationRole: true,
|
|
},
|
|
});
|
|
|
|
const hasUnauthorizedRoleAccess = invitesToDelete.some(
|
|
(invite) => !isOrganisationRoleWithinUserHierarchy(currentOrganisationMemberRole, invite.organisationRole),
|
|
);
|
|
|
|
if (hasUnauthorizedRoleAccess) {
|
|
throw new AppError(AppErrorCode.UNAUTHORIZED, {
|
|
message: 'User does not have permission to delete invitations for higher roles',
|
|
});
|
|
}
|
|
|
|
await prisma.organisationMemberInvite.deleteMany({
|
|
where: {
|
|
id: {
|
|
in: invitationIds,
|
|
},
|
|
organisationId,
|
|
},
|
|
});
|
|
});
|