Add ASIN/ISBN fields to library and improve matching

Introduces `asin` and `isbn` fields to the PlexLibrary schema and database, with migration and indexing for fast lookups. Updates scan and recently-added processors to persist ASIN/ISBN from both Plex and Audiobookshelf backends. Enhances matching logic to prioritize exact ASIN matches using the new fields, improving match accuracy for Audiobookshelf users. Also includes minor improvements: fixes cover art handling for cached thumbnails, adds download URL validation in Prowlarr and qBittorrent integrations, and updates documentation to reflect these changes.
This commit is contained in:
kikootwo
2025-12-22 14:20:22 -05:00
parent a3381cba31
commit 1cefa437b7
12 changed files with 469 additions and 16 deletions
+17 -2
View File
@@ -217,6 +217,15 @@ export class ProwlarrService {
// Extract metadata from title
const metadata = this.extractMetadata(item.title || '');
// Extract download URL
const downloadUrl = item.link || item.enclosure?.['@_url'] || '';
// Skip torrents without a valid download URL
if (!downloadUrl || typeof downloadUrl !== 'string' || downloadUrl.trim() === '') {
console.warn(`[Prowlarr] Skipping torrent "${item.title || 'Unknown'}" - missing download URL`);
continue;
}
const result: TorrentResult = {
indexer: item.prowlarrindexer?.['#text'] || item.prowlarrindexer || 'Unknown',
title: item.title || '',
@@ -224,7 +233,7 @@ export class ProwlarrService {
seeders,
leechers,
publishDate: item.pubDate ? new Date(item.pubDate) : new Date(),
downloadUrl: item.link || item.enclosure?.['@_url'] || '',
downloadUrl: downloadUrl.trim(),
infoHash: getAttr('infohash'),
guid: item.guid || '',
format: metadata.format,
@@ -274,6 +283,12 @@ export class ProwlarrService {
*/
private transformResult(result: ProwlarrSearchResult): TorrentResult | null {
try {
// Validate download URL
if (!result.downloadUrl || typeof result.downloadUrl !== 'string' || result.downloadUrl.trim() === '') {
console.warn(`[Prowlarr] Skipping result "${result.title}" - missing download URL`);
return null;
}
// Extract metadata from title
const metadata = this.extractMetadata(result.title);
@@ -284,7 +299,7 @@ export class ProwlarrService {
seeders: result.seeders,
leechers: result.leechers,
publishDate: new Date(result.publishDate),
downloadUrl: result.downloadUrl,
downloadUrl: result.downloadUrl.trim(),
infoHash: result.infoHash,
guid: result.guid,
format: metadata.format,