mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
98 lines
2.6 KiB
TypeScript
98 lines
2.6 KiB
TypeScript
import prisma from 'lib/prisma';
|
|
import clickhouse from 'lib/clickhouse';
|
|
import { runQuery, CLICKHOUSE, PRISMA } from 'lib/db';
|
|
import { EVENT_TYPE, FILTER_COLUMNS, SESSION_COLUMNS } from 'lib/constants';
|
|
import { QueryFilters } from 'lib/types';
|
|
|
|
export async function getSessionMetrics(
|
|
...args: [websiteId: string, type: string, filters: QueryFilters, limit?: number, offset?: number]
|
|
) {
|
|
return runQuery({
|
|
[PRISMA]: () => relationalQuery(...args),
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
|
});
|
|
}
|
|
|
|
async function relationalQuery(
|
|
websiteId: string,
|
|
type: string,
|
|
filters: QueryFilters,
|
|
limit: number = 500,
|
|
offset: number = 0,
|
|
) {
|
|
const column = FILTER_COLUMNS[type] || type;
|
|
const { parseFilters, rawQuery } = prisma;
|
|
const { filterQuery, joinSession, params } = await parseFilters(
|
|
websiteId,
|
|
{
|
|
...filters,
|
|
eventType: EVENT_TYPE.pageView,
|
|
},
|
|
{
|
|
joinSession: SESSION_COLUMNS.includes(type),
|
|
},
|
|
);
|
|
const includeCountry = column === 'city' || column === 'subdivision1';
|
|
|
|
return rawQuery(
|
|
`
|
|
select
|
|
${column} x,
|
|
count(distinct website_event.session_id) y
|
|
${includeCountry ? ', country' : ''}
|
|
from website_event
|
|
${joinSession}
|
|
where website_event.website_id = {{websiteId::uuid}}
|
|
and website_event.created_at between {{startDate}} and {{endDate}}
|
|
and website_event.event_type = {{eventType}}
|
|
${filterQuery}
|
|
group by 1
|
|
${includeCountry ? ', 3' : ''}
|
|
order by 2 desc
|
|
limit ${limit}
|
|
offset ${offset}
|
|
`,
|
|
params,
|
|
);
|
|
}
|
|
|
|
async function clickhouseQuery(
|
|
websiteId: string,
|
|
type: string,
|
|
filters: QueryFilters,
|
|
limit: number = 500,
|
|
offset: number = 0,
|
|
): Promise<{ x: string; y: number }[]> {
|
|
const column = FILTER_COLUMNS[type] || type;
|
|
const { parseFilters, rawQuery } = clickhouse;
|
|
const { filterQuery, params } = await parseFilters(websiteId, {
|
|
...filters,
|
|
eventType: EVENT_TYPE.pageView,
|
|
});
|
|
const includeCountry = column === 'city' || column === 'subdivision1';
|
|
|
|
return rawQuery(
|
|
`
|
|
select
|
|
${column} x,
|
|
uniq(session_id) y
|
|
${includeCountry ? ', country' : ''}
|
|
from website_event
|
|
where website_id = {websiteId:UUID}
|
|
and created_at between {startDate:DateTime64} and {endDate:DateTime64}
|
|
and event_type = {eventType:UInt32}
|
|
${filterQuery}
|
|
group by x
|
|
${includeCountry ? ', country' : ''}
|
|
order by y desc
|
|
limit ${limit}
|
|
offset ${offset}
|
|
`,
|
|
params,
|
|
).then(a => {
|
|
return Object.values(a).map(a => {
|
|
return { x: a.x, y: Number(a.y), country: a.country };
|
|
});
|
|
});
|
|
}
|