mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-12 05:52:30 +00:00
- check the passed lang param is in allowed languages - validate http/https on deployment URLs
31 lines
695 B
TypeScript
31 lines
695 B
TypeScript
import logger from './logger';
|
|
|
|
/**
|
|
* Opens URL in the browser.
|
|
*
|
|
* @param {string} url - The URL to be opened.
|
|
* @param {boolean} openInNewTab - If the link should be opened in a new tab.
|
|
* @returns {void}
|
|
*/
|
|
export function openURLInBrowser(url: string, openInNewTab?: boolean) {
|
|
let parsed;
|
|
|
|
try {
|
|
parsed = new URL(url);
|
|
} catch {
|
|
logger.warn(`Blocked invalid URL: ${url}`);
|
|
|
|
return;
|
|
}
|
|
|
|
if (![ 'http:', 'https:' ].includes(parsed.protocol)) {
|
|
logger.warn(`Blocked URL with disallowed protocol: ${parsed.protocol}`);
|
|
|
|
return;
|
|
}
|
|
|
|
const target = openInNewTab ? '_blank' : '';
|
|
|
|
window.open(url, target, 'noopener');
|
|
}
|