umami/queries/analytics/pageview/getPageviews.js

44 lines
1 KiB
JavaScript
Raw Normal View History

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 getPageviews(...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
});
}
async function relationalQuery(websites, start_at) {
2022-08-28 04:38:35 +00:00
return prisma.client.pageview.findMany({
where: {
2022-11-08 19:55:02 +00:00
websiteId: {
in: websites,
2022-07-12 21:14:36 +00:00
},
createdAt: {
2022-08-28 04:38:35 +00:00
gte: start_at,
},
},
});
2022-07-12 21:14:36 +00:00
}
2022-07-21 04:31:26 +00:00
async function clickhouseQuery(websites, start_at) {
2022-10-12 06:09:06 +00:00
const { rawQuery, getCommaSeparatedStringFormat } = clickhouse;
2022-10-08 23:12:33 +00:00
2022-10-12 06:09:06 +00:00
return rawQuery(
2022-08-28 04:38:35 +00:00
`select
2022-07-21 04:31:26 +00:00
website_id,
2022-10-08 23:12:33 +00:00
session_id,
2022-07-21 04:31:26 +00:00
created_at,
url
2022-09-12 16:55:34 +00:00
from event
where event_name = ''
2022-11-10 06:46:50 +00:00
and ${
websites && websites.length > 0
? `website_id in (${getCommaSeparatedStringFormat(websites)})`
: '0 = 0'
}
2022-09-24 05:43:51 +00:00
and created_at >= ${clickhouse.getDateFormat(start_at)}`,
2022-07-21 04:31:26 +00:00
);
}