2022-07-22 23:43:19 +02:00
|
|
|
import { CLICKHOUSE, RELATIONAL } from 'lib/constants';
|
|
|
|
import {
|
|
|
|
getDateFormatClickhouse,
|
|
|
|
prisma,
|
|
|
|
rawQueryClickhouse,
|
|
|
|
runAnalyticsQuery,
|
|
|
|
runQuery,
|
|
|
|
} from 'lib/db';
|
|
|
|
import { getSessionByUuid } from 'queries';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2022-07-22 23:43:19 +02:00
|
|
|
export async function createSession(...args) {
|
|
|
|
return runAnalyticsQuery({
|
2022-07-25 18:47:11 +02:00
|
|
|
[RELATIONAL]: () => relationalQuery(...args),
|
|
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
2022-07-22 23:43:19 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function relationalQuery(website_id, data) {
|
2022-07-12 23:14:36 +02:00
|
|
|
return runQuery(
|
|
|
|
prisma.session.create({
|
|
|
|
data: {
|
|
|
|
website_id,
|
|
|
|
...data,
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
session_id: true,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
2022-07-22 23:43:19 +02:00
|
|
|
|
|
|
|
async function clickhouseQuery(
|
|
|
|
website_id,
|
|
|
|
{ session_uuid, hostname, browser, os, screen, language, country, device },
|
|
|
|
) {
|
|
|
|
const params = [
|
|
|
|
session_uuid,
|
|
|
|
website_id,
|
|
|
|
hostname,
|
|
|
|
browser,
|
|
|
|
os,
|
|
|
|
device,
|
|
|
|
screen,
|
|
|
|
language,
|
|
|
|
country ? country : null,
|
|
|
|
];
|
|
|
|
|
|
|
|
await rawQueryClickhouse(
|
|
|
|
`insert into umami_dev.session (created_at, session_uuid, website_id, hostname, browser, os, device, screen, language, country)
|
|
|
|
values (${getDateFormatClickhouse(new Date())}, $1, $2, $3, $4, $5, $6, $7, $8, $9);`,
|
|
|
|
params,
|
|
|
|
);
|
|
|
|
|
|
|
|
return getSessionByUuid(session_uuid);
|
|
|
|
}
|