2022-07-21 06:31:26 +02:00
|
|
|
import { CLICKHOUSE, RELATIONAL } from 'lib/constants';
|
|
|
|
import { rawQueryClickhouse, prisma, runAnalyticsQuery, runQuery } from 'lib/db';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2022-07-21 06:31:26 +02:00
|
|
|
export async function getSessionByUuid(...args) {
|
|
|
|
return runAnalyticsQuery({
|
|
|
|
[`${RELATIONAL}`]: () => relationalQuery(...args),
|
|
|
|
[`${CLICKHOUSE}`]: () => clickhouseQuery(...args),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function relationalQuery(session_uuid) {
|
2022-07-12 23:14:36 +02:00
|
|
|
return runQuery(
|
|
|
|
prisma.session.findUnique({
|
|
|
|
where: {
|
|
|
|
session_uuid,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
2022-07-21 06:31:26 +02:00
|
|
|
|
|
|
|
async function clickhouseQuery(session_uuid) {
|
|
|
|
const params = [session_uuid];
|
|
|
|
|
|
|
|
return rawQueryClickhouse(
|
|
|
|
`
|
|
|
|
select
|
|
|
|
session_uuid,
|
|
|
|
website_id,
|
|
|
|
created_at,
|
|
|
|
hostname,
|
|
|
|
browser,
|
|
|
|
os,
|
|
|
|
device,
|
|
|
|
screen,
|
|
|
|
"language",
|
|
|
|
country
|
|
|
|
from session
|
2022-07-22 23:43:19 +02:00
|
|
|
where session_uuid = $1
|
2022-07-21 06:31:26 +02:00
|
|
|
`,
|
|
|
|
params,
|
|
|
|
);
|
|
|
|
}
|