securityos/hooks/useUrlLoader.ts

61 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
import extensions from "components/system/Files/FileEntry/extensions";
import { getDefaultFileViewer } from "components/system/Files/FileEntry/functions";
import { useFileSystem } from "contexts/fileSystem";
import { useProcesses } from "contexts/process";
import processDirectory from "contexts/process/directory";
import { extname } from "path";
import { useEffect, useRef } from "react";
import { getSearchParam } from "utils/functions";
const useUrlLoader = (): void => {
const { exists, fs } = useFileSystem();
const { open } = useProcesses();
const loadedInitialAppRef = useRef(false);
useEffect(() => {
if (loadedInitialAppRef.current || !fs || !exists || !open) return;
loadedInitialAppRef.current = true;
const app = getSearchParam("app");
const url = getSearchParam("url");
const loadInitialApp = async (initialApp: string): Promise<void> => {
if (!initialApp) return;
let urlExists = false;
try {
urlExists =
(initialApp === "Browser" && url.startsWith("http")) ||
(await exists(url));
} catch {
// Ignore error checking if url exists
}
if (initialApp === "FileExplorer" && url && !urlExists) return;
open(initialApp, urlExists ? { url } : undefined);
};
if (app) {
const lcAppNames = Object.fromEntries(
Object.keys(processDirectory).map((name) => [name.toLowerCase(), name])
);
loadInitialApp(lcAppNames[app.toLowerCase()]);
} else if (url) {
const extension = extname(url).toLowerCase();
const { process: [defaultApp] = [] } = extensions[extension] || {};
loadInitialApp(
extension
? defaultApp || getDefaultFileViewer(extension)
: "FileExplorer"
);
}
}, [exists, fs, open]);
};
export default useUrlLoader;