new restylt

This commit is contained in:
2026-08-02 13:53:56 +02:00
parent c8ab259217
commit 9ccdc34d4a
391 changed files with 2760 additions and 83108 deletions
+229 -53
View File
@@ -1,63 +1,239 @@
<?php
include('include/headscript.php'); ?>
<?php
if (!empty($_FILES['docphotoone'])) {
// File upload configuration
if (isset($_POST["idtrf"])) {
$idtrf = $_POST["idtrf"];
}
if (isset($_POST["filedescription"])) {
$filedescription = $_POST["filedescription"];
} else {
$filedescription = "";
}
$targetDir = "uploaddocuments/";
$allowTypes = array('jpg', 'jpeg', 'png', 'bmp');
include('include/headscript.php');
$docss_arr = array();
foreach ($_FILES['docphotoone']['name'] as $key => $val) {
$doc_name = $_FILES['docphotoone']['name'][$key];
$tmp_name = $_FILES['docphotoone']['tmp_name'][$key];
$size = $_FILES['docphotoone']['size'][$key];
$type = $_FILES['docphotoone']['type'][$key];
$error = $_FILES['docphotoone']['error'][$key];
ini_set('display_errors', 0);
error_reporting(E_ALL);
// File upload path
$code = time();
$fileName = basename($_FILES['docphotoone']['name'][$key]);
$fileName = $idtrf . '-' . $code . $fileName;
$targetFilePath = $targetDir . $fileName;
// =======================
// Language messages
// =======================
$lang = $_SESSION['langselect'] ?? 'it';
$messages = [
'it' => [
'missing_trf' => 'ID TRF mancante.',
'no_image' => 'Nessuna immagine selezionata.',
'upload_error' => 'Errore durante il caricamento.',
'too_large' => 'Immagine troppo grande. Dimensione massima consentita: 8 MB.',
'invalid_extension' => 'Estensione non valida. Sono consentiti solo JPG, JPEG e PNG.',
'invalid_type' => 'Tipo immagine non valido. Sono consentiti solo JPG, JPEG e PNG.',
'invalid_image' => 'File immagine non valido.',
'unsupported_type' => 'Tipo immagine non supportato.',
'process_error' => 'Impossibile elaborare limmagine.',
'save_error' => 'Impossibile salvare limmagine ridimensionata.'
],
'en' => [
'missing_trf' => 'Missing TRF ID.',
'no_image' => 'No image selected.',
'upload_error' => 'Upload error.',
'too_large' => 'Image too large. Maximum allowed size is 8 MB.',
'invalid_extension' => 'Invalid file extension. Only JPG, JPEG and PNG are allowed.',
'invalid_type' => 'Invalid image type. Only JPG, JPEG and PNG are allowed.',
'invalid_image' => 'Invalid image file.',
'unsupported_type' => 'Unsupported image type.',
'process_error' => 'Unable to process image.',
'save_error' => 'Unable to save resized image.'
]
];
$msg = $messages[$lang] ?? $messages['it'];
// Check whether file type is valid
$fileType = strtolower(pathinfo($targetFilePath, PATHINFO_EXTENSION));
if (in_array($fileType, $allowTypes)) {
// Store images on the server
if (move_uploaded_file($_FILES['docphotoone']['tmp_name'][$key], $targetFilePath)) {
$docs_arr[] = $targetFilePath;
// =======================
// Upload settings
// =======================
$targetDir = "uploaddocuments/";
$targetDirPath = __DIR__ . "/uploaddocuments/";
$UpdateQuery = new WA_MySQLi_Query($cmctrfdb);
$UpdateQuery->Action = "update";
$UpdateQuery->Table = "`trf-details`";
$maxUploadSize = 8 * 1024 * 1024; // 8 MB
$maxWidth = 1600;
$maxHeight = 1600;
$jpgQuality = 82;
$UpdateQuery->bindColumn("photoone", "s", "$fileName", "WA_DEFAULT");
$UpdateQuery->addFilter("idtrfdetails", "=", "i", "" . ($idtrf) . "");
$UpdateQuery->execute();
$UpdateGoTo = "";
if (function_exists("rel2abs")) $UpdateGoTo = $UpdateGoTo ? rel2abs($UpdateGoTo, dirname(__FILE__)) : "";
$UpdateQuery->redirect($UpdateGoTo);
}
}
}
$allowedExtensions = ['jpg', 'jpeg', 'png'];
$allowedMimeTypes = ['image/jpeg', 'image/png'];
// Generate gallery view of the images
?>
<ul>
<img src="<?php echo $targetFilePath; ?>" alt="" width="200">
<?php ?>
</ul>
<?php
// =======================
// Basic checks
// =======================
if (empty($_POST["idtrf"])) {
http_response_code(400);
echo $msg['missing_trf'];
exit;
}
?>
$idtrf = intval($_POST["idtrf"]);
if (empty($_FILES['docphotoone']) || empty($_FILES['docphotoone']['name'][0])) {
http_response_code(400);
echo $msg['no_image'];
exit;
}
if (!is_dir($targetDirPath)) {
mkdir($targetDirPath, 0755, true);
}
// This upload manages only photo one
$key = 0;
$imageName = $_FILES['docphotoone']['name'][$key];
$tmpName = $_FILES['docphotoone']['tmp_name'][$key];
$size = $_FILES['docphotoone']['size'][$key];
$error = $_FILES['docphotoone']['error'][$key];
if ($error !== UPLOAD_ERR_OK) {
http_response_code(400);
echo $msg['upload_error'];
exit;
}
if ($size > $maxUploadSize) {
http_response_code(400);
echo $msg['too_large'];
exit;
}
// =======================
// Extension check
// =======================
$extension = strtolower(pathinfo($imageName, PATHINFO_EXTENSION));
if (!in_array($extension, $allowedExtensions)) {
http_response_code(400);
echo $msg['invalid_extension'];
exit;
}
// =======================
// Real MIME check
// =======================
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mimeType = finfo_file($finfo, $tmpName);
finfo_close($finfo);
if (!in_array($mimeType, $allowedMimeTypes)) {
http_response_code(400);
echo $msg['invalid_type'];
exit;
}
// =======================
// Image validation
// =======================
$imageInfo = getimagesize($tmpName);
if ($imageInfo === false) {
http_response_code(400);
echo $msg['invalid_image'];
exit;
}
$originalWidth = $imageInfo[0];
$originalHeight = $imageInfo[1];
// =======================
// Create source image
// =======================
if ($mimeType === 'image/jpeg') {
$sourceImage = imagecreatefromjpeg($tmpName);
} elseif ($mimeType === 'image/png') {
$sourceImage = imagecreatefrompng($tmpName);
} else {
http_response_code(400);
echo $msg['unsupported_type'];
exit;
}
if (!$sourceImage) {
http_response_code(400);
echo $msg['process_error'];
exit;
}
// =======================
// Resize calculation
// =======================
$ratio = min($maxWidth / $originalWidth, $maxHeight / $originalHeight, 1);
$newWidth = (int)($originalWidth * $ratio);
$newHeight = (int)($originalHeight * $ratio);
// =======================
// Create resized image
// =======================
$resizedImage = imagecreatetruecolor($newWidth, $newHeight);
// White background for PNG transparency
$white = imagecolorallocate($resizedImage, 255, 255, 255);
imagefill($resizedImage, 0, 0, $white);
imagecopyresampled(
$resizedImage,
$sourceImage,
0,
0,
0,
0,
$newWidth,
$newHeight,
$originalWidth,
$originalHeight
);
// =======================
// New filename
// =======================
$code = time();
$fileName = $idtrf . '-' . $code . '-photoone.jpg';
$targetFilePath = $targetDirPath . $fileName;
// =======================
// Save as JPG
// =======================
$saved = imagejpeg($resizedImage, $targetFilePath, $jpgQuality);
imagedestroy($sourceImage);
imagedestroy($resizedImage);
if (!$saved || !file_exists($targetFilePath)) {
http_response_code(500);
echo $msg['save_error'];
exit;
}
// =======================
// Delete previous photo one if exists
// =======================
$oldPhoto = "";
$oldPhotoQuery = new WA_MySQLi_RS("oldPhotoOneQuery", $cmctrfdb, 1);
$oldPhotoQuery->setQuery("SELECT photoone FROM `trf-details` WHERE idtrfdetails = $idtrf");
$oldPhotoQuery->execute();
$oldPhoto = $oldPhotoQuery->getColumnVal("photoone");
if (!empty($oldPhoto)) {
$oldPhotoPath = $targetDirPath . basename($oldPhoto);
if (file_exists($oldPhotoPath) && $oldPhoto !== $fileName) {
unlink($oldPhotoPath);
}
}
// =======================
// Update database
// =======================
$UpdateQuery = new WA_MySQLi_Query($cmctrfdb);
$UpdateQuery->Action = "update";
$UpdateQuery->Table = "`trf-details`";
$UpdateQuery->bindColumn("photoone", "s", "$fileName", "WA_DEFAULT");
$UpdateQuery->addFilter("idtrfdetails", "=", "i", "" . ($idtrf) . "");
$UpdateQuery->execute();
// Important: no redirect because this file is called by AJAX
// =======================
// Return image HTML
// =======================
?>
<img src="<?php echo $targetDir . htmlspecialchars($fileName); ?>" alt="" width="200">