mirror of
https://github.com/kikootwo/ReadMeABook.git
synced 2026-06-04 21:30:11 +00:00
edc56bc457
Introduce manual import workflow and download permission support. Adds a Prisma migration and schema field (users.download_access) to track per-user download access, and updates admin UI to toggle global and per-user download access. Implements new APIs: filesystem browse, manual-import endpoint, download-access settings, audiobook download-status, and on-demand download-token generation. Adds frontend components for manual import and related tests, plus documentation for the manual-import feature and the documentation-agent prompt. Key files: prisma/migrations/20260212000000_add_download_access_permission/migration.sql, prisma/schema.prisma, src/app/api/admin/filesystem/browse/route.ts, src/app/api/admin/manual-import/route.ts, src/app/api/admin/settings/download-access/route.ts, src/app/api/requests/[id]/download-token/route.ts, src/app/api/audiobooks/[asin]/download-status/route.ts, and updated admin users pages/components and permissions util.
92 lines
2.7 KiB
TypeScript
92 lines
2.7 KiB
TypeScript
/**
|
|
* Component: Admin Download Access Settings API
|
|
* Documentation: documentation/settings-pages.md
|
|
*/
|
|
|
|
import { NextRequest, NextResponse } from 'next/server';
|
|
import { requireAuth, requireAdmin, AuthenticatedRequest } from '@/lib/middleware/auth';
|
|
import { prisma } from '@/lib/db';
|
|
import { RMABLogger } from '@/lib/utils/logger';
|
|
|
|
const logger = RMABLogger.create('API.Admin.Settings.DownloadAccess');
|
|
|
|
const CONFIG_KEY = 'download_access';
|
|
|
|
/**
|
|
* GET /api/admin/settings/download-access
|
|
* Get current global download access setting
|
|
*/
|
|
export async function GET(request: NextRequest) {
|
|
return requireAuth(request, async (req: AuthenticatedRequest) => {
|
|
return requireAdmin(req, async () => {
|
|
try {
|
|
const config = await prisma.configuration.findUnique({
|
|
where: { key: CONFIG_KEY },
|
|
});
|
|
|
|
// Default to true if not configured (backward compatibility)
|
|
const downloadAccess = config === null ? true : config.value === 'true';
|
|
|
|
return NextResponse.json({ downloadAccess });
|
|
} catch (error) {
|
|
logger.error('Failed to fetch download access setting', {
|
|
error: error instanceof Error ? error.message : String(error)
|
|
});
|
|
return NextResponse.json(
|
|
{ error: 'Failed to fetch download access setting' },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* PATCH /api/admin/settings/download-access
|
|
* Update global download access setting
|
|
*/
|
|
export async function PATCH(request: NextRequest) {
|
|
return requireAuth(request, async (req: AuthenticatedRequest) => {
|
|
return requireAdmin(req, async () => {
|
|
try {
|
|
const body = await request.json();
|
|
const { downloadAccess } = body;
|
|
|
|
// Validate input
|
|
if (typeof downloadAccess !== 'boolean') {
|
|
return NextResponse.json(
|
|
{ error: 'Invalid input. downloadAccess must be a boolean' },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
|
|
// Update configuration
|
|
await prisma.configuration.upsert({
|
|
where: { key: CONFIG_KEY },
|
|
create: {
|
|
key: CONFIG_KEY,
|
|
value: downloadAccess.toString(),
|
|
},
|
|
update: {
|
|
value: downloadAccess.toString(),
|
|
},
|
|
});
|
|
|
|
logger.info(`Download access setting updated to: ${downloadAccess}`, {
|
|
userId: req.user?.sub,
|
|
});
|
|
|
|
return NextResponse.json({ downloadAccess });
|
|
} catch (error) {
|
|
logger.error('Failed to update download access setting', {
|
|
error: error instanceof Error ? error.message : String(error)
|
|
});
|
|
return NextResponse.json(
|
|
{ error: 'Failed to update download access setting' },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
});
|
|
});
|
|
}
|