mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
## Description Add support for teams which will allow users to collaborate on documents. Teams features allows users to: - Create, manage and transfer teams - Manage team members - Manage team emails - Manage a shared team inbox and documents These changes do NOT include the following, which are planned for a future release: - Team templates - Team API - Search menu integration ## Testing Performed - Added E2E tests for general team management - Added E2E tests to validate document counts ## Checklist - [X] I have tested these changes locally and they work as expected. - [X] I have added/updated tests that prove the effectiveness of these changes. - [ ] I have updated the documentation to reflect these changes, if applicable. - [X] I have followed the project's coding style guidelines.
107 lines
2.6 KiB
TypeScript
107 lines
2.6 KiB
TypeScript
import { createElement } from 'react';
|
|
|
|
import { mailer } from '@documenso/email/mailer';
|
|
import { render } from '@documenso/email/render';
|
|
import { TeamTransferRequestTemplate } from '@documenso/email/templates/team-transfer-request';
|
|
import { WEBAPP_BASE_URL } from '@documenso/lib/constants/app';
|
|
import { FROM_ADDRESS, FROM_NAME } from '@documenso/lib/constants/email';
|
|
import { createTokenVerification } from '@documenso/lib/utils/token-verification';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
export type RequestTeamOwnershipTransferOptions = {
|
|
/**
|
|
* The ID of the user initiating the transfer.
|
|
*/
|
|
userId: number;
|
|
|
|
/**
|
|
* The name of the user initiating the transfer.
|
|
*/
|
|
userName: string;
|
|
|
|
/**
|
|
* The ID of the team whose ownership is being transferred.
|
|
*/
|
|
teamId: number;
|
|
|
|
/**
|
|
* The user ID of the new owner.
|
|
*/
|
|
newOwnerUserId: number;
|
|
|
|
/**
|
|
* Whether to clear any current payment methods attached to the team.
|
|
*/
|
|
clearPaymentMethods: boolean;
|
|
};
|
|
|
|
export const requestTeamOwnershipTransfer = async ({
|
|
userId,
|
|
userName,
|
|
teamId,
|
|
newOwnerUserId,
|
|
}: RequestTeamOwnershipTransferOptions) => {
|
|
// Todo: Clear payment methods disabled for now.
|
|
const clearPaymentMethods = false;
|
|
|
|
await prisma.$transaction(async (tx) => {
|
|
const team = await tx.team.findFirstOrThrow({
|
|
where: {
|
|
id: teamId,
|
|
ownerUserId: userId,
|
|
members: {
|
|
some: {
|
|
userId: newOwnerUserId,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const newOwnerUser = await tx.user.findFirstOrThrow({
|
|
where: {
|
|
id: newOwnerUserId,
|
|
},
|
|
});
|
|
|
|
const { token, expiresAt } = createTokenVerification({ minute: 10 });
|
|
|
|
const teamVerificationPayload = {
|
|
teamId,
|
|
token,
|
|
expiresAt,
|
|
userId: newOwnerUserId,
|
|
name: newOwnerUser.name ?? '',
|
|
email: newOwnerUser.email,
|
|
clearPaymentMethods,
|
|
};
|
|
|
|
await tx.teamTransferVerification.upsert({
|
|
where: {
|
|
teamId,
|
|
},
|
|
create: teamVerificationPayload,
|
|
update: teamVerificationPayload,
|
|
});
|
|
|
|
const template = createElement(TeamTransferRequestTemplate, {
|
|
assetBaseUrl: WEBAPP_BASE_URL,
|
|
baseUrl: WEBAPP_BASE_URL,
|
|
senderName: userName,
|
|
teamName: team.name,
|
|
teamUrl: team.url,
|
|
token,
|
|
});
|
|
|
|
await mailer.sendMail({
|
|
to: newOwnerUser.email,
|
|
from: {
|
|
name: FROM_NAME,
|
|
address: FROM_ADDRESS,
|
|
},
|
|
subject: `You have been requested to take ownership of team ${team.name} on Documenso`,
|
|
html: render(template),
|
|
text: render(template, { plainText: true }),
|
|
});
|
|
});
|
|
};
|