2022-07-21 06:31:26 +02:00
|
|
|
import { CLICKHOUSE, RELATIONAL } from 'lib/constants';
|
2022-08-26 07:04:32 +02:00
|
|
|
import clickhouse from 'lib/clickhouse';
|
2022-08-26 07:20:30 +02:00
|
|
|
import { runAnalyticsQuery } from 'lib/db';
|
|
|
|
import { prisma, runQuery } from 'lib/relational';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2022-07-21 06:31:26 +02:00
|
|
|
export async function getSessions(...args) {
|
|
|
|
return runAnalyticsQuery({
|
2022-07-25 18:47:11 +02:00
|
|
|
[RELATIONAL]: () => relationalQuery(...args),
|
|
|
|
[CLICKHOUSE]: () => clickhouseQuery(...args),
|
2022-07-21 06:31:26 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function relationalQuery(websites, start_at) {
|
2022-07-12 23:14:36 +02:00
|
|
|
return runQuery(
|
|
|
|
prisma.session.findMany({
|
|
|
|
where: {
|
2022-08-27 05:21:53 +02:00
|
|
|
...(websites && websites.length > 0
|
|
|
|
? {
|
|
|
|
website: {
|
|
|
|
website_id: {
|
|
|
|
in: websites,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
: {}),
|
2022-07-12 23:14:36 +02:00
|
|
|
created_at: {
|
|
|
|
gte: start_at,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
2022-07-21 06:31:26 +02:00
|
|
|
|
|
|
|
async function clickhouseQuery(websites, start_at) {
|
2022-08-26 07:04:32 +02:00
|
|
|
return clickhouse.rawQuery(
|
2022-07-21 06:31:26 +02:00
|
|
|
`
|
|
|
|
select
|
|
|
|
session_uuid,
|
|
|
|
website_id,
|
|
|
|
created_at,
|
|
|
|
hostname,
|
|
|
|
browser,
|
|
|
|
os,
|
|
|
|
device,
|
|
|
|
screen,
|
|
|
|
"language",
|
|
|
|
country
|
|
|
|
from session
|
2022-08-27 05:21:53 +02:00
|
|
|
where ${websites && websites.length > 0 ? `(website_id in (${websites.join[',']})` : '0 = 0'}
|
|
|
|
and created_at >= ${clickhouse.getDateFormat(start_at)}
|
2022-07-21 06:31:26 +02:00
|
|
|
`,
|
|
|
|
);
|
|
|
|
}
|