~ Refactored logic for checking browser path and access

This commit is contained in:
Greyhoof 2023-10-12 14:41:04 +02:00
parent acb0387808
commit 1b9401cbfa
1 changed files with 41 additions and 67 deletions

View File

@ -173,49 +173,21 @@ async function addSpellcheckerItems(menu: electron.Menu): Promise<void> {
} }
function openURLExternally(linkUrl: string): void { function openURLExternally(linkUrl: string): void {
// console.log('openURLExternally()', JSON.stringify(settings));
// console.log('openURLExternally() -> path set?', settings.browserPath !== '');
// console.log('openURLExternally() -> path exists?', fs.existsSync(settings.browserPath));
// console.log('openURLExternally() -> path points to file?', fs.lstatSync(settings.browserPath).isFile());
// console.log('openURLExternally() -> path points to directory?', fs.lstatSync(settings.browserPath).isDirectory());
// check if user set a path and whether it exists
const pathIsValid = (settings.browserPath !== '' && fs.existsSync(settings.browserPath));
if(pathIsValid) {
// also check if the user can execute whatever is located at the selected path
let fileIsExecutable = false;
try { try {
fs.accessSync(settings.browserPath, fs.constants.X_OK); fs.accessSync(settings.browserPath, fs.constants.X_OK);
console.log('can exec'); fileIsExecutable = true;
} catch (err) { } catch (err) {
console.error('cannot exec'); log.error(`Selected browser is not executable by user. Path: "${settings.browserPath}"`);
} }
// check if user set a path, whether it exists and if it is a file or an .app path if (fileIsExecutable) {
let isValid = (settings.browserPath !== '' && fs.existsSync(settings.browserPath));
// if (process.platform === "darwin") {
// // is there a better way for this on macos?
// isValid = (isValid && settings.browserPath.endsWith('.app'));
// } else if (process.platform === "linux") {
// // isFile() doesn't like symlinks, so we check if the user can execute the selected path
// let canExec = false;
// try {
// fs.accessSync(settings.browserPath, fs.constants.X_OK);
// canExec = true;
// } catch (err) {
// log.error("Selected browser cannot is not executable by user.");
// }
// isValid = (isValid && canExec);
// } else {
// isValid = (isValid && fs.lstatSync(settings.browserPath).isFile());
// }
// we check if the user can execute whatever is located at the selected path
let canExec = false;
try {
fs.accessSync(settings.browserPath, fs.constants.X_OK);
canExec = true;
} catch (err) {
log.error("Selected browser cannot is not executable by user.");
}
isValid = (isValid && canExec);
if(isValid) {
// check if URL is already encoded // check if URL is already encoded
// (this should work almost all the time, but there might be edge-cases with very unusual URLs) // (this should work almost all the time, but there might be edge-cases with very unusual URLs)
let isEncoded = (linkUrl !== decodeURI(linkUrl)); let isEncoded = (linkUrl !== decodeURI(linkUrl));
@ -244,11 +216,13 @@ function openURLExternally(linkUrl: string): void {
} else { } else {
execFile(`"${settings.browserPath}" ${link}`); execFile(`"${settings.browserPath}" ${link}`);
} }
} else { return;
electron.shell.openExternal(linkUrl);
} }
} }
electron.shell.openExternal(linkUrl);
}
function setUpWebContents(webContents: electron.WebContents): void { function setUpWebContents(webContents: electron.WebContents): void {
remoteMain.enable(webContents); remoteMain.enable(webContents);