mirror of
https://github.com/kikootwo/ReadMeABook.git
synced 2026-07-14 08:41:11 +00:00
6f8ac86a43
Introduce an indexer-wide option to skip automatic searches for books with future release dates (config key: `indexer.skip_unreleased`, default ON). Adds a GET/PUT admin API for indexer options, a UI toggle on the Indexers settings tab (persisted on save), and persistence of a request-level releaseDate in the Prisma schema. Adds a new request status `awaiting_release` and wires it through constants, UI components (StatusBadge, RequestCard, RecentRequestsTable, Audiobook card/modal, RequestActions), API request flows (bookdate swipe, request creation, manual search, request PATCHs, request listing groups), and services. Implements a pure release-date utility (isUnreleased / shouldSkipAutoSearch) and updates background processors: monitor-rss-feeds (skip matches but do not mutate status), retry-missing-torrents (drives bidirectional transitions between awaiting_search and awaiting_release and queues searches when appropriate), and request-creator/bookdate swipe (gate initial auto-search). Adds tests for the swipe gate and other related test updates. Logs transitions and gate decisions for observability.
113 lines
3.3 KiB
TypeScript
113 lines
3.3 KiB
TypeScript
/**
|
|
* Component: Manual Search API
|
|
* Documentation: documentation/phase3/prowlarr.md
|
|
*/
|
|
|
|
import { NextRequest, NextResponse } from 'next/server';
|
|
import { requireAuth, AuthenticatedRequest } from '@/lib/middleware/auth';
|
|
import { prisma } from '@/lib/db';
|
|
import { getJobQueueService } from '@/lib/services/job-queue.service';
|
|
import { RMABLogger } from '@/lib/utils/logger';
|
|
|
|
const logger = RMABLogger.create('API.ManualSearch');
|
|
|
|
/**
|
|
* POST /api/requests/[id]/manual-search
|
|
* Manually trigger a search for torrents
|
|
*/
|
|
export async function POST(
|
|
request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
return requireAuth(request, async (req: AuthenticatedRequest) => {
|
|
try {
|
|
if (!req.user) {
|
|
return NextResponse.json(
|
|
{ error: 'Unauthorized', message: 'User not authenticated' },
|
|
{ status: 401 }
|
|
);
|
|
}
|
|
|
|
const { id } = await params;
|
|
|
|
const requestRecord = await prisma.request.findUnique({
|
|
where: { id },
|
|
include: {
|
|
audiobook: true,
|
|
},
|
|
});
|
|
|
|
if (!requestRecord) {
|
|
return NextResponse.json(
|
|
{ error: 'NotFound', message: 'Request not found' },
|
|
{ status: 404 }
|
|
);
|
|
}
|
|
|
|
// Check authorization
|
|
if (requestRecord.userId !== req.user.id && req.user.role !== 'admin') {
|
|
return NextResponse.json(
|
|
{ error: 'Forbidden', message: 'You do not have access to this request' },
|
|
{ status: 403 }
|
|
);
|
|
}
|
|
|
|
// Only allow manual search for pending, failed, awaiting_search, awaiting_release statuses
|
|
const searchableStatuses = ['pending', 'failed', 'awaiting_search', 'awaiting_release'];
|
|
if (!searchableStatuses.includes(requestRecord.status)) {
|
|
return NextResponse.json(
|
|
{
|
|
error: 'ValidationError',
|
|
message: `Cannot manually search for request with status: ${requestRecord.status}`,
|
|
},
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
// Trigger appropriate search job based on request type
|
|
const jobQueue = getJobQueueService();
|
|
const audiobookData = {
|
|
id: requestRecord.audiobook.id,
|
|
title: requestRecord.audiobook.title,
|
|
author: requestRecord.audiobook.author,
|
|
asin: requestRecord.audiobook.audibleAsin || undefined,
|
|
};
|
|
|
|
if (requestRecord.type === 'ebook') {
|
|
await jobQueue.addSearchEbookJob(id, audiobookData);
|
|
} else {
|
|
await jobQueue.addSearchJob(id, audiobookData);
|
|
}
|
|
|
|
// Update request status
|
|
const updated = await prisma.request.update({
|
|
where: { id },
|
|
data: {
|
|
status: 'pending',
|
|
progress: 0,
|
|
errorMessage: null,
|
|
updatedAt: new Date(),
|
|
},
|
|
include: {
|
|
audiobook: true,
|
|
},
|
|
});
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
request: updated,
|
|
message: 'Manual search initiated',
|
|
});
|
|
} catch (error) {
|
|
logger.error('Failed to trigger manual search', { error: error instanceof Error ? error.message : String(error) });
|
|
return NextResponse.json(
|
|
{
|
|
error: 'SearchError',
|
|
message: 'Failed to initiate manual search',
|
|
},
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
});
|
|
}
|