mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
86 lines
2.7 KiB
TypeScript
86 lines
2.7 KiB
TypeScript
import { DateTime } from 'luxon';
|
|
|
|
import { kyselyPrisma, prisma, sql } from '@documenso/prisma';
|
|
import { SubscriptionStatus, UserSecurityAuditLogType } from '@documenso/prisma/client';
|
|
|
|
export const getUsersCount = async () => {
|
|
return await prisma.user.count();
|
|
};
|
|
|
|
export const getOrganisationsWithSubscriptionsCount = async () => {
|
|
return await prisma.organisation.count({
|
|
where: {
|
|
subscription: {
|
|
status: SubscriptionStatus.ACTIVE,
|
|
},
|
|
},
|
|
});
|
|
};
|
|
|
|
export type GetUserWithDocumentMonthlyGrowth = Array<{
|
|
month: string;
|
|
count: number;
|
|
signed_count: number;
|
|
}>;
|
|
|
|
type GetUserWithDocumentMonthlyGrowthQueryResult = Array<{
|
|
month: Date;
|
|
count: bigint;
|
|
signed_count: bigint;
|
|
}>;
|
|
|
|
export const getUserWithSignedDocumentMonthlyGrowth = async () => {
|
|
const result = await prisma.$queryRaw<GetUserWithDocumentMonthlyGrowthQueryResult>`
|
|
SELECT
|
|
DATE_TRUNC('month', "Document"."createdAt") AS "month",
|
|
COUNT(DISTINCT "Document"."userId") as "count",
|
|
COUNT(DISTINCT CASE WHEN "Document"."status" = 'COMPLETED' THEN "Document"."userId" END) as "signed_count"
|
|
FROM "Document"
|
|
INNER JOIN "Team" ON "Document"."teamId" = "Team"."id"
|
|
INNER JOIN "Organisation" ON "Team"."organisationId" = "Organisation"."id"
|
|
GROUP BY "month"
|
|
ORDER BY "month" DESC
|
|
LIMIT 12
|
|
`;
|
|
|
|
return result.map((row) => ({
|
|
month: DateTime.fromJSDate(row.month).toFormat('yyyy-MM'),
|
|
count: Number(row.count),
|
|
signed_count: Number(row.signed_count),
|
|
}));
|
|
};
|
|
|
|
export type GetMonthlyActiveUsersResult = Array<{
|
|
month: string;
|
|
count: number;
|
|
cume_count: number;
|
|
}>;
|
|
|
|
export const getMonthlyActiveUsers = async () => {
|
|
const qb = kyselyPrisma.$kysely
|
|
.selectFrom('UserSecurityAuditLog')
|
|
.select(({ fn }) => [
|
|
fn<Date>('DATE_TRUNC', [sql.lit('MONTH'), 'UserSecurityAuditLog.createdAt']).as('month'),
|
|
fn.count('userId').distinct().as('count'),
|
|
fn
|
|
.sum(fn.count('userId').distinct())
|
|
.over((ob) =>
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/consistent-type-assertions
|
|
ob.orderBy(fn('DATE_TRUNC', [sql.lit('MONTH'), 'UserSecurityAuditLog.createdAt']) as any),
|
|
)
|
|
.as('cume_count'),
|
|
])
|
|
.where(sql`type = ${UserSecurityAuditLogType.SIGN_IN}::"UserSecurityAuditLogType"`)
|
|
.groupBy(({ fn }) => fn('DATE_TRUNC', [sql.lit('MONTH'), 'UserSecurityAuditLog.createdAt']))
|
|
.orderBy('month', 'desc')
|
|
.limit(12);
|
|
|
|
const result = await qb.execute();
|
|
|
|
return result.map((row) => ({
|
|
month: DateTime.fromJSDate(row.month).toFormat('yyyy-MM'),
|
|
count: Number(row.count),
|
|
cume_count: Number(row.cume_count),
|
|
}));
|
|
};
|