2022-12-13 04:45:38 +01:00
|
|
|
import { URL_LENGTH, EVENT_TYPE } 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';
|
2022-11-08 07:35:51 +01:00
|
|
|
import cache from 'lib/cache';
|
|
|
|
import { uuid } from 'lib/crypto';
|
2022-07-16 01:47:38 +02:00
|
|
|
|
2022-12-13 04:45:38 +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-12-13 04:45:38 +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-12-13 04:45:38 +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: {
|
2022-11-08 07:35:51 +01:00
|
|
|
id: uuid(),
|
2022-10-10 22:42:18 +02:00
|
|
|
websiteId,
|
|
|
|
sessionId,
|
2022-08-28 06:38:35 +02:00
|
|
|
url: url?.substring(0, URL_LENGTH),
|
|
|
|
referrer: referrer?.substring(0, URL_LENGTH),
|
2022-12-13 04:45:38 +01:00
|
|
|
eventType: EVENT_TYPE.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
|
|
|
|
2022-11-08 07:35:51 +01:00
|
|
|
async function clickhouseQuery(data) {
|
2022-11-09 02:47:19 +01:00
|
|
|
const { websiteId, id: sessionId, url, referrer, country, ...args } = data;
|
2022-11-08 07:35:51 +01:00
|
|
|
const website = await cache.fetchWebsite(websiteId);
|
2022-08-28 06:38:35 +02:00
|
|
|
const { getDateFormat, sendMessage } = kafka;
|
2022-11-08 07:35:51 +01:00
|
|
|
|
2022-12-13 04:45:38 +01:00
|
|
|
const message = {
|
2022-11-01 07:42:37 +01:00
|
|
|
session_id: sessionId,
|
2022-10-10 22:42:18 +02:00
|
|
|
website_id: websiteId,
|
2022-08-28 06:38:35 +02:00
|
|
|
url: url?.substring(0, URL_LENGTH),
|
|
|
|
referrer: referrer?.substring(0, URL_LENGTH),
|
2022-11-08 01:22:49 +01:00
|
|
|
rev_id: website?.revId || 0,
|
2022-11-08 07:35:51 +01:00
|
|
|
created_at: getDateFormat(new Date()),
|
2022-11-09 02:47:19 +01:00
|
|
|
country: country ? country : null,
|
2022-12-13 04:45:38 +01:00
|
|
|
event_type: EVENT_TYPE.pageView,
|
2022-11-09 02:47:19 +01:00
|
|
|
...args,
|
2022-08-05 02:43:47 +02:00
|
|
|
};
|
|
|
|
|
2022-12-13 04:45:38 +01:00
|
|
|
await sendMessage(message, 'event');
|
2022-11-08 07:35:51 +01:00
|
|
|
|
|
|
|
return data;
|
2022-08-05 02:43:47 +02:00
|
|
|
}
|