Add request approval system and audiobook path template

Implements admin approval workflow for user requests with global and per-user auto-approve controls. Adds new request statuses ('awaiting_approval', 'denied'), related API endpoints, and UI for pending approvals. Introduces configurable audiobook organization path template with validation and preview in settings, updates database schema and migrations for new fields.
This commit is contained in:
kikootwo
2026-01-16 13:47:36 -05:00
parent 428d9a12e0
commit 3a9ae4a439
59 changed files with 4043 additions and 256 deletions
+38 -5
View File
@@ -7,6 +7,7 @@ import { NextRequest, NextResponse } from 'next/server';
import fs from 'fs/promises';
import path from 'path';
import { RMABLogger } from '@/lib/utils/logger';
import { validateTemplate, generateMockPreviews } from '@/lib/utils/path-template.util';
const logger = RMABLogger.create('API.Setup.TestPaths');
@@ -45,7 +46,7 @@ async function testPath(dirPath: string): Promise<boolean> {
export async function POST(request: NextRequest) {
try {
const { downloadDir, mediaDir } = await request.json();
const { downloadDir, mediaDir, audiobookPathTemplate } = await request.json();
if (!downloadDir || !mediaDir) {
return NextResponse.json(
@@ -58,6 +59,26 @@ export async function POST(request: NextRequest) {
const downloadDirValid = await testPath(downloadDir);
const mediaDirValid = await testPath(mediaDir);
// Validate template if provided
let templateValidation: {
isValid: boolean;
error?: string;
previewPaths?: string[];
} | undefined;
if (audiobookPathTemplate) {
const validation = validateTemplate(audiobookPathTemplate);
templateValidation = {
isValid: validation.valid,
error: validation.error,
};
// Generate previews only if template is valid
if (validation.valid) {
templateValidation.previewPaths = generateMockPreviews(audiobookPathTemplate);
}
}
const success = downloadDirValid && mediaDirValid;
if (!success) {
@@ -71,16 +92,28 @@ export async function POST(request: NextRequest) {
return NextResponse.json({
success: false,
downloadDirValid,
mediaDirValid,
downloadDir: {
valid: downloadDirValid,
error: downloadDirValid ? undefined : 'Download directory path is invalid or parent mount is not writable',
},
mediaDir: {
valid: mediaDirValid,
error: mediaDirValid ? undefined : 'Media directory path is invalid or parent mount is not writable',
},
template: templateValidation,
error: errors.join('. '),
});
}
return NextResponse.json({
success: true,
downloadDirValid,
mediaDirValid,
downloadDir: {
valid: downloadDirValid,
},
mediaDir: {
valid: mediaDirValid,
},
template: templateValidation,
message: 'Directories are ready and writable (created if needed)',
});
} catch (error) {