mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
123 lines
3.3 KiB
TypeScript
123 lines
3.3 KiB
TypeScript
import clickhouse from 'lib/clickhouse';
|
|
import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db';
|
|
import prisma from 'lib/prisma';
|
|
import { WebsiteEventDataMetric } from 'lib/types';
|
|
import { loadWebsite } from 'lib/query';
|
|
|
|
export async function getEventData(
|
|
...args: [
|
|
websiteId: string,
|
|
data: {
|
|
startDate: Date;
|
|
endDate: Date;
|
|
eventName: string;
|
|
urlPath?: string;
|
|
filters: [
|
|
{
|
|
eventKey?: string;
|
|
eventValue?: string | number | boolean | Date;
|
|
},
|
|
];
|
|
},
|
|
]
|
|
): Promise<WebsiteEventDataMetric[]> {
|
|
return runQuery({
|
|
[PRISMA]: () => relationalQuery(...args),
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
|
});
|
|
}
|
|
|
|
async function relationalQuery(
|
|
websiteId: string,
|
|
data: {
|
|
startDate: Date;
|
|
endDate: Date;
|
|
timeSeries?: {
|
|
unit: string;
|
|
timezone: string;
|
|
};
|
|
eventName: string;
|
|
urlPath?: string;
|
|
filters: [
|
|
{
|
|
eventKey?: string;
|
|
eventValue?: string | number | boolean | Date;
|
|
},
|
|
];
|
|
},
|
|
) {
|
|
const { startDate, endDate, timeSeries, eventName, urlPath, filters } = data;
|
|
const { toUuid, rawQuery, getEventDataFilterQuery, getDateQuery } = prisma;
|
|
const website = await loadWebsite(websiteId);
|
|
const resetDate = new Date(website?.resetAt || website?.createdAt);
|
|
const params: any = [websiteId, resetDate, startDate, endDate, eventName || ''];
|
|
|
|
return rawQuery(
|
|
`select
|
|
count(*) x
|
|
${eventName ? `,event_name eventName` : ''}
|
|
${urlPath ? `,url_path urlPath` : ''}
|
|
${
|
|
timeSeries ? `,${getDateQuery('created_at', timeSeries.unit, timeSeries.timezone)} t` : ''
|
|
}
|
|
from event_data
|
|
${
|
|
eventName || urlPath
|
|
? 'join website_event on event_data.id = website_event.website_event_id'
|
|
: ''
|
|
}
|
|
where website_id = $1${toUuid()}
|
|
and created_at >= $2
|
|
and created_at between $3 and $4
|
|
${eventName ? `and eventName = $5` : ''}
|
|
${getEventDataFilterQuery(filters, params)}
|
|
${timeSeries ? 'group by t' : ''}`,
|
|
params,
|
|
);
|
|
}
|
|
|
|
async function clickhouseQuery(
|
|
websiteId: string,
|
|
data: {
|
|
startDate: Date;
|
|
endDate: Date;
|
|
timeSeries?: {
|
|
unit: string;
|
|
timezone: string;
|
|
};
|
|
eventName?: string;
|
|
urlPath?: string;
|
|
filters: [
|
|
{
|
|
eventKey?: string;
|
|
eventValue?: string | number | boolean | Date;
|
|
},
|
|
];
|
|
},
|
|
) {
|
|
const { startDate, endDate, timeSeries, eventName, urlPath, filters } = data;
|
|
const { rawQuery, getDateFormat, getBetweenDates, getDateQuery, getEventDataFilterQuery } =
|
|
clickhouse;
|
|
const website = await loadWebsite(websiteId);
|
|
const resetDate = new Date(website?.resetAt || website?.createdAt);
|
|
const params = { websiteId };
|
|
|
|
return rawQuery(
|
|
`select
|
|
count(*) x
|
|
${eventName ? `,event_name eventName` : ''}
|
|
${urlPath ? `,url_path urlPath` : ''}
|
|
${
|
|
timeSeries ? `,${getDateQuery('created_at', timeSeries.unit, timeSeries.timezone)} t` : ''
|
|
}
|
|
from event_data
|
|
where website_id = {websiteId:UUID}
|
|
${eventName ? `and eventName = ${eventName}` : ''}
|
|
and created_at >= ${getDateFormat(resetDate)}
|
|
and ${getBetweenDates('created_at', startDate, endDate)}
|
|
${getEventDataFilterQuery(filters, params)}
|
|
${timeSeries ? 'group by t' : ''}`,
|
|
params,
|
|
);
|
|
}
|