mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 12:05:41 +01:00
90 lines
2.2 KiB
TypeScript
90 lines
2.2 KiB
TypeScript
import clickhouse from '@/lib/clickhouse';
|
|
import { EVENT_TYPE, FILTER_COLUMNS, SESSION_COLUMNS } from '@/lib/constants';
|
|
import { CLICKHOUSE, PRISMA, runQuery } from '@/lib/db';
|
|
import prisma from '@/lib/prisma';
|
|
import { QueryFilters } from '@/lib/types';
|
|
|
|
export async function getEventMetrics(
|
|
...args: [
|
|
websiteId: string,
|
|
type: string,
|
|
filters: QueryFilters,
|
|
limit?: number | string,
|
|
offset?: number | string,
|
|
]
|
|
) {
|
|
return runQuery({
|
|
[PRISMA]: () => relationalQuery(...args),
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
|
});
|
|
}
|
|
|
|
async function relationalQuery(
|
|
websiteId: string,
|
|
type: string,
|
|
filters: QueryFilters,
|
|
limit: number | string = 500,
|
|
offset: number | string = 0,
|
|
) {
|
|
const column = FILTER_COLUMNS[type] || type;
|
|
const { rawQuery, parseFilters } = prisma;
|
|
const { filterQuery, cohortQuery, joinSession, params } = await parseFilters(
|
|
websiteId,
|
|
{
|
|
...filters,
|
|
eventType: EVENT_TYPE.customEvent,
|
|
},
|
|
{ joinSession: SESSION_COLUMNS.includes(type) },
|
|
);
|
|
|
|
return rawQuery(
|
|
`
|
|
select ${column} x,
|
|
count(*) as y
|
|
from website_event
|
|
${cohortQuery}
|
|
${joinSession}
|
|
where website_event.website_id = {{websiteId::uuid}}
|
|
and website_event.created_at between {{startDate}} and {{endDate}}
|
|
and event_type = {{eventType}}
|
|
${filterQuery}
|
|
group by 1
|
|
order by 2 desc
|
|
limit ${limit}
|
|
offset ${offset}
|
|
`,
|
|
params,
|
|
);
|
|
}
|
|
|
|
async function clickhouseQuery(
|
|
websiteId: string,
|
|
type: string,
|
|
filters: QueryFilters,
|
|
limit: number | string = 500,
|
|
offset: number | string = 0,
|
|
): Promise<{ x: string; y: number }[]> {
|
|
const column = FILTER_COLUMNS[type] || type;
|
|
const { rawQuery, parseFilters } = clickhouse;
|
|
const { filterQuery, cohortQuery, params } = await parseFilters(websiteId, {
|
|
...filters,
|
|
eventType: EVENT_TYPE.customEvent,
|
|
});
|
|
|
|
return rawQuery(
|
|
`select ${column} x,
|
|
count(*) as y
|
|
from website_event
|
|
${cohortQuery}
|
|
where website_id = {websiteId:UUID}
|
|
and created_at between {startDate:DateTime64} and {endDate:DateTime64}
|
|
and event_type = {eventType:UInt32}
|
|
${filterQuery}
|
|
group by x
|
|
order by y desc
|
|
limit ${limit}
|
|
offset ${offset}
|
|
`,
|
|
params,
|
|
);
|
|
}
|