2022-07-12 23:14:36 +02:00
|
|
|
import { getWebsiteByUuid, getSessionByUuid, createSession } from 'queries';
|
2022-03-11 04:01:33 +01:00
|
|
|
import { getJsonBody, getClientInfo } from 'lib/request';
|
2020-10-03 05:33:46 +02:00
|
|
|
import { uuid, isValidUuid, parseToken } from 'lib/crypto';
|
2020-07-20 10:54:21 +02:00
|
|
|
|
2020-09-18 07:52:20 +02:00
|
|
|
export async function getSession(req) {
|
2022-03-11 04:01:33 +01:00
|
|
|
const { payload } = getJsonBody(req);
|
2020-08-09 08:48:43 +02:00
|
|
|
|
|
|
|
if (!payload) {
|
|
|
|
throw new Error('Invalid request');
|
|
|
|
}
|
|
|
|
|
2022-03-19 06:26:23 +01:00
|
|
|
const { website: website_uuid, hostname, screen, language } = payload;
|
|
|
|
const cache = req.headers['x-umami-cache'];
|
2020-10-03 05:33:46 +02:00
|
|
|
|
|
|
|
if (cache) {
|
|
|
|
const result = await parseToken(cache);
|
|
|
|
|
|
|
|
if (result) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2020-07-20 10:54:21 +02:00
|
|
|
|
2020-09-18 07:52:20 +02:00
|
|
|
if (!isValidUuid(website_uuid)) {
|
2020-08-12 05:05:40 +02:00
|
|
|
throw new Error(`Invalid website: ${website_uuid}`);
|
|
|
|
}
|
|
|
|
|
2020-08-21 04:17:27 +02:00
|
|
|
const { userAgent, browser, os, ip, country, device } = await getClientInfo(req, payload);
|
2020-08-19 08:35:26 +02:00
|
|
|
|
2020-08-21 04:17:27 +02:00
|
|
|
const website = await getWebsiteByUuid(website_uuid);
|
2020-07-23 05:45:09 +02:00
|
|
|
|
2020-08-21 04:17:27 +02:00
|
|
|
if (!website) {
|
|
|
|
throw new Error(`Website not found: ${website_uuid}`);
|
|
|
|
}
|
2020-08-12 05:05:40 +02:00
|
|
|
|
2020-08-21 04:17:27 +02:00
|
|
|
const { website_id } = website;
|
2022-03-14 19:14:05 +01:00
|
|
|
const session_uuid = uuid(website_id, hostname, ip, userAgent);
|
2020-08-12 05:05:40 +02:00
|
|
|
|
2020-08-21 04:17:27 +02:00
|
|
|
let session = await getSessionByUuid(session_uuid);
|
2020-08-12 05:05:40 +02:00
|
|
|
|
2022-07-22 23:43:19 +02:00
|
|
|
session = Array.isArray(session) && session[0] ? session[0] : null;
|
|
|
|
|
2020-08-21 04:17:27 +02:00
|
|
|
if (!session) {
|
2022-01-06 10:21:05 +01:00
|
|
|
try {
|
|
|
|
session = await createSession(website_id, {
|
|
|
|
session_uuid,
|
|
|
|
hostname,
|
|
|
|
browser,
|
|
|
|
os,
|
|
|
|
screen,
|
|
|
|
language,
|
|
|
|
country,
|
|
|
|
device,
|
|
|
|
});
|
2022-04-09 02:17:07 +02:00
|
|
|
|
|
|
|
if (!session) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-01-06 10:21:05 +01:00
|
|
|
} catch (e) {
|
|
|
|
if (!e.message.includes('Unique constraint')) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
2020-07-20 10:54:21 +02:00
|
|
|
}
|
2020-08-08 02:19:42 +02:00
|
|
|
|
2020-08-21 04:17:27 +02:00
|
|
|
const { session_id } = session;
|
|
|
|
|
|
|
|
return {
|
|
|
|
website_id,
|
|
|
|
session_id,
|
2022-07-22 23:43:19 +02:00
|
|
|
session_uuid,
|
2020-08-21 04:17:27 +02:00
|
|
|
};
|
2020-08-05 07:45:05 +02:00
|
|
|
}
|