When visitorId is null (no localStorage entry), the client now skips both the cookie check and the /consents/:id fetch that was always returning 404 for first-time visitors. The visitor ID is created lazily on first consent action instead. Signed-off-by: Émile Ré <emile@getprobo.com>
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
// Copyright (c) 2026 Probo Inc <hello@getprobo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
import { COOKIE_NAME } from "./cookie";
|
|
|
|
export function getVisitorId(bannerId: string): string | null {
|
|
const key = `${COOKIE_NAME}:${bannerId}:vid`;
|
|
|
|
try {
|
|
return localStorage.getItem(key);
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export function getOrCreateVisitorId(bannerId: string): string {
|
|
const existing = getVisitorId(bannerId);
|
|
if (existing) {
|
|
return existing;
|
|
}
|
|
|
|
const key = `${COOKIE_NAME}:${bannerId}:vid`;
|
|
const array = new Uint8Array(16);
|
|
crypto.getRandomValues(array);
|
|
const id = Array.from(array, (b) => b.toString(16).padStart(2, "0")).join("");
|
|
|
|
try {
|
|
localStorage.setItem(key, id);
|
|
} catch {
|
|
// localStorage unavailable
|
|
}
|
|
|
|
return id;
|
|
}
|