mirror of
https://github.com/documenso/documenso.git
synced 2026-07-11 05:25:08 +10:00
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
import { getMultipleEnvelopeWhereInput } from '@documenso/lib/server-only/envelope/get-envelopes-by-ids';
|
|
import { mapEnvelopesToDocumentMany } from '@documenso/lib/utils/document';
|
|
import { prisma } from '@documenso/prisma';
|
|
import { EnvelopeType } from '@prisma/client';
|
|
|
|
import { authenticatedProcedure } from '../trpc';
|
|
import {
|
|
getDocumentsByIdsMeta,
|
|
ZGetDocumentsByIdsRequestSchema,
|
|
ZGetDocumentsByIdsResponseSchema,
|
|
} from './get-documents-by-ids.types';
|
|
|
|
export const getDocumentsByIdsRoute = authenticatedProcedure
|
|
.meta(getDocumentsByIdsMeta)
|
|
.input(ZGetDocumentsByIdsRequestSchema)
|
|
.output(ZGetDocumentsByIdsResponseSchema)
|
|
.mutation(async ({ input, ctx }) => {
|
|
const { teamId, user } = ctx;
|
|
const { documentIds } = input;
|
|
|
|
ctx.logger.info({
|
|
input: {
|
|
documentIds,
|
|
},
|
|
});
|
|
|
|
const { envelopeWhereInput } = await getMultipleEnvelopeWhereInput({
|
|
ids: {
|
|
type: 'documentId',
|
|
ids: documentIds,
|
|
},
|
|
userId: user.id,
|
|
teamId,
|
|
type: EnvelopeType.DOCUMENT,
|
|
});
|
|
|
|
const envelopes = await prisma.envelope.findMany({
|
|
where: envelopeWhereInput,
|
|
include: {
|
|
user: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
email: true,
|
|
},
|
|
},
|
|
recipients: {
|
|
orderBy: {
|
|
id: 'asc',
|
|
},
|
|
},
|
|
team: {
|
|
select: {
|
|
id: true,
|
|
url: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
return {
|
|
data: envelopes.map((envelope) => mapEnvelopesToDocumentMany(envelope)),
|
|
};
|
|
});
|