2022-07-12 21:14:36 +00:00
|
|
|
import { subMinutes } from 'date-fns';
|
2022-08-28 04:38:35 +00:00
|
|
|
import prisma from 'lib/prisma';
|
2022-08-26 05:04:32 +00:00
|
|
|
import clickhouse from 'lib/clickhouse';
|
2022-08-28 04:38:35 +00:00
|
|
|
import { runQuery, CLICKHOUSE, PRISMA } from 'lib/db';
|
2022-07-12 21:14:36 +00:00
|
|
|
|
2022-07-21 04:31:26 +00:00
|
|
|
export async function getActiveVisitors(...args) {
|
2022-08-28 04:38:35 +00:00
|
|
|
return runQuery({
|
|
|
|
|
[PRISMA]: () => relationalQuery(...args),
|
2022-07-25 16:47:11 +00:00
|
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
2022-07-21 04:31:26 +00:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-10 20:42:18 +00:00
|
|
|
async function relationalQuery(websiteId) {
|
2022-07-12 21:14:36 +00:00
|
|
|
const date = subMinutes(new Date(), 5);
|
2022-10-22 04:33:23 +00:00
|
|
|
const params = [date];
|
2022-07-12 21:14:36 +00:00
|
|
|
|
2022-08-28 04:38:35 +00:00
|
|
|
return prisma.rawQuery(
|
|
|
|
|
`select count(distinct session_id) x
|
2022-07-12 21:14:36 +00:00
|
|
|
from pageview
|
2022-10-12 02:37:38 +00:00
|
|
|
join website
|
|
|
|
|
on pageview.website_id = website.website_id
|
2022-11-01 06:42:37 +00:00
|
|
|
where website.website_id = '${websiteId}'
|
2022-10-22 04:33:23 +00:00
|
|
|
and pageview.created_at >= $1`,
|
2022-07-12 21:14:36 +00:00
|
|
|
params,
|
|
|
|
|
);
|
|
|
|
|
}
|
2022-07-21 04:31:26 +00:00
|
|
|
|
2022-10-10 20:42:18 +00:00
|
|
|
async function clickhouseQuery(websiteId) {
|
2022-08-28 04:38:35 +00:00
|
|
|
const { rawQuery, getDateFormat } = clickhouse;
|
2022-10-10 20:42:18 +00:00
|
|
|
const params = [websiteId];
|
2022-07-21 04:31:26 +00:00
|
|
|
|
2022-08-28 04:38:35 +00:00
|
|
|
return rawQuery(
|
2022-10-08 23:12:33 +00:00
|
|
|
`select count(distinct session_id) x
|
2022-09-12 16:55:34 +00:00
|
|
|
from event
|
2022-07-21 04:31:26 +00:00
|
|
|
where website_id = $1
|
2022-08-28 04:38:35 +00:00
|
|
|
and created_at >= ${getDateFormat(subMinutes(new Date(), 5))}`,
|
2022-07-21 04:31:26 +00:00
|
|
|
params,
|
|
|
|
|
);
|
|
|
|
|
}
|