umami/queries/analytics/pageview/getPageviews.js

40 lines
886 B
JavaScript
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';
2022-07-12 23:14:36 +02:00
2022-07-21 06:31:26 +02:00
export async function getPageviews(...args) {
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, start_at) {
2022-08-28 06:38:35 +02:00
return prisma.client.pageview.findMany({
where: {
website: {
website_id: {
in: websites,
2022-07-12 23:14:36 +02:00
},
},
2022-08-28 06:38:35 +02:00
created_at: {
gte: start_at,
},
},
});
2022-07-12 23:14:36 +02:00
}
2022-07-21 06:31:26 +02:00
async function clickhouseQuery(websites, start_at) {
2022-08-26 07:04:32 +02:00
return clickhouse.rawQuery(
2022-08-28 06:38:35 +02:00
`select
2022-07-21 06:31:26 +02:00
view_id,
website_id,
session_id,
created_at,
url
from pageview
where website_id in (${websites.join[',']}
2022-08-28 06:38:35 +02:00
and created_at >= ${clickhouse.getDateFormat(start_at)})`,
2022-07-21 06:31:26 +02:00
);
}