Skip to content

Commit 1a47458

Browse files
authored
[Fix] HP Store Manager (#292)
* handle delisted games * fix uninstalled games updating, fix recursive updates * fix installing log
1 parent a62fdd7 commit 1a47458

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

src/backend/storeManagers/hyperplay/games.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ export async function install(
254254
return { status: 'error', error: 'Release meta not found' }
255255
}
256256

257-
logInfo(`Installing ${title} to ${path}...`, LogPrefix.HyperPlay)
257+
logInfo(`Installing ${title} to ${dirpath}...`, LogPrefix.HyperPlay)
258258

259259
// download the zip file
260260
try {
@@ -404,6 +404,7 @@ export async function uninstall({
404404

405405
// remove game folder from install path
406406
const installPath = appInfo.install.install_path
407+
logInfo(`Removing folder in uninstall: ${installPath}`, LogPrefix.HyperPlay)
407408
rmSync(installPath, { recursive: true, force: true })
408409

409410
// only remove the game from the store if the platform is web
@@ -425,12 +426,13 @@ export async function uninstall({
425426
(value) => value.app_name === appName
426427
)
427428
currentLibrary[gameIndex].is_installed = false
429+
currentLibrary[gameIndex].install = {}
428430
hpLibraryStore.set('games', currentLibrary)
429431

430432
if (shouldRemovePrefix) {
431433
const { winePrefix } = await getSettings(appName)
432434

433-
logInfo(`Removing prefix ${winePrefix}`, LogPrefix.Backend)
435+
logInfo(`Removing prefix ${winePrefix}`, LogPrefix.HyperPlay)
434436
if (existsSync(winePrefix)) {
435437
// remove prefix if exists
436438
rmSync(winePrefix, { recursive: true })
@@ -483,22 +485,22 @@ export async function update(appName: string): Promise<InstallResult> {
483485
if (gameInfo.install.platform === undefined) {
484486
logError(
485487
'Install platform was not found during game updated',
486-
LogPrefix.Backend
488+
LogPrefix.HyperPlay
487489
)
488490
return { status: 'error' }
489491
}
490492

491493
if (gameInfo.install.install_path === undefined) {
492494
logError(
493495
'Install path was not found during game updated',
494-
LogPrefix.Backend
496+
LogPrefix.HyperPlay
495497
)
496498
return { status: 'error' }
497499
}
498500

499501
await uninstall({ appName })
500502
const installResult = await install(appName, {
501-
path: gameInfo.install.install_path,
503+
path: path.dirname(gameInfo.install.install_path),
502504
platformToInstall: gameInfo.install.platform
503505
})
504506
return installResult

src/backend/storeManagers/hyperplay/library.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ export function getGameInfo(
219219
* since library release data is updated on each app launch
220220
*/
221221
export async function listUpdateableGames(): Promise<string[]> {
222-
logWarning(`listUpdateableGames not implemented on HyperPlay Library Manager`)
223222
const allListingsResponse = await axios.get(
224223
'https://developers.hyperplay.xyz/api/listings'
225224
)
@@ -236,14 +235,18 @@ export async function listUpdateableGames(): Promise<string[]> {
236235
const updateableGames: string[] = []
237236
const currentHpLibrary = hpLibraryStore.get('games', [])
238237
currentHpLibrary.map((val) => {
239-
if (val.install.platform === 'web') {
238+
if (
239+
val.install.platform === 'web' ||
240+
!val.is_installed ||
241+
!gameIsInstalled(val)
242+
) {
240243
return
241244
}
242245
if (val.version === undefined) {
243246
updateableGames.push(val.app_name)
244247
}
245248
if (
246-
gameIsInstalled(val) &&
249+
Object.hasOwn(listingMap, val.app_name) &&
247250
val.install.version !== listingMap[val.app_name].releaseName
248251
) {
249252
updateableGames.push(val.app_name)

0 commit comments

Comments
 (0)