import prisma from 'lib/prisma'; import clickhouse from 'lib/clickhouse'; import { runQuery, CLICKHOUSE, PRISMA } from 'lib/db'; import { EVENT_TYPE } from 'lib/constants'; export function getEvents(...args: [websiteId: string, startAt: Date]) { return runQuery({ [PRISMA]: () => relationalQuery(...args), [CLICKHOUSE]: () => clickhouseQuery(...args), }); } function relationalQuery(websiteId: string, startAt: Date) { return prisma.client.websiteEvent.findMany({ where: { websiteId, createdAt: { gte: startAt, }, }, }); } function clickhouseQuery(websiteId: string, startAt: Date) { const { rawQuery } = clickhouse; return rawQuery( `select event_id as id, website_id as websiteId, session_id as sessionId, created_at as createdAt, toUnixTimestamp(created_at) as timestamp, url_path, event_name as eventName from event where event_type = ${EVENT_TYPE.customEvent} and website_id = {websiteId:UUID} and created_at >= {startAt:DateTime('UTC')}`, { websiteId, startAt, }, ); }