mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-01-27 21:41:34 +03:00
132 lines
5.1 KiB
TypeScript
132 lines
5.1 KiB
TypeScript
// See the Electron documentation for details on how to use preload scripts:
|
|
// https://www.electronjs.org/docs/latest/tutorial/process-model#preload-scripts
|
|
import { contextBridge, ipcRenderer } from "electron";
|
|
|
|
import type {
|
|
GameShop,
|
|
DownloadProgress,
|
|
UserPreferences,
|
|
AppUpdaterEvent,
|
|
StartGameDownloadPayload,
|
|
} from "@types";
|
|
|
|
contextBridge.exposeInMainWorld("electron", {
|
|
/* Torrenting */
|
|
startGameDownload: (payload: StartGameDownloadPayload) =>
|
|
ipcRenderer.invoke("startGameDownload", payload),
|
|
cancelGameDownload: (gameId: number) =>
|
|
ipcRenderer.invoke("cancelGameDownload", gameId),
|
|
pauseGameDownload: (gameId: number) =>
|
|
ipcRenderer.invoke("pauseGameDownload", gameId),
|
|
resumeGameDownload: (gameId: number) =>
|
|
ipcRenderer.invoke("resumeGameDownload", gameId),
|
|
onDownloadProgress: (cb: (value: DownloadProgress) => void) => {
|
|
const listener = (
|
|
_event: Electron.IpcRendererEvent,
|
|
value: DownloadProgress
|
|
) => cb(value);
|
|
ipcRenderer.on("on-download-progress", listener);
|
|
return () => ipcRenderer.removeListener("on-download-progress", listener);
|
|
},
|
|
|
|
/* Catalogue */
|
|
searchGames: (query: string) => ipcRenderer.invoke("searchGames", query),
|
|
getCatalogue: () => ipcRenderer.invoke("getCatalogue"),
|
|
getGameShopDetails: (objectID: string, shop: GameShop, language: string) =>
|
|
ipcRenderer.invoke("getGameShopDetails", objectID, shop, language),
|
|
getRandomGame: () => ipcRenderer.invoke("getRandomGame"),
|
|
getHowLongToBeat: (objectID: string, shop: GameShop, title: string) =>
|
|
ipcRenderer.invoke("getHowLongToBeat", objectID, shop, title),
|
|
getGames: (take?: number, prevCursor?: number) =>
|
|
ipcRenderer.invoke("getGames", take, prevCursor),
|
|
searchGameRepacks: (query: string) =>
|
|
ipcRenderer.invoke("searchGameRepacks", query),
|
|
|
|
/* User preferences */
|
|
getUserPreferences: () => ipcRenderer.invoke("getUserPreferences"),
|
|
updateUserPreferences: (preferences: UserPreferences) =>
|
|
ipcRenderer.invoke("updateUserPreferences", preferences),
|
|
autoLaunch: (enabled: boolean) => ipcRenderer.invoke("autoLaunch", enabled),
|
|
authenticateRealDebrid: (apiToken: string) =>
|
|
ipcRenderer.invoke("authenticateRealDebrid", apiToken),
|
|
|
|
/* Download sources */
|
|
getDownloadSources: () => ipcRenderer.invoke("getDownloadSources"),
|
|
validateDownloadSource: (url: string) =>
|
|
ipcRenderer.invoke("validateDownloadSource", url),
|
|
addDownloadSource: (url: string) =>
|
|
ipcRenderer.invoke("addDownloadSource", url),
|
|
removeDownloadSource: (id: number) =>
|
|
ipcRenderer.invoke("removeDownloadSource", id),
|
|
syncDownloadSources: () => ipcRenderer.invoke("syncDownloadSources"),
|
|
|
|
/* Library */
|
|
addGameToLibrary: (
|
|
objectID: string,
|
|
title: string,
|
|
shop: GameShop,
|
|
executablePath: string
|
|
) =>
|
|
ipcRenderer.invoke(
|
|
"addGameToLibrary",
|
|
objectID,
|
|
title,
|
|
shop,
|
|
executablePath
|
|
),
|
|
getLibrary: () => ipcRenderer.invoke("getLibrary"),
|
|
openGameInstaller: (gameId: number) =>
|
|
ipcRenderer.invoke("openGameInstaller", gameId),
|
|
openGame: (gameId: number, executablePath: string) =>
|
|
ipcRenderer.invoke("openGame", gameId, executablePath),
|
|
closeGame: (gameId: number) => ipcRenderer.invoke("closeGame", gameId),
|
|
removeGameFromLibrary: (gameId: number) =>
|
|
ipcRenderer.invoke("removeGameFromLibrary", gameId),
|
|
removeGame: (gameId: number) => ipcRenderer.invoke("removeGame", gameId),
|
|
deleteGameFolder: (gameId: number) =>
|
|
ipcRenderer.invoke("deleteGameFolder", gameId),
|
|
getGameByObjectID: (objectID: string) =>
|
|
ipcRenderer.invoke("getGameByObjectID", objectID),
|
|
onPlaytime: (cb: (gameId: number) => void) => {
|
|
const listener = (_event: Electron.IpcRendererEvent, gameId: number) =>
|
|
cb(gameId);
|
|
ipcRenderer.on("on-playtime", listener);
|
|
return () => ipcRenderer.removeListener("on-playtime", listener);
|
|
},
|
|
onGameClose: (cb: (gameId: number) => void) => {
|
|
const listener = (_event: Electron.IpcRendererEvent, gameId: number) =>
|
|
cb(gameId);
|
|
ipcRenderer.on("on-game-close", listener);
|
|
return () => ipcRenderer.removeListener("on-game-close", listener);
|
|
},
|
|
|
|
/* Hardware */
|
|
getDiskFreeSpace: (path: string) =>
|
|
ipcRenderer.invoke("getDiskFreeSpace", path),
|
|
|
|
/* Misc */
|
|
ping: () => ipcRenderer.invoke("ping"),
|
|
getVersion: () => ipcRenderer.invoke("getVersion"),
|
|
getDefaultDownloadsPath: () => ipcRenderer.invoke("getDefaultDownloadsPath"),
|
|
openExternal: (src: string) => ipcRenderer.invoke("openExternal", src),
|
|
showOpenDialog: (options: Electron.OpenDialogOptions) =>
|
|
ipcRenderer.invoke("showOpenDialog", options),
|
|
platform: process.platform,
|
|
|
|
/* Auto update */
|
|
onAutoUpdaterEvent: (cb: (value: AppUpdaterEvent) => void) => {
|
|
const listener = (
|
|
_event: Electron.IpcRendererEvent,
|
|
value: AppUpdaterEvent
|
|
) => cb(value);
|
|
|
|
ipcRenderer.on("autoUpdaterEvent", listener);
|
|
|
|
return () => {
|
|
ipcRenderer.removeListener("autoUpdaterEvent", listener);
|
|
};
|
|
},
|
|
checkForUpdates: () => ipcRenderer.invoke("checkForUpdates"),
|
|
restartAndInstallUpdate: () => ipcRenderer.invoke("restartAndInstallUpdate"),
|
|
});
|