mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
- ErrorHandler tests: 77 assertions covering FK extraction, normalization, dedup, edge cases. Fix FK table map for child tables. - Fix FK violation: (int)null → 0 in createThesis for orientation/ap/finality/license FK columns. Add FK value logging to updateThesis. - Add CURRENT_ISSUES.md with summary of FK violation, dev debugging, and tag dedup status for next conversation
85 lines
3.0 KiB
PHP
85 lines
3.0 KiB
PHP
<?php
|
||
// Bootstrap application
|
||
require_once __DIR__ . '/../../../bootstrap.php';
|
||
require_once __DIR__ . '/../../../src/AdminAuth.php';
|
||
|
||
ini_set('display_errors', 0);
|
||
ini_set('log_errors', 1);
|
||
ini_set('error_log', APP_ROOT . '/../error.log');
|
||
|
||
AdminAuth::requireLogin();
|
||
|
||
// Verify CSRF token
|
||
if (!isset($_POST['csrf_token'], $_SESSION['csrf_token'])
|
||
|| !hash_equals($_SESSION['csrf_token'], $_POST['csrf_token'])) {
|
||
error_log(sprintf(
|
||
'CSRF token validation failed in formulaire.php - POST token: %s, SESSION token: %s',
|
||
$_POST['csrf_token'] ?? '(missing)',
|
||
$_SESSION['csrf_token'] ?? '(missing)'
|
||
));
|
||
die('Erreur de sécurité : token invalide. Veuillez recharger le formulaire.');
|
||
}
|
||
|
||
error_log('FILES array: ' . print_r($_FILES, true));
|
||
|
||
require_once APP_ROOT . '/src/Controllers/ThesisCreateController.php';
|
||
require_once APP_ROOT . '/src/AppLogger.php';
|
||
require_once APP_ROOT . '/src/AdminLogger.php';
|
||
require_once APP_ROOT . '/src/DuplicateThesisException.php';
|
||
require_once APP_ROOT . '/src/ErrorHandler.php';
|
||
|
||
$logger = new AppLogger();
|
||
$adminLogger = AdminLogger::make();
|
||
$authorName = $_POST['auteurice'] ?? 'unknown';
|
||
|
||
try {
|
||
$ctrl = ThesisCreateController::make();
|
||
$thesisId = $ctrl->submit($_POST, $_FILES, true);
|
||
|
||
$identifier = $ctrl->getIdentifier($thesisId);
|
||
$logger->logSubmission('admin', $thesisId, $identifier, $authorName);
|
||
$adminLogger->logAdd($thesisId, $identifier, $authorName);
|
||
|
||
unset($_SESSION['csrf_token']);
|
||
|
||
$redirect = '../recapitulatif.php?id=' . $thesisId;
|
||
header('Location: ' . $redirect);
|
||
exit();
|
||
|
||
} catch (DuplicateThesisException $e) {
|
||
$logger->logDuplicate('admin', $authorName, $e->existingThesisId, $e->existingIdentifier);
|
||
ErrorHandler::log('thesis_create_duplicate', $e, ['author' => $authorName]);
|
||
|
||
// Build a warning with a clickable link to the existing thesis.
|
||
$existingUrl = htmlspecialchars('/admin/edit.php?id=' . $e->existingThesisId);
|
||
$existingRef = htmlspecialchars($e->existingIdentifier . ' - ' . $e->existingTitle . ' (' . $e->existingYear . ')');
|
||
$warningHtml = 'Doublon détecté : un TFE très similaire existe déjà.'
|
||
. '<br><a href="' . $existingUrl . '">' . $existingRef . '</a>'
|
||
. '<br>Vérifiez avant de soumettre à nouveau.';
|
||
|
||
App::flash('warning', $warningHtml);
|
||
$_SESSION['form_data'] = $_POST;
|
||
|
||
header('Location: ../add.php');
|
||
exit();
|
||
|
||
} catch (Exception $e) {
|
||
$logger->logError('admin', $e->getMessage(), [
|
||
'author' => $authorName,
|
||
'post_keys' => array_keys($_POST),
|
||
]);
|
||
ErrorHandler::log('thesis_create', $e, ['author' => $authorName]);
|
||
App::flash('error', ErrorHandler::userMessage($e));
|
||
$_SESSION['form_data'] = $_POST;
|
||
|
||
$redirect = '../add.php';
|
||
|
||
$autofocusField = ThesisCreateController::autofocusFieldForError($e->getMessage());
|
||
if ($autofocusField !== null) {
|
||
App::flashAutofocus($autofocusField);
|
||
}
|
||
|
||
header('Location: ' . $redirect);
|
||
exit();
|
||
}
|