umami/queries/analytics/session/getSessions.ts

47 lines
996 B
TypeScript
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
2023-02-15 11:27:18 +01:00
export async function getSessions(...args: [websiteId: string, startAt: Date]) {
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
});
}
2023-02-15 11:27:18 +01:00
async function relationalQuery(websiteId: string, startAt: Date) {
2022-08-29 19:47:01 +02:00
return prisma.client.session.findMany({
where: {
2023-02-15 11:27:18 +01:00
websiteId,
createdAt: {
2022-12-27 02:36:48 +01:00
gte: startAt,
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
2023-02-15 11:27:18 +01:00
async function clickhouseQuery(websiteId: string, startAt: Date) {
const { rawQuery } = 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
2023-02-15 11:27:18 +01:00
where website_id = {websiteId:UUID}
and created_at >= {startAt:DateTime('UTC')}`,
{
2023-02-15 11:27:18 +01:00
websiteId,
startAt,
},
2022-07-21 06:31:26 +02:00
);
}