umami/queries/analytics/pageview/getPageviews.ts

44 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-08-28 06:38:35 +02:00
import prisma from 'lib/prisma';
2022-08-26 07:04:32 +02:00
import clickhouse from 'lib/clickhouse';
2022-08-28 06:38:35 +02:00
import { runQuery, CLICKHOUSE, PRISMA } from 'lib/db';
import { EVENT_TYPE } from 'lib/constants';
2022-07-12 23:14:36 +02:00
2023-02-15 11:27:18 +01:00
export async function getPageviews(...args: [websiteId: string, startAt: Date]) {
2022-08-28 06:38:35 +02:00
return runQuery({
[PRISMA]: () => relationalQuery(...args),
2022-07-25 18:47:11 +02:00
[CLICKHOUSE]: () => clickhouseQuery(...args),
2022-07-21 06:31:26 +02:00
});
}
2023-02-15 11:27:18 +01:00
async function relationalQuery(websiteId: string, startAt: Date) {
return prisma.client.websiteEvent.findMany({
2022-08-28 06:38:35 +02:00
where: {
2023-02-15 11:27:18 +01:00
websiteId,
createdAt: {
2022-12-27 02:36:48 +01:00
gte: startAt,
2022-08-28 06:38:35 +02:00
},
},
});
2022-07-12 23:14:36 +02:00
}
2022-07-21 06:31:26 +02:00
2023-02-15 11:27:18 +01:00
async function clickhouseQuery(websiteId: string, startAt: Date) {
const { rawQuery } = clickhouse;
2022-10-09 01:12:33 +02:00
2022-10-12 08:09:06 +02:00
return rawQuery(
2022-08-28 06:38:35 +02:00
`select
2023-02-15 11:27:18 +01:00
website_id as websiteId,
session_id as sessionId,
created_at as createdAt,
2023-02-18 06:42:42 +01:00
toUnixTimestamp(created_at) as timestamp,
2022-07-21 06:31:26 +02:00
url
2022-09-12 18:55:34 +02:00
from event
where event_type = ${EVENT_TYPE.pageView}
2023-02-15 11:27:18 +01:00
and website_id = {websiteId:UUID}
and created_at >= {startAt:DateTime('UTC')}`,
{
2023-02-15 11:27:18 +01:00
websiteId,
startAt,
},
2022-07-21 06:31:26 +02:00
);
}