umami/pages/api/session.js

50 lines
1015 B
JavaScript
Raw Normal View History

2020-07-17 10:03:38 +02:00
import { getWebsite, getSession, createSession } from 'lib/db';
import { hash, parseSessionRequest } from 'lib/utils';
import { allowPost } from 'lib/middleware';
2020-07-17 10:03:38 +02:00
export default async (req, res) => {
await allowPost(req, res);
let result = { success: 0, time: Date.now() };
2020-07-18 09:25:29 +02:00
const {
website_id,
session_id,
hostname,
2020-07-18 09:25:29 +02:00
browser,
os,
screen,
language,
country,
} = await parseSessionRequest(req);
2020-07-17 10:03:38 +02:00
if (website_id && session_id) {
const website = await getWebsite(website_id);
2020-07-17 10:03:38 +02:00
if (website) {
const session = await getSession(session_id);
2020-07-17 10:03:38 +02:00
if (!session) {
await createSession(website_id, session_id, {
hostname,
browser,
os,
screen,
language,
country,
});
}
2020-07-17 10:03:38 +02:00
result = {
...result,
success: 1,
session_id,
website_id,
hash: hash(`${website_id}${session_id}${result.time}`),
};
}
2020-07-17 10:03:38 +02:00
}
res.status(200).json(result);
};