mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
44 lines
1006 B
TypeScript
44 lines
1006 B
TypeScript
import clickhouse from 'lib/clickhouse';
|
|
import { CLICKHOUSE, PRISMA, runQuery } from 'lib/db';
|
|
import prisma from 'lib/prisma';
|
|
import { Prisma } from '@prisma/client';
|
|
|
|
export async function getSession(args: { id: string }) {
|
|
return runQuery({
|
|
[PRISMA]: () => relationalQuery(args),
|
|
[CLICKHOUSE]: () => clickhouseQuery(args),
|
|
});
|
|
}
|
|
|
|
async function relationalQuery(where: Prisma.SessionWhereUniqueInput) {
|
|
return prisma.client.session.findUnique({
|
|
where,
|
|
});
|
|
}
|
|
|
|
async function clickhouseQuery({ id: sessionId }: { id: string }) {
|
|
const { rawQuery, findFirst } = clickhouse;
|
|
const params = { sessionId };
|
|
|
|
return rawQuery(
|
|
`select
|
|
session_id,
|
|
website_id,
|
|
created_at,
|
|
hostname,
|
|
browser,
|
|
os,
|
|
device,
|
|
screen,
|
|
language,
|
|
country,
|
|
subdivision1,
|
|
subdivision2,
|
|
city
|
|
from website_event
|
|
where session_id = {sessionId:UUID}
|
|
limit 1`,
|
|
params,
|
|
).then(result => findFirst(result));
|
|
}
|