mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import prisma from 'lib/prisma';
|
|
import clickhouse from 'lib/clickhouse';
|
|
import { runQuery, PRISMA, CLICKHOUSE } from 'lib/db';
|
|
|
|
export async function getWebsiteSession(...args: [websiteId: string, sessionId: string]) {
|
|
return runQuery({
|
|
[PRISMA]: () => relationalQuery(...args),
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
|
});
|
|
}
|
|
|
|
async function relationalQuery(websiteId: string, sessionId: string) {
|
|
return prisma.client.session.findUnique({
|
|
where: {
|
|
id: sessionId,
|
|
websiteId,
|
|
},
|
|
});
|
|
}
|
|
|
|
async function clickhouseQuery(websiteId: string, sessionId: string) {
|
|
const { rawQuery } = clickhouse;
|
|
|
|
return rawQuery(
|
|
`
|
|
select id,
|
|
websiteId,
|
|
hostname,
|
|
browser,
|
|
os,
|
|
device,
|
|
screen,
|
|
language,
|
|
country,
|
|
subdivision1,
|
|
city,
|
|
min(min_time) as firstAt,
|
|
max(max_time) as lastAt,
|
|
uniq(visit_id) visits,
|
|
sum(views) as views,
|
|
sum(events) as events,
|
|
sum(max_time-min_time) as totaltime
|
|
from (select
|
|
session_id as id,
|
|
visit_id,
|
|
website_id as websiteId,
|
|
hostname,
|
|
browser,
|
|
os,
|
|
device,
|
|
screen,
|
|
language,
|
|
country,
|
|
subdivision1,
|
|
city,
|
|
min(min_time) as min_time,
|
|
max(max_time) as max_time,
|
|
sum(views) as views,
|
|
length(groupArrayArray(event_name)) as events
|
|
from website_event_stats_hourly
|
|
where website_id = {websiteId:UUID}
|
|
and session_id = {sessionId:UUID}
|
|
group by session_id, visit_id, website_id, hostname, browser, os, device, screen, language, country, subdivision1, city) t
|
|
group by id, websiteId, hostname, browser, os, device, screen, language, country, subdivision1, city;
|
|
`,
|
|
{ websiteId, sessionId },
|
|
).then(result => result?.[0]);
|
|
}
|