mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import type { FindResultResponse } from '@documenso/lib/types/search-params';
|
|
import { parseDocumentAuditLogData } from '@documenso/lib/utils/document-audit-logs';
|
|
import { unsafeBuildEnvelopeIdQuery } from '@documenso/lib/utils/envelope';
|
|
import { prisma } from '@documenso/prisma';
|
|
import { EnvelopeType } from '@prisma/client';
|
|
|
|
import { adminProcedure } from '../trpc';
|
|
import {
|
|
ZFindDocumentAuditLogsRequestSchema,
|
|
ZFindDocumentAuditLogsResponseSchema,
|
|
} from './find-document-audit-logs.types';
|
|
|
|
export const findDocumentAuditLogsRoute = adminProcedure
|
|
.input(ZFindDocumentAuditLogsRequestSchema)
|
|
.output(ZFindDocumentAuditLogsResponseSchema)
|
|
.query(async ({ input }) => {
|
|
const { envelopeId, page = 1, perPage = 50, orderByColumn = 'createdAt', orderByDirection = 'desc' } = input;
|
|
|
|
const envelope = await prisma.envelope.findFirst({
|
|
where: unsafeBuildEnvelopeIdQuery(
|
|
{
|
|
type: 'envelopeId',
|
|
id: envelopeId,
|
|
},
|
|
EnvelopeType.DOCUMENT,
|
|
),
|
|
});
|
|
|
|
if (!envelope) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, {
|
|
message: 'Envelope not found',
|
|
});
|
|
}
|
|
|
|
const [data, count] = await Promise.all([
|
|
prisma.documentAuditLog.findMany({
|
|
where: { envelopeId: envelope.id },
|
|
skip: Math.max(page - 1, 0) * perPage,
|
|
take: perPage,
|
|
orderBy: {
|
|
[orderByColumn]: orderByDirection,
|
|
},
|
|
}),
|
|
prisma.documentAuditLog.count({
|
|
where: { envelopeId: envelope.id },
|
|
}),
|
|
]);
|
|
|
|
const parsedData = data.map((auditLog) => parseDocumentAuditLogData(auditLog));
|
|
|
|
return {
|
|
data: parsedData,
|
|
count,
|
|
currentPage: Math.max(page, 1),
|
|
perPage,
|
|
totalPages: Math.ceil(count / perPage),
|
|
} satisfies FindResultResponse<typeof parsedData>;
|
|
});
|