umami/queries/analytics/event/getEvents.ts

48 lines
1.2 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-04-07 03:31:16 +02:00
export function getEvents(...args: [websiteId: string, startAt: Date, eventType: number]) {
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-04-07 03:31:16 +02:00
function relationalQuery(websiteId: string, startAt: Date, eventType: number) {
2023-02-15 11:27:18 +01:00
return prisma.client.websiteEvent.findMany({
2022-08-28 06:38:35 +02:00
where: {
2023-02-15 11:27:18 +01:00
websiteId,
2023-04-07 03:31:16 +02:00
eventType,
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-04-07 03:31:16 +02:00
function clickhouseQuery(websiteId: string, startAt: Date, eventType: number) {
const { rawQuery } = clickhouse;
2022-08-28 06:38:35 +02:00
return rawQuery(
`select
2023-02-18 06:42:42 +01:00
event_id as id,
website_id as websiteId,
session_id as sessionId,
created_at as createdAt,
toUnixTimestamp(created_at) as timestamp,
2023-03-23 19:46:49 +01:00
url_path,
2023-02-18 06:42:42 +01:00
event_name as eventName
2023-03-29 20:06:12 +02:00
from website_event
2023-04-07 20:48:43 +02:00
where event_type = {eventType:UInt32}
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,
2023-04-07 03:31:16 +02:00
eventType,
},
2022-07-21 06:31:26 +02:00
);
}