From acaaef6c6d96c471e2ad3d20ef11778c3d0c4d7c Mon Sep 17 00:00:00 2001
From: Cerdic <cedric@yterium.com>
Date: Tue, 9 Feb 2021 12:09:34 +0100
Subject: [PATCH] une fonction qui verifie largeur et hauteur max passees en
 argument

---
 inc/verifier_taille_document_acceptable.php | 104 +++++++++++---------
 1 file changed, 57 insertions(+), 47 deletions(-)

diff --git a/inc/verifier_taille_document_acceptable.php b/inc/verifier_taille_document_acceptable.php
index 8ac0c895..493cf1f2 100644
--- a/inc/verifier_taille_document_acceptable.php
+++ b/inc/verifier_taille_document_acceptable.php
@@ -42,54 +42,12 @@ function inc_verifier_taille_document_acceptable_dist(&$infos, $is_logo = false)
 		}
 	} // si c'est une image
 	else {
-		if ((defined('_IMG_MAX_WIDTH') and _IMG_MAX_WIDTH and $infos['largeur'] > _IMG_MAX_WIDTH)
-			or (defined('_IMG_MAX_HEIGHT') and _IMG_MAX_HEIGHT and $infos['hauteur'] > _IMG_MAX_HEIGHT)
-		) {
-			$max_width = (defined('_IMG_MAX_WIDTH') and _IMG_MAX_WIDTH) ? _IMG_MAX_WIDTH : '*';
-			$max_height = (defined('_IMG_MAX_HEIGHT') and _IMG_MAX_HEIGHT) ? _IMG_MAX_HEIGHT : '*';
-
-			// pas la peine d'embeter le redacteur avec ca si on a active le calcul des miniatures
-			// on met directement a la taille maxi a la volee
-			if (isset($GLOBALS['meta']['creer_preview']) and $GLOBALS['meta']['creer_preview'] == 'oui') {
-				include_spip('inc/filtres');
-				$img = filtrer('image_reduire', $infos['fichier'], $max_width, $max_height);
-				$img = extraire_attribut($img, 'src');
-				$img = supprimer_timestamp($img);
-				if (@file_exists($img) and $img !== $infos['fichier']) {
-					spip_unlink($infos['fichier']);
-					@rename($img, $infos['fichier']);
-					list($h, $w) = taille_image($infos['fichier'], true);
-					$infos['largeur'] = $w;
-					$infos['hauteur'] = $h;
-					$infos['taille'] = @filesize($infos['fichier']);
-				}
-			}
+		$max_width = (defined('_IMG_MAX_WIDTH') and _IMG_MAX_WIDTH) ? _IMG_MAX_WIDTH : null;
+		$max_height = (defined('_IMG_MAX_HEIGHT') and _IMG_MAX_HEIGHT) ? _IMG_MAX_HEIGHT : null;
 
-			if ((defined('_IMG_MAX_WIDTH') and _IMG_MAX_WIDTH and $infos['largeur'] > _IMG_MAX_WIDTH)
-				or (defined('_IMG_MAX_HEIGHT') and _IMG_MAX_HEIGHT and $infos['hauteur'] > _IMG_MAX_HEIGHT)
-			) {
-				return _T(
-					'medias:info_image_max_taille',
-					array(
-						'maxi' =>
-							_T(
-								'info_largeur_vignette',
-								array(
-									'largeur_vignette' => $max_width,
-									'hauteur_vignette' => $max_height
-								)
-							),
-						'actuel' =>
-							_T(
-								'info_largeur_vignette',
-								array(
-									'largeur_vignette' => $infos['largeur'],
-									'hauteur_vignette' => $infos['hauteur']
-								)
-							)
-					)
-				);
-			}
+		$res = verifier_largeur_hauteur_image($infos, $max_width, $max_height);
+		if ($res !== true) {
+			return $res;
 		}
 
 		if (defined('_IMG_MAX_SIZE') and _IMG_MAX_SIZE > 0 and $infos['taille'] > _IMG_MAX_SIZE * 1024) {
@@ -105,3 +63,55 @@ function inc_verifier_taille_document_acceptable_dist(&$infos, $is_logo = false)
 
 	return true;
 }
+
+function verifier_largeur_hauteur_image($infos, $max_width = null, $max_height = null) {
+
+	if (($max_width and $infos['largeur'] > $max_width)
+		or ($max_height and $infos['hauteur'] > $max_height)
+	) {
+		// pas la peine d'embeter le redacteur avec ca si on a active le calcul des miniatures
+		// on met directement a la taille maxi a la volee
+		if (isset($GLOBALS['meta']['creer_preview']) and $GLOBALS['meta']['creer_preview'] == 'oui') {
+			include_spip('inc/filtres');
+			$img = filtrer('image_reduire', $infos['fichier'], $max_width ? $max_width : '*', $max_height ? $max_height : '*');
+			$img = extraire_attribut($img, 'src');
+			$img = supprimer_timestamp($img);
+			if (@file_exists($img) and $img !== $infos['fichier']) {
+				spip_unlink($infos['fichier']);
+				@rename($img, $infos['fichier']);
+				list($h, $w) = taille_image($infos['fichier'], true);
+				$infos['largeur'] = $w;
+				$infos['hauteur'] = $h;
+				$infos['taille'] = @filesize($infos['fichier']);
+			}
+		}
+
+		if (($max_width and $infos['largeur'] > $max_width)
+			or ($max_height and $infos['hauteur'] > $max_height)
+		) {
+			return _T(
+				'medias:info_image_max_taille',
+				array(
+					'maxi' =>
+						_T(
+							'info_largeur_vignette',
+							array(
+								'largeur_vignette' => $max_width,
+								'hauteur_vignette' => $max_height
+							)
+						),
+					'actuel' =>
+						_T(
+							'info_largeur_vignette',
+							array(
+								'largeur_vignette' => $infos['largeur'],
+								'hauteur_vignette' => $infos['hauteur']
+							)
+						)
+				)
+			);
+		}
+	}
+
+	return true;
+}
\ No newline at end of file
-- 
GitLab