f383ad5b74
- Add "Select from My Docs" button to all text tool forms; free-tier users see an upgrade modal, paid (CaveauAI) users get a searchable multi-select modal backed by /api/dashboard/documents.php - Add "Select from My Audio" picker on Transcribe with single-select and a "Save to My Audio" button for persisting uploaded clips - New PHP helpers in bootstrap.php: dbnToolsFetchDocChunks, dbnToolsClientIdFromSession, dbnToolsInjectDocContent - timeline, ask, redact APIs prepend selected document content (fetched from client_chunks SQL) before the textarea text - api/dashboard/audio-upload.php stores audio files on server and creates a client_documents row with source_type='audio' - api/transcribe.php falls back to stored audio via audio_doc_id POST field when no file is uploaded - api/dashboard/documents.php supports ?source_type= filter - tools.js: doc_ids added to JSON payload; stored-audio transcribe path - New assets/css/doc-picker.css, assets/js/doc-picker.js - SQL migration: scripts/sql/audio_docs_column.sql Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
70 lines
2.5 KiB
PHP
70 lines
2.5 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/../includes/LegalTools.php';
|
|
|
|
dbnToolsRequireMethod('POST');
|
|
dbnToolsRequireAuth();
|
|
$ftUid = dbnToolsFreeTierCheck('redact');
|
|
$ftRemaining = dbnToolsFreeTierDeduct($ftUid, 'redact');
|
|
if ($ftRemaining >= 0) { header('X-Credits-Remaining: ' . $ftRemaining); }
|
|
$input = dbnToolsJsonInput(400000);
|
|
|
|
dbnToolsWithTelemetry('redact', '', function () use ($input): array {
|
|
$text = dbnToolsInjectDocContent($input, dbnToolsString($input, 'text', 128000));
|
|
$mode = (string)($input['mode'] ?? 'standard');
|
|
$region = dbnToolsNormalizeRegion($input['region'] ?? 'nordic');
|
|
$language = dbnToolsNormalizeLanguage($input['language'] ?? 'en');
|
|
|
|
$validEngines = ['azure_mini', 'azure_full', 'gpu', 'regex'];
|
|
$engine = in_array((string)($input['engine'] ?? ''), $validEngines, true)
|
|
? (string)$input['engine']
|
|
: 'azure_mini';
|
|
|
|
$validFormats = ['contextual', 'generic', 'pseudonym'];
|
|
$outputFormat = in_array((string)($input['output_format'] ?? ''), $validFormats, true)
|
|
? (string)$input['output_format']
|
|
: 'contextual';
|
|
|
|
$keepOfficials = (bool)($input['keep_officials'] ?? false);
|
|
|
|
$aliases = [];
|
|
$rawAliases = $input['aliases'] ?? [];
|
|
if (is_array($rawAliases)) {
|
|
foreach (array_slice($rawAliases, 0, 20) as $item) {
|
|
if (!is_array($item)) {
|
|
continue;
|
|
}
|
|
$original = substr(trim((string)($item['original'] ?? '')), 0, 100);
|
|
$alias = substr(trim((string)($item['alias'] ?? '')), 0, 100);
|
|
if ($original !== '' && $alias !== '') {
|
|
$aliases[] = ['original' => $original, 'alias' => $alias];
|
|
}
|
|
}
|
|
}
|
|
|
|
$exemptNames = [];
|
|
$rawExempt = $input['exempt_names'] ?? [];
|
|
if (is_array($rawExempt)) {
|
|
foreach (array_slice($rawExempt, 0, 20) as $name) {
|
|
$name = substr(trim((string)$name), 0, 100);
|
|
if ($name !== '') {
|
|
$exemptNames[] = $name;
|
|
}
|
|
}
|
|
}
|
|
|
|
$rawTypes = $input['redact_types'] ?? [];
|
|
$redactTypes = [
|
|
'names' => ($rawTypes['names'] ?? true) !== false,
|
|
'orgs' => ($rawTypes['orgs'] ?? true) !== false,
|
|
'places' => ($rawTypes['places'] ?? true) !== false,
|
|
'dob' => ($rawTypes['dob'] ?? true) !== false,
|
|
];
|
|
|
|
return (new DbnLegalToolsService())->redact(
|
|
$text, $mode, $region, $language, $aliases,
|
|
$engine, $outputFormat, $keepOfficials, $exemptNames, $redactTypes
|
|
);
|
|
});
|