mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
import { getWebsite, getSession, createSession } from 'lib/db';
|
|
import { getCountry, getDevice, getIpAddress } from 'lib/utils';
|
|
import { uuid, isValidId, verifyToken } from 'lib/crypto';
|
|
|
|
export default async req => {
|
|
const { payload } = req.body;
|
|
const { website: website_uuid, hostname, screen, language, session } = payload;
|
|
|
|
if (!isValidId(website_uuid)) {
|
|
throw new Error(`Invalid website: ${website_uuid}`);
|
|
}
|
|
|
|
try {
|
|
return await verifyToken(session);
|
|
} catch {
|
|
const ip = getIpAddress(req);
|
|
const { userAgent, browser, os } = getDevice(req);
|
|
const country = await getCountry(req, ip);
|
|
|
|
if (website_uuid) {
|
|
const website = await getWebsite(website_uuid);
|
|
|
|
if (website) {
|
|
const { website_id } = website;
|
|
const session_uuid = uuid(website_id, hostname, ip, userAgent, os);
|
|
|
|
let session = await getSession(session_uuid);
|
|
|
|
if (!session) {
|
|
session = await createSession(website_id, {
|
|
session_uuid,
|
|
hostname,
|
|
browser,
|
|
os,
|
|
screen,
|
|
language,
|
|
country,
|
|
});
|
|
}
|
|
|
|
const { session_id } = session;
|
|
|
|
return {
|
|
website_id,
|
|
website_uuid,
|
|
session_id,
|
|
session_uuid,
|
|
};
|
|
}
|
|
}
|
|
}
|
|
};
|