mirror of
https://github.com/kikootwo/ReadMeABook.git
synced 2026-06-03 04:40:09 +00:00
09cff5b68d
Introduce a per-user "ignored audiobooks" feature to suppress auto-requests. Changes include: - Database: add Prisma model IgnoredAudiobook and SQL migration to create ignored_audiobooks table with indexes and FK to users. - Backend: new API routes to list, add, delete, and check ignored audiobooks (/api/user/ignored-audiobooks, /check/:asin, /:id). Add annotateWithIgnoreStatus utility and integrate it into multiple audiobook list endpoints (popular, new-releases, category, search, authors, series). - Request creator: add ignore-list check (with sibling-ASIN expansion) and a bypassIgnore option for manual requests; return an 'ignored' reason when blocked. - Frontend: hooks (useIsIgnored, useToggleIgnore, useIgnoredList) and UI updates — AudiobookCard shows an "Ignored" indicator and AudiobookDetailsModal adds an ignore toggle and propagates local state changes. - Misc: adjust deduplication duration tolerance (to 5% / min 10 minutes), tweak SWR refresh intervals for shelves/syncing, and small logging/info updates. - Tests: add unit tests for request-creator ignore logic and update existing tests/mocks to account for ignore annotation; extend prisma test helper with ignoredAudiobook mock. This commit implements the ignore-list end-to-end (DB, server, client, and tests) so users can ignore specific ASINs and have auto-request flows respect that preference.
91 lines
2.9 KiB
TypeScript
91 lines
2.9 KiB
TypeScript
/**
|
|
* Component: Series Detail API Route
|
|
* Documentation: documentation/integrations/audible.md
|
|
*/
|
|
|
|
import { NextRequest, NextResponse } from 'next/server';
|
|
import { getCurrentUser } from '@/lib/middleware/auth';
|
|
import { RMABLogger } from '@/lib/utils/logger';
|
|
import { scrapeSeriesPage } from '@/lib/integrations/audible-series';
|
|
import { enrichAudiobooksWithMatches } from '@/lib/utils/audiobook-matcher';
|
|
import { deduplicateAndCollectGroups } from '@/lib/utils/deduplicate-audiobooks';
|
|
import { persistDedupGroups } from '@/lib/services/works.service';
|
|
import { annotateWithIgnoreStatus } from '@/lib/utils/ignored-audiobooks';
|
|
|
|
const logger = RMABLogger.create('API.Series.Detail');
|
|
|
|
/**
|
|
* GET /api/series/{asin}
|
|
* Fetch series detail: metadata + books (enriched with availability) + similar series
|
|
*/
|
|
export async function GET(
|
|
request: NextRequest,
|
|
{ params }: { params: Promise<{ asin: string }> }
|
|
) {
|
|
try {
|
|
const currentUser = getCurrentUser(request);
|
|
if (!currentUser) {
|
|
return NextResponse.json(
|
|
{ error: 'Unauthorized', message: 'Authentication required' },
|
|
{ status: 401 }
|
|
);
|
|
}
|
|
|
|
const { asin } = await params;
|
|
|
|
if (!asin || !/^[A-Z0-9]{10}$/.test(asin)) {
|
|
return NextResponse.json(
|
|
{ error: 'ValidationError', message: 'Valid series ASIN is required' },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
const page = parseInt(request.nextUrl.searchParams.get('page') || '1', 10);
|
|
|
|
logger.info(`Fetching series detail: ${asin}, page ${page}`);
|
|
|
|
const detail = await scrapeSeriesPage(asin, page);
|
|
if (!detail) {
|
|
return NextResponse.json(
|
|
{ error: 'NotFound', message: 'Series not found' },
|
|
{ status: 404 }
|
|
);
|
|
}
|
|
|
|
// Deduplicate before enrichment to avoid wasted DB queries on duplicate entries
|
|
const { books: dedupedBooks, groups } = deduplicateAndCollectGroups(detail.books);
|
|
|
|
// Fire-and-forget: persist dedup groups to works table for cross-ASIN matching
|
|
if (groups.length > 0) {
|
|
persistDedupGroups(groups).catch(() => {});
|
|
}
|
|
|
|
// Enrich books with library availability and request status
|
|
const userId = currentUser.sub || undefined;
|
|
const enrichedBooks = await enrichAudiobooksWithMatches(dedupedBooks, userId);
|
|
|
|
// Annotate with per-user ignore status
|
|
const annotatedBooks = await annotateWithIgnoreStatus(enrichedBooks, userId);
|
|
|
|
logger.info(`Series detail complete: "${detail.title}" (${annotatedBooks.length} books, page ${page})`);
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
series: {
|
|
...detail,
|
|
books: annotatedBooks,
|
|
},
|
|
hasMore: detail.hasMore,
|
|
page: detail.page,
|
|
});
|
|
} catch (error) {
|
|
logger.error('Failed to fetch series detail', {
|
|
error: error instanceof Error ? error.message : String(error),
|
|
});
|
|
return NextResponse.json(
|
|
{ error: 'FetchError', message: 'Failed to fetch series details' },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|