mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
73 lines
1.9 KiB
TypeScript
73 lines
1.9 KiB
TypeScript
import prisma from 'lib/prisma';
|
|
import clickhouse from 'lib/clickhouse';
|
|
import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db';
|
|
import { QueryFilters, WebsiteEventData } from 'lib/types';
|
|
|
|
export async function getSessionDataProperties(
|
|
...args: [websiteId: string, filters: QueryFilters & { propertyName?: string }]
|
|
): Promise<WebsiteEventData[]> {
|
|
return runQuery({
|
|
[PRISMA]: () => relationalQuery(...args),
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
|
});
|
|
}
|
|
|
|
async function relationalQuery(
|
|
websiteId: string,
|
|
filters: QueryFilters & { propertyName?: string },
|
|
) {
|
|
const { rawQuery, parseFilters } = prisma;
|
|
const { filterQuery, params } = await parseFilters(websiteId, filters, {
|
|
columns: { propertyName: 'data_key' },
|
|
});
|
|
|
|
return rawQuery(
|
|
`
|
|
select
|
|
data_key as "propertyName",
|
|
count(*) as "total"
|
|
from session_data
|
|
where website_id = {{websiteId::uuid}}
|
|
and created_at between {{startDate}} and {{endDate}}
|
|
${filterQuery}
|
|
group by data_key
|
|
order by 2 desc
|
|
limit 500
|
|
`,
|
|
params,
|
|
);
|
|
}
|
|
|
|
async function clickhouseQuery(
|
|
websiteId: string,
|
|
filters: QueryFilters & { propertyName?: string },
|
|
): Promise<{ propertyName: string; total: number }[]> {
|
|
const { rawQuery, parseFilters } = clickhouse;
|
|
const { filterQuery, params } = await parseFilters(websiteId, filters, {
|
|
columns: { propertyName: 'data_key' },
|
|
});
|
|
|
|
return rawQuery(
|
|
`
|
|
select
|
|
data_key as propertyName,
|
|
count(*) as total
|
|
from session_data final
|
|
where website_id = {websiteId:UUID}
|
|
and created_at between {startDate:DateTime64} and {endDate:DateTime64}
|
|
${filterQuery}
|
|
group by data_key
|
|
order by 2 desc
|
|
limit 500
|
|
`,
|
|
params,
|
|
).then(result => {
|
|
return Object.values(result).map((a: any) => {
|
|
return {
|
|
propertyName: a.propertyName,
|
|
total: Number(a.total),
|
|
};
|
|
});
|
|
});
|
|
}
|