mirror of
https://github.com/kikootwo/ReadMeABook.git
synced 2026-06-03 04:40:09 +00:00
4b90b35748
Extend multi-download-client support to include Transmission and NZBGet and introduce per-client custom download paths. Adds protocol mapping and new client types, Transmission/NZBGet integration services, API CRUD and validation changes, UI components/modal updates and live path previews, and manager routing by protocol. Includes DB migrations (download_path on download_history, interactive_search_access on users), schema updates, and related processor/service fixes and tests to ensure backward compatibility and proper path resolution.
74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
/**
|
|
* Component: Setup Wizard Test Download Client API
|
|
* Documentation: documentation/setup-wizard.md
|
|
*/
|
|
|
|
import { NextRequest, NextResponse } from 'next/server';
|
|
import { getConfigService } from '@/lib/services/config.service';
|
|
import { getDownloadClientManager, DownloadClientConfig } from '@/lib/services/download-client-manager.service';
|
|
import { SUPPORTED_CLIENT_TYPES } from '@/lib/interfaces/download-client.interface';
|
|
import { requireSetupIncomplete } from '@/lib/middleware/auth';
|
|
import { RMABLogger } from '@/lib/utils/logger';
|
|
|
|
const logger = RMABLogger.create('API.Setup.TestDownloadClient');
|
|
|
|
export async function POST(request: NextRequest) {
|
|
return requireSetupIncomplete(request, async (req) => {
|
|
try {
|
|
const { type, name, url, username, password, disableSSLVerify } = await req.json();
|
|
|
|
if (!type || !url) {
|
|
return NextResponse.json(
|
|
{ success: false, error: 'Type and URL are required' },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
if (!SUPPORTED_CLIENT_TYPES.includes(type)) {
|
|
return NextResponse.json(
|
|
{ success: false, error: `Invalid client type. Must be one of: ${SUPPORTED_CLIENT_TYPES.join(', ')}` },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
// Build a temporary config for testing
|
|
const testConfig: DownloadClientConfig = {
|
|
id: 'setup-test',
|
|
type,
|
|
name: name || type,
|
|
enabled: true,
|
|
url,
|
|
username: username || '',
|
|
password: password || '',
|
|
disableSSLVerify: disableSSLVerify || false,
|
|
remotePathMappingEnabled: false,
|
|
};
|
|
|
|
const configService = getConfigService();
|
|
const manager = getDownloadClientManager(configService);
|
|
const result = await manager.testConnection(testConfig);
|
|
|
|
if (result.success) {
|
|
return NextResponse.json({
|
|
success: true,
|
|
message: result.message,
|
|
});
|
|
}
|
|
|
|
return NextResponse.json(
|
|
{ success: false, error: result.message },
|
|
{ status: 400 }
|
|
);
|
|
} catch (error) {
|
|
logger.error('Download client test failed', { error: error instanceof Error ? error.message : String(error) });
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
error: error instanceof Error ? error.message : 'Failed to connect to download client',
|
|
},
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
});
|
|
}
|