umami/lib/session.js

72 lines
1.6 KiB
JavaScript
Raw Normal View History

2022-08-29 05:20:54 +02:00
import { uuid } from 'lib/crypto';
2022-08-29 22:04:58 +02:00
import redis, { DELETED } from 'lib/redis';
import { getClientInfo, getJsonBody } from 'lib/request';
import { parseToken } from 'next-basics';
import { getWebsiteByUuid } from 'queries';
import { validate } from 'uuid';
export async function getSession(req) {
2022-03-11 04:01:33 +01:00
const { payload } = getJsonBody(req);
2022-10-06 21:49:49 +02:00
const hasRedis = process.env.REDIS_URL;
2020-08-09 08:48:43 +02:00
if (!payload) {
throw new Error('Invalid request');
}
2022-03-19 06:26:23 +01:00
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;
}
}
2022-08-26 08:12:47 +02:00
const { website: website_uuid, hostname, screen, language } = payload;
2022-08-29 05:20:54 +02:00
if (!validate(website_uuid)) {
return null;
2020-08-12 05:05:40 +02:00
}
let websiteId = null;
2020-07-23 05:45:09 +02:00
// Check if website exists
2022-09-13 18:16:21 +02:00
if (hasRedis) {
websiteId = Number(await redis.client.get(`website:${website_uuid}`));
2022-08-29 22:04:58 +02:00
}
// Check database if does not exists in Redis
if (!websiteId) {
const website = await getWebsiteByUuid(website_uuid);
websiteId = website ? website.website_id : null;
}
2022-08-29 22:04:58 +02:00
if (!websiteId || websiteId === DELETED) {
throw new Error(`Website not found: ${website_uuid}`);
2020-08-21 04:17:27 +02:00
}
2020-08-12 05:05:40 +02:00
2022-08-26 08:12:47 +02:00
const { userAgent, browser, os, ip, country, device } = await getClientInfo(req, payload);
const session_uuid = uuid(websiteId, hostname, ip, userAgent);
2020-08-12 05:05:40 +02:00
let sessionId = null;
let session = null;
2020-08-12 05:05:40 +02:00
session = {
session_id: sessionId,
session_uuid,
hostname,
browser,
os,
screen,
language,
country,
device,
};
2020-08-21 04:17:27 +02:00
return {
website_id: websiteId,
2022-09-12 18:55:34 +02:00
session,
2020-08-21 04:17:27 +02:00
};
2020-08-05 07:45:05 +02:00
}