2022-07-12 23:14:36 +02:00
|
|
|
import { subMinutes } from 'date-fns';
|
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, CLICKHOUSE, PRISMA } from 'lib/db';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2022-12-13 04:45:38 +01:00
|
|
|
export async function getActiveVisitors(...args: [websiteId: string]) {
|
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
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-12-13 04:45:38 +01:00
|
|
|
async function relationalQuery(websiteId: string) {
|
2023-07-25 08:06:16 +02:00
|
|
|
const { rawQuery } = prisma;
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2023-01-11 20:01:44 +01:00
|
|
|
return rawQuery(
|
2023-07-25 08:06:16 +02:00
|
|
|
`
|
|
|
|
select count(distinct session_id) x
|
2023-01-11 20:01:44 +01:00
|
|
|
from website_event
|
2023-07-25 08:06:16 +02:00
|
|
|
join website
|
2023-01-11 20:01:44 +01:00
|
|
|
on website_event.website_id = website.website_id
|
2023-07-25 08:06:16 +02:00
|
|
|
where website.website_id = {{websiteId::uuid}}
|
|
|
|
and website_event.created_at >= {{startAt}}
|
|
|
|
`,
|
|
|
|
{ websiteId, startAt: subMinutes(new Date(), 5) },
|
2022-07-12 23:14:36 +02:00
|
|
|
);
|
|
|
|
}
|
2022-07-21 06:31:26 +02:00
|
|
|
|
2022-12-13 04:45:38 +01:00
|
|
|
async function clickhouseQuery(websiteId: string) {
|
2023-01-12 09:02:12 +01:00
|
|
|
const { rawQuery } = clickhouse;
|
2022-07-21 06:31:26 +02:00
|
|
|
|
2022-08-28 06:38:35 +02:00
|
|
|
return rawQuery(
|
2023-07-25 08:06:16 +02:00
|
|
|
`
|
|
|
|
select
|
|
|
|
count(distinct session_id) x
|
2023-03-29 20:16:02 +02:00
|
|
|
from website_event
|
2023-01-12 09:02:12 +01:00
|
|
|
where website_id = {websiteId:UUID}
|
2023-07-25 08:06:16 +02:00
|
|
|
and created_at >= {startAt:DateTime}
|
|
|
|
`,
|
|
|
|
{ websiteId, startAt: subMinutes(new Date(), 5) },
|
2022-07-21 06:31:26 +02:00
|
|
|
);
|
|
|
|
}
|