Rearchitecture for v0.4.0 (#197)

* feat: database redist support

* feat: rearchitecture of database schemas, migration reset, and #180

* feat: import redists

* fix: giantbomb logging bug

* feat: partial user platform support + statusMessage -> message

* feat: add user platform filters to store view

* fix: sanitize svg uploads

... copilot suggested this

I feel dirty.

* feat: beginnings of platform & redist management

* feat: add server side redist patching

* fix: update drop-base commit

* feat: import of custom platforms & file extensions

* fix: redelete platform

* fix: remove platform

* feat: uninstall commands, new R UI

* checkpoint: before migrating to nuxt v4

* update to nuxt 4

* fix: fixes for Nuxt v4 update

* fix: remaining type issues

* feat: initial feedback to import other kinds of versions

* working commit

* fix: lint

* feat: redist import
This commit is contained in:
DecDuck
2025-11-10 10:36:13 +11:00
committed by GitHub
parent dfa30c8a65
commit 251ddb8ff8
465 changed files with 8029 additions and 7509 deletions

View File

@ -1,5 +1,5 @@
import type { CompanyModel } from "~/prisma/client/models";
import { MetadataSource } from "~/prisma/client/enums";
import type { CompanyModel } from "~~/prisma/client/models";
import { MetadataSource } from "~~/prisma/client/enums";
import type { MetadataProvider } from ".";
import { MissingMetadataProviderConfig } from ".";
import type {
@ -13,7 +13,7 @@ import type {
import axios, { type AxiosRequestConfig } from "axios";
import TurndownService from "turndown";
import { DateTime } from "luxon";
import type { TaskRunContext } from "../tasks";
import type { TaskRunContext } from "../tasks/utils";
interface GiantBombResponseType<T> {
error: "OK" | string;

View File

@ -1,5 +1,5 @@
import type { CompanyModel } from "~/prisma/client/models";
import { MetadataSource } from "~/prisma/client/enums";
import type { CompanyModel } from "~~/prisma/client/models";
import { MetadataSource } from "~~/prisma/client/enums";
import type { MetadataProvider } from ".";
import { MissingMetadataProviderConfig } from ".";
import type {
@ -13,8 +13,8 @@ import type { AxiosRequestConfig } from "axios";
import axios from "axios";
import { DateTime } from "luxon";
import * as jdenticon from "jdenticon";
import type { TaskRunContext } from "../tasks";
import { logger } from "~/server/internal/logging";
import { logger } from "~~/server/internal/logging";
import type { TaskRunContext } from "../tasks/utils";
type IGDBID = number;

View File

@ -1,5 +1,5 @@
import type { Prisma } from "~/prisma/client/client";
import { MetadataSource } from "~/prisma/client/enums";
import type { Prisma } from "~~/prisma/client/client";
import { MetadataSource } from "~~/prisma/client/enums";
import prisma from "../db/database";
import type {
_FetchGameMetadataParams,
@ -13,13 +13,14 @@ import type {
import { ObjectTransactionalHandler } from "../objects/transactional";
import { PriorityListIndexed } from "../utils/prioritylist";
import { systemConfig } from "../config/sys-conf";
import type { TaskRunContext } from "../tasks";
import taskHandler, { wrapTaskContext } from "../tasks";
import { randomUUID } from "crypto";
import { fuzzy } from "fast-fuzzy";
import { logger } from "~/server/internal/logging";
import { createGameImportTaskId } from "../library";
import type { GameTagModel } from "~/prisma/client/models";
import { logger } from "~~/server/internal/logging";
import libraryManager, { createGameImportTaskId } from "../library";
import type { GameTagModel } from "~~/prisma/client/models";
import type { TaskRunContext} from "../tasks/utils";
import { wrapTaskContext } from "../tasks/utils";
import taskHandler from "../tasks";
export class MissingMetadataProviderConfig extends Error {
private providerName: string;
@ -175,15 +176,8 @@ export class MetadataHandler {
if (!provider)
throw new Error(`Invalid metadata provider for ID "${result.sourceId}"`);
const existing = await prisma.game.findUnique({
where: {
metadataKey: {
metadataSource: provider.source(),
metadataId: result.id,
},
},
});
if (existing) return undefined;
const okay = await libraryManager.checkUnimportedGamePath(libraryId, libraryPath);
if (!okay) return undefined;
const gameId = randomUUID();

View File

@ -1,4 +1,4 @@
import { MetadataSource } from "~/prisma/client/enums";
import { MetadataSource } from "~~/prisma/client/enums";
import type { MetadataProvider } from ".";
import type {
_FetchGameMetadataParams,

View File

@ -1,5 +1,5 @@
import type { CompanyModel } from "~/prisma/client/models";
import { MetadataSource } from "~/prisma/client/enums";
import type { CompanyModel } from "~~/prisma/client/models";
import { MetadataSource } from "~~/prisma/client/enums";
import type { MetadataProvider } from ".";
import type {
GameMetadataSearchResult,
@ -15,8 +15,8 @@ import * as jdenticon from "jdenticon";
import { DateTime } from "luxon";
import * as cheerio from "cheerio";
import { type } from "arktype";
import type { TaskRunContext } from "../tasks";
import { logger } from "~/server/internal/logging";
import { logger } from "~~/server/internal/logging";
import type { TaskRunContext } from "../tasks/utils";
interface PCGamingWikiParseRawPage {
parse: {
@ -200,7 +200,7 @@ export class PCGamingWikiProvider implements MetadataProvider {
return url.pathname.replace("/games/", "").replace(/\/$/, "");
}
default: {
logger.warn("Pcgamingwiki, unknown host", url.hostname);
logger.warn("Pcgamingwiki, unknown host: %s", url.hostname);
return undefined;
}
}
@ -234,7 +234,7 @@ export class PCGamingWikiProvider implements MetadataProvider {
});
if (ratingObj instanceof type.errors) {
logger.info(
"pcgamingwiki: failed to properly get review rating",
"pcgamingwiki: failed to properly get review rating: %s",
ratingObj.summary,
);
return undefined;

View File

@ -1,4 +1,4 @@
import { MetadataSource } from "~/prisma/client/enums";
import { MetadataSource } from "~~/prisma/client/enums";
import type { MetadataProvider } from ".";
import type {
GameMetadataSearchResult,
@ -8,9 +8,9 @@ import type {
CompanyMetadata,
GameMetadataRating,
} from "./types";
import type { TaskRunContext } from "../tasks";
import axios from "axios";
import * as jdenticon from "jdenticon";
import type { TaskRunContext } from "../tasks/utils";
/**
* Note: The Steam API is largely undocumented.

View File

@ -1,4 +1,4 @@
import type { Company, GameRating } from "~/prisma/client";
import type { Company, GameRating } from "~~/prisma/client";
import type { TransactionDataType } from "../objects/transactional";
import type { ObjectReference } from "../objects/objectHandler";