92 lines
3.2 KiB
PHP
92 lines
3.2 KiB
PHP
<?php
|
|
|
|
// Salva un binding JSON -> LIMS (custom o fixed) e lo applica ai record appena importati. Ritorna JSON.
|
|
|
|
require_once dirname(__DIR__, 2) . '/vendor/autoload.php';
|
|
require_once __DIR__ . '/class/db-functions.php';
|
|
require_once __DIR__ . '/class/binding-functions.php';
|
|
include dirname(__DIR__) . '/../extra/auth.php';
|
|
|
|
header('Content-Type: application/json');
|
|
ini_set('display_errors', '0');
|
|
error_reporting(E_ALL);
|
|
|
|
if (!Auth::check()) {
|
|
http_response_code(401);
|
|
echo json_encode(['success' => false, 'error' => 'Unauthorized']);
|
|
exit;
|
|
}
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
|
http_response_code(405);
|
|
echo json_encode(['success' => false, 'error' => 'Method not allowed']);
|
|
exit;
|
|
}
|
|
|
|
$kind = ($_POST['kind'] ?? 'custom') === 'fixed' ? 'fixed' : 'custom';
|
|
$templateId = intval($_POST['template_id'] ?? 0);
|
|
$jsonValue = (string) ($_POST['json_value'] ?? '');
|
|
$limsValueId = intval($_POST['lims_value_id'] ?? 0);
|
|
$limsValue = (string) ($_POST['lims_value'] ?? '');
|
|
|
|
$datadbIds = [];
|
|
if (isset($_POST['datadb_ids'])) {
|
|
$decoded = json_decode($_POST['datadb_ids'], true);
|
|
if (is_array($decoded)) {
|
|
$datadbIds = $decoded;
|
|
}
|
|
}
|
|
|
|
if ($templateId <= 0 || $jsonValue === '' || $limsValueId <= 0) {
|
|
http_response_code(422);
|
|
echo json_encode(['success' => false, 'error' => 'Missing required parameters']);
|
|
exit;
|
|
}
|
|
|
|
try {
|
|
$pdo = DBHandlerSelect::getInstance()->getConnection();
|
|
|
|
$createdBy = Auth::user() ? (int) Auth::user()->present()->id : null;
|
|
|
|
if ($kind === 'fixed') {
|
|
$fixedKey = trim($_POST['fixed_field_key'] ?? '');
|
|
$column = binding_fixed_column($fixedKey);
|
|
if ($fixedKey === '' || !binding_fixed_is_list($fixedKey) || !$column) {
|
|
http_response_code(422);
|
|
echo json_encode(['success' => false, 'error' => 'Invalid fixed field']);
|
|
exit;
|
|
}
|
|
|
|
binding_upsert_fixed($pdo, $templateId, $fixedKey, $jsonValue, $limsValueId, $limsValue, $createdBy);
|
|
$applied = !empty($datadbIds) ? binding_apply_to_datadb($pdo, $column, $limsValueId, $datadbIds) : 0;
|
|
} else {
|
|
$mappingId = intval($_POST['mapping_id'] ?? 0);
|
|
$fieldId = intval($_POST['field_id'] ?? 0);
|
|
if ($mappingId <= 0) {
|
|
http_response_code(422);
|
|
echo json_encode(['success' => false, 'error' => 'Missing mapping_id']);
|
|
exit;
|
|
}
|
|
if ($fieldId <= 0) {
|
|
$stmt = $pdo->prepare("SELECT field_id FROM template_mapping WHERE id = ?");
|
|
$stmt->execute([$mappingId]);
|
|
$fieldId = (int) ($stmt->fetchColumn() ?: 0);
|
|
}
|
|
|
|
binding_upsert($pdo, $templateId, $mappingId, $fieldId, $jsonValue, $limsValueId, $limsValue, $createdBy);
|
|
$applied = !empty($datadbIds) ? binding_apply_to_details($pdo, $mappingId, $limsValue, $datadbIds) : 0;
|
|
}
|
|
|
|
echo json_encode([
|
|
'success' => true,
|
|
'applied_rows' => $applied,
|
|
'kind' => $kind,
|
|
'json_value' => $jsonValue,
|
|
'lims_value' => $limsValue,
|
|
'lims_value_id' => $limsValueId,
|
|
]);
|
|
} catch (Exception $e) {
|
|
http_response_code(500);
|
|
echo json_encode(['success' => false, 'error' => $e->getMessage()]);
|
|
}
|