umami/queries/analytics/pageview/savePageView.ts

69 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-08-28 06:38:35 +02:00
import { URL_LENGTH } from 'lib/constants';
2022-08-29 19:47:01 +02:00
import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db';
import kafka from 'lib/kafka';
import prisma from 'lib/prisma';
import cache from 'lib/cache';
import { uuid } from 'lib/crypto';
2022-12-02 23:15:24 +01:00
import { EventType } from 'lib/types';
2022-07-16 01:47:38 +02:00
2022-11-15 22:21:14 +01:00
export async function savePageView(args: {
id: string;
websiteId: string;
url: string;
referrer?: string;
hostname?: string;
browser?: string;
os?: string;
device?: string;
screen?: string;
language?: string;
country?: string;
}) {
2022-08-28 06:38:35 +02:00
return runQuery({
2022-11-15 22:21:14 +01:00
[PRISMA]: () => relationalQuery(args),
[CLICKHOUSE]: () => clickhouseQuery(args),
2022-07-22 23:43:19 +02:00
});
}
2022-07-12 23:14:36 +02:00
2022-11-15 22:21:14 +01:00
async function relationalQuery(data: {
id: string;
websiteId: string;
url: string;
referrer?: string;
}) {
const { websiteId, id: sessionId, url, referrer } = data;
return prisma.client.websiteEvent.create({
2022-08-28 06:38:35 +02:00
data: {
id: uuid(),
websiteId,
sessionId,
2022-08-28 06:38:35 +02:00
url: url?.substring(0, URL_LENGTH),
referrer: referrer?.substring(0, URL_LENGTH),
2022-12-02 23:15:24 +01:00
eventType: EventType.Pageview,
2022-08-28 06:38:35 +02:00
},
});
2022-07-12 23:14:36 +02:00
}
2022-07-22 23:43:19 +02:00
async function clickhouseQuery(data) {
2022-11-09 02:47:19 +01:00
const { websiteId, id: sessionId, url, referrer, country, ...args } = data;
const website = await cache.fetchWebsite(websiteId);
2022-08-28 06:38:35 +02:00
const { getDateFormat, sendMessage } = kafka;
2022-11-23 00:06:52 +01:00
const message = {
2022-11-01 07:42:37 +01:00
session_id: sessionId,
website_id: websiteId,
2022-08-28 06:38:35 +02:00
url: url?.substring(0, URL_LENGTH),
referrer: referrer?.substring(0, URL_LENGTH),
rev_id: website?.revId || 0,
created_at: getDateFormat(new Date()),
2022-11-09 02:47:19 +01:00
country: country ? country : null,
2022-12-02 23:15:24 +01:00
event_type: EventType.Pageview,
2022-11-09 02:47:19 +01:00
...args,
2022-08-05 02:43:47 +02:00
};
2022-11-23 00:06:52 +01:00
await sendMessage(message, 'event');
return data;
2022-08-05 02:43:47 +02:00
}