umami/queries/analytics/pageview/getPageviews.ts

45 lines
1.1 KiB
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, CLICKHOUSE, PRISMA } from 'lib/db';
import { EVENT_TYPE } from 'lib/constants';
2022-07-12 23:14:36 +02:00
export async function getPageviews(...args: [websites: 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
});
}
async function relationalQuery(websites: string[], startAt: Date) {
2022-08-28 06:38:35 +02:00
return prisma.client.pageview.findMany({
where: {
2022-11-08 20:55:02 +01:00
websiteId: {
in: websites,
2022-07-12 23:14:36 +02:00
},
createdAt: {
2022-12-27 02:36:48 +01:00
gte: startAt,
2022-08-28 06:38:35 +02:00
},
},
});
2022-07-12 23:14:36 +02:00
}
2022-07-21 06:31:26 +02:00
async function clickhouseQuery(websites: string[], startAt: Date) {
const { rawQuery } = clickhouse;
2022-10-09 01:12:33 +02:00
2022-10-12 08:09:06 +02:00
return rawQuery(
2022-08-28 06:38:35 +02:00
`select
2022-07-21 06:31:26 +02:00
website_id,
2022-10-09 01:12:33 +02:00
session_id,
2022-07-21 06:31:26 +02:00
created_at,
url
2022-09-12 18:55:34 +02:00
from event
where event_type = ${EVENT_TYPE.pageView}
and ${websites && websites.length > 0 ? `website_id in {websites:Array(UUID)}` : '0 = 0'}
and created_at >= {startAt:DateTime('UTC')}`,
{
websites,
startAt,
},
2022-07-21 06:31:26 +02:00
);
}