umami/queries/analytics/stats/getActiveVisitors.ts

84 lines
2.1 KiB
TypeScript
Raw Normal View History

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
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
});
}
async function relationalQuery(websiteId: string) {
2023-05-15 08:49:21 +02:00
const { getDatabaseType, toUuid, rawQuery, client } = prisma;
const db = getDatabaseType();
2022-07-12 23:14:36 +02:00
const date = subMinutes(new Date(), 5);
const params: any = [websiteId, date];
2022-07-12 23:14:36 +02:00
2023-05-15 08:49:21 +02:00
if (db === 'mongodb') {
const result: any = await client.websiteEvent.aggregateRaw({
pipeline: [
{
$match: {
$expr: {
$and: [
{
$eq: ['$website_id', websiteId],
},
{
$gte: [
'$created_at',
{
$dateFromString: {
dateString: date.toISOString(),
},
},
],
},
],
},
},
},
{
$group: {
_id: '$session_id',
},
},
{
$count: 'x',
},
],
});
if (result.length > 0) {
return { x: result[0].x };
} else {
return { x: 0 };
}
} else {
return rawQuery(
`select count(distinct session_id) x
from website_event
join website
on website_event.website_id = website.website_id
where website.website_id = $1${toUuid()}
and website_event.created_at >= $2`,
params,
);
}
2022-07-12 23:14:36 +02:00
}
2022-07-21 06:31:26 +02:00
async function clickhouseQuery(websiteId: string) {
const { rawQuery } = clickhouse;
const params = { websiteId, startAt: subMinutes(new Date(), 5) };
2022-07-21 06:31:26 +02:00
2022-08-28 06:38:35 +02:00
return rawQuery(
2022-10-09 01:12:33 +02:00
`select count(distinct session_id) x
2023-03-29 20:16:02 +02:00
from website_event
where website_id = {websiteId:UUID}
and created_at >= {startAt:DateTime('UTC')}`,
2022-07-21 06:31:26 +02:00
params,
);
}