umami/queries/analytics/stats/getWebsiteStats.js

93 lines
2.5 KiB
JavaScript
Raw Normal View History

2022-07-21 06:31:26 +02:00
import { CLICKHOUSE, RELATIONAL } from 'lib/constants';
import {
getDateQuery,
getBetweenDatesClickhouse,
getDateQueryClickhouse,
getTimestampInterval,
parseFilters,
rawQuery,
rawQueryClickhouse,
runAnalyticsQuery,
} from 'lib/db';
2022-07-12 23:14:36 +02:00
2022-07-21 06:31:26 +02:00
export async function getWebsiteStats(...args) {
return runAnalyticsQuery({
[`${RELATIONAL}`]: () => relationalQuery(...args),
[`${CLICKHOUSE}`]: () => clickhouseQuery(...args),
});
}
async function relationalQuery(website_id, start_at, end_at, filters = {}) {
2022-07-12 23:14:36 +02:00
const params = [website_id, start_at, end_at];
const { pageviewQuery, sessionQuery, joinSession } = parseFilters(
'pageview',
null,
filters,
params,
);
2022-07-12 23:14:36 +02:00
return rawQuery(
`
select sum(t.c) as "pageviews",
count(distinct t.session_id) as "uniques",
sum(case when t.c = 1 then 1 else 0 end) as "bounces",
2022-07-21 06:31:26 +02:00
sum(case when m2 < m1 + interval '1 hour' then ${getTimestampInterval(
'm2',
'm1',
)} else 0 end) as "totaltime"
2022-07-12 23:14:36 +02:00
sum(t.time) as "totaltime"
from (
2022-07-21 06:31:26 +02:00
select
pageview.session_id,
${getDateQuery('pageview.created_at', 'hour')},
count(*) c,
min(created_at) m1,
max(created_at) m2
from pageview
${joinSession}
where pageview.website_id=$1
and pageview.created_at between $2 and $3
${pageviewQuery}
${sessionQuery}
group by 1, 2
2022-07-12 23:14:36 +02:00
) t
`,
params,
);
}
2022-07-21 06:31:26 +02:00
async function clickhouseQuery(website_id, start_at, end_at, filters = {}) {
const params = [website_id];
2022-07-22 23:43:19 +02:00
const { pageviewQuery, sessionQuery, joinSession } = parseFilters(
'pageview',
filters,
params,
'session_uuid',
);
2022-07-21 06:31:26 +02:00
return rawQueryClickhouse(
`
select
sum(t.c) as "pageviews",
2022-07-22 23:43:19 +02:00
count(distinct t.session_uuid) as "uniques",
2022-07-21 06:31:26 +02:00
sum(if(t.c = 1, 1, 0)) as "bounces",
sum(if(max_time < min_time + interval 1 hour, max_time-min_time, 0)) as "totaltime"
from (
2022-07-22 23:43:19 +02:00
select pageview.session_uuid,
2022-07-21 06:31:26 +02:00
${getDateQueryClickhouse('pageview.created_at', 'day')} time_series,
count(*) c,
min(created_at) min_time,
max(created_at) max_time
from pageview
${joinSession}
where pageview.website_id = $1
and ${getBetweenDatesClickhouse('pageview.created_at', start_at, end_at)}
${pageviewQuery}
${sessionQuery}
2022-07-22 23:43:19 +02:00
group by pageview.session_uuid, time_series
2022-07-21 06:31:26 +02:00
) t;
`,
params,
);
}