mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
ba31f48f1a
* add uuid to event. add indexes * eventdata api * add event data * remove test data * update list
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import prisma from 'lib/prisma';
|
|
import { runQuery, CLICKHOUSE, PRISMA } from 'lib/db';
|
|
|
|
export async function getPageviewParams(...args) {
|
|
return runQuery({
|
|
[PRISMA]: () => relationalQuery(...args),
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
|
});
|
|
}
|
|
|
|
async function relationalQuery(websiteId, start_at, end_at, column, table, filters = {}) {
|
|
const { parseFilters, rawQuery } = prisma;
|
|
const params = [start_at, end_at];
|
|
const { pageviewQuery, sessionQuery, eventQuery, joinSession } = parseFilters(
|
|
table,
|
|
column,
|
|
filters,
|
|
params,
|
|
);
|
|
|
|
return rawQuery(
|
|
`select url x,
|
|
count(*) y
|
|
from ${table}
|
|
${` join website on ${table}.website_id = website.website_id`}
|
|
${joinSession}
|
|
where website.website_uuid='${websiteId}'
|
|
and ${table}.created_at between $1 and $2
|
|
and ${table}.url like '%?%'
|
|
${pageviewQuery}
|
|
${joinSession && sessionQuery}
|
|
${eventQuery}
|
|
group by 1
|
|
order by 2 desc`,
|
|
params,
|
|
);
|
|
}
|
|
|
|
function clickhouseQuery() {
|
|
return Promise.reject(new Error('Not implemented.'));
|
|
}
|