mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-01-23 13:34:54 +03:00
feat: adding notification when all repacks are migrated
This commit is contained in:
parent
d88e06e289
commit
17febcd88a
@ -1,4 +1,4 @@
|
|||||||
appId: site.hydralauncher.hydra
|
appId: gg.hydralauncher.hydra
|
||||||
productName: Hydra
|
productName: Hydra
|
||||||
directories:
|
directories:
|
||||||
buildResources: build
|
buildResources: build
|
||||||
|
@ -3,32 +3,15 @@ import { shuffle } from "lodash-es";
|
|||||||
import { getSteam250List } from "@main/services";
|
import { getSteam250List } from "@main/services";
|
||||||
|
|
||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
// import { getSteamGameById } from "../helpers/search-games";
|
|
||||||
import type { Steam250Game } from "@types";
|
import type { Steam250Game } from "@types";
|
||||||
|
|
||||||
const state = { games: Array<Steam250Game>(), index: 0 };
|
const state = { games: Array<Steam250Game>(), index: 0 };
|
||||||
|
|
||||||
const filterGames = async (_games: Steam250Game[]) => {
|
|
||||||
const results: Steam250Game[] = [];
|
|
||||||
|
|
||||||
// for (const game of games) {
|
|
||||||
// const steamGame = await getSteamGameById(game.objectID);
|
|
||||||
|
|
||||||
// if (steamGame?.repacks.length) {
|
|
||||||
// results.push(game);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
return results;
|
|
||||||
};
|
|
||||||
|
|
||||||
const getRandomGame = async (_event: Electron.IpcMainInvokeEvent) => {
|
const getRandomGame = async (_event: Electron.IpcMainInvokeEvent) => {
|
||||||
if (state.games.length == 0) {
|
if (state.games.length == 0) {
|
||||||
const steam250List = await getSteam250List();
|
const steam250List = await getSteam250List();
|
||||||
|
|
||||||
const filteredSteam250List = await filterGames(steam250List);
|
state.games = shuffle(steam250List);
|
||||||
|
|
||||||
state.games = shuffle(filteredSteam250List);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state.games.length == 0) {
|
if (state.games.length == 0) {
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import { knexClient } from "@main/knex-client";
|
|
||||||
|
|
||||||
const getRepacks = (_event: Electron.IpcMainInvokeEvent) =>
|
|
||||||
knexClient.select("*").from("repack");
|
|
||||||
|
|
||||||
registerEvent("getRepacks", getRepacks);
|
|
@ -1,7 +1,7 @@
|
|||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
import { convertSteamGameToCatalogueEntry } from "../helpers/search-games";
|
import { convertSteamGameToCatalogueEntry } from "../helpers/search-games";
|
||||||
import { CatalogueEntry } from "@types";
|
import { CatalogueEntry } from "@types";
|
||||||
import { HydraApi, RepacksManager } from "@main/services";
|
import { HydraApi } from "@main/services";
|
||||||
|
|
||||||
const searchGamesEvent = async (
|
const searchGamesEvent = async (
|
||||||
_event: Electron.IpcMainInvokeEvent,
|
_event: Electron.IpcMainInvokeEvent,
|
||||||
@ -11,15 +11,13 @@ const searchGamesEvent = async (
|
|||||||
{ objectId: string; title: string; shop: string }[]
|
{ objectId: string; title: string; shop: string }[]
|
||||||
>("/games/search", { title: query, take: 12, skip: 0 }, { needsAuth: false });
|
>("/games/search", { title: query, take: 12, skip: 0 }, { needsAuth: false });
|
||||||
|
|
||||||
const steamGames = games.map((game) => {
|
return games.map((game) => {
|
||||||
return convertSteamGameToCatalogueEntry({
|
return convertSteamGameToCatalogueEntry({
|
||||||
id: Number(game.objectId),
|
id: Number(game.objectId),
|
||||||
name: game.title,
|
name: game.title,
|
||||||
clientIcon: null,
|
clientIcon: null,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
return RepacksManager.findRepacksForCatalogueEntries(steamGames);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
registerEvent("searchGames", searchGamesEvent);
|
registerEvent("searchGames", searchGamesEvent);
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
import { registerEvent } from "../register-event";
|
||||||
|
import { knexClient } from "@main/knex-client";
|
||||||
|
|
||||||
|
const deleteDownloadSource = async (
|
||||||
|
_event: Electron.IpcMainInvokeEvent,
|
||||||
|
id: number
|
||||||
|
) => knexClient("download_source").where({ id }).delete();
|
||||||
|
|
||||||
|
registerEvent("deleteDownloadSource", deleteDownloadSource);
|
@ -1,13 +0,0 @@
|
|||||||
import { downloadSourcesWorker } from "@main/workers";
|
|
||||||
import { registerEvent } from "../register-event";
|
|
||||||
import type { DownloadSource } from "@types";
|
|
||||||
|
|
||||||
const syncDownloadSources = async (
|
|
||||||
_event: Electron.IpcMainInvokeEvent,
|
|
||||||
downloadSources: DownloadSource[]
|
|
||||||
) =>
|
|
||||||
downloadSourcesWorker.run(downloadSources, {
|
|
||||||
name: "getUpdatedRepacks",
|
|
||||||
});
|
|
||||||
|
|
||||||
registerEvent("syncDownloadSources", syncDownloadSources);
|
|
@ -1,12 +0,0 @@
|
|||||||
import { registerEvent } from "../register-event";
|
|
||||||
import { downloadSourcesWorker } from "@main/workers";
|
|
||||||
|
|
||||||
const validateDownloadSource = async (
|
|
||||||
_event: Electron.IpcMainInvokeEvent,
|
|
||||||
url: string
|
|
||||||
) =>
|
|
||||||
downloadSourcesWorker.run(url, {
|
|
||||||
name: "validateDownloadSource",
|
|
||||||
});
|
|
||||||
|
|
||||||
registerEvent("validateDownloadSource", validateDownloadSource);
|
|
@ -1,7 +1,6 @@
|
|||||||
import type { GameShop, CatalogueEntry, SteamGame } from "@types";
|
import type { GameShop, CatalogueEntry, SteamGame } from "@types";
|
||||||
|
|
||||||
import { steamGamesWorker } from "@main/workers";
|
import { steamGamesWorker } from "@main/workers";
|
||||||
import { RepacksManager } from "@main/services";
|
|
||||||
import { steamUrlBuilder } from "@shared";
|
import { steamUrlBuilder } from "@shared";
|
||||||
|
|
||||||
export interface SearchGamesArgs {
|
export interface SearchGamesArgs {
|
||||||
@ -28,9 +27,5 @@ export const getSteamGameById = async (
|
|||||||
|
|
||||||
if (!steamGame) return null;
|
if (!steamGame) return null;
|
||||||
|
|
||||||
const catalogueEntry = convertSteamGameToCatalogueEntry(steamGame);
|
return convertSteamGameToCatalogueEntry(steamGame);
|
||||||
|
|
||||||
const result = RepacksManager.findRepacksForCatalogueEntry(catalogueEntry);
|
|
||||||
|
|
||||||
return result;
|
|
||||||
};
|
};
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
import { z } from "zod";
|
|
||||||
|
|
||||||
export const downloadSourceSchema = z.object({
|
|
||||||
name: z.string().max(255),
|
|
||||||
downloads: z.array(
|
|
||||||
z.object({
|
|
||||||
title: z.string().max(255),
|
|
||||||
uris: z.array(z.string()),
|
|
||||||
uploadDate: z.string().max(255),
|
|
||||||
fileSize: z.string().max(255),
|
|
||||||
})
|
|
||||||
),
|
|
||||||
});
|
|
@ -9,7 +9,6 @@ import "./catalogue/get-random-game";
|
|||||||
import "./catalogue/search-games";
|
import "./catalogue/search-games";
|
||||||
import "./catalogue/get-game-stats";
|
import "./catalogue/get-game-stats";
|
||||||
import "./catalogue/get-trending-games";
|
import "./catalogue/get-trending-games";
|
||||||
import "./catalogue/get-repacks";
|
|
||||||
import "./hardware/get-disk-free-space";
|
import "./hardware/get-disk-free-space";
|
||||||
import "./library/add-game-to-library";
|
import "./library/add-game-to-library";
|
||||||
import "./library/create-game-shortcut";
|
import "./library/create-game-shortcut";
|
||||||
@ -37,9 +36,8 @@ import "./user-preferences/auto-launch";
|
|||||||
import "./autoupdater/check-for-updates";
|
import "./autoupdater/check-for-updates";
|
||||||
import "./autoupdater/restart-and-install-update";
|
import "./autoupdater/restart-and-install-update";
|
||||||
import "./user-preferences/authenticate-real-debrid";
|
import "./user-preferences/authenticate-real-debrid";
|
||||||
|
import "./download-sources/delete-download-source";
|
||||||
import "./download-sources/get-download-sources";
|
import "./download-sources/get-download-sources";
|
||||||
import "./download-sources/validate-download-source";
|
|
||||||
import "./download-sources/sync-download-sources";
|
|
||||||
import "./auth/sign-out";
|
import "./auth/sign-out";
|
||||||
import "./auth/open-auth-window";
|
import "./auth/open-auth-window";
|
||||||
import "./auth/get-session-hash";
|
import "./auth/get-session-hash";
|
||||||
@ -58,6 +56,7 @@ import "./profile/update-profile";
|
|||||||
import "./profile/process-profile-image";
|
import "./profile/process-profile-image";
|
||||||
import "./profile/send-friend-request";
|
import "./profile/send-friend-request";
|
||||||
import "./profile/sync-friend-requests";
|
import "./profile/sync-friend-requests";
|
||||||
|
import "./notifications/publish-new-repacks-notification";
|
||||||
import { isPortableVersion } from "@main/helpers";
|
import { isPortableVersion } from "@main/helpers";
|
||||||
|
|
||||||
ipcMain.handle("ping", () => "pong");
|
ipcMain.handle("ping", () => "pong");
|
||||||
|
@ -3,7 +3,6 @@ import { gameRepository } from "@main/repository";
|
|||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
|
|
||||||
import type { GameShop } from "@types";
|
import type { GameShop } from "@types";
|
||||||
import { getFileBase64 } from "@main/helpers";
|
|
||||||
|
|
||||||
import { steamGamesWorker } from "@main/workers";
|
import { steamGamesWorker } from "@main/workers";
|
||||||
import { createGame } from "@main/services/library-sync";
|
import { createGame } from "@main/services/library-sync";
|
||||||
@ -36,20 +35,12 @@ const addGameToLibrary = async (
|
|||||||
? steamUrlBuilder.icon(objectID, steamGame.clientIcon)
|
? steamUrlBuilder.icon(objectID, steamGame.clientIcon)
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
await gameRepository
|
await gameRepository.insert({
|
||||||
.insert({
|
title,
|
||||||
title,
|
iconUrl,
|
||||||
iconUrl,
|
objectID,
|
||||||
objectID,
|
shop,
|
||||||
shop,
|
});
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
if (iconUrl) {
|
|
||||||
getFileBase64(iconUrl).then((base64) =>
|
|
||||||
gameRepository.update({ objectID }, { iconUrl: base64 })
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const game = await gameRepository.findOne({ where: { objectID } });
|
const game = await gameRepository.findOne({ where: { objectID } });
|
||||||
|
@ -0,0 +1,29 @@
|
|||||||
|
import { Notification } from "electron";
|
||||||
|
import { registerEvent } from "../register-event";
|
||||||
|
import { userPreferencesRepository } from "@main/repository";
|
||||||
|
import { t } from "i18next";
|
||||||
|
|
||||||
|
const publishNewRepacksNotification = async (
|
||||||
|
_event: Electron.IpcMainInvokeEvent,
|
||||||
|
newRepacksCount: number
|
||||||
|
) => {
|
||||||
|
if (newRepacksCount < 1) return;
|
||||||
|
|
||||||
|
const userPreferences = await userPreferencesRepository.findOne({
|
||||||
|
where: { id: 1 },
|
||||||
|
});
|
||||||
|
|
||||||
|
if (userPreferences?.repackUpdatesNotificationsEnabled) {
|
||||||
|
new Notification({
|
||||||
|
title: t("repack_list_updated", {
|
||||||
|
ns: "notifications",
|
||||||
|
}),
|
||||||
|
body: t("repack_count", {
|
||||||
|
ns: "notifications",
|
||||||
|
count: newRepacksCount,
|
||||||
|
}),
|
||||||
|
}).show();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
registerEvent("publishNewRepacksNotification", publishNewRepacksNotification);
|
@ -1,7 +1,6 @@
|
|||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
|
|
||||||
import type { StartGameDownloadPayload } from "@types";
|
import type { StartGameDownloadPayload } from "@types";
|
||||||
import { getFileBase64 } from "@main/helpers";
|
|
||||||
import { DownloadManager, HydraApi, logger } from "@main/services";
|
import { DownloadManager, HydraApi, logger } from "@main/services";
|
||||||
|
|
||||||
import { Not } from "typeorm";
|
import { Not } from "typeorm";
|
||||||
@ -60,26 +59,16 @@ const startGameDownload = async (
|
|||||||
? steamUrlBuilder.icon(objectID, steamGame.clientIcon)
|
? steamUrlBuilder.icon(objectID, steamGame.clientIcon)
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
await gameRepository
|
await gameRepository.insert({
|
||||||
.insert({
|
title,
|
||||||
title,
|
iconUrl,
|
||||||
iconUrl,
|
objectID,
|
||||||
objectID,
|
downloader,
|
||||||
downloader,
|
shop,
|
||||||
shop,
|
status: "active",
|
||||||
status: "active",
|
downloadPath,
|
||||||
downloadPath,
|
uri,
|
||||||
uri,
|
});
|
||||||
})
|
|
||||||
.then((result) => {
|
|
||||||
if (iconUrl) {
|
|
||||||
getFileBase64(iconUrl).then((base64) =>
|
|
||||||
gameRepository.update({ objectID }, { iconUrl: base64 })
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return result;
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const updatedGame = await gameRepository.findOne({
|
const updatedGame = await gameRepository.findOne({
|
||||||
|
@ -7,16 +7,6 @@ export const getFileBuffer = async (url: string) =>
|
|||||||
response.arrayBuffer().then((buffer) => Buffer.from(buffer))
|
response.arrayBuffer().then((buffer) => Buffer.from(buffer))
|
||||||
);
|
);
|
||||||
|
|
||||||
export const getFileBase64 = async (url: string) =>
|
|
||||||
fetch(url, { method: "GET" }).then((response) =>
|
|
||||||
response.arrayBuffer().then((buffer) => {
|
|
||||||
const base64 = Buffer.from(buffer).toString("base64");
|
|
||||||
const contentType = response.headers.get("content-type");
|
|
||||||
|
|
||||||
return `data:${contentType};base64,${base64}`;
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
export const sleep = (ms: number) =>
|
export const sleep = (ms: number) =>
|
||||||
new Promise((resolve) => setTimeout(resolve, ms));
|
new Promise((resolve) => setTimeout(resolve, ms));
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { app, BrowserWindow, net, protocol } from "electron";
|
import { app, BrowserWindow, net, protocol, session } from "electron";
|
||||||
import { init } from "@sentry/electron/main";
|
import { init } from "@sentry/electron/main";
|
||||||
import updater from "electron-updater";
|
import updater from "electron-updater";
|
||||||
import i18n from "i18next";
|
import i18n from "i18next";
|
||||||
@ -74,7 +74,7 @@ const runMigrations = async () => {
|
|||||||
// initialization and is ready to create browser windows.
|
// initialization and is ready to create browser windows.
|
||||||
// Some APIs can only be used after this event occurs.
|
// Some APIs can only be used after this event occurs.
|
||||||
app.whenReady().then(async () => {
|
app.whenReady().then(async () => {
|
||||||
electronApp.setAppUserModelId("site.hydralauncher.hydra");
|
electronApp.setAppUserModelId("gg.hydralauncher.hydra");
|
||||||
|
|
||||||
protocol.handle("local", (request) => {
|
protocol.handle("local", (request) => {
|
||||||
const filePath = request.url.slice("local:".length);
|
const filePath = request.url.slice("local:".length);
|
||||||
@ -103,6 +103,46 @@ app.whenReady().then(async () => {
|
|||||||
|
|
||||||
WindowManager.createMainWindow();
|
WindowManager.createMainWindow();
|
||||||
WindowManager.createSystemTray(userPreferences?.language || "en");
|
WindowManager.createSystemTray(userPreferences?.language || "en");
|
||||||
|
|
||||||
|
session.defaultSession.webRequest.onBeforeSendHeaders((details, callback) => {
|
||||||
|
callback({
|
||||||
|
requestHeaders: {
|
||||||
|
...details.requestHeaders,
|
||||||
|
"user-agent":
|
||||||
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
session.defaultSession.webRequest.onHeadersReceived((details, callback) => {
|
||||||
|
const headers = {
|
||||||
|
"access-control-allow-origin": ["*"],
|
||||||
|
"access-control-allow-methods": ["GET, POST, PUT, DELETE, OPTIONS"],
|
||||||
|
"access-control-expose-headers": ["ETag"],
|
||||||
|
"access-control-allow-headers": [
|
||||||
|
"Content-Type, Authorization, X-Requested-With, If-None-Match",
|
||||||
|
],
|
||||||
|
"access-control-allow-credentials": ["true"],
|
||||||
|
};
|
||||||
|
|
||||||
|
if (details.method === "OPTIONS") {
|
||||||
|
callback({
|
||||||
|
cancel: false,
|
||||||
|
responseHeaders: {
|
||||||
|
...details.responseHeaders,
|
||||||
|
...headers,
|
||||||
|
},
|
||||||
|
statusLine: "HTTP/1.1 200 OK",
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
callback({
|
||||||
|
responseHeaders: {
|
||||||
|
...details.responseHeaders,
|
||||||
|
...headers,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
app.on("browser-window-created", (_, window) => {
|
app.on("browser-window-created", (_, window) => {
|
||||||
|
@ -1,14 +1,10 @@
|
|||||||
import { DownloadManager, PythonInstance, startMainLoop } from "./services";
|
import { DownloadManager, PythonInstance, startMainLoop } from "./services";
|
||||||
import {
|
import {
|
||||||
downloadQueueRepository,
|
downloadQueueRepository,
|
||||||
// repackRepository,
|
|
||||||
userPreferencesRepository,
|
userPreferencesRepository,
|
||||||
} from "./repository";
|
} from "./repository";
|
||||||
import { UserPreferences } from "./entity";
|
import { UserPreferences } from "./entity";
|
||||||
import { RealDebridClient } from "./services/real-debrid";
|
import { RealDebridClient } from "./services/real-debrid";
|
||||||
// import { fetchDownloadSourcesAndUpdate } from "./helpers";
|
|
||||||
// import { publishNewRepacksNotifications } from "./services/notifications";
|
|
||||||
// import { MoreThan } from "typeorm";
|
|
||||||
import { HydraApi } from "./services/hydra-api";
|
import { HydraApi } from "./services/hydra-api";
|
||||||
import { uploadGamesBatch } from "./services/library-sync";
|
import { uploadGamesBatch } from "./services/library-sync";
|
||||||
|
|
||||||
@ -39,18 +35,6 @@ const loadState = async (userPreferences: UserPreferences | null) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
startMainLoop();
|
startMainLoop();
|
||||||
|
|
||||||
// const now = new Date();
|
|
||||||
|
|
||||||
// fetchDownloadSourcesAndUpdate().then(async () => {
|
|
||||||
// const newRepacksCount = await repackRepository.count({
|
|
||||||
// where: {
|
|
||||||
// createdAt: MoreThan(now),
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
|
|
||||||
// if (newRepacksCount > 0) publishNewRepacksNotifications(newRepacksCount);
|
|
||||||
// });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
userPreferencesRepository
|
userPreferencesRepository
|
||||||
|
@ -7,5 +7,4 @@ export * from "./download";
|
|||||||
export * from "./how-long-to-beat";
|
export * from "./how-long-to-beat";
|
||||||
export * from "./process-watcher";
|
export * from "./process-watcher";
|
||||||
export * from "./main-loop";
|
export * from "./main-loop";
|
||||||
export * from "./repacks-manager";
|
|
||||||
export * from "./hydra-api";
|
export * from "./hydra-api";
|
||||||
|
@ -49,24 +49,6 @@ export const publishDownloadCompleteNotification = async (game: Game) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const publishNewRepacksNotifications = async (count: number) => {
|
|
||||||
const userPreferences = await userPreferencesRepository.findOne({
|
|
||||||
where: { id: 1 },
|
|
||||||
});
|
|
||||||
|
|
||||||
if (userPreferences?.repackUpdatesNotificationsEnabled) {
|
|
||||||
new Notification({
|
|
||||||
title: t("repack_list_updated", {
|
|
||||||
ns: "notifications",
|
|
||||||
}),
|
|
||||||
body: t("repack_count", {
|
|
||||||
ns: "notifications",
|
|
||||||
count: count,
|
|
||||||
}),
|
|
||||||
}).show();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export const publishNotificationUpdateReadyToInstall = async (
|
export const publishNotificationUpdateReadyToInstall = async (
|
||||||
version: string
|
version: string
|
||||||
) => {
|
) => {
|
||||||
|
@ -1,63 +0,0 @@
|
|||||||
import { repackRepository } from "@main/repository";
|
|
||||||
import { formatName } from "@shared";
|
|
||||||
import { CatalogueEntry, GameRepack } from "@types";
|
|
||||||
import flexSearch from "flexsearch";
|
|
||||||
|
|
||||||
export class RepacksManager {
|
|
||||||
public static repacks: GameRepack[] = [];
|
|
||||||
private static repacksIndex = new flexSearch.Index();
|
|
||||||
|
|
||||||
public static async updateRepacks() {
|
|
||||||
this.repacks = await repackRepository
|
|
||||||
.find({
|
|
||||||
order: {
|
|
||||||
createdAt: "DESC",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
.then((repacks) =>
|
|
||||||
repacks.map((repack) => {
|
|
||||||
const uris: string[] = [];
|
|
||||||
const magnet = repack?.magnet;
|
|
||||||
|
|
||||||
if (magnet) uris.push(magnet);
|
|
||||||
|
|
||||||
return {
|
|
||||||
...repack,
|
|
||||||
uris: [...uris, ...JSON.parse(repack.uris)],
|
|
||||||
};
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
for (let i = 0; i < this.repacks.length; i++) {
|
|
||||||
this.repacksIndex.remove(i);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.repacksIndex = new flexSearch.Index();
|
|
||||||
|
|
||||||
for (let i = 0; i < this.repacks.length; i++) {
|
|
||||||
const repack = this.repacks[i];
|
|
||||||
|
|
||||||
const formattedTitle = formatName(repack.title);
|
|
||||||
|
|
||||||
this.repacksIndex.add(i, formattedTitle);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static search(options: flexSearch.SearchOptions) {
|
|
||||||
return this.repacksIndex
|
|
||||||
.search({ ...options, query: formatName(options.query ?? "") })
|
|
||||||
.map((index) => this.repacks[index]);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static findRepacksForCatalogueEntry(entry: CatalogueEntry) {
|
|
||||||
const repacks = this.search({ query: formatName(entry.title) });
|
|
||||||
return { ...entry, repacks };
|
|
||||||
}
|
|
||||||
|
|
||||||
public static findRepacksForCatalogueEntries(entries: CatalogueEntry[]) {
|
|
||||||
return entries.map((entry) => {
|
|
||||||
const repacks = this.search({ query: formatName(entry.title) });
|
|
||||||
return { ...entry, repacks };
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,59 +0,0 @@
|
|||||||
import { downloadSourceSchema } from "@main/events/helpers/validators";
|
|
||||||
import { DownloadSourceStatus } from "@shared";
|
|
||||||
import type { DownloadSource } from "@types";
|
|
||||||
import axios, { AxiosError, AxiosHeaders } from "axios";
|
|
||||||
import { z } from "zod";
|
|
||||||
|
|
||||||
export type DownloadSourceResponse = z.infer<typeof downloadSourceSchema> & {
|
|
||||||
etag: string | null;
|
|
||||||
status: DownloadSourceStatus;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const getUpdatedRepacks = async (downloadSources: DownloadSource[]) => {
|
|
||||||
const results: DownloadSourceResponse[] = [];
|
|
||||||
|
|
||||||
for (const downloadSource of downloadSources) {
|
|
||||||
const headers = new AxiosHeaders();
|
|
||||||
|
|
||||||
if (downloadSource.etag) {
|
|
||||||
headers.set("If-None-Match", downloadSource.etag);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const response = await axios.get(downloadSource.url, {
|
|
||||||
headers,
|
|
||||||
});
|
|
||||||
|
|
||||||
const source = downloadSourceSchema.parse(response.data);
|
|
||||||
|
|
||||||
results.push({
|
|
||||||
...downloadSource,
|
|
||||||
downloads: source.downloads,
|
|
||||||
etag: response.headers["etag"],
|
|
||||||
status: DownloadSourceStatus.UpToDate,
|
|
||||||
});
|
|
||||||
} catch (err: unknown) {
|
|
||||||
const isNotModified = (err as AxiosError).response?.status === 304;
|
|
||||||
|
|
||||||
results.push({
|
|
||||||
...downloadSource,
|
|
||||||
downloads: [],
|
|
||||||
etag: null,
|
|
||||||
status: isNotModified
|
|
||||||
? DownloadSourceStatus.UpToDate
|
|
||||||
: DownloadSourceStatus.Errored,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return results;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const validateDownloadSource = async (url: string) => {
|
|
||||||
const response = await axios.get(url);
|
|
||||||
|
|
||||||
return {
|
|
||||||
...downloadSourceSchema.parse(response.data),
|
|
||||||
etag: response.headers["etag"],
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,6 +1,5 @@
|
|||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import steamGamesWorkerPath from "./steam-games.worker?modulePath";
|
import steamGamesWorkerPath from "./steam-games.worker?modulePath";
|
||||||
import downloadSourcesWorkerPath from "./download-sources.worker?modulePath";
|
|
||||||
|
|
||||||
import Piscina from "piscina";
|
import Piscina from "piscina";
|
||||||
|
|
||||||
@ -13,7 +12,3 @@ export const steamGamesWorker = new Piscina({
|
|||||||
},
|
},
|
||||||
maxThreads: 1,
|
maxThreads: 1,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const downloadSourcesWorker = new Piscina({
|
|
||||||
filename: downloadSourcesWorkerPath,
|
|
||||||
});
|
|
||||||
|
@ -11,7 +11,6 @@ import type {
|
|||||||
GameRunning,
|
GameRunning,
|
||||||
FriendRequestAction,
|
FriendRequestAction,
|
||||||
UpdateProfileRequest,
|
UpdateProfileRequest,
|
||||||
DownloadSource,
|
|
||||||
} from "@types";
|
} from "@types";
|
||||||
import type { CatalogueCategory } from "@shared";
|
import type { CatalogueCategory } from "@shared";
|
||||||
|
|
||||||
@ -50,8 +49,6 @@ contextBridge.exposeInMainWorld("electron", {
|
|||||||
getGameStats: (objectId: string, shop: GameShop) =>
|
getGameStats: (objectId: string, shop: GameShop) =>
|
||||||
ipcRenderer.invoke("getGameStats", objectId, shop),
|
ipcRenderer.invoke("getGameStats", objectId, shop),
|
||||||
getTrendingGames: () => ipcRenderer.invoke("getTrendingGames"),
|
getTrendingGames: () => ipcRenderer.invoke("getTrendingGames"),
|
||||||
/* Meant for Dexie migration */
|
|
||||||
getRepacks: () => ipcRenderer.invoke("getRepacks"),
|
|
||||||
|
|
||||||
/* User preferences */
|
/* User preferences */
|
||||||
getUserPreferences: () => ipcRenderer.invoke("getUserPreferences"),
|
getUserPreferences: () => ipcRenderer.invoke("getUserPreferences"),
|
||||||
@ -63,10 +60,8 @@ contextBridge.exposeInMainWorld("electron", {
|
|||||||
|
|
||||||
/* Download sources */
|
/* Download sources */
|
||||||
getDownloadSources: () => ipcRenderer.invoke("getDownloadSources"),
|
getDownloadSources: () => ipcRenderer.invoke("getDownloadSources"),
|
||||||
validateDownloadSource: (url: string) =>
|
deleteDownloadSource: (id: number) =>
|
||||||
ipcRenderer.invoke("validateDownloadSource", url),
|
ipcRenderer.invoke("deleteDownloadSource", id),
|
||||||
syncDownloadSources: (downloadSources: DownloadSource[]) =>
|
|
||||||
ipcRenderer.invoke("syncDownloadSources", downloadSources),
|
|
||||||
|
|
||||||
/* Library */
|
/* Library */
|
||||||
addGameToLibrary: (objectID: string, title: string, shop: GameShop) =>
|
addGameToLibrary: (objectID: string, title: string, shop: GameShop) =>
|
||||||
@ -182,4 +177,8 @@ contextBridge.exposeInMainWorld("electron", {
|
|||||||
ipcRenderer.on("on-signout", listener);
|
ipcRenderer.on("on-signout", listener);
|
||||||
return () => ipcRenderer.removeListener("on-signout", listener);
|
return () => ipcRenderer.removeListener("on-signout", listener);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/* Notifications */
|
||||||
|
publishNewRepacksNotification: (newRepacksCount: number) =>
|
||||||
|
ipcRenderer.invoke("publishNewRepacksNotification", newRepacksCount),
|
||||||
});
|
});
|
||||||
|
@ -26,7 +26,7 @@ import {
|
|||||||
} from "@renderer/features";
|
} from "@renderer/features";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { UserFriendModal } from "./pages/shared-modals/user-friend-modal";
|
import { UserFriendModal } from "./pages/shared-modals/user-friend-modal";
|
||||||
// import { migrationWorker } from "./workers";
|
import { downloadSourcesWorker } from "./workers";
|
||||||
import { repacksContext } from "./context";
|
import { repacksContext } from "./context";
|
||||||
|
|
||||||
export interface AppProps {
|
export interface AppProps {
|
||||||
@ -39,6 +39,8 @@ export function App() {
|
|||||||
|
|
||||||
const { t } = useTranslation("app");
|
const { t } = useTranslation("app");
|
||||||
|
|
||||||
|
const downloadSourceMigrationLock = useRef(false);
|
||||||
|
|
||||||
const { clearDownload, setLastPacket } = useDownload();
|
const { clearDownload, setLastPacket } = useDownload();
|
||||||
|
|
||||||
const { indexRepacks } = useContext(repacksContext);
|
const { indexRepacks } = useContext(repacksContext);
|
||||||
@ -211,22 +213,46 @@ export function App() {
|
|||||||
}, [dispatch, draggingDisabled]);
|
}, [dispatch, draggingDisabled]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
// window.electron.getRepacks().then((repacks) => {
|
if (downloadSourceMigrationLock.current) return;
|
||||||
// migrationWorker.postMessage(["MIGRATE_REPACKS", repacks]);
|
|
||||||
// });
|
downloadSourceMigrationLock.current = true;
|
||||||
// window.electron.getDownloadSources().then((downloadSources) => {
|
|
||||||
// migrationWorker.postMessage([
|
window.electron.getDownloadSources().then(async (downloadSources) => {
|
||||||
// "MIGRATE_DOWNLOAD_SOURCES",
|
if (!downloadSources.length) {
|
||||||
// downloadSources,
|
const id = crypto.randomUUID();
|
||||||
// ]);
|
const channel = new BroadcastChannel(`download_sources:sync:${id}`);
|
||||||
// });
|
|
||||||
// migrationWorker.onmessage = (
|
channel.onmessage = (event: MessageEvent<number>) => {
|
||||||
// event: MessageEvent<"MIGRATE_REPACKS_COMPLETE">
|
const newRepacksCount = event.data;
|
||||||
// ) => {
|
window.electron.publishNewRepacksNotification(newRepacksCount);
|
||||||
// if (event.data === "MIGRATE_REPACKS_COMPLETE") {
|
};
|
||||||
// indexRepacks();
|
|
||||||
// }
|
downloadSourcesWorker.postMessage(["SYNC_DOWNLOAD_SOURCES", id]);
|
||||||
// };
|
}
|
||||||
|
|
||||||
|
for (const downloadSource of downloadSources) {
|
||||||
|
const channel = new BroadcastChannel(
|
||||||
|
`download_sources:import:${downloadSource.url}`
|
||||||
|
);
|
||||||
|
await new Promise((resolve) => {
|
||||||
|
downloadSourcesWorker.postMessage([
|
||||||
|
"IMPORT_DOWNLOAD_SOURCE",
|
||||||
|
downloadSource.url,
|
||||||
|
]);
|
||||||
|
|
||||||
|
channel.onmessage = () => {
|
||||||
|
window.electron.deleteDownloadSource(downloadSource.id).then(() => {
|
||||||
|
resolve(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
indexRepacks();
|
||||||
|
channel.close();
|
||||||
|
};
|
||||||
|
}).catch(() => channel.close());
|
||||||
|
}
|
||||||
|
|
||||||
|
downloadSourceMigrationLock.current = false;
|
||||||
|
});
|
||||||
}, [indexRepacks]);
|
}, [indexRepacks]);
|
||||||
|
|
||||||
const handleToastClose = useCallback(() => {
|
const handleToastClose = useCallback(() => {
|
||||||
|
@ -33,6 +33,7 @@ export function RepacksContextProvider({ children }: RepacksContextProps) {
|
|||||||
const channel = new BroadcastChannel(`repacks:search:${channelId}`);
|
const channel = new BroadcastChannel(`repacks:search:${channelId}`);
|
||||||
channel.onmessage = (event: MessageEvent<GameRepack[]>) => {
|
channel.onmessage = (event: MessageEvent<GameRepack[]>) => {
|
||||||
resolve(event.data);
|
resolve(event.data);
|
||||||
|
channel.close();
|
||||||
};
|
};
|
||||||
|
|
||||||
return [];
|
return [];
|
||||||
|
11
src/renderer/src/declaration.d.ts
vendored
11
src/renderer/src/declaration.d.ts
vendored
@ -25,7 +25,6 @@ import type {
|
|||||||
UserStats,
|
UserStats,
|
||||||
UserDetails,
|
UserDetails,
|
||||||
FriendRequestSync,
|
FriendRequestSync,
|
||||||
DownloadSourceValidationResult,
|
|
||||||
} from "@types";
|
} from "@types";
|
||||||
import type { DiskSpace } from "check-disk-space";
|
import type { DiskSpace } from "check-disk-space";
|
||||||
|
|
||||||
@ -66,8 +65,6 @@ declare global {
|
|||||||
searchGameRepacks: (query: string) => Promise<GameRepack[]>;
|
searchGameRepacks: (query: string) => Promise<GameRepack[]>;
|
||||||
getGameStats: (objectId: string, shop: GameShop) => Promise<GameStats>;
|
getGameStats: (objectId: string, shop: GameShop) => Promise<GameStats>;
|
||||||
getTrendingGames: () => Promise<TrendingGame[]>;
|
getTrendingGames: () => Promise<TrendingGame[]>;
|
||||||
/* Meant for Dexie migration */
|
|
||||||
getRepacks: () => Promise<GameRepack[]>;
|
|
||||||
|
|
||||||
/* Library */
|
/* Library */
|
||||||
addGameToLibrary: (
|
addGameToLibrary: (
|
||||||
@ -105,10 +102,7 @@ declare global {
|
|||||||
|
|
||||||
/* Download sources */
|
/* Download sources */
|
||||||
getDownloadSources: () => Promise<DownloadSource[]>;
|
getDownloadSources: () => Promise<DownloadSource[]>;
|
||||||
validateDownloadSource: (
|
deleteDownloadSource: (id: number) => Promise<void>;
|
||||||
url: string
|
|
||||||
) => Promise<DownloadSourceValidationResult>;
|
|
||||||
syncDownloadSources: (downloadSources: DownloadSource[]) => Promise<void>;
|
|
||||||
|
|
||||||
/* Hardware */
|
/* Hardware */
|
||||||
getDiskFreeSpace: (path: string) => Promise<DiskSpace>;
|
getDiskFreeSpace: (path: string) => Promise<DiskSpace>;
|
||||||
@ -172,6 +166,9 @@ declare global {
|
|||||||
action: FriendRequestAction
|
action: FriendRequestAction
|
||||||
) => Promise<void>;
|
) => Promise<void>;
|
||||||
sendFriendRequest: (userId: string) => Promise<void>;
|
sendFriendRequest: (userId: string) => Promise<void>;
|
||||||
|
|
||||||
|
/* Notifications */
|
||||||
|
publishNewRepacksNotification: (newRepacksCount: number) => Promise<void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Window {
|
interface Window {
|
||||||
|
@ -67,8 +67,21 @@ export function AddDownloadSourceModal({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const result = await window.electron.validateDownloadSource(values.url);
|
downloadSourcesWorker.postMessage([
|
||||||
setValidationResult(result);
|
"VALIDATE_DOWNLOAD_SOURCE",
|
||||||
|
values.url,
|
||||||
|
]);
|
||||||
|
|
||||||
|
const channel = new BroadcastChannel(
|
||||||
|
`download_sources:validate:${values.url}`
|
||||||
|
);
|
||||||
|
|
||||||
|
channel.onmessage = (
|
||||||
|
event: MessageEvent<DownloadSourceValidationResult>
|
||||||
|
) => {
|
||||||
|
setValidationResult(event.data);
|
||||||
|
channel.close();
|
||||||
|
};
|
||||||
|
|
||||||
setUrl(values.url);
|
setUrl(values.url);
|
||||||
},
|
},
|
||||||
@ -93,16 +106,14 @@ export function AddDownloadSourceModal({
|
|||||||
if (validationResult) {
|
if (validationResult) {
|
||||||
const channel = new BroadcastChannel(`download_sources:import:${url}`);
|
const channel = new BroadcastChannel(`download_sources:import:${url}`);
|
||||||
|
|
||||||
downloadSourcesWorker.postMessage([
|
downloadSourcesWorker.postMessage(["IMPORT_DOWNLOAD_SOURCE", url]);
|
||||||
"IMPORT_DOWNLOAD_SOURCE",
|
|
||||||
{ ...validationResult, url },
|
|
||||||
]);
|
|
||||||
|
|
||||||
channel.onmessage = () => {
|
channel.onmessage = () => {
|
||||||
setIsLoading(false);
|
setIsLoading(false);
|
||||||
|
|
||||||
onClose();
|
onClose();
|
||||||
onAddDownloadSource();
|
onAddDownloadSource();
|
||||||
|
channel.close();
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -159,9 +170,9 @@ export function AddDownloadSourceModal({
|
|||||||
<h4>{validationResult?.name}</h4>
|
<h4>{validationResult?.name}</h4>
|
||||||
<small>
|
<small>
|
||||||
{t("found_download_option", {
|
{t("found_download_option", {
|
||||||
count: validationResult?.downloads.length,
|
count: validationResult?.downloadCount,
|
||||||
countFormatted:
|
countFormatted:
|
||||||
validationResult?.downloads.length.toLocaleString(),
|
validationResult?.downloadCount.toLocaleString(),
|
||||||
})}
|
})}
|
||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
|
@ -59,6 +59,7 @@ export function SettingsDownloadSources() {
|
|||||||
getDownloadSources();
|
getDownloadSources();
|
||||||
indexRepacks();
|
indexRepacks();
|
||||||
setIsRemovingDownloadSource(false);
|
setIsRemovingDownloadSource(false);
|
||||||
|
channel.close();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -71,15 +72,17 @@ export function SettingsDownloadSources() {
|
|||||||
const syncDownloadSources = async () => {
|
const syncDownloadSources = async () => {
|
||||||
setIsSyncingDownloadSources(true);
|
setIsSyncingDownloadSources(true);
|
||||||
|
|
||||||
window.electron
|
const id = crypto.randomUUID();
|
||||||
.syncDownloadSources(downloadSources)
|
const channel = new BroadcastChannel(`download_sources:sync:${id}`);
|
||||||
.then(() => {
|
|
||||||
showSuccessToast(t("download_sources_synced"));
|
downloadSourcesWorker.postMessage(["SYNC_DOWNLOAD_SOURCES", id]);
|
||||||
getDownloadSources();
|
|
||||||
})
|
channel.onmessage = () => {
|
||||||
.finally(() => {
|
showSuccessToast(t("download_sources_synced"));
|
||||||
setIsSyncingDownloadSources(false);
|
getDownloadSources();
|
||||||
});
|
setIsSyncingDownloadSources(false);
|
||||||
|
channel.close();
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const statusTitle = {
|
const statusTitle = {
|
||||||
|
@ -1,16 +1,45 @@
|
|||||||
import { db, downloadSourcesTable, repacksTable } from "@renderer/dexie";
|
import { db, downloadSourcesTable, repacksTable } from "@renderer/dexie";
|
||||||
|
|
||||||
|
import { z } from "zod";
|
||||||
|
import axios, { AxiosError, AxiosHeaders } from "axios";
|
||||||
import { DownloadSourceStatus } from "@shared";
|
import { DownloadSourceStatus } from "@shared";
|
||||||
import type { DownloadSourceValidationResult } from "@types";
|
|
||||||
|
export const downloadSourceSchema = z.object({
|
||||||
|
name: z.string().max(255),
|
||||||
|
downloads: z.array(
|
||||||
|
z.object({
|
||||||
|
title: z.string().max(255),
|
||||||
|
uris: z.array(z.string()),
|
||||||
|
uploadDate: z.string().max(255),
|
||||||
|
fileSize: z.string().max(255),
|
||||||
|
})
|
||||||
|
),
|
||||||
|
});
|
||||||
|
|
||||||
type Payload =
|
type Payload =
|
||||||
| ["IMPORT_DOWNLOAD_SOURCE", DownloadSourceValidationResult & { url: string }]
|
| ["IMPORT_DOWNLOAD_SOURCE", string]
|
||||||
| ["DELETE_DOWNLOAD_SOURCE", number];
|
| ["DELETE_DOWNLOAD_SOURCE", number]
|
||||||
|
| ["VALIDATE_DOWNLOAD_SOURCE", string]
|
||||||
db.open();
|
| ["SYNC_DOWNLOAD_SOURCES", string];
|
||||||
|
|
||||||
self.onmessage = async (event: MessageEvent<Payload>) => {
|
self.onmessage = async (event: MessageEvent<Payload>) => {
|
||||||
const [type, data] = event.data;
|
const [type, data] = event.data;
|
||||||
|
|
||||||
|
if (type === "VALIDATE_DOWNLOAD_SOURCE") {
|
||||||
|
const response =
|
||||||
|
await axios.get<z.infer<typeof downloadSourceSchema>>(data);
|
||||||
|
|
||||||
|
const { name } = downloadSourceSchema.parse(response.data);
|
||||||
|
|
||||||
|
const channel = new BroadcastChannel(`download_sources:validate:${data}`);
|
||||||
|
|
||||||
|
channel.postMessage({
|
||||||
|
name,
|
||||||
|
etag: response.headers["etag"],
|
||||||
|
downloadCount: response.data.downloads.length,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (type === "DELETE_DOWNLOAD_SOURCE") {
|
if (type === "DELETE_DOWNLOAD_SOURCE") {
|
||||||
await db.transaction("rw", repacksTable, downloadSourcesTable, async () => {
|
await db.transaction("rw", repacksTable, downloadSourcesTable, async () => {
|
||||||
await repacksTable.where({ downloadSourceId: data }).delete();
|
await repacksTable.where({ downloadSourceId: data }).delete();
|
||||||
@ -23,28 +52,29 @@ self.onmessage = async (event: MessageEvent<Payload>) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (type === "IMPORT_DOWNLOAD_SOURCE") {
|
if (type === "IMPORT_DOWNLOAD_SOURCE") {
|
||||||
const result = data;
|
const response =
|
||||||
|
await axios.get<z.infer<typeof downloadSourceSchema>>(data);
|
||||||
|
|
||||||
await db.transaction("rw", downloadSourcesTable, repacksTable, async () => {
|
await db.transaction("rw", repacksTable, downloadSourcesTable, async () => {
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
|
|
||||||
const id = await downloadSourcesTable.add({
|
const id = await downloadSourcesTable.add({
|
||||||
url: result.url,
|
url: data,
|
||||||
name: result.name,
|
name: response.data.name,
|
||||||
etag: result.etag,
|
etag: response.headers["etag"],
|
||||||
status: DownloadSourceStatus.UpToDate,
|
status: DownloadSourceStatus.UpToDate,
|
||||||
downloadCount: result.downloads.length,
|
downloadCount: response.data.downloads.length,
|
||||||
createdAt: now,
|
createdAt: now,
|
||||||
updatedAt: now,
|
updatedAt: now,
|
||||||
});
|
});
|
||||||
|
|
||||||
const downloadSource = await downloadSourcesTable.get(id);
|
const downloadSource = await downloadSourcesTable.get(id);
|
||||||
|
|
||||||
const repacks = result.downloads.map((download) => ({
|
const repacks = response.data.downloads.map((download) => ({
|
||||||
title: download.title,
|
title: download.title,
|
||||||
uris: download.uris,
|
uris: download.uris,
|
||||||
fileSize: download.fileSize,
|
fileSize: download.fileSize,
|
||||||
repacker: result.name,
|
repacker: response.data.name,
|
||||||
uploadDate: download.uploadDate,
|
uploadDate: download.uploadDate,
|
||||||
downloadSourceId: downloadSource!.id,
|
downloadSourceId: downloadSource!.id,
|
||||||
createdAt: now,
|
createdAt: now,
|
||||||
@ -54,10 +84,82 @@ self.onmessage = async (event: MessageEvent<Payload>) => {
|
|||||||
await repacksTable.bulkAdd(repacks);
|
await repacksTable.bulkAdd(repacks);
|
||||||
});
|
});
|
||||||
|
|
||||||
const channel = new BroadcastChannel(
|
const channel = new BroadcastChannel(`download_sources:import:${data}`);
|
||||||
`download_sources:import:${result.url}`
|
|
||||||
);
|
|
||||||
|
|
||||||
channel.postMessage(true);
|
channel.postMessage(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (type === "SYNC_DOWNLOAD_SOURCES") {
|
||||||
|
const channel = new BroadcastChannel(`download_sources:sync:${data}`);
|
||||||
|
let newRepacksCount = 0;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const downloadSources = await downloadSourcesTable.toArray();
|
||||||
|
const existingRepacks = await repacksTable.toArray();
|
||||||
|
|
||||||
|
for (const downloadSource of downloadSources) {
|
||||||
|
const headers = new AxiosHeaders();
|
||||||
|
|
||||||
|
if (downloadSource.etag) {
|
||||||
|
headers.set("If-None-Match", downloadSource.etag);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const response = await axios.get(downloadSource.url, {
|
||||||
|
headers,
|
||||||
|
});
|
||||||
|
|
||||||
|
const source = downloadSourceSchema.parse(response.data);
|
||||||
|
|
||||||
|
await db.transaction(
|
||||||
|
"rw",
|
||||||
|
repacksTable,
|
||||||
|
downloadSourcesTable,
|
||||||
|
async () => {
|
||||||
|
await downloadSourcesTable.update(downloadSource.id, {
|
||||||
|
etag: response.headers["etag"],
|
||||||
|
downloadCount: source.downloads.length,
|
||||||
|
status: DownloadSourceStatus.UpToDate,
|
||||||
|
});
|
||||||
|
|
||||||
|
const now = new Date();
|
||||||
|
|
||||||
|
const repacks = source.downloads
|
||||||
|
.filter(
|
||||||
|
(download) =>
|
||||||
|
!existingRepacks.some(
|
||||||
|
(repack) => repack.title === download.title
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.map((download) => ({
|
||||||
|
title: download.title,
|
||||||
|
uris: download.uris,
|
||||||
|
fileSize: download.fileSize,
|
||||||
|
repacker: source.name,
|
||||||
|
uploadDate: download.uploadDate,
|
||||||
|
downloadSourceId: downloadSource.id,
|
||||||
|
createdAt: now,
|
||||||
|
updatedAt: now,
|
||||||
|
}));
|
||||||
|
|
||||||
|
newRepacksCount += repacks.length;
|
||||||
|
|
||||||
|
await repacksTable.bulkAdd(repacks);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
} catch (err: unknown) {
|
||||||
|
const isNotModified = (err as AxiosError).response?.status === 304;
|
||||||
|
|
||||||
|
await downloadSourcesTable.update(downloadSource.id, {
|
||||||
|
status: isNotModified
|
||||||
|
? DownloadSourceStatus.UpToDate
|
||||||
|
: DownloadSourceStatus.Errored,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
channel.postMessage(newRepacksCount);
|
||||||
|
} catch (err) {
|
||||||
|
channel.postMessage(-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import MigrationWorker from "./migration.worker?worker";
|
|
||||||
import RepacksWorker from "./repacks.worker?worker";
|
import RepacksWorker from "./repacks.worker?worker";
|
||||||
import DownloadSourcesWorker from "./download-sources.worker?worker";
|
import DownloadSourcesWorker from "./download-sources.worker?worker";
|
||||||
|
|
||||||
export const migrationWorker = new MigrationWorker();
|
|
||||||
export const repacksWorker = new RepacksWorker();
|
export const repacksWorker = new RepacksWorker();
|
||||||
export const downloadSourcesWorker = new DownloadSourcesWorker();
|
export const downloadSourcesWorker = new DownloadSourcesWorker();
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
// import { db, downloadSourcesTable, repacksTable } from "@renderer/dexie";
|
|
||||||
import { DownloadSource, GameRepack } from "@types";
|
|
||||||
|
|
||||||
export type Payload = [DownloadSource[], GameRepack[]];
|
|
||||||
|
|
||||||
self.onmessage = async (_event: MessageEvent<Payload>) => {
|
|
||||||
// const [downloadSources, gameRepacks] = event.data;
|
|
||||||
// const downloadSourcesCount = await downloadSourcesTable.count();
|
|
||||||
// if (downloadSources.length > downloadSourcesCount) {
|
|
||||||
// await db.transaction(
|
|
||||||
// "rw",
|
|
||||||
// downloadSourcesTable,
|
|
||||||
// repacksTable,
|
|
||||||
// async () => {}
|
|
||||||
// );
|
|
||||||
// }
|
|
||||||
// if (type === "MIGRATE_DOWNLOAD_SOURCES") {
|
|
||||||
// const dexieDownloadSources = await downloadSourcesTable.count();
|
|
||||||
// if (data.length > dexieDownloadSources) {
|
|
||||||
// await downloadSourcesTable.clear();
|
|
||||||
// await downloadSourcesTable.bulkAdd(data);
|
|
||||||
// }
|
|
||||||
// self.postMessage("MIGRATE_DOWNLOAD_SOURCES_COMPLETE");
|
|
||||||
// }
|
|
||||||
// if (type === "MIGRATE_REPACKS") {
|
|
||||||
// const dexieRepacks = await repacksTable.count();
|
|
||||||
// if (data.length > dexieRepacks) {
|
|
||||||
// await repacksTable.clear();
|
|
||||||
// await repacksTable.bulkAdd(
|
|
||||||
// data.map((repack) => ({ ...repack, uris: JSON.stringify(repack.uris) }))
|
|
||||||
// );
|
|
||||||
// }
|
|
||||||
// self.postMessage("MIGRATE_REPACKS_COMPLETE");
|
|
||||||
// }
|
|
||||||
};
|
|
@ -233,8 +233,8 @@ export interface DownloadSourceDownload {
|
|||||||
|
|
||||||
export interface DownloadSourceValidationResult {
|
export interface DownloadSourceValidationResult {
|
||||||
name: string;
|
name: string;
|
||||||
downloads: DownloadSourceDownload[];
|
|
||||||
etag: string;
|
etag: string;
|
||||||
|
downloadCount: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DownloadSource {
|
export interface DownloadSource {
|
||||||
|
Loading…
Reference in New Issue
Block a user