mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
73 lines
2.0 KiB
TypeScript
73 lines
2.0 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 getSessionDataValues(
|
|
...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);
|
|
|
|
return rawQuery(
|
|
`
|
|
select
|
|
string_value as "value",
|
|
count(*) as "total"
|
|
from session_data
|
|
where website_id = {{websiteId::uuid}}
|
|
and created_at between {{startDate}} and {{endDate}}
|
|
and data_key = {{propertyName}}
|
|
${filterQuery}
|
|
group by string_value
|
|
order by 2 desc
|
|
limit 100
|
|
`,
|
|
params,
|
|
);
|
|
}
|
|
|
|
async function clickhouseQuery(
|
|
websiteId: string,
|
|
filters: QueryFilters & { propertyName?: string },
|
|
): Promise<{ propertyName: string; dataType: number; propertyValue: string; total: number }[]> {
|
|
const { rawQuery, parseFilters } = clickhouse;
|
|
const { filterQuery, params } = await parseFilters(websiteId, filters);
|
|
|
|
return rawQuery(
|
|
`
|
|
select
|
|
multiIf(data_type = 2, replaceAll(string_value, '.0000', ''),
|
|
data_type = 4, toString(date_trunc('hour', date_value)),
|
|
string_value) as "value",
|
|
count(*) as "total"
|
|
from session_data final
|
|
where website_id = {websiteId:UUID}
|
|
and created_at between {startDate:DateTime64} and {endDate:DateTime64}
|
|
and data_key = {propertyName:String}
|
|
${filterQuery}
|
|
group by value
|
|
order by 2 desc
|
|
limit 100
|
|
`,
|
|
params,
|
|
).then(result => {
|
|
return Object.values(result).map((a: any) => {
|
|
return {
|
|
...a,
|
|
total: Number(a.total),
|
|
};
|
|
});
|
|
});
|
|
}
|