mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 05:24:11 +03:00
Some checks are pending
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* fetch more from ffprobe * add detailed param to ffprobe endpoint * add dots variant to step indicator * add classname * tweak colors for dark mode to match figma * add step 1 form * add helper function for ffmpeg snapshot * add go2rtc stream add and ffprobe snapshot endpoints * add camera image and stream details on successful test * step 1 tweaks * step 2 and i18n * types * step 1 and 2 tweaks * add wizard to camera settings view * add data unit i18n keys * restream tweak * fix type * implement rough idea for step 3 * add api endpoint to delete stream from go2rtc * add main wizard dialog component * extract logic for friendly_name and use in wizard * add i18n and popover for brand url * add camera name to top * consolidate validation logic * prevent dialog from closing when clicking outside * center camera name on mobile * add help/docs link popovers * keep spaces in friendly name * add stream details to overlay like stats in liveplayer * add validation results pane to step 3 * ensure test is invalidated if stream is changed * only display validation results and enable save button if all streams have been tested * tweaks * normalize camera name to lower case and improve hash generation * move wizard to subfolder * tweaks * match look of camera edit form to wizard * move wizard and edit form to its own component * move enabled/disabled switch to management section * clean up * fixes * fix mobile
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
/**
|
|
* Generates a fixed-length hash from a camera name for use as a valid camera identifier.
|
|
* Works safely with Unicode input while outputting Latin-only identifiers.
|
|
*
|
|
* @param name - The original camera name/display name
|
|
* @returns A valid camera identifier (lowercase, alphanumeric, max 8 chars)
|
|
*/
|
|
export function generateFixedHash(name: string): string {
|
|
// Safely encode Unicode as UTF-8 bytes
|
|
const utf8Bytes = new TextEncoder().encode(name);
|
|
|
|
// Convert to base64 manually
|
|
let binary = "";
|
|
for (const byte of utf8Bytes) {
|
|
binary += String.fromCharCode(byte);
|
|
}
|
|
const base64 = btoa(binary);
|
|
|
|
// Strip out non-alphanumeric characters and truncate
|
|
const cleanHash = base64.replace(/[^a-zA-Z0-9]/g, "").substring(0, 8);
|
|
|
|
return `cam_${cleanHash.toLowerCase()}`;
|
|
}
|
|
|
|
/**
|
|
* Checks if a string is a valid camera name identifier.
|
|
* Valid camera names contain only ASCII letters, numbers, underscores, and hyphens.
|
|
*
|
|
* @param name - The camera name to validate
|
|
* @returns True if the name is valid, false otherwise
|
|
*/
|
|
export function isValidCameraName(name: string): boolean {
|
|
return /^[a-zA-Z0-9_-]+$/.test(name);
|
|
}
|
|
|
|
/**
|
|
* Processes a user-entered camera name and returns both the final camera name
|
|
* and friendly name for Frigate configuration.
|
|
*
|
|
* @param userInput - The name entered by the user (could be display name)
|
|
* @returns Object with finalCameraName and friendlyName
|
|
*/
|
|
export function processCameraName(userInput: string): {
|
|
finalCameraName: string;
|
|
friendlyName?: string;
|
|
} {
|
|
const normalizedInput = userInput.replace(/\s+/g, "_").toLowerCase();
|
|
|
|
if (isValidCameraName(normalizedInput)) {
|
|
return {
|
|
finalCameraName: normalizedInput,
|
|
friendlyName: userInput.includes(" ") ? userInput : undefined,
|
|
};
|
|
}
|
|
|
|
return {
|
|
finalCameraName: generateFixedHash(userInput),
|
|
friendlyName: userInput,
|
|
};
|
|
}
|