80 lines
2.4 KiB
PHP
80 lines
2.4 KiB
PHP
<?php
|
|
|
|
// Salva un binding JSON -> LIMS 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;
|
|
}
|
|
|
|
$mappingId = intval($_POST['mapping_id'] ?? 0);
|
|
$fieldId = intval($_POST['field_id'] ?? 0);
|
|
$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 ($mappingId <= 0 || $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 = null;
|
|
if (Auth::user()) {
|
|
$createdBy = (int) Auth::user()->present()->id;
|
|
}
|
|
|
|
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 = 0;
|
|
if (!empty($datadbIds)) {
|
|
$applied = binding_apply_to_details($pdo, $mappingId, $limsValue, $datadbIds);
|
|
}
|
|
|
|
echo json_encode([
|
|
'success' => true,
|
|
'applied_rows' => $applied,
|
|
'mapping_id' => $mappingId,
|
|
'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()]);
|
|
}
|