umami/queries/analytics/session/getSessions.js

55 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-08-28 06:38:35 +02:00
import prisma from 'lib/prisma';
2022-08-26 07:04:32 +02:00
import clickhouse from 'lib/clickhouse';
2022-08-28 06:38:35 +02:00
import { runQuery, PRISMA, CLICKHOUSE } from 'lib/db';
2022-07-12 23:14:36 +02:00
2022-07-21 06:31:26 +02:00
export async function getSessions(...args) {
2022-08-28 06:38:35 +02:00
return runQuery({
[PRISMA]: () => relationalQuery(...args),
2022-07-25 18:47:11 +02:00
[CLICKHOUSE]: () => clickhouseQuery(...args),
2022-07-21 06:31:26 +02:00
});
}
async function relationalQuery(websites, start_at) {
2022-08-29 19:47:01 +02:00
return prisma.client.session.findMany({
where: {
...(websites && websites.length > 0
? {
website: {
2022-10-12 08:09:06 +02:00
websiteUuid: {
2022-08-29 19:47:01 +02:00
in: websites,
2022-08-27 05:21:53 +02:00
},
2022-08-29 19:47:01 +02:00
},
}
: {}),
createdAt: {
2022-08-29 19:47:01 +02:00
gte: start_at,
2022-07-12 23:14:36 +02:00
},
2022-08-29 19:47:01 +02:00
},
});
2022-07-12 23:14:36 +02:00
}
2022-07-21 06:31:26 +02:00
async function clickhouseQuery(websites, start_at) {
2022-10-12 08:09:06 +02:00
const { rawQuery, getDateFormat, getCommaSeparatedStringFormat } = clickhouse;
2022-08-28 06:38:35 +02:00
return rawQuery(
2022-09-12 18:55:34 +02:00
`select distinct
2022-10-12 08:09:06 +02:00
session_id,
2022-07-21 06:31:26 +02:00
website_id,
created_at,
hostname,
browser,
os,
device,
screen,
2022-08-28 06:38:35 +02:00
language,
2022-07-21 06:31:26 +02:00
country
2022-09-12 18:55:34 +02:00
from event
2022-10-12 08:09:06 +02:00
where ${
websites && websites.length > 0
? `website_id in (${getCommaSeparatedStringFormat(websites)})`
: '0 = 0'
}
2022-08-28 06:38:35 +02:00
and created_at >= ${getDateFormat(start_at)}`,
2022-07-21 06:31:26 +02:00
);
}