umami/queries/analytics/session/createSession.ts

57 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-08-29 19:47:01 +02:00
import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db';
2022-08-27 05:21:53 +02:00
import kafka from 'lib/kafka';
2022-08-29 19:47:01 +02:00
import prisma from 'lib/prisma';
import cache from 'lib/cache';
import { Prisma } from '@prisma/client';
2022-07-12 23:14:36 +02:00
export async function createSession(args: Prisma.SessionCreateInput) {
2022-08-28 06:38:35 +02:00
return runQuery({
[PRISMA]: () => relationalQuery(args),
[CLICKHOUSE]: () => clickhouseQuery(args),
}).then(async data => {
if (cache.enabled) {
await cache.storeSession(data);
}
return data;
2022-07-22 23:43:19 +02:00
});
}
async function relationalQuery(data: Prisma.SessionCreateInput) {
return prisma.client.session.create({ data });
2022-07-12 23:14:36 +02:00
}
2022-07-22 23:43:19 +02:00
async function clickhouseQuery(data: {
id: string;
websiteId: string;
hostname?: string;
browser?: string;
os?: string;
device?: string;
screen?: string;
language?: string;
country?: string;
}) {
const { id, websiteId, hostname, browser, os, device, screen, language, country } = data;
2022-08-28 06:38:35 +02:00
const { getDateFormat, sendMessage } = kafka;
const website = await cache.fetchWebsite(websiteId);
2022-09-12 18:55:34 +02:00
const msg = {
session_id: id,
website_id: websiteId,
2022-09-12 18:55:34 +02:00
hostname,
browser,
os,
device,
screen,
language,
country,
rev_id: website?.revId || 0,
created_at: getDateFormat(new Date()),
2022-08-01 09:28:38 +02:00
};
2022-07-22 23:43:19 +02:00
await sendMessage(msg, 'event');
2022-08-27 05:21:53 +02:00
return data;
2022-07-22 23:43:19 +02:00
}