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,
|
2022-10-10 22:42:18 +02:00
|
|
|
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) {
|
2023-01-12 09:02:12 +01:00
|
|
|
const { rawQuery } = clickhouse;
|
2022-08-28 06:38:35 +02:00
|
|
|
|
|
|
|
return rawQuery(
|
2022-09-12 18:55:34 +02:00
|
|
|
`select distinct
|
2023-02-18 06:42:42 +01:00
|
|
|
session_id as sessionId,
|
|
|
|
website_id as websiteId,
|
|
|
|
created_at as createdAt,
|
|
|
|
toUnixTimestamp(created_at) as timestamp,
|
2022-07-21 06:31:26 +02:00
|
|
|
hostname,
|
|
|
|
browser,
|
|
|
|
os,
|
|
|
|
device,
|
|
|
|
screen,
|
2022-08-28 06:38:35 +02:00
|
|
|
language,
|
2023-02-20 18:04:20 +01:00
|
|
|
country,
|
|
|
|
subdivision1,
|
|
|
|
subdivision2,
|
|
|
|
city
|
2022-09-12 18:55:34 +02:00
|
|
|
from event
|
2023-02-15 11:27:18 +01:00
|
|
|
where website_id = {websiteId:UUID}
|
2023-01-12 09:02:12 +01:00
|
|
|
and created_at >= {startAt:DateTime('UTC')}`,
|
|
|
|
{
|
2023-02-15 11:27:18 +01:00
|
|
|
websiteId,
|
2023-01-12 09:02:12 +01:00
|
|
|
startAt,
|
|
|
|
},
|
2022-07-21 06:31:26 +02:00
|
|
|
);
|
|
|
|
}
|