mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 01:25:37 +01:00
Don't remove www from hostname.
This commit is contained in:
parent
21adbc29d4
commit
16a2abaf21
1 changed files with 20 additions and 20 deletions
|
|
@ -10,12 +10,6 @@ import { secret, uuid, visitSalt } from '@/lib/crypto';
|
||||||
import { COLLECTION_TYPE } from '@/lib/constants';
|
import { COLLECTION_TYPE } from '@/lib/constants';
|
||||||
import { createSession, saveEvent, saveSessionData } from '@/queries';
|
import { createSession, saveEvent, saveSessionData } from '@/queries';
|
||||||
|
|
||||||
export async function POST(request: Request) {
|
|
||||||
// Bot check
|
|
||||||
if (!process.env.DISABLE_BOT_CHECK && isbot(request.headers.get('user-agent'))) {
|
|
||||||
return json({ beep: 'boop' });
|
|
||||||
}
|
|
||||||
|
|
||||||
const schema = z.object({
|
const schema = z.object({
|
||||||
type: z.enum(['event', 'identify']),
|
type: z.enum(['event', 'identify']),
|
||||||
payload: z.object({
|
payload: z.object({
|
||||||
|
|
@ -34,6 +28,12 @@ export async function POST(request: Request) {
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export async function POST(request: Request) {
|
||||||
|
// Bot check
|
||||||
|
if (!process.env.DISABLE_BOT_CHECK && isbot(request.headers.get('user-agent'))) {
|
||||||
|
return json({ beep: 'boop' });
|
||||||
|
}
|
||||||
|
|
||||||
const { body, error } = await parseRequest(request, schema, { skipAuth: true });
|
const { body, error } = await parseRequest(request, schema, { skipAuth: true });
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
|
|
@ -133,7 +133,7 @@ export async function POST(request: Request) {
|
||||||
|
|
||||||
let urlPath = currentUrl.pathname;
|
let urlPath = currentUrl.pathname;
|
||||||
const urlQuery = currentUrl.search.substring(1);
|
const urlQuery = currentUrl.search.substring(1);
|
||||||
const urlDomain = currentUrl.hostname.replace(/^www\./, '');
|
const urlDomain = currentUrl.hostname;
|
||||||
|
|
||||||
if (process.env.REMOVE_TRAILING_SLASH) {
|
if (process.env.REMOVE_TRAILING_SLASH) {
|
||||||
urlPath = urlPath.replace(/(.+)\/$/, '$1');
|
urlPath = urlPath.replace(/(.+)\/$/, '$1');
|
||||||
|
|
@ -150,7 +150,7 @@ export async function POST(request: Request) {
|
||||||
referrerQuery = referrerUrl.search.substring(1);
|
referrerQuery = referrerUrl.search.substring(1);
|
||||||
|
|
||||||
if (referrerUrl.hostname !== 'localhost') {
|
if (referrerUrl.hostname !== 'localhost') {
|
||||||
referrerDomain = referrerUrl.hostname.replace(/^www\./, '');
|
referrerDomain = referrerUrl.hostname;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue