@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * @package SPIP\Core\Filtres |
| 17 | 17 | **/ |
| 18 | 18 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 19 | - return; |
|
| 19 | + return; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | include_spip('inc/charsets'); |
@@ -42,8 +42,8 @@ discard block |
||
| 42 | 42 | * @return string Fonction PHP correspondante du filtre |
| 43 | 43 | */ |
| 44 | 44 | function charger_filtre($fonc, $default = 'filtre_identite_dist') { |
| 45 | - include_fichiers_fonctions(); // inclure les fichiers fonctions |
|
| 46 | - return chercher_filtre($fonc, $default); |
|
| 45 | + include_fichiers_fonctions(); // inclure les fichiers fonctions |
|
| 46 | + return chercher_filtre($fonc, $default); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * @return string Texte |
| 54 | 54 | **/ |
| 55 | 55 | function filtre_identite_dist($texte) { |
| 56 | - return $texte; |
|
| 56 | + return $texte; |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | /** |
@@ -77,38 +77,38 @@ discard block |
||
| 77 | 77 | * Fonction PHP correspondante du filtre demandé |
| 78 | 78 | */ |
| 79 | 79 | function chercher_filtre($fonc, $default = null) { |
| 80 | - if (!$fonc) { |
|
| 81 | - return $default; |
|
| 82 | - } |
|
| 83 | - // Cas des types mime, sans confondre avec les appels de fonction de classe |
|
| 84 | - // Foo::Bar |
|
| 85 | - // qui peuvent etre avec un namespace : space\Foo::Bar |
|
| 86 | - if (preg_match(',^[\w]+/,', $fonc)) { |
|
| 87 | - $nom = preg_replace(',\W,', '_', $fonc); |
|
| 88 | - $f = chercher_filtre($nom); |
|
| 89 | - // cas du sous-type MIME sans filtre associe, passer au type: |
|
| 90 | - // si filtre_text_plain pas defini, passe a filtre_text |
|
| 91 | - if (!$f and $nom !== $fonc) { |
|
| 92 | - $f = chercher_filtre(preg_replace(',\W.*$,', '', $fonc)); |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - return $f; |
|
| 96 | - } |
|
| 97 | - |
|
| 98 | - include_fichiers_fonctions(); |
|
| 99 | - foreach (['filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc] as $f) { |
|
| 100 | - trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels |
|
| 101 | - // fonction ou name\space\fonction |
|
| 102 | - if (is_callable($f)) { |
|
| 103 | - return $f; |
|
| 104 | - } |
|
| 105 | - // méthode statique d'une classe Classe::methode ou name\space\Classe::methode |
|
| 106 | - elseif (false === strpos($f, '::') and is_callable([$f])) { |
|
| 107 | - return $f; |
|
| 108 | - } |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - return $default; |
|
| 80 | + if (!$fonc) { |
|
| 81 | + return $default; |
|
| 82 | + } |
|
| 83 | + // Cas des types mime, sans confondre avec les appels de fonction de classe |
|
| 84 | + // Foo::Bar |
|
| 85 | + // qui peuvent etre avec un namespace : space\Foo::Bar |
|
| 86 | + if (preg_match(',^[\w]+/,', $fonc)) { |
|
| 87 | + $nom = preg_replace(',\W,', '_', $fonc); |
|
| 88 | + $f = chercher_filtre($nom); |
|
| 89 | + // cas du sous-type MIME sans filtre associe, passer au type: |
|
| 90 | + // si filtre_text_plain pas defini, passe a filtre_text |
|
| 91 | + if (!$f and $nom !== $fonc) { |
|
| 92 | + $f = chercher_filtre(preg_replace(',\W.*$,', '', $fonc)); |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + return $f; |
|
| 96 | + } |
|
| 97 | + |
|
| 98 | + include_fichiers_fonctions(); |
|
| 99 | + foreach (['filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc] as $f) { |
|
| 100 | + trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels |
|
| 101 | + // fonction ou name\space\fonction |
|
| 102 | + if (is_callable($f)) { |
|
| 103 | + return $f; |
|
| 104 | + } |
|
| 105 | + // méthode statique d'une classe Classe::methode ou name\space\Classe::methode |
|
| 106 | + elseif (false === strpos($f, '::') and is_callable([$f])) { |
|
| 107 | + return $f; |
|
| 108 | + } |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + return $default; |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -152,8 +152,8 @@ discard block |
||
| 152 | 152 | * Chaîne vide sinon. |
| 153 | 153 | **/ |
| 154 | 154 | function appliquer_filtre($arg, $filtre) { |
| 155 | - $args = func_get_args(); |
|
| 156 | - return appliquer_filtre_sinon($arg, $filtre, $args, ''); |
|
| 155 | + $args = func_get_args(); |
|
| 156 | + return appliquer_filtre_sinon($arg, $filtre, $args, ''); |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | /** |
@@ -178,8 +178,8 @@ discard block |
||
| 178 | 178 | * Texte d'origine sinon |
| 179 | 179 | **/ |
| 180 | 180 | function appliquer_si_filtre($arg, $filtre) { |
| 181 | - $args = func_get_args(); |
|
| 182 | - return appliquer_filtre_sinon($arg, $filtre, $args, $arg); |
|
| 181 | + $args = func_get_args(); |
|
| 182 | + return appliquer_filtre_sinon($arg, $filtre, $args, $arg); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -195,12 +195,12 @@ discard block |
||
| 195 | 195 | * Version de SPIP |
| 196 | 196 | **/ |
| 197 | 197 | function spip_version() { |
| 198 | - $version = $GLOBALS['spip_version_affichee']; |
|
| 199 | - if ($vcs_version = version_vcs_courante(_DIR_RACINE)) { |
|
| 200 | - $version .= " $vcs_version"; |
|
| 201 | - } |
|
| 198 | + $version = $GLOBALS['spip_version_affichee']; |
|
| 199 | + if ($vcs_version = version_vcs_courante(_DIR_RACINE)) { |
|
| 200 | + $version .= " $vcs_version"; |
|
| 201 | + } |
|
| 202 | 202 | |
| 203 | - return $version; |
|
| 203 | + return $version; |
|
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | /** |
@@ -213,19 +213,19 @@ discard block |
||
| 213 | 213 | * - string|null si $raw = false |
| 214 | 214 | */ |
| 215 | 215 | function version_vcs_courante($dir, $raw = false) { |
| 216 | - $desc = decrire_version_git($dir); |
|
| 217 | - if ($desc === null) { |
|
| 218 | - $desc = decrire_version_svn($dir); |
|
| 219 | - } |
|
| 220 | - if ($desc === null or $raw) { |
|
| 221 | - return $desc; |
|
| 222 | - } |
|
| 223 | - // affichage "GIT [master: abcdef]" |
|
| 224 | - $commit = $desc['commit_short'] ?? $desc['commit']; |
|
| 225 | - if ($desc['branch']) { |
|
| 226 | - $commit = $desc['branch'] . ': ' . $commit; |
|
| 227 | - } |
|
| 228 | - return "{$desc['vcs']} [$commit]"; |
|
| 216 | + $desc = decrire_version_git($dir); |
|
| 217 | + if ($desc === null) { |
|
| 218 | + $desc = decrire_version_svn($dir); |
|
| 219 | + } |
|
| 220 | + if ($desc === null or $raw) { |
|
| 221 | + return $desc; |
|
| 222 | + } |
|
| 223 | + // affichage "GIT [master: abcdef]" |
|
| 224 | + $commit = $desc['commit_short'] ?? $desc['commit']; |
|
| 225 | + if ($desc['branch']) { |
|
| 226 | + $commit = $desc['branch'] . ': ' . $commit; |
|
| 227 | + } |
|
| 228 | + return "{$desc['vcs']} [$commit]"; |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | /** |
@@ -237,24 +237,24 @@ discard block |
||
| 237 | 237 | * array ['branch' => xx, 'commit' => yy] sinon. |
| 238 | 238 | **/ |
| 239 | 239 | function decrire_version_git($dir) { |
| 240 | - if (!$dir) { |
|
| 241 | - $dir = '.'; |
|
| 242 | - } |
|
| 240 | + if (!$dir) { |
|
| 241 | + $dir = '.'; |
|
| 242 | + } |
|
| 243 | 243 | |
| 244 | - // version installee par GIT |
|
| 245 | - if (lire_fichier($dir . '/.git/HEAD', $c)) { |
|
| 246 | - $currentHead = trim(substr($c, 4)); |
|
| 247 | - if (lire_fichier($dir . '/.git/' . $currentHead, $hash)) { |
|
| 248 | - return [ |
|
| 249 | - 'vcs' => 'GIT', |
|
| 250 | - 'branch' => basename($currentHead), |
|
| 251 | - 'commit' => trim($hash), |
|
| 252 | - 'commit_short' => substr(trim($hash), 0, 8), |
|
| 253 | - ]; |
|
| 254 | - } |
|
| 255 | - } |
|
| 244 | + // version installee par GIT |
|
| 245 | + if (lire_fichier($dir . '/.git/HEAD', $c)) { |
|
| 246 | + $currentHead = trim(substr($c, 4)); |
|
| 247 | + if (lire_fichier($dir . '/.git/' . $currentHead, $hash)) { |
|
| 248 | + return [ |
|
| 249 | + 'vcs' => 'GIT', |
|
| 250 | + 'branch' => basename($currentHead), |
|
| 251 | + 'commit' => trim($hash), |
|
| 252 | + 'commit_short' => substr(trim($hash), 0, 8), |
|
| 253 | + ]; |
|
| 254 | + } |
|
| 255 | + } |
|
| 256 | 256 | |
| 257 | - return null; |
|
| 257 | + return null; |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | |
@@ -267,25 +267,25 @@ discard block |
||
| 267 | 267 | * array ['commit' => yy, 'date' => xx, 'author' => xx] sinon. |
| 268 | 268 | **/ |
| 269 | 269 | function decrire_version_svn($dir) { |
| 270 | - if (!$dir) { |
|
| 271 | - $dir = '.'; |
|
| 272 | - } |
|
| 273 | - // version installee par SVN |
|
| 274 | - if (file_exists($dir . '/.svn/wc.db') && class_exists(\SQLite3::class)) { |
|
| 275 | - $db = new SQLite3($dir . '/.svn/wc.db'); |
|
| 276 | - $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1'); |
|
| 277 | - if ($result) { |
|
| 278 | - $row = $result->fetchArray(); |
|
| 279 | - if ($row['changed_revision'] != '') { |
|
| 280 | - return [ |
|
| 281 | - 'vcs' => 'SVN', |
|
| 282 | - 'branch' => '', |
|
| 283 | - 'commit' => $row['changed_revision'], |
|
| 284 | - ]; |
|
| 285 | - } |
|
| 286 | - } |
|
| 287 | - } |
|
| 288 | - return null; |
|
| 270 | + if (!$dir) { |
|
| 271 | + $dir = '.'; |
|
| 272 | + } |
|
| 273 | + // version installee par SVN |
|
| 274 | + if (file_exists($dir . '/.svn/wc.db') && class_exists(\SQLite3::class)) { |
|
| 275 | + $db = new SQLite3($dir . '/.svn/wc.db'); |
|
| 276 | + $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1'); |
|
| 277 | + if ($result) { |
|
| 278 | + $row = $result->fetchArray(); |
|
| 279 | + if ($row['changed_revision'] != '') { |
|
| 280 | + return [ |
|
| 281 | + 'vcs' => 'SVN', |
|
| 282 | + 'branch' => '', |
|
| 283 | + 'commit' => $row['changed_revision'], |
|
| 284 | + ]; |
|
| 285 | + } |
|
| 286 | + } |
|
| 287 | + } |
|
| 288 | + return null; |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | // La matrice est necessaire pour ne filtrer _que_ des fonctions definies dans filtres_images |
@@ -332,18 +332,18 @@ discard block |
||
| 332 | 332 | * Code HTML retourné par le filtre |
| 333 | 333 | **/ |
| 334 | 334 | function filtrer($filtre) { |
| 335 | - $tous = func_get_args(); |
|
| 336 | - if (trouver_filtre_matrice($filtre) and substr($filtre, 0, 6) == 'image_') { |
|
| 337 | - return image_filtrer($tous); |
|
| 338 | - } elseif ($f = chercher_filtre($filtre)) { |
|
| 339 | - array_shift($tous); |
|
| 340 | - return call_user_func_array($f, $tous); |
|
| 341 | - } else { |
|
| 342 | - // le filtre n'existe pas, on provoque une erreur |
|
| 343 | - $msg = ['zbug_erreur_filtre', ['filtre' => texte_script($filtre)]]; |
|
| 344 | - erreur_squelette($msg); |
|
| 345 | - return ''; |
|
| 346 | - } |
|
| 335 | + $tous = func_get_args(); |
|
| 336 | + if (trouver_filtre_matrice($filtre) and substr($filtre, 0, 6) == 'image_') { |
|
| 337 | + return image_filtrer($tous); |
|
| 338 | + } elseif ($f = chercher_filtre($filtre)) { |
|
| 339 | + array_shift($tous); |
|
| 340 | + return call_user_func_array($f, $tous); |
|
| 341 | + } else { |
|
| 342 | + // le filtre n'existe pas, on provoque une erreur |
|
| 343 | + $msg = ['zbug_erreur_filtre', ['filtre' => texte_script($filtre)]]; |
|
| 344 | + erreur_squelette($msg); |
|
| 345 | + return ''; |
|
| 346 | + } |
|
| 347 | 347 | } |
| 348 | 348 | |
| 349 | 349 | /** |
@@ -360,11 +360,11 @@ discard block |
||
| 360 | 360 | * @return bool true si on trouve le filtre dans la matrice, false sinon. |
| 361 | 361 | */ |
| 362 | 362 | function trouver_filtre_matrice($filtre) { |
| 363 | - if (isset($GLOBALS['spip_matrice'][$filtre]) and is_string($f = $GLOBALS['spip_matrice'][$filtre])) { |
|
| 364 | - find_in_path($f, '', true); |
|
| 365 | - $GLOBALS['spip_matrice'][$filtre] = true; |
|
| 366 | - } |
|
| 367 | - return !empty($GLOBALS['spip_matrice'][$filtre]); |
|
| 363 | + if (isset($GLOBALS['spip_matrice'][$filtre]) and is_string($f = $GLOBALS['spip_matrice'][$filtre])) { |
|
| 364 | + find_in_path($f, '', true); |
|
| 365 | + $GLOBALS['spip_matrice'][$filtre] = true; |
|
| 366 | + } |
|
| 367 | + return !empty($GLOBALS['spip_matrice'][$filtre]); |
|
| 368 | 368 | } |
| 369 | 369 | |
| 370 | 370 | |
@@ -392,8 +392,8 @@ discard block |
||
| 392 | 392 | * @return mixed |
| 393 | 393 | */ |
| 394 | 394 | function filtre_set(&$Pile, $val, $key, $continue = null) { |
| 395 | - $Pile['vars'][$key] = $val; |
|
| 396 | - return $continue ? $val : ''; |
|
| 395 | + $Pile['vars'][$key] = $val; |
|
| 396 | + return $continue ? $val : ''; |
|
| 397 | 397 | } |
| 398 | 398 | |
| 399 | 399 | /** |
@@ -419,8 +419,8 @@ discard block |
||
| 419 | 419 | * @return string|mixed Retourne `$val` si `$continue` présent, sinon ''. |
| 420 | 420 | */ |
| 421 | 421 | function filtre_setenv(&$Pile, $val, $key, $continue = null) { |
| 422 | - $Pile[0][$key] = $val; |
|
| 423 | - return $continue ? $val : ''; |
|
| 422 | + $Pile[0][$key] = $val; |
|
| 423 | + return $continue ? $val : ''; |
|
| 424 | 424 | } |
| 425 | 425 | |
| 426 | 426 | /** |
@@ -429,8 +429,8 @@ discard block |
||
| 429 | 429 | * @return string |
| 430 | 430 | */ |
| 431 | 431 | function filtre_sanitize_env(&$Pile, $keys) { |
| 432 | - $Pile[0] = spip_sanitize_from_request($Pile[0], $keys); |
|
| 433 | - return ''; |
|
| 432 | + $Pile[0] = spip_sanitize_from_request($Pile[0], $keys); |
|
| 433 | + return ''; |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | 436 | |
@@ -453,18 +453,18 @@ discard block |
||
| 453 | 453 | * @return mixed Retourne la valeur (sans la modifier). |
| 454 | 454 | */ |
| 455 | 455 | function filtre_debug($val, $key = null) { |
| 456 | - $debug = ( |
|
| 457 | - is_null($key) ? '' : (var_export($key, true) . ' = ') |
|
| 458 | - ) . var_export($val, true); |
|
| 456 | + $debug = ( |
|
| 457 | + is_null($key) ? '' : (var_export($key, true) . ' = ') |
|
| 458 | + ) . var_export($val, true); |
|
| 459 | 459 | |
| 460 | - include_spip('inc/autoriser'); |
|
| 461 | - if (autoriser('webmestre')) { |
|
| 462 | - echo "<div class='spip_debug'>\n", $debug, "</div>\n"; |
|
| 463 | - } |
|
| 460 | + include_spip('inc/autoriser'); |
|
| 461 | + if (autoriser('webmestre')) { |
|
| 462 | + echo "<div class='spip_debug'>\n", $debug, "</div>\n"; |
|
| 463 | + } |
|
| 464 | 464 | |
| 465 | - spip_log($debug, 'debug'); |
|
| 465 | + spip_log($debug, 'debug'); |
|
| 466 | 466 | |
| 467 | - return $val; |
|
| 467 | + return $val; |
|
| 468 | 468 | } |
| 469 | 469 | |
| 470 | 470 | |
@@ -492,89 +492,89 @@ discard block |
||
| 492 | 492 | * Texte qui a reçu les filtres |
| 493 | 493 | **/ |
| 494 | 494 | function image_filtrer($args) { |
| 495 | - $filtre = array_shift($args); # enlever $filtre |
|
| 496 | - $texte = array_shift($args); |
|
| 497 | - if ($texte === null || !strlen($texte)) { |
|
| 498 | - return; |
|
| 499 | - } |
|
| 500 | - find_in_path('filtres_images_mini.php', 'inc/', true); |
|
| 501 | - statut_effacer_images_temporaires(true); // activer la suppression des images temporaires car le compilo finit la chaine par un image_graver |
|
| 502 | - // Cas du nom de fichier local |
|
| 503 | - $is_file = trim($texte); |
|
| 504 | - if ( |
|
| 505 | - strpos(substr($is_file, strlen(_DIR_RACINE)), '..') !== false |
|
| 506 | - or strpbrk($is_file, "<>\n\r\t") !== false |
|
| 507 | - or strpos($is_file, '/') === 0 |
|
| 508 | - ) { |
|
| 509 | - $is_file = false; |
|
| 510 | - } |
|
| 511 | - if ($is_file) { |
|
| 512 | - $is_local_file = function ($path) { |
|
| 513 | - if (strpos($path, '?') !== false) { |
|
| 514 | - $path = supprimer_timestamp($path); |
|
| 515 | - // remove ?24px added by find_in_theme on .svg files |
|
| 516 | - $path = preg_replace(',\?[[:digit:]]+(px)$,', '', $path); |
|
| 517 | - } |
|
| 518 | - return file_exists($path); |
|
| 519 | - }; |
|
| 520 | - if ($is_local_file($is_file) or tester_url_absolue($is_file)) { |
|
| 521 | - array_unshift($args, "<img src='$is_file' />"); |
|
| 522 | - $res = call_user_func_array($filtre, $args); |
|
| 523 | - statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 524 | - return $res; |
|
| 525 | - } |
|
| 526 | - } |
|
| 527 | - |
|
| 528 | - // Cas general : trier toutes les images, avec eventuellement leur <span> |
|
| 529 | - if ( |
|
| 530 | - preg_match_all( |
|
| 531 | - ',(<([a-z]+) [^<>]*spip_documents[^<>]*>)?\s*(<img\s.*>),UimsS', |
|
| 532 | - $texte, |
|
| 533 | - $tags, |
|
| 534 | - PREG_SET_ORDER |
|
| 535 | - ) |
|
| 536 | - ) { |
|
| 537 | - foreach ($tags as $tag) { |
|
| 538 | - $class = extraire_attribut($tag[3], 'class'); |
|
| 539 | - if ( |
|
| 540 | - !$class or |
|
| 541 | - (strpos($class, 'filtre_inactif') === false |
|
| 542 | - // compat historique a virer en 3.2 |
|
| 543 | - and strpos($class, 'no_image_filtrer') === false) |
|
| 544 | - ) { |
|
| 545 | - array_unshift($args, $tag[3]); |
|
| 546 | - if ($reduit = call_user_func_array($filtre, $args)) { |
|
| 547 | - // En cas de span spip_documents, modifier le style=...width: |
|
| 548 | - if ($tag[1]) { |
|
| 549 | - $w = extraire_attribut($reduit, 'width'); |
|
| 550 | - if (!$w and preg_match(',width:\s*(\d+)px,S', extraire_attribut($reduit, 'style'), $regs)) { |
|
| 551 | - $w = $regs[1]; |
|
| 552 | - } |
|
| 553 | - if ($w and ($style = extraire_attribut($tag[1], 'style'))) { |
|
| 554 | - $style = preg_replace(',width:\s*\d+px,S', "width:${w}px", $style); |
|
| 555 | - $replace = inserer_attribut($tag[1], 'style', $style); |
|
| 556 | - $texte = str_replace($tag[1], $replace, $texte); |
|
| 557 | - } |
|
| 558 | - } |
|
| 559 | - // traiter aussi un eventuel mouseover |
|
| 560 | - if ($mouseover = extraire_attribut($reduit, 'onmouseover')) { |
|
| 561 | - if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) { |
|
| 562 | - $srcover = $match[1]; |
|
| 563 | - array_shift($args); |
|
| 564 | - array_unshift($args, "<img src='" . $match[1] . "' />"); |
|
| 565 | - $srcover_filter = call_user_func_array($filtre, $args); |
|
| 566 | - $srcover_filter = extraire_attribut($srcover_filter, 'src'); |
|
| 567 | - $reduit = str_replace($srcover, $srcover_filter, $reduit); |
|
| 568 | - } |
|
| 569 | - } |
|
| 570 | - $texte = str_replace($tag[3], $reduit, $texte); |
|
| 571 | - } |
|
| 572 | - array_shift($args); |
|
| 573 | - } |
|
| 574 | - } |
|
| 575 | - } |
|
| 576 | - statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 577 | - return $texte; |
|
| 495 | + $filtre = array_shift($args); # enlever $filtre |
|
| 496 | + $texte = array_shift($args); |
|
| 497 | + if ($texte === null || !strlen($texte)) { |
|
| 498 | + return; |
|
| 499 | + } |
|
| 500 | + find_in_path('filtres_images_mini.php', 'inc/', true); |
|
| 501 | + statut_effacer_images_temporaires(true); // activer la suppression des images temporaires car le compilo finit la chaine par un image_graver |
|
| 502 | + // Cas du nom de fichier local |
|
| 503 | + $is_file = trim($texte); |
|
| 504 | + if ( |
|
| 505 | + strpos(substr($is_file, strlen(_DIR_RACINE)), '..') !== false |
|
| 506 | + or strpbrk($is_file, "<>\n\r\t") !== false |
|
| 507 | + or strpos($is_file, '/') === 0 |
|
| 508 | + ) { |
|
| 509 | + $is_file = false; |
|
| 510 | + } |
|
| 511 | + if ($is_file) { |
|
| 512 | + $is_local_file = function ($path) { |
|
| 513 | + if (strpos($path, '?') !== false) { |
|
| 514 | + $path = supprimer_timestamp($path); |
|
| 515 | + // remove ?24px added by find_in_theme on .svg files |
|
| 516 | + $path = preg_replace(',\?[[:digit:]]+(px)$,', '', $path); |
|
| 517 | + } |
|
| 518 | + return file_exists($path); |
|
| 519 | + }; |
|
| 520 | + if ($is_local_file($is_file) or tester_url_absolue($is_file)) { |
|
| 521 | + array_unshift($args, "<img src='$is_file' />"); |
|
| 522 | + $res = call_user_func_array($filtre, $args); |
|
| 523 | + statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 524 | + return $res; |
|
| 525 | + } |
|
| 526 | + } |
|
| 527 | + |
|
| 528 | + // Cas general : trier toutes les images, avec eventuellement leur <span> |
|
| 529 | + if ( |
|
| 530 | + preg_match_all( |
|
| 531 | + ',(<([a-z]+) [^<>]*spip_documents[^<>]*>)?\s*(<img\s.*>),UimsS', |
|
| 532 | + $texte, |
|
| 533 | + $tags, |
|
| 534 | + PREG_SET_ORDER |
|
| 535 | + ) |
|
| 536 | + ) { |
|
| 537 | + foreach ($tags as $tag) { |
|
| 538 | + $class = extraire_attribut($tag[3], 'class'); |
|
| 539 | + if ( |
|
| 540 | + !$class or |
|
| 541 | + (strpos($class, 'filtre_inactif') === false |
|
| 542 | + // compat historique a virer en 3.2 |
|
| 543 | + and strpos($class, 'no_image_filtrer') === false) |
|
| 544 | + ) { |
|
| 545 | + array_unshift($args, $tag[3]); |
|
| 546 | + if ($reduit = call_user_func_array($filtre, $args)) { |
|
| 547 | + // En cas de span spip_documents, modifier le style=...width: |
|
| 548 | + if ($tag[1]) { |
|
| 549 | + $w = extraire_attribut($reduit, 'width'); |
|
| 550 | + if (!$w and preg_match(',width:\s*(\d+)px,S', extraire_attribut($reduit, 'style'), $regs)) { |
|
| 551 | + $w = $regs[1]; |
|
| 552 | + } |
|
| 553 | + if ($w and ($style = extraire_attribut($tag[1], 'style'))) { |
|
| 554 | + $style = preg_replace(',width:\s*\d+px,S', "width:${w}px", $style); |
|
| 555 | + $replace = inserer_attribut($tag[1], 'style', $style); |
|
| 556 | + $texte = str_replace($tag[1], $replace, $texte); |
|
| 557 | + } |
|
| 558 | + } |
|
| 559 | + // traiter aussi un eventuel mouseover |
|
| 560 | + if ($mouseover = extraire_attribut($reduit, 'onmouseover')) { |
|
| 561 | + if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) { |
|
| 562 | + $srcover = $match[1]; |
|
| 563 | + array_shift($args); |
|
| 564 | + array_unshift($args, "<img src='" . $match[1] . "' />"); |
|
| 565 | + $srcover_filter = call_user_func_array($filtre, $args); |
|
| 566 | + $srcover_filter = extraire_attribut($srcover_filter, 'src'); |
|
| 567 | + $reduit = str_replace($srcover, $srcover_filter, $reduit); |
|
| 568 | + } |
|
| 569 | + } |
|
| 570 | + $texte = str_replace($tag[3], $reduit, $texte); |
|
| 571 | + } |
|
| 572 | + array_shift($args); |
|
| 573 | + } |
|
| 574 | + } |
|
| 575 | + } |
|
| 576 | + statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 577 | + return $texte; |
|
| 578 | 578 | } |
| 579 | 579 | |
| 580 | 580 | /** |
@@ -589,78 +589,78 @@ discard block |
||
| 589 | 589 | **/ |
| 590 | 590 | function taille_image($img, $force_refresh = false) { |
| 591 | 591 | |
| 592 | - static $largeur_img = [], $hauteur_img = []; |
|
| 593 | - $srcWidth = 0; |
|
| 594 | - $srcHeight = 0; |
|
| 595 | - |
|
| 596 | - $src = extraire_attribut($img, 'src'); |
|
| 597 | - |
|
| 598 | - if (!$src) { |
|
| 599 | - $src = $img; |
|
| 600 | - } else { |
|
| 601 | - $srcWidth = extraire_attribut($img, 'width'); |
|
| 602 | - $srcHeight = extraire_attribut($img, 'height'); |
|
| 603 | - } |
|
| 604 | - |
|
| 605 | - // ne jamais operer directement sur une image distante pour des raisons de perfo |
|
| 606 | - // la copie locale a toutes les chances d'etre la ou de resservir |
|
| 607 | - if (tester_url_absolue($src)) { |
|
| 608 | - include_spip('inc/distant'); |
|
| 609 | - $fichier = copie_locale($src); |
|
| 610 | - $src = $fichier ? _DIR_RACINE . $fichier : $src; |
|
| 611 | - } |
|
| 612 | - if (($p = strpos($src, '?')) !== false) { |
|
| 613 | - $src = substr($src, 0, $p); |
|
| 614 | - } |
|
| 615 | - |
|
| 616 | - $srcsize = false; |
|
| 617 | - if (isset($largeur_img[$src]) and !$force_refresh) { |
|
| 618 | - $srcWidth = $largeur_img[$src]; |
|
| 619 | - } |
|
| 620 | - if (isset($hauteur_img[$src]) and !$force_refresh) { |
|
| 621 | - $srcHeight = $hauteur_img[$src]; |
|
| 622 | - } |
|
| 623 | - if (!$srcWidth or !$srcHeight) { |
|
| 624 | - if ( |
|
| 625 | - file_exists($src) |
|
| 626 | - and $srcsize = spip_getimagesize($src) |
|
| 627 | - ) { |
|
| 628 | - if (!$srcWidth) { |
|
| 629 | - $largeur_img[$src] = $srcWidth = $srcsize[0]; |
|
| 630 | - } |
|
| 631 | - if (!$srcHeight) { |
|
| 632 | - $hauteur_img[$src] = $srcHeight = $srcsize[1]; |
|
| 633 | - } |
|
| 634 | - } |
|
| 635 | - elseif (strpos($src, '<svg') !== false) { |
|
| 636 | - include_spip('inc/svg'); |
|
| 637 | - if ($attrs = svg_lire_attributs($src)) { |
|
| 638 | - [$width, $height, $viewbox] = svg_getimagesize_from_attr($attrs); |
|
| 639 | - if (!$srcWidth) { |
|
| 640 | - $largeur_img[$src] = $srcWidth = $width; |
|
| 641 | - } |
|
| 642 | - if (!$srcHeight) { |
|
| 643 | - $hauteur_img[$src] = $srcHeight = $height; |
|
| 644 | - } |
|
| 645 | - } |
|
| 646 | - } |
|
| 647 | - // $src peut etre une reference a une image temporaire dont a n'a que le log .src |
|
| 648 | - // on s'y refere, l'image sera reconstruite en temps utile si necessaire |
|
| 649 | - elseif ( |
|
| 650 | - @file_exists($f = "$src.src") |
|
| 651 | - and lire_fichier($f, $valeurs) |
|
| 652 | - and $valeurs = unserialize($valeurs) |
|
| 653 | - ) { |
|
| 654 | - if (!$srcWidth) { |
|
| 655 | - $largeur_img[$src] = $srcWidth = $valeurs['largeur_dest']; |
|
| 656 | - } |
|
| 657 | - if (!$srcHeight) { |
|
| 658 | - $hauteur_img[$src] = $srcHeight = $valeurs['hauteur_dest']; |
|
| 659 | - } |
|
| 660 | - } |
|
| 661 | - } |
|
| 662 | - |
|
| 663 | - return [$srcHeight, $srcWidth]; |
|
| 592 | + static $largeur_img = [], $hauteur_img = []; |
|
| 593 | + $srcWidth = 0; |
|
| 594 | + $srcHeight = 0; |
|
| 595 | + |
|
| 596 | + $src = extraire_attribut($img, 'src'); |
|
| 597 | + |
|
| 598 | + if (!$src) { |
|
| 599 | + $src = $img; |
|
| 600 | + } else { |
|
| 601 | + $srcWidth = extraire_attribut($img, 'width'); |
|
| 602 | + $srcHeight = extraire_attribut($img, 'height'); |
|
| 603 | + } |
|
| 604 | + |
|
| 605 | + // ne jamais operer directement sur une image distante pour des raisons de perfo |
|
| 606 | + // la copie locale a toutes les chances d'etre la ou de resservir |
|
| 607 | + if (tester_url_absolue($src)) { |
|
| 608 | + include_spip('inc/distant'); |
|
| 609 | + $fichier = copie_locale($src); |
|
| 610 | + $src = $fichier ? _DIR_RACINE . $fichier : $src; |
|
| 611 | + } |
|
| 612 | + if (($p = strpos($src, '?')) !== false) { |
|
| 613 | + $src = substr($src, 0, $p); |
|
| 614 | + } |
|
| 615 | + |
|
| 616 | + $srcsize = false; |
|
| 617 | + if (isset($largeur_img[$src]) and !$force_refresh) { |
|
| 618 | + $srcWidth = $largeur_img[$src]; |
|
| 619 | + } |
|
| 620 | + if (isset($hauteur_img[$src]) and !$force_refresh) { |
|
| 621 | + $srcHeight = $hauteur_img[$src]; |
|
| 622 | + } |
|
| 623 | + if (!$srcWidth or !$srcHeight) { |
|
| 624 | + if ( |
|
| 625 | + file_exists($src) |
|
| 626 | + and $srcsize = spip_getimagesize($src) |
|
| 627 | + ) { |
|
| 628 | + if (!$srcWidth) { |
|
| 629 | + $largeur_img[$src] = $srcWidth = $srcsize[0]; |
|
| 630 | + } |
|
| 631 | + if (!$srcHeight) { |
|
| 632 | + $hauteur_img[$src] = $srcHeight = $srcsize[1]; |
|
| 633 | + } |
|
| 634 | + } |
|
| 635 | + elseif (strpos($src, '<svg') !== false) { |
|
| 636 | + include_spip('inc/svg'); |
|
| 637 | + if ($attrs = svg_lire_attributs($src)) { |
|
| 638 | + [$width, $height, $viewbox] = svg_getimagesize_from_attr($attrs); |
|
| 639 | + if (!$srcWidth) { |
|
| 640 | + $largeur_img[$src] = $srcWidth = $width; |
|
| 641 | + } |
|
| 642 | + if (!$srcHeight) { |
|
| 643 | + $hauteur_img[$src] = $srcHeight = $height; |
|
| 644 | + } |
|
| 645 | + } |
|
| 646 | + } |
|
| 647 | + // $src peut etre une reference a une image temporaire dont a n'a que le log .src |
|
| 648 | + // on s'y refere, l'image sera reconstruite en temps utile si necessaire |
|
| 649 | + elseif ( |
|
| 650 | + @file_exists($f = "$src.src") |
|
| 651 | + and lire_fichier($f, $valeurs) |
|
| 652 | + and $valeurs = unserialize($valeurs) |
|
| 653 | + ) { |
|
| 654 | + if (!$srcWidth) { |
|
| 655 | + $largeur_img[$src] = $srcWidth = $valeurs['largeur_dest']; |
|
| 656 | + } |
|
| 657 | + if (!$srcHeight) { |
|
| 658 | + $hauteur_img[$src] = $srcHeight = $valeurs['hauteur_dest']; |
|
| 659 | + } |
|
| 660 | + } |
|
| 661 | + } |
|
| 662 | + |
|
| 663 | + return [$srcHeight, $srcWidth]; |
|
| 664 | 664 | } |
| 665 | 665 | |
| 666 | 666 | |
@@ -678,12 +678,12 @@ discard block |
||
| 678 | 678 | * Largeur en pixels, NULL ou 0 si aucune image. |
| 679 | 679 | **/ |
| 680 | 680 | function largeur($img) { |
| 681 | - if (!$img) { |
|
| 682 | - return; |
|
| 683 | - } |
|
| 684 | - [$h, $l] = taille_image($img); |
|
| 681 | + if (!$img) { |
|
| 682 | + return; |
|
| 683 | + } |
|
| 684 | + [$h, $l] = taille_image($img); |
|
| 685 | 685 | |
| 686 | - return $l; |
|
| 686 | + return $l; |
|
| 687 | 687 | } |
| 688 | 688 | |
| 689 | 689 | /** |
@@ -700,12 +700,12 @@ discard block |
||
| 700 | 700 | * Hauteur en pixels, NULL ou 0 si aucune image. |
| 701 | 701 | **/ |
| 702 | 702 | function hauteur($img) { |
| 703 | - if (!$img) { |
|
| 704 | - return; |
|
| 705 | - } |
|
| 706 | - [$h, $l] = taille_image($img); |
|
| 703 | + if (!$img) { |
|
| 704 | + return; |
|
| 705 | + } |
|
| 706 | + [$h, $l] = taille_image($img); |
|
| 707 | 707 | |
| 708 | - return $h; |
|
| 708 | + return $h; |
|
| 709 | 709 | } |
| 710 | 710 | |
| 711 | 711 | |
@@ -725,11 +725,11 @@ discard block |
||
| 725 | 725 | * @return string |
| 726 | 726 | **/ |
| 727 | 727 | function corriger_entites_html($texte) { |
| 728 | - if (strpos($texte, '&') === false) { |
|
| 729 | - return $texte; |
|
| 730 | - } |
|
| 728 | + if (strpos($texte, '&') === false) { |
|
| 729 | + return $texte; |
|
| 730 | + } |
|
| 731 | 731 | |
| 732 | - return preg_replace(',&(#[0-9][0-9][0-9]+;|amp;),iS', '&\1', $texte); |
|
| 732 | + return preg_replace(',&(#[0-9][0-9][0-9]+;|amp;),iS', '&\1', $texte); |
|
| 733 | 733 | } |
| 734 | 734 | |
| 735 | 735 | /** |
@@ -744,11 +744,11 @@ discard block |
||
| 744 | 744 | * @return string |
| 745 | 745 | **/ |
| 746 | 746 | function corriger_toutes_entites_html($texte) { |
| 747 | - if (strpos($texte, '&') === false) { |
|
| 748 | - return $texte; |
|
| 749 | - } |
|
| 747 | + if (strpos($texte, '&') === false) { |
|
| 748 | + return $texte; |
|
| 749 | + } |
|
| 750 | 750 | |
| 751 | - return preg_replace(',&(#?[a-z0-9]+;),iS', '&\1', $texte); |
|
| 751 | + return preg_replace(',&(#?[a-z0-9]+;),iS', '&\1', $texte); |
|
| 752 | 752 | } |
| 753 | 753 | |
| 754 | 754 | /** |
@@ -758,7 +758,7 @@ discard block |
||
| 758 | 758 | * @return string |
| 759 | 759 | **/ |
| 760 | 760 | function proteger_amp($texte) { |
| 761 | - return str_replace('&', '&', $texte); |
|
| 761 | + return str_replace('&', '&', $texte); |
|
| 762 | 762 | } |
| 763 | 763 | |
| 764 | 764 | |
@@ -789,21 +789,21 @@ discard block |
||
| 789 | 789 | * @return mixed|string |
| 790 | 790 | */ |
| 791 | 791 | function entites_html($texte, $tout = false, $quote = true) { |
| 792 | - if ( |
|
| 793 | - !is_string($texte) or !$texte |
|
| 794 | - or strpbrk($texte, "&\"'<>") == false |
|
| 795 | - ) { |
|
| 796 | - return $texte; |
|
| 797 | - } |
|
| 798 | - include_spip('inc/texte'); |
|
| 799 | - $flags = ($quote ? ENT_QUOTES : ENT_NOQUOTES); |
|
| 800 | - $flags |= ENT_HTML401; |
|
| 801 | - $texte = spip_htmlspecialchars(echappe_retour(echappe_html($texte, '', true), '', 'proteger_amp'), $flags); |
|
| 802 | - if ($tout) { |
|
| 803 | - return corriger_toutes_entites_html($texte); |
|
| 804 | - } else { |
|
| 805 | - return corriger_entites_html($texte); |
|
| 806 | - } |
|
| 792 | + if ( |
|
| 793 | + !is_string($texte) or !$texte |
|
| 794 | + or strpbrk($texte, "&\"'<>") == false |
|
| 795 | + ) { |
|
| 796 | + return $texte; |
|
| 797 | + } |
|
| 798 | + include_spip('inc/texte'); |
|
| 799 | + $flags = ($quote ? ENT_QUOTES : ENT_NOQUOTES); |
|
| 800 | + $flags |= ENT_HTML401; |
|
| 801 | + $texte = spip_htmlspecialchars(echappe_retour(echappe_html($texte, '', true), '', 'proteger_amp'), $flags); |
|
| 802 | + if ($tout) { |
|
| 803 | + return corriger_toutes_entites_html($texte); |
|
| 804 | + } else { |
|
| 805 | + return corriger_entites_html($texte); |
|
| 806 | + } |
|
| 807 | 807 | } |
| 808 | 808 | |
| 809 | 809 | /** |
@@ -822,37 +822,37 @@ discard block |
||
| 822 | 822 | * Texte converti |
| 823 | 823 | **/ |
| 824 | 824 | function filtrer_entites($texte) { |
| 825 | - if (strpos($texte, '&') === false) { |
|
| 826 | - return $texte; |
|
| 827 | - } |
|
| 828 | - // filtrer |
|
| 829 | - $texte = html2unicode($texte); |
|
| 830 | - // remettre le tout dans le charset cible |
|
| 831 | - $texte = unicode2charset($texte); |
|
| 832 | - // cas particulier des " et ' qu'il faut filtrer aussi |
|
| 833 | - // (on le faisait deja avec un ") |
|
| 834 | - if (strpos($texte, '&#') !== false) { |
|
| 835 | - $texte = str_replace([''', ''', '"', '"'], ["'", "'", '"', '"'], $texte); |
|
| 836 | - } |
|
| 825 | + if (strpos($texte, '&') === false) { |
|
| 826 | + return $texte; |
|
| 827 | + } |
|
| 828 | + // filtrer |
|
| 829 | + $texte = html2unicode($texte); |
|
| 830 | + // remettre le tout dans le charset cible |
|
| 831 | + $texte = unicode2charset($texte); |
|
| 832 | + // cas particulier des " et ' qu'il faut filtrer aussi |
|
| 833 | + // (on le faisait deja avec un ") |
|
| 834 | + if (strpos($texte, '&#') !== false) { |
|
| 835 | + $texte = str_replace([''', ''', '"', '"'], ["'", "'", '"', '"'], $texte); |
|
| 836 | + } |
|
| 837 | 837 | |
| 838 | - return $texte; |
|
| 838 | + return $texte; |
|
| 839 | 839 | } |
| 840 | 840 | |
| 841 | 841 | |
| 842 | 842 | if (!function_exists('filtre_filtrer_entites_dist')) { |
| 843 | - /** |
|
| 844 | - * Version sécurisée de filtrer_entites |
|
| 845 | - * |
|
| 846 | - * @uses interdire_scripts() |
|
| 847 | - * @uses filtrer_entites() |
|
| 848 | - * |
|
| 849 | - * @param string $t |
|
| 850 | - * @return string |
|
| 851 | - */ |
|
| 852 | - function filtre_filtrer_entites_dist($t) { |
|
| 853 | - include_spip('inc/texte'); |
|
| 854 | - return interdire_scripts(filtrer_entites($t)); |
|
| 855 | - } |
|
| 843 | + /** |
|
| 844 | + * Version sécurisée de filtrer_entites |
|
| 845 | + * |
|
| 846 | + * @uses interdire_scripts() |
|
| 847 | + * @uses filtrer_entites() |
|
| 848 | + * |
|
| 849 | + * @param string $t |
|
| 850 | + * @return string |
|
| 851 | + */ |
|
| 852 | + function filtre_filtrer_entites_dist($t) { |
|
| 853 | + include_spip('inc/texte'); |
|
| 854 | + return interdire_scripts(filtrer_entites($t)); |
|
| 855 | + } |
|
| 856 | 856 | } |
| 857 | 857 | |
| 858 | 858 | |
@@ -867,18 +867,18 @@ discard block |
||
| 867 | 867 | * @return string|array |
| 868 | 868 | **/ |
| 869 | 869 | function supprimer_caracteres_illegaux($texte) { |
| 870 | - static $from = "\x0\x1\x2\x3\x4\x5\x6\x7\x8\xB\xC\xE\xF\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; |
|
| 871 | - static $to = null; |
|
| 870 | + static $from = "\x0\x1\x2\x3\x4\x5\x6\x7\x8\xB\xC\xE\xF\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; |
|
| 871 | + static $to = null; |
|
| 872 | 872 | |
| 873 | - if (is_array($texte)) { |
|
| 874 | - return array_map('supprimer_caracteres_illegaux', $texte); |
|
| 875 | - } |
|
| 873 | + if (is_array($texte)) { |
|
| 874 | + return array_map('supprimer_caracteres_illegaux', $texte); |
|
| 875 | + } |
|
| 876 | 876 | |
| 877 | - if (!$to) { |
|
| 878 | - $to = str_repeat('-', strlen($from)); |
|
| 879 | - } |
|
| 877 | + if (!$to) { |
|
| 878 | + $to = str_repeat('-', strlen($from)); |
|
| 879 | + } |
|
| 880 | 880 | |
| 881 | - return strtr($texte, $from, $to); |
|
| 881 | + return strtr($texte, $from, $to); |
|
| 882 | 882 | } |
| 883 | 883 | |
| 884 | 884 | /** |
@@ -890,10 +890,10 @@ discard block |
||
| 890 | 890 | * @return string|array |
| 891 | 891 | **/ |
| 892 | 892 | function corriger_caracteres($texte) { |
| 893 | - $texte = corriger_caracteres_windows($texte); |
|
| 894 | - $texte = supprimer_caracteres_illegaux($texte); |
|
| 893 | + $texte = corriger_caracteres_windows($texte); |
|
| 894 | + $texte = supprimer_caracteres_illegaux($texte); |
|
| 895 | 895 | |
| 896 | - return $texte; |
|
| 896 | + return $texte; |
|
| 897 | 897 | } |
| 898 | 898 | |
| 899 | 899 | /** |
@@ -910,44 +910,44 @@ discard block |
||
| 910 | 910 | * Texte encodé pour XML |
| 911 | 911 | */ |
| 912 | 912 | function texte_backend(string $texte): string { |
| 913 | - if ($texte === '') { |
|
| 914 | - return ''; |
|
| 915 | - } |
|
| 913 | + if ($texte === '') { |
|
| 914 | + return ''; |
|
| 915 | + } |
|
| 916 | 916 | |
| 917 | - static $apostrophe = ['’', "'"]; # n'allouer qu'une fois |
|
| 917 | + static $apostrophe = ['’', "'"]; # n'allouer qu'une fois |
|
| 918 | 918 | |
| 919 | - // si on a des liens ou des images, les passer en absolu |
|
| 920 | - $texte = liens_absolus($texte); |
|
| 919 | + // si on a des liens ou des images, les passer en absolu |
|
| 920 | + $texte = liens_absolus($texte); |
|
| 921 | 921 | |
| 922 | - // echapper les tags > < |
|
| 923 | - $texte = preg_replace(',&(gt|lt);,S', '&\1;', $texte); |
|
| 922 | + // echapper les tags > < |
|
| 923 | + $texte = preg_replace(',&(gt|lt);,S', '&\1;', $texte); |
|
| 924 | 924 | |
| 925 | - // importer les é |
|
| 926 | - $texte = filtrer_entites($texte); |
|
| 925 | + // importer les é |
|
| 926 | + $texte = filtrer_entites($texte); |
|
| 927 | 927 | |
| 928 | - // " -> " et tout ce genre de choses |
|
| 929 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 930 | - $texte = str_replace(' ', ' ', $texte); |
|
| 931 | - $texte = preg_replace('/\s{2,}/S' . $u, ' ', $texte); |
|
| 932 | - // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal |
|
| 933 | - $texte = entites_html($texte, false, false); |
|
| 934 | - // mais bien echapper les double quotes ! |
|
| 935 | - $texte = str_replace('"', '"', $texte); |
|
| 928 | + // " -> " et tout ce genre de choses |
|
| 929 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 930 | + $texte = str_replace(' ', ' ', $texte); |
|
| 931 | + $texte = preg_replace('/\s{2,}/S' . $u, ' ', $texte); |
|
| 932 | + // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal |
|
| 933 | + $texte = entites_html($texte, false, false); |
|
| 934 | + // mais bien echapper les double quotes ! |
|
| 935 | + $texte = str_replace('"', '"', $texte); |
|
| 936 | 936 | |
| 937 | - // verifier le charset |
|
| 938 | - $texte = charset2unicode($texte); |
|
| 937 | + // verifier le charset |
|
| 938 | + $texte = charset2unicode($texte); |
|
| 939 | 939 | |
| 940 | - // Caracteres problematiques en iso-latin 1 |
|
| 941 | - if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') { |
|
| 942 | - $texte = str_replace(chr(156), 'œ', $texte); |
|
| 943 | - $texte = str_replace(chr(140), 'Œ', $texte); |
|
| 944 | - $texte = str_replace(chr(159), 'Ÿ', $texte); |
|
| 945 | - } |
|
| 940 | + // Caracteres problematiques en iso-latin 1 |
|
| 941 | + if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') { |
|
| 942 | + $texte = str_replace(chr(156), 'œ', $texte); |
|
| 943 | + $texte = str_replace(chr(140), 'Œ', $texte); |
|
| 944 | + $texte = str_replace(chr(159), 'Ÿ', $texte); |
|
| 945 | + } |
|
| 946 | 946 | |
| 947 | - // l'apostrophe curly pose probleme a certains lecteure de RSS |
|
| 948 | - // et le caractere apostrophe alourdit les squelettes avec PHP |
|
| 949 | - // ==> on les remplace par l'entite HTML |
|
| 950 | - return str_replace($apostrophe, "'", $texte); |
|
| 947 | + // l'apostrophe curly pose probleme a certains lecteure de RSS |
|
| 948 | + // et le caractere apostrophe alourdit les squelettes avec PHP |
|
| 949 | + // ==> on les remplace par l'entite HTML |
|
| 950 | + return str_replace($apostrophe, "'", $texte); |
|
| 951 | 951 | } |
| 952 | 952 | |
| 953 | 953 | /** |
@@ -964,7 +964,7 @@ discard block |
||
| 964 | 964 | * Texte encodé et quote pour XML |
| 965 | 965 | */ |
| 966 | 966 | function texte_backendq(string $texte): string { |
| 967 | - return addslashes(texte_backend($texte)); |
|
| 967 | + return addslashes(texte_backend($texte)); |
|
| 968 | 968 | } |
| 969 | 969 | |
| 970 | 970 | |
@@ -987,11 +987,11 @@ discard block |
||
| 987 | 987 | * Numéro de titre, sinon chaîne vide |
| 988 | 988 | **/ |
| 989 | 989 | function supprimer_numero($texte) { |
| 990 | - return preg_replace( |
|
| 991 | - ',^[[:space:]]*([0-9]+)([.)]|' . chr(194) . '?' . chr(176) . ')[[:space:]]+,S', |
|
| 992 | - '', |
|
| 993 | - $texte |
|
| 994 | - ); |
|
| 990 | + return preg_replace( |
|
| 991 | + ',^[[:space:]]*([0-9]+)([.)]|' . chr(194) . '?' . chr(176) . ')[[:space:]]+,S', |
|
| 992 | + '', |
|
| 993 | + $texte |
|
| 994 | + ); |
|
| 995 | 995 | } |
| 996 | 996 | |
| 997 | 997 | /** |
@@ -1014,17 +1014,17 @@ discard block |
||
| 1014 | 1014 | * Numéro de titre, sinon chaîne vide |
| 1015 | 1015 | **/ |
| 1016 | 1016 | function recuperer_numero($texte) { |
| 1017 | - if ( |
|
| 1018 | - preg_match( |
|
| 1019 | - ',^[[:space:]]*([0-9]+)([.)]|' . chr(194) . '?' . chr(176) . ')[[:space:]]+,S', |
|
| 1020 | - $texte, |
|
| 1021 | - $regs |
|
| 1022 | - ) |
|
| 1023 | - ) { |
|
| 1024 | - return strval($regs[1]); |
|
| 1025 | - } else { |
|
| 1026 | - return ''; |
|
| 1027 | - } |
|
| 1017 | + if ( |
|
| 1018 | + preg_match( |
|
| 1019 | + ',^[[:space:]]*([0-9]+)([.)]|' . chr(194) . '?' . chr(176) . ')[[:space:]]+,S', |
|
| 1020 | + $texte, |
|
| 1021 | + $regs |
|
| 1022 | + ) |
|
| 1023 | + ) { |
|
| 1024 | + return strval($regs[1]); |
|
| 1025 | + } else { |
|
| 1026 | + return ''; |
|
| 1027 | + } |
|
| 1028 | 1028 | } |
| 1029 | 1029 | |
| 1030 | 1030 | /** |
@@ -1051,16 +1051,16 @@ discard block |
||
| 1051 | 1051 | * Texte converti |
| 1052 | 1052 | **/ |
| 1053 | 1053 | function supprimer_tags(?string $texte, $rempl = ''): string { |
| 1054 | - if ($texte === null || !strlen($texte)) { |
|
| 1055 | - return ''; |
|
| 1056 | - } |
|
| 1057 | - $texte = preg_replace(',<(!--|\w|/|!\[endif|!\[if)[^>]*>,US', $rempl, $texte); |
|
| 1058 | - // ne pas oublier un < final non ferme car coupe |
|
| 1059 | - $texte = preg_replace(',<(!--|\w|/).*$,US', $rempl, $texte); |
|
| 1060 | - // mais qui peut aussi etre un simple signe plus petit que |
|
| 1061 | - $texte = str_replace('<', '<', $texte); |
|
| 1054 | + if ($texte === null || !strlen($texte)) { |
|
| 1055 | + return ''; |
|
| 1056 | + } |
|
| 1057 | + $texte = preg_replace(',<(!--|\w|/|!\[endif|!\[if)[^>]*>,US', $rempl, $texte); |
|
| 1058 | + // ne pas oublier un < final non ferme car coupe |
|
| 1059 | + $texte = preg_replace(',<(!--|\w|/).*$,US', $rempl, $texte); |
|
| 1060 | + // mais qui peut aussi etre un simple signe plus petit que |
|
| 1061 | + $texte = str_replace('<', '<', $texte); |
|
| 1062 | 1062 | |
| 1063 | - return $texte; |
|
| 1063 | + return $texte; |
|
| 1064 | 1064 | } |
| 1065 | 1065 | |
| 1066 | 1066 | /** |
@@ -1083,9 +1083,9 @@ discard block |
||
| 1083 | 1083 | * Texte converti |
| 1084 | 1084 | **/ |
| 1085 | 1085 | function echapper_tags($texte, $rempl = '') { |
| 1086 | - $texte = preg_replace('/<([^>]*)>/', "<\\1>", $texte); |
|
| 1086 | + $texte = preg_replace('/<([^>]*)>/', "<\\1>", $texte); |
|
| 1087 | 1087 | |
| 1088 | - return $texte; |
|
| 1088 | + return $texte; |
|
| 1089 | 1089 | } |
| 1090 | 1090 | |
| 1091 | 1091 | /** |
@@ -1106,18 +1106,18 @@ discard block |
||
| 1106 | 1106 | * Texte converti |
| 1107 | 1107 | **/ |
| 1108 | 1108 | function textebrut($texte) { |
| 1109 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 1110 | - $texte = preg_replace('/\s+/S' . $u, ' ', $texte); |
|
| 1111 | - $texte = preg_replace('/<(p|br)( [^>]*)?' . '>/iS', "\n\n", $texte); |
|
| 1112 | - $texte = preg_replace("/^\n+/", '', $texte); |
|
| 1113 | - $texte = preg_replace("/\n+$/", '', $texte); |
|
| 1114 | - $texte = preg_replace("/\n +/", "\n", $texte); |
|
| 1115 | - $texte = supprimer_tags($texte); |
|
| 1116 | - $texte = preg_replace('/( | )+/S', ' ', $texte); |
|
| 1117 | - // nettoyer l'apostrophe curly qui pose probleme a certains rss-readers, lecteurs de mail... |
|
| 1118 | - $texte = str_replace('’', "'", $texte); |
|
| 1109 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 1110 | + $texte = preg_replace('/\s+/S' . $u, ' ', $texte); |
|
| 1111 | + $texte = preg_replace('/<(p|br)( [^>]*)?' . '>/iS', "\n\n", $texte); |
|
| 1112 | + $texte = preg_replace("/^\n+/", '', $texte); |
|
| 1113 | + $texte = preg_replace("/\n+$/", '', $texte); |
|
| 1114 | + $texte = preg_replace("/\n +/", "\n", $texte); |
|
| 1115 | + $texte = supprimer_tags($texte); |
|
| 1116 | + $texte = preg_replace('/( | )+/S', ' ', $texte); |
|
| 1117 | + // nettoyer l'apostrophe curly qui pose probleme a certains rss-readers, lecteurs de mail... |
|
| 1118 | + $texte = str_replace('’', "'", $texte); |
|
| 1119 | 1119 | |
| 1120 | - return $texte; |
|
| 1120 | + return $texte; |
|
| 1121 | 1121 | } |
| 1122 | 1122 | |
| 1123 | 1123 | |
@@ -1133,23 +1133,23 @@ discard block |
||
| 1133 | 1133 | * Texte avec liens ouvrants |
| 1134 | 1134 | **/ |
| 1135 | 1135 | function liens_ouvrants($texte) { |
| 1136 | - if ( |
|
| 1137 | - preg_match_all( |
|
| 1138 | - ",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS", |
|
| 1139 | - $texte, |
|
| 1140 | - $liens, |
|
| 1141 | - PREG_PATTERN_ORDER |
|
| 1142 | - ) |
|
| 1143 | - ) { |
|
| 1144 | - foreach ($liens[0] as $a) { |
|
| 1145 | - $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel'); |
|
| 1146 | - $ablank = inserer_attribut($a, 'rel', $rel); |
|
| 1147 | - $ablank = inserer_attribut($ablank, 'target', '_blank'); |
|
| 1148 | - $texte = str_replace($a, $ablank, $texte); |
|
| 1149 | - } |
|
| 1150 | - } |
|
| 1151 | - |
|
| 1152 | - return $texte; |
|
| 1136 | + if ( |
|
| 1137 | + preg_match_all( |
|
| 1138 | + ",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS", |
|
| 1139 | + $texte, |
|
| 1140 | + $liens, |
|
| 1141 | + PREG_PATTERN_ORDER |
|
| 1142 | + ) |
|
| 1143 | + ) { |
|
| 1144 | + foreach ($liens[0] as $a) { |
|
| 1145 | + $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel'); |
|
| 1146 | + $ablank = inserer_attribut($a, 'rel', $rel); |
|
| 1147 | + $ablank = inserer_attribut($ablank, 'target', '_blank'); |
|
| 1148 | + $texte = str_replace($a, $ablank, $texte); |
|
| 1149 | + } |
|
| 1150 | + } |
|
| 1151 | + |
|
| 1152 | + return $texte; |
|
| 1153 | 1153 | } |
| 1154 | 1154 | |
| 1155 | 1155 | /** |
@@ -1159,22 +1159,22 @@ discard block |
||
| 1159 | 1159 | * @return string |
| 1160 | 1160 | */ |
| 1161 | 1161 | function liens_nofollow($texte) { |
| 1162 | - if (stripos($texte, '<a') === false) { |
|
| 1163 | - return $texte; |
|
| 1164 | - } |
|
| 1162 | + if (stripos($texte, '<a') === false) { |
|
| 1163 | + return $texte; |
|
| 1164 | + } |
|
| 1165 | 1165 | |
| 1166 | - if (preg_match_all(",<a\b[^>]*>,UimsS", $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 1167 | - foreach ($regs[0] as $a) { |
|
| 1168 | - $rel = extraire_attribut($a, 'rel'); |
|
| 1169 | - if (strpos($rel, 'nofollow') === false) { |
|
| 1170 | - $rel = 'nofollow' . ($rel ? " $rel" : ''); |
|
| 1171 | - $anofollow = inserer_attribut($a, 'rel', $rel); |
|
| 1172 | - $texte = str_replace($a, $anofollow, $texte); |
|
| 1173 | - } |
|
| 1174 | - } |
|
| 1175 | - } |
|
| 1166 | + if (preg_match_all(",<a\b[^>]*>,UimsS", $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 1167 | + foreach ($regs[0] as $a) { |
|
| 1168 | + $rel = extraire_attribut($a, 'rel'); |
|
| 1169 | + if (strpos($rel, 'nofollow') === false) { |
|
| 1170 | + $rel = 'nofollow' . ($rel ? " $rel" : ''); |
|
| 1171 | + $anofollow = inserer_attribut($a, 'rel', $rel); |
|
| 1172 | + $texte = str_replace($a, $anofollow, $texte); |
|
| 1173 | + } |
|
| 1174 | + } |
|
| 1175 | + } |
|
| 1176 | 1176 | |
| 1177 | - return $texte; |
|
| 1177 | + return $texte; |
|
| 1178 | 1178 | } |
| 1179 | 1179 | |
| 1180 | 1180 | /** |
@@ -1193,12 +1193,12 @@ discard block |
||
| 1193 | 1193 | * Texte sans paraghaphes |
| 1194 | 1194 | **/ |
| 1195 | 1195 | function PtoBR($texte) { |
| 1196 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 1197 | - $texte = preg_replace('@</p>@iS', "\n", $texte); |
|
| 1198 | - $texte = preg_replace("@<p\b.*>@UiS", '<br />', $texte); |
|
| 1199 | - $texte = preg_replace('@^\s*<br />@S' . $u, '', $texte); |
|
| 1196 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 1197 | + $texte = preg_replace('@</p>@iS', "\n", $texte); |
|
| 1198 | + $texte = preg_replace("@<p\b.*>@UiS", '<br />', $texte); |
|
| 1199 | + $texte = preg_replace('@^\s*<br />@S' . $u, '', $texte); |
|
| 1200 | 1200 | |
| 1201 | - return $texte; |
|
| 1201 | + return $texte; |
|
| 1202 | 1202 | } |
| 1203 | 1203 | |
| 1204 | 1204 | |
@@ -1223,14 +1223,14 @@ discard block |
||
| 1223 | 1223 | * @return string Texte encadré du style CSS |
| 1224 | 1224 | */ |
| 1225 | 1225 | function lignes_longues($texte) { |
| 1226 | - if (!strlen(trim($texte))) { |
|
| 1227 | - return $texte; |
|
| 1228 | - } |
|
| 1229 | - include_spip('inc/texte'); |
|
| 1230 | - $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ? |
|
| 1231 | - 'div' : 'span'; |
|
| 1226 | + if (!strlen(trim($texte))) { |
|
| 1227 | + return $texte; |
|
| 1228 | + } |
|
| 1229 | + include_spip('inc/texte'); |
|
| 1230 | + $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ? |
|
| 1231 | + 'div' : 'span'; |
|
| 1232 | 1232 | |
| 1233 | - return "<$tag style='word-wrap:break-word;'>$texte</$tag>"; |
|
| 1233 | + return "<$tag style='word-wrap:break-word;'>$texte</$tag>"; |
|
| 1234 | 1234 | } |
| 1235 | 1235 | |
| 1236 | 1236 | /** |
@@ -1249,30 +1249,30 @@ discard block |
||
| 1249 | 1249 | * @return string Texte en majuscule |
| 1250 | 1250 | */ |
| 1251 | 1251 | function majuscules($texte) { |
| 1252 | - if (!strlen($texte)) { |
|
| 1253 | - return ''; |
|
| 1254 | - } |
|
| 1252 | + if (!strlen($texte)) { |
|
| 1253 | + return ''; |
|
| 1254 | + } |
|
| 1255 | 1255 | |
| 1256 | - // Cas du turc |
|
| 1257 | - if ($GLOBALS['spip_lang'] == 'tr') { |
|
| 1258 | - # remplacer hors des tags et des entites |
|
| 1259 | - if (preg_match_all(',<[^<>]+>|&[^;]+;,S', $texte, $regs, PREG_SET_ORDER)) { |
|
| 1260 | - foreach ($regs as $n => $match) { |
|
| 1261 | - $texte = str_replace($match[0], "@@SPIP_TURC$n@@", $texte); |
|
| 1262 | - } |
|
| 1263 | - } |
|
| 1256 | + // Cas du turc |
|
| 1257 | + if ($GLOBALS['spip_lang'] == 'tr') { |
|
| 1258 | + # remplacer hors des tags et des entites |
|
| 1259 | + if (preg_match_all(',<[^<>]+>|&[^;]+;,S', $texte, $regs, PREG_SET_ORDER)) { |
|
| 1260 | + foreach ($regs as $n => $match) { |
|
| 1261 | + $texte = str_replace($match[0], "@@SPIP_TURC$n@@", $texte); |
|
| 1262 | + } |
|
| 1263 | + } |
|
| 1264 | 1264 | |
| 1265 | - $texte = str_replace('i', 'İ', $texte); |
|
| 1265 | + $texte = str_replace('i', 'İ', $texte); |
|
| 1266 | 1266 | |
| 1267 | - if ($regs) { |
|
| 1268 | - foreach ($regs as $n => $match) { |
|
| 1269 | - $texte = str_replace("@@SPIP_TURC$n@@", $match[0], $texte); |
|
| 1270 | - } |
|
| 1271 | - } |
|
| 1272 | - } |
|
| 1267 | + if ($regs) { |
|
| 1268 | + foreach ($regs as $n => $match) { |
|
| 1269 | + $texte = str_replace("@@SPIP_TURC$n@@", $match[0], $texte); |
|
| 1270 | + } |
|
| 1271 | + } |
|
| 1272 | + } |
|
| 1273 | 1273 | |
| 1274 | - // Cas general |
|
| 1275 | - return "<span style='text-transform: uppercase;'>$texte</span>"; |
|
| 1274 | + // Cas general |
|
| 1275 | + return "<span style='text-transform: uppercase;'>$texte</span>"; |
|
| 1276 | 1276 | } |
| 1277 | 1277 | |
| 1278 | 1278 | /** |
@@ -1290,29 +1290,29 @@ discard block |
||
| 1290 | 1290 | * @return string |
| 1291 | 1291 | **/ |
| 1292 | 1292 | function taille_en_octets($taille) { |
| 1293 | - if (!defined('_KILOBYTE')) { |
|
| 1294 | - /** |
|
| 1295 | - * Définit le nombre d'octets dans un Kilobyte |
|
| 1296 | - * |
|
| 1297 | - * @var int |
|
| 1298 | - **/ |
|
| 1299 | - define('_KILOBYTE', 1024); |
|
| 1300 | - } |
|
| 1293 | + if (!defined('_KILOBYTE')) { |
|
| 1294 | + /** |
|
| 1295 | + * Définit le nombre d'octets dans un Kilobyte |
|
| 1296 | + * |
|
| 1297 | + * @var int |
|
| 1298 | + **/ |
|
| 1299 | + define('_KILOBYTE', 1024); |
|
| 1300 | + } |
|
| 1301 | 1301 | |
| 1302 | - if ($taille < 1) { |
|
| 1303 | - return ''; |
|
| 1304 | - } |
|
| 1305 | - if ($taille < _KILOBYTE) { |
|
| 1306 | - $taille = _T('taille_octets', ['taille' => $taille]); |
|
| 1307 | - } elseif ($taille < _KILOBYTE * _KILOBYTE) { |
|
| 1308 | - $taille = _T('taille_ko', ['taille' => round($taille / _KILOBYTE, 1)]); |
|
| 1309 | - } elseif ($taille < _KILOBYTE * _KILOBYTE * _KILOBYTE) { |
|
| 1310 | - $taille = _T('taille_mo', ['taille' => round($taille / _KILOBYTE / _KILOBYTE, 1)]); |
|
| 1311 | - } else { |
|
| 1312 | - $taille = _T('taille_go', ['taille' => round($taille / _KILOBYTE / _KILOBYTE / _KILOBYTE, 2)]); |
|
| 1313 | - } |
|
| 1302 | + if ($taille < 1) { |
|
| 1303 | + return ''; |
|
| 1304 | + } |
|
| 1305 | + if ($taille < _KILOBYTE) { |
|
| 1306 | + $taille = _T('taille_octets', ['taille' => $taille]); |
|
| 1307 | + } elseif ($taille < _KILOBYTE * _KILOBYTE) { |
|
| 1308 | + $taille = _T('taille_ko', ['taille' => round($taille / _KILOBYTE, 1)]); |
|
| 1309 | + } elseif ($taille < _KILOBYTE * _KILOBYTE * _KILOBYTE) { |
|
| 1310 | + $taille = _T('taille_mo', ['taille' => round($taille / _KILOBYTE / _KILOBYTE, 1)]); |
|
| 1311 | + } else { |
|
| 1312 | + $taille = _T('taille_go', ['taille' => round($taille / _KILOBYTE / _KILOBYTE / _KILOBYTE, 2)]); |
|
| 1313 | + } |
|
| 1314 | 1314 | |
| 1315 | - return $taille; |
|
| 1315 | + return $taille; |
|
| 1316 | 1316 | } |
| 1317 | 1317 | |
| 1318 | 1318 | |
@@ -1334,21 +1334,21 @@ discard block |
||
| 1334 | 1334 | * Texte prêt pour être utilisé en attribut HTML |
| 1335 | 1335 | **/ |
| 1336 | 1336 | function attribut_html(?string $texte, $textebrut = true): string { |
| 1337 | - if ($texte === null) { |
|
| 1338 | - return ''; |
|
| 1339 | - } |
|
| 1340 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 1341 | - if ($textebrut) { |
|
| 1342 | - $texte = preg_replace([",\n,", ',\s(?=\s),msS' . $u], [' ', ''], textebrut($texte)); |
|
| 1343 | - } |
|
| 1344 | - $texte = texte_backend($texte); |
|
| 1345 | - $texte = str_replace(["'", '"'], [''', '"'], $texte); |
|
| 1337 | + if ($texte === null) { |
|
| 1338 | + return ''; |
|
| 1339 | + } |
|
| 1340 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 1341 | + if ($textebrut) { |
|
| 1342 | + $texte = preg_replace([",\n,", ',\s(?=\s),msS' . $u], [' ', ''], textebrut($texte)); |
|
| 1343 | + } |
|
| 1344 | + $texte = texte_backend($texte); |
|
| 1345 | + $texte = str_replace(["'", '"'], [''', '"'], $texte); |
|
| 1346 | 1346 | |
| 1347 | - return preg_replace( |
|
| 1348 | - ['/&(amp;|#38;)/', '/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,5};)/'], |
|
| 1349 | - ['&', '&'], |
|
| 1350 | - $texte |
|
| 1351 | - ); |
|
| 1347 | + return preg_replace( |
|
| 1348 | + ['/&(amp;|#38;)/', '/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,5};)/'], |
|
| 1349 | + ['&', '&'], |
|
| 1350 | + $texte |
|
| 1351 | + ); |
|
| 1352 | 1352 | } |
| 1353 | 1353 | |
| 1354 | 1354 | |
@@ -1368,15 +1368,15 @@ discard block |
||
| 1368 | 1368 | * URL ou chaîne vide |
| 1369 | 1369 | **/ |
| 1370 | 1370 | function vider_url(?string $url, $entites = true): string { |
| 1371 | - if ($url === null) { |
|
| 1372 | - return ''; |
|
| 1373 | - } |
|
| 1374 | - # un message pour abs_url |
|
| 1375 | - $GLOBALS['mode_abs_url'] = 'url'; |
|
| 1376 | - $url = trim($url); |
|
| 1377 | - $r = ',^(?:' . _PROTOCOLES_STD . '):?/?/?$,iS'; |
|
| 1371 | + if ($url === null) { |
|
| 1372 | + return ''; |
|
| 1373 | + } |
|
| 1374 | + # un message pour abs_url |
|
| 1375 | + $GLOBALS['mode_abs_url'] = 'url'; |
|
| 1376 | + $url = trim($url); |
|
| 1377 | + $r = ',^(?:' . _PROTOCOLES_STD . '):?/?/?$,iS'; |
|
| 1378 | 1378 | |
| 1379 | - return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url); |
|
| 1379 | + return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url); |
|
| 1380 | 1380 | } |
| 1381 | 1381 | |
| 1382 | 1382 | |
@@ -1391,10 +1391,10 @@ discard block |
||
| 1391 | 1391 | * @return string Adresse email maquillée |
| 1392 | 1392 | **/ |
| 1393 | 1393 | function antispam($texte) { |
| 1394 | - include_spip('inc/acces'); |
|
| 1395 | - $masque = creer_pass_aleatoire(3); |
|
| 1394 | + include_spip('inc/acces'); |
|
| 1395 | + $masque = creer_pass_aleatoire(3); |
|
| 1396 | 1396 | |
| 1397 | - return preg_replace('/@/', " $masque ", $texte); |
|
| 1397 | + return preg_replace('/@/', " $masque ", $texte); |
|
| 1398 | 1398 | } |
| 1399 | 1399 | |
| 1400 | 1400 | /** |
@@ -1426,12 +1426,12 @@ discard block |
||
| 1426 | 1426 | * True si on a le droit d'accès, false sinon. |
| 1427 | 1427 | **/ |
| 1428 | 1428 | function securiser_acces($id_auteur, $cle, $dir, $op = '', $args = '') { |
| 1429 | - include_spip('inc/acces'); |
|
| 1430 | - if ($op) { |
|
| 1431 | - $dir .= " $op $args"; |
|
| 1432 | - } |
|
| 1429 | + include_spip('inc/acces'); |
|
| 1430 | + if ($op) { |
|
| 1431 | + $dir .= " $op $args"; |
|
| 1432 | + } |
|
| 1433 | 1433 | |
| 1434 | - return verifier_low_sec($id_auteur, $cle, $dir); |
|
| 1434 | + return verifier_low_sec($id_auteur, $cle, $dir); |
|
| 1435 | 1435 | } |
| 1436 | 1436 | |
| 1437 | 1437 | /** |
@@ -1456,13 +1456,13 @@ discard block |
||
| 1456 | 1456 | * Retourne $texte, sinon $sinon. |
| 1457 | 1457 | **/ |
| 1458 | 1458 | function sinon($texte, $sinon = '') { |
| 1459 | - if ($texte) { |
|
| 1460 | - return $texte; |
|
| 1461 | - } elseif (is_scalar($texte) and strlen($texte)) { |
|
| 1462 | - return $texte; |
|
| 1463 | - } else { |
|
| 1464 | - return $sinon; |
|
| 1465 | - } |
|
| 1459 | + if ($texte) { |
|
| 1460 | + return $texte; |
|
| 1461 | + } elseif (is_scalar($texte) and strlen($texte)) { |
|
| 1462 | + return $texte; |
|
| 1463 | + } else { |
|
| 1464 | + return $sinon; |
|
| 1465 | + } |
|
| 1466 | 1466 | } |
| 1467 | 1467 | |
| 1468 | 1468 | /** |
@@ -1486,7 +1486,7 @@ discard block |
||
| 1486 | 1486 | * @return mixed |
| 1487 | 1487 | **/ |
| 1488 | 1488 | function choixsivide($a, $vide, $pasvide) { |
| 1489 | - return $a ? $pasvide : $vide; |
|
| 1489 | + return $a ? $pasvide : $vide; |
|
| 1490 | 1490 | } |
| 1491 | 1491 | |
| 1492 | 1492 | /** |
@@ -1510,7 +1510,7 @@ discard block |
||
| 1510 | 1510 | * @return mixed |
| 1511 | 1511 | **/ |
| 1512 | 1512 | function choixsiegal($a1, $a2, $v, $f) { |
| 1513 | - return ($a1 == $a2) ? $v : $f; |
|
| 1513 | + return ($a1 == $a2) ? $v : $f; |
|
| 1514 | 1514 | } |
| 1515 | 1515 | |
| 1516 | 1516 | // |
@@ -1529,13 +1529,13 @@ discard block |
||
| 1529 | 1529 | * @return string |
| 1530 | 1530 | **/ |
| 1531 | 1531 | function filtrer_ical($texte) { |
| 1532 | - #include_spip('inc/charsets'); |
|
| 1533 | - $texte = html2unicode($texte); |
|
| 1534 | - $texte = unicode2charset(charset2unicode($texte, $GLOBALS['meta']['charset']), 'utf-8'); |
|
| 1535 | - $texte = preg_replace("/\n/", ' ', $texte); |
|
| 1536 | - $texte = preg_replace('/,/', '\,', $texte); |
|
| 1532 | + #include_spip('inc/charsets'); |
|
| 1533 | + $texte = html2unicode($texte); |
|
| 1534 | + $texte = unicode2charset(charset2unicode($texte, $GLOBALS['meta']['charset']), 'utf-8'); |
|
| 1535 | + $texte = preg_replace("/\n/", ' ', $texte); |
|
| 1536 | + $texte = preg_replace('/,/', '\,', $texte); |
|
| 1537 | 1537 | |
| 1538 | - return $texte; |
|
| 1538 | + return $texte; |
|
| 1539 | 1539 | } |
| 1540 | 1540 | |
| 1541 | 1541 | |
@@ -1560,54 +1560,54 @@ discard block |
||
| 1560 | 1560 | * @return string |
| 1561 | 1561 | **/ |
| 1562 | 1562 | function post_autobr($texte, $delim = "\n_ ") { |
| 1563 | - if (!function_exists('echappe_html')) { |
|
| 1564 | - include_spip('inc/texte_mini'); |
|
| 1565 | - } |
|
| 1566 | - $texte = str_replace("\r\n", "\r", $texte); |
|
| 1567 | - $texte = str_replace("\r", "\n", $texte); |
|
| 1568 | - |
|
| 1569 | - if (preg_match(",\n+$,", $texte, $fin)) { |
|
| 1570 | - $texte = substr($texte, 0, -strlen($fin = $fin[0])); |
|
| 1571 | - } else { |
|
| 1572 | - $fin = ''; |
|
| 1573 | - } |
|
| 1574 | - |
|
| 1575 | - $texte = echappe_html($texte, '', true); |
|
| 1576 | - |
|
| 1577 | - // echapper les modeles |
|
| 1578 | - if (strpos($texte, '<') !== false) { |
|
| 1579 | - include_spip('inc/lien'); |
|
| 1580 | - if (defined('_PREG_MODELE')) { |
|
| 1581 | - $preg_modeles = '@' . _PREG_MODELE . '@imsS'; |
|
| 1582 | - $texte = echappe_html($texte, '', true, $preg_modeles); |
|
| 1583 | - } |
|
| 1584 | - } |
|
| 1585 | - |
|
| 1586 | - $debut = ''; |
|
| 1587 | - $suite = $texte; |
|
| 1588 | - while ($t = strpos('-' . $suite, "\n", 1)) { |
|
| 1589 | - $debut .= substr($suite, 0, $t - 1); |
|
| 1590 | - $suite = substr($suite, $t); |
|
| 1591 | - $car = substr($suite, 0, 1); |
|
| 1592 | - if ( |
|
| 1593 | - ($car <> '-') and ($car <> '_') and ($car <> "\n") and ($car <> '|') and ($car <> '}') |
|
| 1594 | - and !preg_match(',^\s*(\n|</?(quote|div|dl|dt|dd)|$),S', ($suite)) |
|
| 1595 | - and !preg_match(',</?(quote|div|dl|dt|dd)> *$,iS', $debut) |
|
| 1596 | - ) { |
|
| 1597 | - $debut .= $delim; |
|
| 1598 | - } else { |
|
| 1599 | - $debut .= "\n"; |
|
| 1600 | - } |
|
| 1601 | - if (preg_match(",^\n+,", $suite, $regs)) { |
|
| 1602 | - $debut .= $regs[0]; |
|
| 1603 | - $suite = substr($suite, strlen($regs[0])); |
|
| 1604 | - } |
|
| 1605 | - } |
|
| 1606 | - $texte = $debut . $suite; |
|
| 1607 | - |
|
| 1608 | - $texte = echappe_retour($texte); |
|
| 1609 | - |
|
| 1610 | - return $texte . $fin; |
|
| 1563 | + if (!function_exists('echappe_html')) { |
|
| 1564 | + include_spip('inc/texte_mini'); |
|
| 1565 | + } |
|
| 1566 | + $texte = str_replace("\r\n", "\r", $texte); |
|
| 1567 | + $texte = str_replace("\r", "\n", $texte); |
|
| 1568 | + |
|
| 1569 | + if (preg_match(",\n+$,", $texte, $fin)) { |
|
| 1570 | + $texte = substr($texte, 0, -strlen($fin = $fin[0])); |
|
| 1571 | + } else { |
|
| 1572 | + $fin = ''; |
|
| 1573 | + } |
|
| 1574 | + |
|
| 1575 | + $texte = echappe_html($texte, '', true); |
|
| 1576 | + |
|
| 1577 | + // echapper les modeles |
|
| 1578 | + if (strpos($texte, '<') !== false) { |
|
| 1579 | + include_spip('inc/lien'); |
|
| 1580 | + if (defined('_PREG_MODELE')) { |
|
| 1581 | + $preg_modeles = '@' . _PREG_MODELE . '@imsS'; |
|
| 1582 | + $texte = echappe_html($texte, '', true, $preg_modeles); |
|
| 1583 | + } |
|
| 1584 | + } |
|
| 1585 | + |
|
| 1586 | + $debut = ''; |
|
| 1587 | + $suite = $texte; |
|
| 1588 | + while ($t = strpos('-' . $suite, "\n", 1)) { |
|
| 1589 | + $debut .= substr($suite, 0, $t - 1); |
|
| 1590 | + $suite = substr($suite, $t); |
|
| 1591 | + $car = substr($suite, 0, 1); |
|
| 1592 | + if ( |
|
| 1593 | + ($car <> '-') and ($car <> '_') and ($car <> "\n") and ($car <> '|') and ($car <> '}') |
|
| 1594 | + and !preg_match(',^\s*(\n|</?(quote|div|dl|dt|dd)|$),S', ($suite)) |
|
| 1595 | + and !preg_match(',</?(quote|div|dl|dt|dd)> *$,iS', $debut) |
|
| 1596 | + ) { |
|
| 1597 | + $debut .= $delim; |
|
| 1598 | + } else { |
|
| 1599 | + $debut .= "\n"; |
|
| 1600 | + } |
|
| 1601 | + if (preg_match(",^\n+,", $suite, $regs)) { |
|
| 1602 | + $debut .= $regs[0]; |
|
| 1603 | + $suite = substr($suite, strlen($regs[0])); |
|
| 1604 | + } |
|
| 1605 | + } |
|
| 1606 | + $texte = $debut . $suite; |
|
| 1607 | + |
|
| 1608 | + $texte = echappe_retour($texte); |
|
| 1609 | + |
|
| 1610 | + return $texte . $fin; |
|
| 1611 | 1611 | } |
| 1612 | 1612 | |
| 1613 | 1613 | |
@@ -1648,47 +1648,47 @@ discard block |
||
| 1648 | 1648 | * @return string |
| 1649 | 1649 | **/ |
| 1650 | 1650 | function extraire_idiome($letexte, $lang = null, $options = []) { |
| 1651 | - static $traduire = false; |
|
| 1652 | - if ( |
|
| 1653 | - $letexte |
|
| 1654 | - and preg_match_all(_EXTRAIRE_IDIOME, $letexte, $regs, PREG_SET_ORDER) |
|
| 1655 | - ) { |
|
| 1656 | - if (!$traduire) { |
|
| 1657 | - $traduire = charger_fonction('traduire', 'inc'); |
|
| 1658 | - include_spip('inc/lang'); |
|
| 1659 | - } |
|
| 1660 | - if (!$lang) { |
|
| 1661 | - $lang = $GLOBALS['spip_lang']; |
|
| 1662 | - } |
|
| 1663 | - // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1664 | - if (is_bool($options)) { |
|
| 1665 | - $options = ['echappe_span' => $options]; |
|
| 1666 | - } |
|
| 1667 | - if (!isset($options['echappe_span'])) { |
|
| 1668 | - $options = array_merge($options, ['echappe_span' => false]); |
|
| 1669 | - } |
|
| 1670 | - |
|
| 1671 | - foreach ($regs as $reg) { |
|
| 1672 | - $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2]; |
|
| 1673 | - $desc = $traduire($cle, $lang, true); |
|
| 1674 | - $l = $desc->langue; |
|
| 1675 | - // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte. |
|
| 1676 | - if (strlen($desc->texte)) { |
|
| 1677 | - $trad = code_echappement($desc->texte, 'idiome', false); |
|
| 1678 | - if ($l !== $lang) { |
|
| 1679 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1680 | - } |
|
| 1681 | - if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1682 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1683 | - } |
|
| 1684 | - if (!$options['echappe_span']) { |
|
| 1685 | - $trad = echappe_retour($trad, 'idiome'); |
|
| 1686 | - } |
|
| 1687 | - $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1688 | - } |
|
| 1689 | - } |
|
| 1690 | - } |
|
| 1691 | - return $letexte; |
|
| 1651 | + static $traduire = false; |
|
| 1652 | + if ( |
|
| 1653 | + $letexte |
|
| 1654 | + and preg_match_all(_EXTRAIRE_IDIOME, $letexte, $regs, PREG_SET_ORDER) |
|
| 1655 | + ) { |
|
| 1656 | + if (!$traduire) { |
|
| 1657 | + $traduire = charger_fonction('traduire', 'inc'); |
|
| 1658 | + include_spip('inc/lang'); |
|
| 1659 | + } |
|
| 1660 | + if (!$lang) { |
|
| 1661 | + $lang = $GLOBALS['spip_lang']; |
|
| 1662 | + } |
|
| 1663 | + // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1664 | + if (is_bool($options)) { |
|
| 1665 | + $options = ['echappe_span' => $options]; |
|
| 1666 | + } |
|
| 1667 | + if (!isset($options['echappe_span'])) { |
|
| 1668 | + $options = array_merge($options, ['echappe_span' => false]); |
|
| 1669 | + } |
|
| 1670 | + |
|
| 1671 | + foreach ($regs as $reg) { |
|
| 1672 | + $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2]; |
|
| 1673 | + $desc = $traduire($cle, $lang, true); |
|
| 1674 | + $l = $desc->langue; |
|
| 1675 | + // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte. |
|
| 1676 | + if (strlen($desc->texte)) { |
|
| 1677 | + $trad = code_echappement($desc->texte, 'idiome', false); |
|
| 1678 | + if ($l !== $lang) { |
|
| 1679 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1680 | + } |
|
| 1681 | + if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1682 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1683 | + } |
|
| 1684 | + if (!$options['echappe_span']) { |
|
| 1685 | + $trad = echappe_retour($trad, 'idiome'); |
|
| 1686 | + } |
|
| 1687 | + $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1688 | + } |
|
| 1689 | + } |
|
| 1690 | + } |
|
| 1691 | + return $letexte; |
|
| 1692 | 1692 | } |
| 1693 | 1693 | |
| 1694 | 1694 | /** |
@@ -1740,68 +1740,68 @@ discard block |
||
| 1740 | 1740 | **/ |
| 1741 | 1741 | function extraire_multi($letexte, $lang = null, $options = []) { |
| 1742 | 1742 | |
| 1743 | - if ( |
|
| 1744 | - $letexte |
|
| 1745 | - and preg_match_all(_EXTRAIRE_MULTI, $letexte, $regs, PREG_SET_ORDER) |
|
| 1746 | - ) { |
|
| 1747 | - if (!$lang) { |
|
| 1748 | - $lang = $GLOBALS['spip_lang']; |
|
| 1749 | - } |
|
| 1750 | - |
|
| 1751 | - // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1752 | - if (is_bool($options)) { |
|
| 1753 | - $options = ['echappe_span' => $options, 'lang_defaut' => _LANGUE_PAR_DEFAUT]; |
|
| 1754 | - } |
|
| 1755 | - if (!isset($options['echappe_span'])) { |
|
| 1756 | - $options = array_merge($options, ['echappe_span' => false]); |
|
| 1757 | - } |
|
| 1758 | - if (!isset($options['lang_defaut'])) { |
|
| 1759 | - $options = array_merge($options, ['lang_defaut' => _LANGUE_PAR_DEFAUT]); |
|
| 1760 | - } |
|
| 1761 | - |
|
| 1762 | - include_spip('inc/lang'); |
|
| 1763 | - foreach ($regs as $reg) { |
|
| 1764 | - // chercher la version de la langue courante |
|
| 1765 | - $trads = extraire_trads($reg[1]); |
|
| 1766 | - if ($l = approcher_langue($trads, $lang)) { |
|
| 1767 | - $trad = $trads[$l]; |
|
| 1768 | - } else { |
|
| 1769 | - if ($options['lang_defaut'] == 'aucune') { |
|
| 1770 | - $trad = ''; |
|
| 1771 | - } else { |
|
| 1772 | - // langue absente, prendre le fr ou une langue précisée (meme comportement que inc/traduire.php) |
|
| 1773 | - // ou la premiere dispo |
|
| 1774 | - // mais typographier le texte selon les regles de celle-ci |
|
| 1775 | - // Attention aux blocs multi sur plusieurs lignes |
|
| 1776 | - if (!$l = approcher_langue($trads, $options['lang_defaut'])) { |
|
| 1777 | - $l = key($trads); |
|
| 1778 | - } |
|
| 1779 | - $trad = $trads[$l]; |
|
| 1780 | - $typographie = charger_fonction(lang_typo($l), 'typographie'); |
|
| 1781 | - $trad = $typographie($trad); |
|
| 1782 | - // Tester si on echappe en span ou en div |
|
| 1783 | - // il ne faut pas echapper en div si propre produit un seul paragraphe |
|
| 1784 | - include_spip('inc/texte'); |
|
| 1785 | - $trad_propre = preg_replace(',(^<p[^>]*>|</p>$),Uims', '', propre($trad)); |
|
| 1786 | - $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1787 | - if ($mode === 'div') { |
|
| 1788 | - $trad = rtrim($trad) . "\n\n"; |
|
| 1789 | - } |
|
| 1790 | - $trad = code_echappement($trad, 'multi', false, $mode); |
|
| 1791 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1792 | - if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1793 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1794 | - } |
|
| 1795 | - if (!$options['echappe_span']) { |
|
| 1796 | - $trad = echappe_retour($trad, 'multi'); |
|
| 1797 | - } |
|
| 1798 | - } |
|
| 1799 | - } |
|
| 1800 | - $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1801 | - } |
|
| 1802 | - } |
|
| 1803 | - |
|
| 1804 | - return $letexte; |
|
| 1743 | + if ( |
|
| 1744 | + $letexte |
|
| 1745 | + and preg_match_all(_EXTRAIRE_MULTI, $letexte, $regs, PREG_SET_ORDER) |
|
| 1746 | + ) { |
|
| 1747 | + if (!$lang) { |
|
| 1748 | + $lang = $GLOBALS['spip_lang']; |
|
| 1749 | + } |
|
| 1750 | + |
|
| 1751 | + // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1752 | + if (is_bool($options)) { |
|
| 1753 | + $options = ['echappe_span' => $options, 'lang_defaut' => _LANGUE_PAR_DEFAUT]; |
|
| 1754 | + } |
|
| 1755 | + if (!isset($options['echappe_span'])) { |
|
| 1756 | + $options = array_merge($options, ['echappe_span' => false]); |
|
| 1757 | + } |
|
| 1758 | + if (!isset($options['lang_defaut'])) { |
|
| 1759 | + $options = array_merge($options, ['lang_defaut' => _LANGUE_PAR_DEFAUT]); |
|
| 1760 | + } |
|
| 1761 | + |
|
| 1762 | + include_spip('inc/lang'); |
|
| 1763 | + foreach ($regs as $reg) { |
|
| 1764 | + // chercher la version de la langue courante |
|
| 1765 | + $trads = extraire_trads($reg[1]); |
|
| 1766 | + if ($l = approcher_langue($trads, $lang)) { |
|
| 1767 | + $trad = $trads[$l]; |
|
| 1768 | + } else { |
|
| 1769 | + if ($options['lang_defaut'] == 'aucune') { |
|
| 1770 | + $trad = ''; |
|
| 1771 | + } else { |
|
| 1772 | + // langue absente, prendre le fr ou une langue précisée (meme comportement que inc/traduire.php) |
|
| 1773 | + // ou la premiere dispo |
|
| 1774 | + // mais typographier le texte selon les regles de celle-ci |
|
| 1775 | + // Attention aux blocs multi sur plusieurs lignes |
|
| 1776 | + if (!$l = approcher_langue($trads, $options['lang_defaut'])) { |
|
| 1777 | + $l = key($trads); |
|
| 1778 | + } |
|
| 1779 | + $trad = $trads[$l]; |
|
| 1780 | + $typographie = charger_fonction(lang_typo($l), 'typographie'); |
|
| 1781 | + $trad = $typographie($trad); |
|
| 1782 | + // Tester si on echappe en span ou en div |
|
| 1783 | + // il ne faut pas echapper en div si propre produit un seul paragraphe |
|
| 1784 | + include_spip('inc/texte'); |
|
| 1785 | + $trad_propre = preg_replace(',(^<p[^>]*>|</p>$),Uims', '', propre($trad)); |
|
| 1786 | + $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1787 | + if ($mode === 'div') { |
|
| 1788 | + $trad = rtrim($trad) . "\n\n"; |
|
| 1789 | + } |
|
| 1790 | + $trad = code_echappement($trad, 'multi', false, $mode); |
|
| 1791 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1792 | + if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1793 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1794 | + } |
|
| 1795 | + if (!$options['echappe_span']) { |
|
| 1796 | + $trad = echappe_retour($trad, 'multi'); |
|
| 1797 | + } |
|
| 1798 | + } |
|
| 1799 | + } |
|
| 1800 | + $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1801 | + } |
|
| 1802 | + } |
|
| 1803 | + |
|
| 1804 | + return $letexte; |
|
| 1805 | 1805 | } |
| 1806 | 1806 | |
| 1807 | 1807 | /** |
@@ -1817,21 +1817,21 @@ discard block |
||
| 1817 | 1817 | * Peut retourner un code de langue vide, lorsqu'un texte par défaut est indiqué. |
| 1818 | 1818 | **/ |
| 1819 | 1819 | function extraire_trads($bloc) { |
| 1820 | - $trads = []; |
|
| 1821 | - $lang = ''; |
|
| 1820 | + $trads = []; |
|
| 1821 | + $lang = ''; |
|
| 1822 | 1822 | // ce reg fait planter l'analyse multi s'il y a de l'{italique} dans le champ |
| 1823 | 1823 | // while (preg_match("/^(.*?)[{\[]([a-z_]+)[}\]]/siS", $bloc, $regs)) { |
| 1824 | - while (preg_match('/^(.*?)[\[]([a-z_]+)[\]]/siS', $bloc, $regs)) { |
|
| 1825 | - $texte = trim($regs[1]); |
|
| 1826 | - if ($texte or $lang) { |
|
| 1827 | - $trads[$lang] = $texte; |
|
| 1828 | - } |
|
| 1829 | - $bloc = substr($bloc, strlen($regs[0])); |
|
| 1830 | - $lang = $regs[2]; |
|
| 1831 | - } |
|
| 1832 | - $trads[$lang] = $bloc; |
|
| 1824 | + while (preg_match('/^(.*?)[\[]([a-z_]+)[\]]/siS', $bloc, $regs)) { |
|
| 1825 | + $texte = trim($regs[1]); |
|
| 1826 | + if ($texte or $lang) { |
|
| 1827 | + $trads[$lang] = $texte; |
|
| 1828 | + } |
|
| 1829 | + $bloc = substr($bloc, strlen($regs[0])); |
|
| 1830 | + $lang = $regs[2]; |
|
| 1831 | + } |
|
| 1832 | + $trads[$lang] = $bloc; |
|
| 1833 | 1833 | |
| 1834 | - return $trads; |
|
| 1834 | + return $trads; |
|
| 1835 | 1835 | } |
| 1836 | 1836 | |
| 1837 | 1837 | |
@@ -1842,7 +1842,7 @@ discard block |
||
| 1842 | 1842 | * @return string L'initiale en majuscule |
| 1843 | 1843 | */ |
| 1844 | 1844 | function filtre_initiale($nom) { |
| 1845 | - return spip_substr(trim(strtoupper(extraire_multi($nom))), 0, 1); |
|
| 1845 | + return spip_substr(trim(strtoupper(extraire_multi($nom))), 0, 1); |
|
| 1846 | 1846 | } |
| 1847 | 1847 | |
| 1848 | 1848 | |
@@ -1887,33 +1887,33 @@ discard block |
||
| 1887 | 1887 | * - null (interne) : si on empile |
| 1888 | 1888 | **/ |
| 1889 | 1889 | function unique($donnee, $famille = '', $cpt = false) { |
| 1890 | - static $mem = []; |
|
| 1891 | - // permettre de vider la pile et de la restaurer |
|
| 1892 | - // pour le calcul de introduction... |
|
| 1893 | - if ($famille == '_spip_raz_') { |
|
| 1894 | - $tmp = $mem; |
|
| 1895 | - $mem = []; |
|
| 1896 | - |
|
| 1897 | - return $tmp; |
|
| 1898 | - } elseif ($famille == '_spip_set_') { |
|
| 1899 | - $mem = $donnee; |
|
| 1900 | - |
|
| 1901 | - return; |
|
| 1902 | - } |
|
| 1903 | - // eviter une notice |
|
| 1904 | - if (!isset($mem[$famille])) { |
|
| 1905 | - $mem[$famille] = []; |
|
| 1906 | - } |
|
| 1907 | - if ($cpt) { |
|
| 1908 | - return is_countable($mem[$famille]) ? count($mem[$famille]) : 0; |
|
| 1909 | - } |
|
| 1910 | - // eviter une notice |
|
| 1911 | - if (!isset($mem[$famille][$donnee])) { |
|
| 1912 | - $mem[$famille][$donnee] = 0; |
|
| 1913 | - } |
|
| 1914 | - if (!($mem[$famille][$donnee]++)) { |
|
| 1915 | - return $donnee; |
|
| 1916 | - } |
|
| 1890 | + static $mem = []; |
|
| 1891 | + // permettre de vider la pile et de la restaurer |
|
| 1892 | + // pour le calcul de introduction... |
|
| 1893 | + if ($famille == '_spip_raz_') { |
|
| 1894 | + $tmp = $mem; |
|
| 1895 | + $mem = []; |
|
| 1896 | + |
|
| 1897 | + return $tmp; |
|
| 1898 | + } elseif ($famille == '_spip_set_') { |
|
| 1899 | + $mem = $donnee; |
|
| 1900 | + |
|
| 1901 | + return; |
|
| 1902 | + } |
|
| 1903 | + // eviter une notice |
|
| 1904 | + if (!isset($mem[$famille])) { |
|
| 1905 | + $mem[$famille] = []; |
|
| 1906 | + } |
|
| 1907 | + if ($cpt) { |
|
| 1908 | + return is_countable($mem[$famille]) ? count($mem[$famille]) : 0; |
|
| 1909 | + } |
|
| 1910 | + // eviter une notice |
|
| 1911 | + if (!isset($mem[$famille][$donnee])) { |
|
| 1912 | + $mem[$famille][$donnee] = 0; |
|
| 1913 | + } |
|
| 1914 | + if (!($mem[$famille][$donnee]++)) { |
|
| 1915 | + return $donnee; |
|
| 1916 | + } |
|
| 1917 | 1917 | } |
| 1918 | 1918 | |
| 1919 | 1919 | |
@@ -1943,16 +1943,16 @@ discard block |
||
| 1943 | 1943 | * Une des valeurs en fonction du compteur. |
| 1944 | 1944 | **/ |
| 1945 | 1945 | function alterner($i, ...$args) { |
| 1946 | - // recuperer les arguments (attention fonctions un peu space) |
|
| 1947 | - $num = count($args); |
|
| 1946 | + // recuperer les arguments (attention fonctions un peu space) |
|
| 1947 | + $num = count($args); |
|
| 1948 | 1948 | |
| 1949 | - if ($num === 1 && is_array($args[0])) { |
|
| 1950 | - $args = $args[0]; |
|
| 1951 | - $num = count($args); |
|
| 1952 | - } |
|
| 1949 | + if ($num === 1 && is_array($args[0])) { |
|
| 1950 | + $args = $args[0]; |
|
| 1951 | + $num = count($args); |
|
| 1952 | + } |
|
| 1953 | 1953 | |
| 1954 | - // renvoyer le i-ieme argument, modulo le nombre d'arguments |
|
| 1955 | - return $args[(intval($i) - 1) % $num]; |
|
| 1954 | + // renvoyer le i-ieme argument, modulo le nombre d'arguments |
|
| 1955 | + return $args[(intval($i) - 1) % $num]; |
|
| 1956 | 1956 | } |
| 1957 | 1957 | |
| 1958 | 1958 | |
@@ -1978,51 +1978,51 @@ discard block |
||
| 1978 | 1978 | * - null lorsque l’attribut n’existe pas. |
| 1979 | 1979 | **/ |
| 1980 | 1980 | function extraire_attribut($balise, $attribut, $complet = false) { |
| 1981 | - if (is_array($balise)) { |
|
| 1982 | - array_walk( |
|
| 1983 | - $balise, |
|
| 1984 | - function (&$a, $key, $t) { |
|
| 1985 | - $a = extraire_attribut($a, $t); |
|
| 1986 | - }, |
|
| 1987 | - $attribut |
|
| 1988 | - ); |
|
| 1989 | - |
|
| 1990 | - return $balise; |
|
| 1991 | - } |
|
| 1992 | - if ( |
|
| 1993 | - $balise |
|
| 1994 | - && preg_match( |
|
| 1995 | - ',(^.*?<(?:(?>\s*)(?>[\w:.-]+)(?>(?:=(?:"[^"]*"|\'[^\']*\'|[^\'"]\S*))?))*?)(\s+' |
|
| 1996 | - . $attribut |
|
| 1997 | - . '(?:=\s*("[^"]*"|\'[^\']*\'|[^\'"]\S*))?)()((?:[\s/][^>]*)?>.*),isS', |
|
| 1998 | - $balise, |
|
| 1999 | - $r |
|
| 2000 | - ) |
|
| 2001 | - ) { |
|
| 2002 | - if (isset($r[3][0]) and ($r[3][0] == '"' || $r[3][0] == "'")) { |
|
| 2003 | - $r[4] = substr($r[3], 1, -1); |
|
| 2004 | - $r[3] = $r[3][0]; |
|
| 2005 | - } elseif ($r[3] !== '') { |
|
| 2006 | - $r[4] = $r[3]; |
|
| 2007 | - $r[3] = ''; |
|
| 2008 | - } else { |
|
| 2009 | - $r[4] = trim($r[2]); |
|
| 2010 | - } |
|
| 2011 | - $att = $r[4]; |
|
| 2012 | - if (strpos($att, '&#') !== false) { |
|
| 2013 | - $att = str_replace([''', ''', '"', '"'], ["'", "'", '"', '"'], $att); |
|
| 2014 | - } |
|
| 2015 | - $att = filtrer_entites($att); |
|
| 2016 | - } else { |
|
| 2017 | - $att = null; |
|
| 2018 | - $r = []; |
|
| 2019 | - } |
|
| 2020 | - |
|
| 2021 | - if ($complet) { |
|
| 2022 | - return [$att, $r]; |
|
| 2023 | - } else { |
|
| 2024 | - return $att; |
|
| 2025 | - } |
|
| 1981 | + if (is_array($balise)) { |
|
| 1982 | + array_walk( |
|
| 1983 | + $balise, |
|
| 1984 | + function (&$a, $key, $t) { |
|
| 1985 | + $a = extraire_attribut($a, $t); |
|
| 1986 | + }, |
|
| 1987 | + $attribut |
|
| 1988 | + ); |
|
| 1989 | + |
|
| 1990 | + return $balise; |
|
| 1991 | + } |
|
| 1992 | + if ( |
|
| 1993 | + $balise |
|
| 1994 | + && preg_match( |
|
| 1995 | + ',(^.*?<(?:(?>\s*)(?>[\w:.-]+)(?>(?:=(?:"[^"]*"|\'[^\']*\'|[^\'"]\S*))?))*?)(\s+' |
|
| 1996 | + . $attribut |
|
| 1997 | + . '(?:=\s*("[^"]*"|\'[^\']*\'|[^\'"]\S*))?)()((?:[\s/][^>]*)?>.*),isS', |
|
| 1998 | + $balise, |
|
| 1999 | + $r |
|
| 2000 | + ) |
|
| 2001 | + ) { |
|
| 2002 | + if (isset($r[3][0]) and ($r[3][0] == '"' || $r[3][0] == "'")) { |
|
| 2003 | + $r[4] = substr($r[3], 1, -1); |
|
| 2004 | + $r[3] = $r[3][0]; |
|
| 2005 | + } elseif ($r[3] !== '') { |
|
| 2006 | + $r[4] = $r[3]; |
|
| 2007 | + $r[3] = ''; |
|
| 2008 | + } else { |
|
| 2009 | + $r[4] = trim($r[2]); |
|
| 2010 | + } |
|
| 2011 | + $att = $r[4]; |
|
| 2012 | + if (strpos($att, '&#') !== false) { |
|
| 2013 | + $att = str_replace([''', ''', '"', '"'], ["'", "'", '"', '"'], $att); |
|
| 2014 | + } |
|
| 2015 | + $att = filtrer_entites($att); |
|
| 2016 | + } else { |
|
| 2017 | + $att = null; |
|
| 2018 | + $r = []; |
|
| 2019 | + } |
|
| 2020 | + |
|
| 2021 | + if ($complet) { |
|
| 2022 | + return [$att, $r]; |
|
| 2023 | + } else { |
|
| 2024 | + return $att; |
|
| 2025 | + } |
|
| 2026 | 2026 | } |
| 2027 | 2027 | |
| 2028 | 2028 | /** |
@@ -2054,37 +2054,37 @@ discard block |
||
| 2054 | 2054 | * Code html modifié |
| 2055 | 2055 | **/ |
| 2056 | 2056 | function inserer_attribut(string $balise, string $attribut, string $val, bool $proteger = true, bool $vider = false): string { |
| 2057 | - // preparer l'attribut |
|
| 2058 | - // supprimer les etc mais pas les balises html |
|
| 2059 | - // qui ont un sens dans un attribut value d'un input |
|
| 2060 | - if ($proteger) { |
|
| 2061 | - $val = attribut_html($val, false); |
|
| 2062 | - } |
|
| 2063 | - |
|
| 2064 | - // echapper les ' pour eviter tout bug |
|
| 2065 | - $val = str_replace("'", ''', $val); |
|
| 2066 | - if ($vider and strlen($val) === 0) { |
|
| 2067 | - $insert = ''; |
|
| 2068 | - } else { |
|
| 2069 | - $insert = " $attribut='$val'"; |
|
| 2070 | - } |
|
| 2071 | - |
|
| 2072 | - [$old, $r] = extraire_attribut($balise, $attribut, true); |
|
| 2073 | - |
|
| 2074 | - if ($old !== null) { |
|
| 2075 | - // Remplacer l'ancien attribut du meme nom |
|
| 2076 | - $balise = $r[1] . $insert . $r[5]; |
|
| 2077 | - } else { |
|
| 2078 | - // preferer une balise " />" (comme <img />) |
|
| 2079 | - if (preg_match(',/>,', $balise)) { |
|
| 2080 | - $balise = preg_replace(',\s?/>,S', $insert . ' />', $balise, 1); |
|
| 2081 | - } // sinon une balise <a ...> ... </a> |
|
| 2082 | - else { |
|
| 2083 | - $balise = preg_replace(',\s?>,S', $insert . '>', $balise, 1); |
|
| 2084 | - } |
|
| 2085 | - } |
|
| 2086 | - |
|
| 2087 | - return $balise; |
|
| 2057 | + // preparer l'attribut |
|
| 2058 | + // supprimer les etc mais pas les balises html |
|
| 2059 | + // qui ont un sens dans un attribut value d'un input |
|
| 2060 | + if ($proteger) { |
|
| 2061 | + $val = attribut_html($val, false); |
|
| 2062 | + } |
|
| 2063 | + |
|
| 2064 | + // echapper les ' pour eviter tout bug |
|
| 2065 | + $val = str_replace("'", ''', $val); |
|
| 2066 | + if ($vider and strlen($val) === 0) { |
|
| 2067 | + $insert = ''; |
|
| 2068 | + } else { |
|
| 2069 | + $insert = " $attribut='$val'"; |
|
| 2070 | + } |
|
| 2071 | + |
|
| 2072 | + [$old, $r] = extraire_attribut($balise, $attribut, true); |
|
| 2073 | + |
|
| 2074 | + if ($old !== null) { |
|
| 2075 | + // Remplacer l'ancien attribut du meme nom |
|
| 2076 | + $balise = $r[1] . $insert . $r[5]; |
|
| 2077 | + } else { |
|
| 2078 | + // preferer une balise " />" (comme <img />) |
|
| 2079 | + if (preg_match(',/>,', $balise)) { |
|
| 2080 | + $balise = preg_replace(',\s?/>,S', $insert . ' />', $balise, 1); |
|
| 2081 | + } // sinon une balise <a ...> ... </a> |
|
| 2082 | + else { |
|
| 2083 | + $balise = preg_replace(',\s?>,S', $insert . '>', $balise, 1); |
|
| 2084 | + } |
|
| 2085 | + } |
|
| 2086 | + |
|
| 2087 | + return $balise; |
|
| 2088 | 2088 | } |
| 2089 | 2089 | |
| 2090 | 2090 | /** |
@@ -2102,7 +2102,7 @@ discard block |
||
| 2102 | 2102 | * @return string Code HTML sans l'attribut |
| 2103 | 2103 | **/ |
| 2104 | 2104 | function vider_attribut(string $balise, string $attribut): string { |
| 2105 | - return inserer_attribut($balise, $attribut, '', false, true); |
|
| 2105 | + return inserer_attribut($balise, $attribut, '', false, true); |
|
| 2106 | 2106 | } |
| 2107 | 2107 | |
| 2108 | 2108 | /** |
@@ -2114,53 +2114,53 @@ discard block |
||
| 2114 | 2114 | * @return string |
| 2115 | 2115 | */ |
| 2116 | 2116 | function modifier_class($balise, $class, $operation = 'ajouter') { |
| 2117 | - if (is_string($class)) { |
|
| 2118 | - $class = explode(' ', trim($class)); |
|
| 2119 | - } |
|
| 2120 | - $class = array_filter($class); |
|
| 2121 | - $class = array_unique($class); |
|
| 2122 | - if (!$class) { |
|
| 2123 | - return $balise; |
|
| 2124 | - } |
|
| 2125 | - |
|
| 2126 | - // si la ou les classes ont des caracteres invalides on ne fait rien |
|
| 2127 | - if (preg_match(',[^\w-],', implode('', $class))) { |
|
| 2128 | - return $balise; |
|
| 2129 | - } |
|
| 2130 | - |
|
| 2131 | - $class_courante = extraire_attribut($balise, 'class'); |
|
| 2132 | - $class_new = $class_courante; |
|
| 2133 | - foreach ($class as $c) { |
|
| 2134 | - $is_class_presente = false; |
|
| 2135 | - if ( |
|
| 2136 | - $class_courante |
|
| 2137 | - and strpos($class_courante, (string) $c) !== false |
|
| 2138 | - and preg_match('/(^|\s)' . preg_quote($c) . '($|\s)/', $class_courante) |
|
| 2139 | - ) { |
|
| 2140 | - $is_class_presente = true; |
|
| 2141 | - } |
|
| 2142 | - if ( |
|
| 2143 | - in_array($operation, ['ajouter', 'commuter']) |
|
| 2144 | - and !$is_class_presente |
|
| 2145 | - ) { |
|
| 2146 | - $class_new = ltrim(rtrim($class_new ?? '') . ' ' . $c); |
|
| 2147 | - } elseif ( |
|
| 2148 | - in_array($operation, ['supprimer', 'commuter']) |
|
| 2149 | - and $is_class_presente |
|
| 2150 | - ) { |
|
| 2151 | - $class_new = trim(preg_replace('/(^|\s)' . preg_quote($c) . '($|\s)/', "\\1", $class_new)); |
|
| 2152 | - } |
|
| 2153 | - } |
|
| 2154 | - |
|
| 2155 | - if ($class_new !== $class_courante) { |
|
| 2156 | - if (strlen($class_new)) { |
|
| 2157 | - $balise = inserer_attribut($balise, 'class', $class_new); |
|
| 2158 | - } elseif ($class_courante) { |
|
| 2159 | - $balise = vider_attribut($balise, 'class'); |
|
| 2160 | - } |
|
| 2161 | - } |
|
| 2162 | - |
|
| 2163 | - return $balise; |
|
| 2117 | + if (is_string($class)) { |
|
| 2118 | + $class = explode(' ', trim($class)); |
|
| 2119 | + } |
|
| 2120 | + $class = array_filter($class); |
|
| 2121 | + $class = array_unique($class); |
|
| 2122 | + if (!$class) { |
|
| 2123 | + return $balise; |
|
| 2124 | + } |
|
| 2125 | + |
|
| 2126 | + // si la ou les classes ont des caracteres invalides on ne fait rien |
|
| 2127 | + if (preg_match(',[^\w-],', implode('', $class))) { |
|
| 2128 | + return $balise; |
|
| 2129 | + } |
|
| 2130 | + |
|
| 2131 | + $class_courante = extraire_attribut($balise, 'class'); |
|
| 2132 | + $class_new = $class_courante; |
|
| 2133 | + foreach ($class as $c) { |
|
| 2134 | + $is_class_presente = false; |
|
| 2135 | + if ( |
|
| 2136 | + $class_courante |
|
| 2137 | + and strpos($class_courante, (string) $c) !== false |
|
| 2138 | + and preg_match('/(^|\s)' . preg_quote($c) . '($|\s)/', $class_courante) |
|
| 2139 | + ) { |
|
| 2140 | + $is_class_presente = true; |
|
| 2141 | + } |
|
| 2142 | + if ( |
|
| 2143 | + in_array($operation, ['ajouter', 'commuter']) |
|
| 2144 | + and !$is_class_presente |
|
| 2145 | + ) { |
|
| 2146 | + $class_new = ltrim(rtrim($class_new ?? '') . ' ' . $c); |
|
| 2147 | + } elseif ( |
|
| 2148 | + in_array($operation, ['supprimer', 'commuter']) |
|
| 2149 | + and $is_class_presente |
|
| 2150 | + ) { |
|
| 2151 | + $class_new = trim(preg_replace('/(^|\s)' . preg_quote($c) . '($|\s)/', "\\1", $class_new)); |
|
| 2152 | + } |
|
| 2153 | + } |
|
| 2154 | + |
|
| 2155 | + if ($class_new !== $class_courante) { |
|
| 2156 | + if (strlen($class_new)) { |
|
| 2157 | + $balise = inserer_attribut($balise, 'class', $class_new); |
|
| 2158 | + } elseif ($class_courante) { |
|
| 2159 | + $balise = vider_attribut($balise, 'class'); |
|
| 2160 | + } |
|
| 2161 | + } |
|
| 2162 | + |
|
| 2163 | + return $balise; |
|
| 2164 | 2164 | } |
| 2165 | 2165 | |
| 2166 | 2166 | /** |
@@ -2170,7 +2170,7 @@ discard block |
||
| 2170 | 2170 | * @return string |
| 2171 | 2171 | */ |
| 2172 | 2172 | function ajouter_class($balise, $class) { |
| 2173 | - return modifier_class($balise, $class, 'ajouter'); |
|
| 2173 | + return modifier_class($balise, $class, 'ajouter'); |
|
| 2174 | 2174 | } |
| 2175 | 2175 | |
| 2176 | 2176 | /** |
@@ -2180,7 +2180,7 @@ discard block |
||
| 2180 | 2180 | * @return string |
| 2181 | 2181 | */ |
| 2182 | 2182 | function supprimer_class($balise, $class) { |
| 2183 | - return modifier_class($balise, $class, 'supprimer'); |
|
| 2183 | + return modifier_class($balise, $class, 'supprimer'); |
|
| 2184 | 2184 | } |
| 2185 | 2185 | |
| 2186 | 2186 | /** |
@@ -2191,7 +2191,7 @@ discard block |
||
| 2191 | 2191 | * @return string |
| 2192 | 2192 | */ |
| 2193 | 2193 | function commuter_class($balise, $class) { |
| 2194 | - return modifier_class($balise, $class, 'commuter'); |
|
| 2194 | + return modifier_class($balise, $class, 'commuter'); |
|
| 2195 | 2195 | } |
| 2196 | 2196 | |
| 2197 | 2197 | /** |
@@ -2202,19 +2202,19 @@ discard block |
||
| 2202 | 2202 | * @return string |
| 2203 | 2203 | */ |
| 2204 | 2204 | function tester_config($id, $mode = '') { |
| 2205 | - include_spip('action/inscrire_auteur'); |
|
| 2205 | + include_spip('action/inscrire_auteur'); |
|
| 2206 | 2206 | |
| 2207 | - return tester_statut_inscription($mode, $id); |
|
| 2207 | + return tester_statut_inscription($mode, $id); |
|
| 2208 | 2208 | } |
| 2209 | 2209 | |
| 2210 | 2210 | // |
| 2211 | 2211 | // Quelques fonctions de calcul arithmetique |
| 2212 | 2212 | // |
| 2213 | 2213 | function floatstr($a) { |
| 2214 | - return str_replace(',', '.', (string)floatval($a)); |
|
| 2214 | + return str_replace(',', '.', (string)floatval($a)); |
|
| 2215 | 2215 | } |
| 2216 | 2216 | function strize($f, $a, $b) { |
| 2217 | - return floatstr($f(floatstr($a), floatstr($b))); |
|
| 2217 | + return floatstr($f(floatstr($a), floatstr($b))); |
|
| 2218 | 2218 | } |
| 2219 | 2219 | |
| 2220 | 2220 | /** |
@@ -2233,7 +2233,7 @@ discard block |
||
| 2233 | 2233 | * @return int $a+$b |
| 2234 | 2234 | **/ |
| 2235 | 2235 | function plus($a, $b) { |
| 2236 | - return $a + $b; |
|
| 2236 | + return $a + $b; |
|
| 2237 | 2237 | } |
| 2238 | 2238 | function strplus($a, $b) { |
| 2239 | 2239 | return strize('plus', $a, $b); |
@@ -2254,7 +2254,7 @@ discard block |
||
| 2254 | 2254 | * @return int $a-$b |
| 2255 | 2255 | **/ |
| 2256 | 2256 | function moins($a, $b) { |
| 2257 | - return $a - $b; |
|
| 2257 | + return $a - $b; |
|
| 2258 | 2258 | } |
| 2259 | 2259 | function strmoins($a, $b) { |
| 2260 | 2260 | return strize('moins', $a, $b); |
@@ -2277,7 +2277,7 @@ discard block |
||
| 2277 | 2277 | * @return int $a*$b |
| 2278 | 2278 | **/ |
| 2279 | 2279 | function mult($a, $b) { |
| 2280 | - return $a * $b; |
|
| 2280 | + return $a * $b; |
|
| 2281 | 2281 | } |
| 2282 | 2282 | function strmult($a, $b) { |
| 2283 | 2283 | return strize('mult', $a, $b); |
@@ -2300,7 +2300,7 @@ discard block |
||
| 2300 | 2300 | * @return int $a/$b (ou 0 si $b est nul) |
| 2301 | 2301 | **/ |
| 2302 | 2302 | function div($a, $b) { |
| 2303 | - return $b ? $a / $b : 0; |
|
| 2303 | + return $b ? $a / $b : 0; |
|
| 2304 | 2304 | } |
| 2305 | 2305 | function strdiv($a, $b) { |
| 2306 | 2306 | return strize('div', $a, $b); |
@@ -2324,7 +2324,7 @@ discard block |
||
| 2324 | 2324 | * @return int ($nb % $mod) + $add |
| 2325 | 2325 | **/ |
| 2326 | 2326 | function modulo($nb, $mod, $add = 0) { |
| 2327 | - return ($mod ? $nb % $mod : 0) + $add; |
|
| 2327 | + return ($mod ? $nb % $mod : 0) + $add; |
|
| 2328 | 2328 | } |
| 2329 | 2329 | |
| 2330 | 2330 | |
@@ -2339,26 +2339,26 @@ discard block |
||
| 2339 | 2339 | * - true sinon |
| 2340 | 2340 | **/ |
| 2341 | 2341 | function nom_acceptable($nom) { |
| 2342 | - $remp2 = []; |
|
| 2343 | - $remp1 = []; |
|
| 2344 | - if (!is_string($nom)) { |
|
| 2345 | - return false; |
|
| 2346 | - } |
|
| 2347 | - if (!defined('_TAGS_NOM_AUTEUR')) { |
|
| 2348 | - define('_TAGS_NOM_AUTEUR', ''); |
|
| 2349 | - } |
|
| 2350 | - $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR)); |
|
| 2351 | - foreach ($tags_acceptes as $tag) { |
|
| 2352 | - if (strlen($tag)) { |
|
| 2353 | - $remp1[] = '<' . trim($tag) . '>'; |
|
| 2354 | - $remp1[] = '</' . trim($tag) . '>'; |
|
| 2355 | - $remp2[] = '\x60' . trim($tag) . '\x61'; |
|
| 2356 | - $remp2[] = '\x60/' . trim($tag) . '\x61'; |
|
| 2357 | - } |
|
| 2358 | - } |
|
| 2359 | - $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom))); |
|
| 2360 | - |
|
| 2361 | - return str_replace('<', '<', $v_nom) == $nom; |
|
| 2342 | + $remp2 = []; |
|
| 2343 | + $remp1 = []; |
|
| 2344 | + if (!is_string($nom)) { |
|
| 2345 | + return false; |
|
| 2346 | + } |
|
| 2347 | + if (!defined('_TAGS_NOM_AUTEUR')) { |
|
| 2348 | + define('_TAGS_NOM_AUTEUR', ''); |
|
| 2349 | + } |
|
| 2350 | + $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR)); |
|
| 2351 | + foreach ($tags_acceptes as $tag) { |
|
| 2352 | + if (strlen($tag)) { |
|
| 2353 | + $remp1[] = '<' . trim($tag) . '>'; |
|
| 2354 | + $remp1[] = '</' . trim($tag) . '>'; |
|
| 2355 | + $remp2[] = '\x60' . trim($tag) . '\x61'; |
|
| 2356 | + $remp2[] = '\x60/' . trim($tag) . '\x61'; |
|
| 2357 | + } |
|
| 2358 | + } |
|
| 2359 | + $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom))); |
|
| 2360 | + |
|
| 2361 | + return str_replace('<', '<', $v_nom) == $nom; |
|
| 2362 | 2362 | } |
| 2363 | 2363 | |
| 2364 | 2364 | |
@@ -2374,14 +2374,14 @@ discard block |
||
| 2374 | 2374 | * - renvoie un tableau si l'entree est un tableau |
| 2375 | 2375 | **/ |
| 2376 | 2376 | function email_valide($adresses) { |
| 2377 | - if (is_array($adresses)) { |
|
| 2378 | - $adresses = array_map('email_valide', $adresses); |
|
| 2379 | - $adresses = array_filter($adresses); |
|
| 2380 | - return $adresses; |
|
| 2381 | - } |
|
| 2377 | + if (is_array($adresses)) { |
|
| 2378 | + $adresses = array_map('email_valide', $adresses); |
|
| 2379 | + $adresses = array_filter($adresses); |
|
| 2380 | + return $adresses; |
|
| 2381 | + } |
|
| 2382 | 2382 | |
| 2383 | - $email_valide = charger_fonction('email_valide', 'inc'); |
|
| 2384 | - return $email_valide($adresses); |
|
| 2383 | + $email_valide = charger_fonction('email_valide', 'inc'); |
|
| 2384 | + return $email_valide($adresses); |
|
| 2385 | 2385 | } |
| 2386 | 2386 | |
| 2387 | 2387 | /** |
@@ -2395,27 +2395,27 @@ discard block |
||
| 2395 | 2395 | * @return string Texte |
| 2396 | 2396 | **/ |
| 2397 | 2397 | function afficher_enclosures($tags) { |
| 2398 | - $s = []; |
|
| 2399 | - foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2400 | - if ( |
|
| 2401 | - extraire_attribut($tag, 'rel') == 'enclosure' |
|
| 2402 | - and $t = extraire_attribut($tag, 'href') |
|
| 2403 | - ) { |
|
| 2404 | - $s[] = preg_replace( |
|
| 2405 | - ',>[^<]+</a>,S', |
|
| 2406 | - '>' |
|
| 2407 | - . http_img_pack( |
|
| 2408 | - 'attachment-16.png', |
|
| 2409 | - $t, |
|
| 2410 | - 'title="' . attribut_html($t) . '"' |
|
| 2411 | - ) |
|
| 2412 | - . '</a>', |
|
| 2413 | - $tag |
|
| 2414 | - ); |
|
| 2415 | - } |
|
| 2416 | - } |
|
| 2417 | - |
|
| 2418 | - return join(' ', $s); |
|
| 2398 | + $s = []; |
|
| 2399 | + foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2400 | + if ( |
|
| 2401 | + extraire_attribut($tag, 'rel') == 'enclosure' |
|
| 2402 | + and $t = extraire_attribut($tag, 'href') |
|
| 2403 | + ) { |
|
| 2404 | + $s[] = preg_replace( |
|
| 2405 | + ',>[^<]+</a>,S', |
|
| 2406 | + '>' |
|
| 2407 | + . http_img_pack( |
|
| 2408 | + 'attachment-16.png', |
|
| 2409 | + $t, |
|
| 2410 | + 'title="' . attribut_html($t) . '"' |
|
| 2411 | + ) |
|
| 2412 | + . '</a>', |
|
| 2413 | + $tag |
|
| 2414 | + ); |
|
| 2415 | + } |
|
| 2416 | + } |
|
| 2417 | + |
|
| 2418 | + return join(' ', $s); |
|
| 2419 | 2419 | } |
| 2420 | 2420 | |
| 2421 | 2421 | /** |
@@ -2430,15 +2430,15 @@ discard block |
||
| 2430 | 2430 | * @return string Liens trouvés |
| 2431 | 2431 | **/ |
| 2432 | 2432 | function afficher_tags($tags, $rels = 'tag,directory') { |
| 2433 | - $s = []; |
|
| 2434 | - foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2435 | - $rel = extraire_attribut($tag, 'rel'); |
|
| 2436 | - if (strstr(",$rels,", (string) ",$rel,")) { |
|
| 2437 | - $s[] = $tag; |
|
| 2438 | - } |
|
| 2439 | - } |
|
| 2433 | + $s = []; |
|
| 2434 | + foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2435 | + $rel = extraire_attribut($tag, 'rel'); |
|
| 2436 | + if (strstr(",$rels,", (string) ",$rel,")) { |
|
| 2437 | + $s[] = $tag; |
|
| 2438 | + } |
|
| 2439 | + } |
|
| 2440 | 2440 | |
| 2441 | - return join(', ', $s); |
|
| 2441 | + return join(', ', $s); |
|
| 2442 | 2442 | } |
| 2443 | 2443 | |
| 2444 | 2444 | |
@@ -2460,21 +2460,21 @@ discard block |
||
| 2460 | 2460 | * @return string Tag HTML `<a>` avec microformat. |
| 2461 | 2461 | **/ |
| 2462 | 2462 | function enclosure2microformat($e) { |
| 2463 | - if (!$url = filtrer_entites(extraire_attribut($e, 'url'))) { |
|
| 2464 | - $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2465 | - } |
|
| 2466 | - $type = extraire_attribut($e, 'type'); |
|
| 2467 | - if (!$length = extraire_attribut($e, 'length')) { |
|
| 2468 | - # <media:content : longeur dans fileSize. On tente. |
|
| 2469 | - $length = extraire_attribut($e, 'fileSize'); |
|
| 2470 | - } |
|
| 2471 | - $fichier = basename($url); |
|
| 2463 | + if (!$url = filtrer_entites(extraire_attribut($e, 'url'))) { |
|
| 2464 | + $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2465 | + } |
|
| 2466 | + $type = extraire_attribut($e, 'type'); |
|
| 2467 | + if (!$length = extraire_attribut($e, 'length')) { |
|
| 2468 | + # <media:content : longeur dans fileSize. On tente. |
|
| 2469 | + $length = extraire_attribut($e, 'fileSize'); |
|
| 2470 | + } |
|
| 2471 | + $fichier = basename($url); |
|
| 2472 | 2472 | |
| 2473 | - return '<a rel="enclosure"' |
|
| 2474 | - . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2475 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2476 | - . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '') |
|
| 2477 | - . '>' . $fichier . '</a>'; |
|
| 2473 | + return '<a rel="enclosure"' |
|
| 2474 | + . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2475 | + . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2476 | + . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '') |
|
| 2477 | + . '>' . $fichier . '</a>'; |
|
| 2478 | 2478 | } |
| 2479 | 2479 | |
| 2480 | 2480 | /** |
@@ -2492,24 +2492,24 @@ discard block |
||
| 2492 | 2492 | * @return string Tags RSS `<enclosure>`. |
| 2493 | 2493 | **/ |
| 2494 | 2494 | function microformat2enclosure($tags) { |
| 2495 | - $enclosures = []; |
|
| 2496 | - foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2497 | - if (extraire_attribut($e, 'rel') == 'enclosure') { |
|
| 2498 | - $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2499 | - $type = extraire_attribut($e, 'type'); |
|
| 2500 | - if (!$length = intval(extraire_attribut($e, 'title'))) { |
|
| 2501 | - $length = intval(extraire_attribut($e, 'length')); |
|
| 2502 | - } # vieux data |
|
| 2503 | - $fichier = basename($url); |
|
| 2504 | - $enclosures[] = '<enclosure' |
|
| 2505 | - . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2506 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2507 | - . ($length ? ' length="' . $length . '"' : '') |
|
| 2508 | - . ' />'; |
|
| 2509 | - } |
|
| 2510 | - } |
|
| 2495 | + $enclosures = []; |
|
| 2496 | + foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2497 | + if (extraire_attribut($e, 'rel') == 'enclosure') { |
|
| 2498 | + $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2499 | + $type = extraire_attribut($e, 'type'); |
|
| 2500 | + if (!$length = intval(extraire_attribut($e, 'title'))) { |
|
| 2501 | + $length = intval(extraire_attribut($e, 'length')); |
|
| 2502 | + } # vieux data |
|
| 2503 | + $fichier = basename($url); |
|
| 2504 | + $enclosures[] = '<enclosure' |
|
| 2505 | + . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2506 | + . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2507 | + . ($length ? ' length="' . $length . '"' : '') |
|
| 2508 | + . ' />'; |
|
| 2509 | + } |
|
| 2510 | + } |
|
| 2511 | 2511 | |
| 2512 | - return join("\n", $enclosures); |
|
| 2512 | + return join("\n", $enclosures); |
|
| 2513 | 2513 | } |
| 2514 | 2514 | |
| 2515 | 2515 | |
@@ -2525,16 +2525,16 @@ discard block |
||
| 2525 | 2525 | * @return string Tags RSS Atom `<dc:subject>`. |
| 2526 | 2526 | **/ |
| 2527 | 2527 | function tags2dcsubject($tags) { |
| 2528 | - $subjects = ''; |
|
| 2529 | - foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2530 | - if (extraire_attribut($e, 'rel') == 'tag') { |
|
| 2531 | - $subjects .= '<dc:subject>' |
|
| 2532 | - . texte_backend(textebrut($e)) |
|
| 2533 | - . '</dc:subject>' . "\n"; |
|
| 2534 | - } |
|
| 2535 | - } |
|
| 2528 | + $subjects = ''; |
|
| 2529 | + foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2530 | + if (extraire_attribut($e, 'rel') == 'tag') { |
|
| 2531 | + $subjects .= '<dc:subject>' |
|
| 2532 | + . texte_backend(textebrut($e)) |
|
| 2533 | + . '</dc:subject>' . "\n"; |
|
| 2534 | + } |
|
| 2535 | + } |
|
| 2536 | 2536 | |
| 2537 | - return $subjects; |
|
| 2537 | + return $subjects; |
|
| 2538 | 2538 | } |
| 2539 | 2539 | |
| 2540 | 2540 | /** |
@@ -2563,27 +2563,27 @@ discard block |
||
| 2563 | 2563 | * - Tableau de résultats, si tableau en entrée. |
| 2564 | 2564 | **/ |
| 2565 | 2565 | function extraire_balise($texte, $tag = 'a') { |
| 2566 | - if (is_array($texte)) { |
|
| 2567 | - array_walk( |
|
| 2568 | - $texte, |
|
| 2569 | - function (&$a, $key, $t) { |
|
| 2570 | - $a = extraire_balise($a, $t); |
|
| 2571 | - }, |
|
| 2572 | - $tag |
|
| 2573 | - ); |
|
| 2574 | - |
|
| 2575 | - return $texte; |
|
| 2576 | - } |
|
| 2577 | - |
|
| 2578 | - if ( |
|
| 2579 | - preg_match( |
|
| 2580 | - ",<$tag\b[^>]*(/>|>.*</$tag\b[^>]*>|>),UimsS", |
|
| 2581 | - $texte, |
|
| 2582 | - $regs |
|
| 2583 | - ) |
|
| 2584 | - ) { |
|
| 2585 | - return $regs[0]; |
|
| 2586 | - } |
|
| 2566 | + if (is_array($texte)) { |
|
| 2567 | + array_walk( |
|
| 2568 | + $texte, |
|
| 2569 | + function (&$a, $key, $t) { |
|
| 2570 | + $a = extraire_balise($a, $t); |
|
| 2571 | + }, |
|
| 2572 | + $tag |
|
| 2573 | + ); |
|
| 2574 | + |
|
| 2575 | + return $texte; |
|
| 2576 | + } |
|
| 2577 | + |
|
| 2578 | + if ( |
|
| 2579 | + preg_match( |
|
| 2580 | + ",<$tag\b[^>]*(/>|>.*</$tag\b[^>]*>|>),UimsS", |
|
| 2581 | + $texte, |
|
| 2582 | + $regs |
|
| 2583 | + ) |
|
| 2584 | + ) { |
|
| 2585 | + return $regs[0]; |
|
| 2586 | + } |
|
| 2587 | 2587 | } |
| 2588 | 2588 | |
| 2589 | 2589 | /** |
@@ -2611,30 +2611,30 @@ discard block |
||
| 2611 | 2611 | * - Tableau de résultats, si tableau en entrée. |
| 2612 | 2612 | **/ |
| 2613 | 2613 | function extraire_balises($texte, $tag = 'a') { |
| 2614 | - if (is_array($texte)) { |
|
| 2615 | - array_walk( |
|
| 2616 | - $texte, |
|
| 2617 | - function (&$a, $key, $t) { |
|
| 2618 | - $a = extraire_balises($a, $t); |
|
| 2619 | - }, |
|
| 2620 | - $tag |
|
| 2621 | - ); |
|
| 2622 | - |
|
| 2623 | - return $texte; |
|
| 2624 | - } |
|
| 2625 | - |
|
| 2626 | - if ( |
|
| 2627 | - preg_match_all( |
|
| 2628 | - ",<${tag}\b[^>]*(/>|>.*</${tag}\b[^>]*>|>),UimsS", |
|
| 2629 | - $texte, |
|
| 2630 | - $regs, |
|
| 2631 | - PREG_PATTERN_ORDER |
|
| 2632 | - ) |
|
| 2633 | - ) { |
|
| 2634 | - return $regs[0]; |
|
| 2635 | - } else { |
|
| 2636 | - return []; |
|
| 2637 | - } |
|
| 2614 | + if (is_array($texte)) { |
|
| 2615 | + array_walk( |
|
| 2616 | + $texte, |
|
| 2617 | + function (&$a, $key, $t) { |
|
| 2618 | + $a = extraire_balises($a, $t); |
|
| 2619 | + }, |
|
| 2620 | + $tag |
|
| 2621 | + ); |
|
| 2622 | + |
|
| 2623 | + return $texte; |
|
| 2624 | + } |
|
| 2625 | + |
|
| 2626 | + if ( |
|
| 2627 | + preg_match_all( |
|
| 2628 | + ",<${tag}\b[^>]*(/>|>.*</${tag}\b[^>]*>|>),UimsS", |
|
| 2629 | + $texte, |
|
| 2630 | + $regs, |
|
| 2631 | + PREG_PATTERN_ORDER |
|
| 2632 | + ) |
|
| 2633 | + ) { |
|
| 2634 | + return $regs[0]; |
|
| 2635 | + } else { |
|
| 2636 | + return []; |
|
| 2637 | + } |
|
| 2638 | 2638 | } |
| 2639 | 2639 | |
| 2640 | 2640 | /** |
@@ -2663,11 +2663,11 @@ discard block |
||
| 2663 | 2663 | * - `$def` si on n'a pas transmis de tableau |
| 2664 | 2664 | **/ |
| 2665 | 2665 | function in_any($val, $vals, $def = '') { |
| 2666 | - if (!is_array($vals) and $vals and $v = unserialize($vals)) { |
|
| 2667 | - $vals = $v; |
|
| 2668 | - } |
|
| 2666 | + if (!is_array($vals) and $vals and $v = unserialize($vals)) { |
|
| 2667 | + $vals = $v; |
|
| 2668 | + } |
|
| 2669 | 2669 | |
| 2670 | - return (!is_array($vals) ? $def : (in_array($val, $vals) ? ' ' : '')); |
|
| 2670 | + return (!is_array($vals) ? $def : (in_array($val, $vals) ? ' ' : '')); |
|
| 2671 | 2671 | } |
| 2672 | 2672 | |
| 2673 | 2673 | |
@@ -2688,12 +2688,12 @@ discard block |
||
| 2688 | 2688 | * Résultat du calcul |
| 2689 | 2689 | **/ |
| 2690 | 2690 | function valeur_numerique($expr) { |
| 2691 | - $a = 0; |
|
| 2692 | - if (preg_match(',^[0-9]+(\s*[+*-]\s*[0-9]+)*$,S', trim($expr))) { |
|
| 2693 | - eval("\$a = $expr;"); |
|
| 2694 | - } |
|
| 2691 | + $a = 0; |
|
| 2692 | + if (preg_match(',^[0-9]+(\s*[+*-]\s*[0-9]+)*$,S', trim($expr))) { |
|
| 2693 | + eval("\$a = $expr;"); |
|
| 2694 | + } |
|
| 2695 | 2695 | |
| 2696 | - return intval($a); |
|
| 2696 | + return intval($a); |
|
| 2697 | 2697 | } |
| 2698 | 2698 | |
| 2699 | 2699 | /** |
@@ -2712,7 +2712,7 @@ discard block |
||
| 2712 | 2712 | * Retourne `$a*$b/$c` |
| 2713 | 2713 | **/ |
| 2714 | 2714 | function regledetrois($a, $b, $c) { |
| 2715 | - return round($a * $b / $c); |
|
| 2715 | + return round($a * $b / $c); |
|
| 2716 | 2716 | } |
| 2717 | 2717 | |
| 2718 | 2718 | |
@@ -2736,77 +2736,77 @@ discard block |
||
| 2736 | 2736 | **/ |
| 2737 | 2737 | function form_hidden($action) { |
| 2738 | 2738 | |
| 2739 | - $contexte = []; |
|
| 2740 | - include_spip('inc/urls'); |
|
| 2741 | - if ( |
|
| 2742 | - $p = urls_decoder_url($action, '') |
|
| 2743 | - and reset($p) |
|
| 2744 | - ) { |
|
| 2745 | - $fond = array_shift($p); |
|
| 2746 | - if ($fond != '404') { |
|
| 2747 | - $contexte = array_shift($p); |
|
| 2748 | - $contexte['page'] = $fond; |
|
| 2749 | - $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2750 | - } |
|
| 2751 | - } |
|
| 2752 | - // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url |
|
| 2753 | - if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) { |
|
| 2754 | - unset($contexte['type']); |
|
| 2755 | - } |
|
| 2756 | - if (!defined('_DEFINIR_CONTEXTE_TYPE_PAGE') or _DEFINIR_CONTEXTE_TYPE_PAGE) { |
|
| 2757 | - unset($contexte['type-page']); |
|
| 2758 | - } |
|
| 2759 | - |
|
| 2760 | - // on va remplir un tableau de valeurs en prenant bien soin de ne pas |
|
| 2761 | - // ecraser les elements de la forme mots[]=1&mots[]=2 |
|
| 2762 | - $values = []; |
|
| 2763 | - |
|
| 2764 | - // d'abord avec celles de l'url |
|
| 2765 | - if (false !== ($p = strpos($action, '?'))) { |
|
| 2766 | - foreach (preg_split('/&(amp;)?/S', substr($action, $p + 1)) as $c) { |
|
| 2767 | - $c = explode('=', $c, 2); |
|
| 2768 | - $var = array_shift($c); |
|
| 2769 | - $val = array_shift($c); |
|
| 2770 | - if ($var) { |
|
| 2771 | - $val = rawurldecode($val); |
|
| 2772 | - $var = rawurldecode($var); // decoder les [] eventuels |
|
| 2773 | - if (preg_match(',\[\]$,S', $var)) { |
|
| 2774 | - $values[] = [$var, $val]; |
|
| 2775 | - } else { |
|
| 2776 | - if (!isset($values[$var])) { |
|
| 2777 | - $values[$var] = [$var, $val]; |
|
| 2778 | - } |
|
| 2779 | - } |
|
| 2780 | - } |
|
| 2781 | - } |
|
| 2782 | - } |
|
| 2783 | - |
|
| 2784 | - // ensuite avec celles du contexte, sans doublonner ! |
|
| 2785 | - foreach ($contexte as $var => $val) { |
|
| 2786 | - if (preg_match(',\[\]$,S', $var)) { |
|
| 2787 | - $values[] = [$var, $val]; |
|
| 2788 | - } else { |
|
| 2789 | - if (!isset($values[$var])) { |
|
| 2790 | - $values[$var] = [$var, $val]; |
|
| 2791 | - } |
|
| 2792 | - } |
|
| 2793 | - } |
|
| 2794 | - |
|
| 2795 | - // puis on rassemble le tout |
|
| 2796 | - $hidden = []; |
|
| 2797 | - foreach ($values as $value) { |
|
| 2798 | - [$var, $val] = $value; |
|
| 2799 | - $hidden[] = '<input name="' |
|
| 2800 | - . entites_html($var) |
|
| 2801 | - . '"' |
|
| 2802 | - . (is_null($val) |
|
| 2803 | - ? '' |
|
| 2804 | - : ' value="' . entites_html($val) . '"' |
|
| 2805 | - ) |
|
| 2806 | - . ' type="hidden"' . "\n/>"; |
|
| 2807 | - } |
|
| 2808 | - |
|
| 2809 | - return join('', $hidden); |
|
| 2739 | + $contexte = []; |
|
| 2740 | + include_spip('inc/urls'); |
|
| 2741 | + if ( |
|
| 2742 | + $p = urls_decoder_url($action, '') |
|
| 2743 | + and reset($p) |
|
| 2744 | + ) { |
|
| 2745 | + $fond = array_shift($p); |
|
| 2746 | + if ($fond != '404') { |
|
| 2747 | + $contexte = array_shift($p); |
|
| 2748 | + $contexte['page'] = $fond; |
|
| 2749 | + $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2750 | + } |
|
| 2751 | + } |
|
| 2752 | + // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url |
|
| 2753 | + if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) { |
|
| 2754 | + unset($contexte['type']); |
|
| 2755 | + } |
|
| 2756 | + if (!defined('_DEFINIR_CONTEXTE_TYPE_PAGE') or _DEFINIR_CONTEXTE_TYPE_PAGE) { |
|
| 2757 | + unset($contexte['type-page']); |
|
| 2758 | + } |
|
| 2759 | + |
|
| 2760 | + // on va remplir un tableau de valeurs en prenant bien soin de ne pas |
|
| 2761 | + // ecraser les elements de la forme mots[]=1&mots[]=2 |
|
| 2762 | + $values = []; |
|
| 2763 | + |
|
| 2764 | + // d'abord avec celles de l'url |
|
| 2765 | + if (false !== ($p = strpos($action, '?'))) { |
|
| 2766 | + foreach (preg_split('/&(amp;)?/S', substr($action, $p + 1)) as $c) { |
|
| 2767 | + $c = explode('=', $c, 2); |
|
| 2768 | + $var = array_shift($c); |
|
| 2769 | + $val = array_shift($c); |
|
| 2770 | + if ($var) { |
|
| 2771 | + $val = rawurldecode($val); |
|
| 2772 | + $var = rawurldecode($var); // decoder les [] eventuels |
|
| 2773 | + if (preg_match(',\[\]$,S', $var)) { |
|
| 2774 | + $values[] = [$var, $val]; |
|
| 2775 | + } else { |
|
| 2776 | + if (!isset($values[$var])) { |
|
| 2777 | + $values[$var] = [$var, $val]; |
|
| 2778 | + } |
|
| 2779 | + } |
|
| 2780 | + } |
|
| 2781 | + } |
|
| 2782 | + } |
|
| 2783 | + |
|
| 2784 | + // ensuite avec celles du contexte, sans doublonner ! |
|
| 2785 | + foreach ($contexte as $var => $val) { |
|
| 2786 | + if (preg_match(',\[\]$,S', $var)) { |
|
| 2787 | + $values[] = [$var, $val]; |
|
| 2788 | + } else { |
|
| 2789 | + if (!isset($values[$var])) { |
|
| 2790 | + $values[$var] = [$var, $val]; |
|
| 2791 | + } |
|
| 2792 | + } |
|
| 2793 | + } |
|
| 2794 | + |
|
| 2795 | + // puis on rassemble le tout |
|
| 2796 | + $hidden = []; |
|
| 2797 | + foreach ($values as $value) { |
|
| 2798 | + [$var, $val] = $value; |
|
| 2799 | + $hidden[] = '<input name="' |
|
| 2800 | + . entites_html($var) |
|
| 2801 | + . '"' |
|
| 2802 | + . (is_null($val) |
|
| 2803 | + ? '' |
|
| 2804 | + : ' value="' . entites_html($val) . '"' |
|
| 2805 | + ) |
|
| 2806 | + . ' type="hidden"' . "\n/>"; |
|
| 2807 | + } |
|
| 2808 | + |
|
| 2809 | + return join('', $hidden); |
|
| 2810 | 2810 | } |
| 2811 | 2811 | |
| 2812 | 2812 | |
@@ -2828,7 +2828,7 @@ discard block |
||
| 2828 | 2828 | * - la première valeur du tableau sinon. |
| 2829 | 2829 | **/ |
| 2830 | 2830 | function filtre_reset($array) { |
| 2831 | - return !is_array($array) ? null : reset($array); |
|
| 2831 | + return !is_array($array) ? null : reset($array); |
|
| 2832 | 2832 | } |
| 2833 | 2833 | |
| 2834 | 2834 | /** |
@@ -2849,7 +2849,7 @@ discard block |
||
| 2849 | 2849 | * - la dernière valeur du tableau sinon. |
| 2850 | 2850 | **/ |
| 2851 | 2851 | function filtre_end($array) { |
| 2852 | - return !is_array($array) ? null : end($array); |
|
| 2852 | + return !is_array($array) ? null : end($array); |
|
| 2853 | 2853 | } |
| 2854 | 2854 | |
| 2855 | 2855 | /** |
@@ -2869,11 +2869,11 @@ discard block |
||
| 2869 | 2869 | * |
| 2870 | 2870 | **/ |
| 2871 | 2871 | function filtre_push($array, $val) { |
| 2872 | - if (!is_array($array) or !array_push($array, $val)) { |
|
| 2873 | - return ''; |
|
| 2874 | - } |
|
| 2872 | + if (!is_array($array) or !array_push($array, $val)) { |
|
| 2873 | + return ''; |
|
| 2874 | + } |
|
| 2875 | 2875 | |
| 2876 | - return $array; |
|
| 2876 | + return $array; |
|
| 2877 | 2877 | } |
| 2878 | 2878 | |
| 2879 | 2879 | /** |
@@ -2892,7 +2892,7 @@ discard block |
||
| 2892 | 2892 | * - `true` si la valeur existe dans le tableau, `false` sinon. |
| 2893 | 2893 | **/ |
| 2894 | 2894 | function filtre_find($array, $val) { |
| 2895 | - return (is_array($array) and in_array($val, $array)); |
|
| 2895 | + return (is_array($array) and in_array($val, $array)); |
|
| 2896 | 2896 | } |
| 2897 | 2897 | |
| 2898 | 2898 | |
@@ -2909,13 +2909,13 @@ discard block |
||
| 2909 | 2909 | * Contenu avec urls en absolus |
| 2910 | 2910 | **/ |
| 2911 | 2911 | function urls_absolues_css($contenu, $source) { |
| 2912 | - $path = suivre_lien(url_absolue($source), './'); |
|
| 2912 | + $path = suivre_lien(url_absolue($source), './'); |
|
| 2913 | 2913 | |
| 2914 | - return preg_replace_callback( |
|
| 2915 | - ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims", |
|
| 2916 | - fn($x) => "url('" . suivre_lien($path, $x[1]) . "')", |
|
| 2917 | - $contenu |
|
| 2918 | - ); |
|
| 2914 | + return preg_replace_callback( |
|
| 2915 | + ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims", |
|
| 2916 | + fn($x) => "url('" . suivre_lien($path, $x[1]) . "')", |
|
| 2917 | + $contenu |
|
| 2918 | + ); |
|
| 2919 | 2919 | } |
| 2920 | 2920 | |
| 2921 | 2921 | |
@@ -2944,119 +2944,119 @@ discard block |
||
| 2944 | 2944 | * Chemin du fichier CSS inversé |
| 2945 | 2945 | **/ |
| 2946 | 2946 | function direction_css($css, $voulue = '') { |
| 2947 | - if (!preg_match(',(_rtl)?\.css$,i', $css, $r)) { |
|
| 2948 | - return $css; |
|
| 2949 | - } |
|
| 2950 | - include_spip('inc/lang'); |
|
| 2951 | - // si on a precise le sens voulu en argument, le prendre en compte |
|
| 2952 | - if ($voulue = strtolower($voulue)) { |
|
| 2953 | - if ($voulue != 'rtl' and $voulue != 'ltr') { |
|
| 2954 | - $voulue = lang_dir($voulue); |
|
| 2955 | - } |
|
| 2956 | - } else { |
|
| 2957 | - $voulue = lang_dir(); |
|
| 2958 | - } |
|
| 2959 | - |
|
| 2960 | - $r = count($r) > 1; |
|
| 2961 | - $right = $r ? 'left' : 'right'; // 'right' de la css lue en entree |
|
| 2962 | - $dir = $r ? 'rtl' : 'ltr'; |
|
| 2963 | - $ndir = $r ? 'ltr' : 'rtl'; |
|
| 2964 | - |
|
| 2965 | - if ($voulue == $dir) { |
|
| 2966 | - return $css; |
|
| 2967 | - } |
|
| 2968 | - |
|
| 2969 | - if ( |
|
| 2970 | - // url absolue |
|
| 2971 | - preg_match(',^https?:,i', $css) |
|
| 2972 | - // ou qui contient un ? |
|
| 2973 | - or (($p = strpos($css, '?')) !== false) |
|
| 2974 | - ) { |
|
| 2975 | - $distant = true; |
|
| 2976 | - $cssf = parse_url($css); |
|
| 2977 | - $cssf = $cssf['path'] . ($cssf['query'] ? '?' . $cssf['query'] : ''); |
|
| 2978 | - $cssf = preg_replace(',[?:&=],', '_', $cssf); |
|
| 2979 | - } else { |
|
| 2980 | - $distant = false; |
|
| 2981 | - $cssf = $css; |
|
| 2982 | - // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi |
|
| 2983 | - //propose (rien a faire dans ce cas) |
|
| 2984 | - $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css); |
|
| 2985 | - if (@file_exists($f)) { |
|
| 2986 | - return $f; |
|
| 2987 | - } |
|
| 2988 | - } |
|
| 2989 | - |
|
| 2990 | - // 2. |
|
| 2991 | - $dir_var = sous_repertoire(_DIR_VAR, 'cache-css'); |
|
| 2992 | - $f = $dir_var |
|
| 2993 | - . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf) |
|
| 2994 | - . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css'; |
|
| 2995 | - |
|
| 2996 | - // la css peut etre distante (url absolue !) |
|
| 2997 | - if ($distant) { |
|
| 2998 | - include_spip('inc/distant'); |
|
| 2999 | - $res = recuperer_url($css); |
|
| 3000 | - if (!$res or !$contenu = $res['page']) { |
|
| 3001 | - return $css; |
|
| 3002 | - } |
|
| 3003 | - } else { |
|
| 3004 | - if ( |
|
| 3005 | - (@filemtime($f) > @filemtime($css)) |
|
| 3006 | - and (_VAR_MODE != 'recalcul') |
|
| 3007 | - ) { |
|
| 3008 | - return $f; |
|
| 3009 | - } |
|
| 3010 | - if (!lire_fichier($css, $contenu)) { |
|
| 3011 | - return $css; |
|
| 3012 | - } |
|
| 3013 | - } |
|
| 3014 | - |
|
| 3015 | - |
|
| 3016 | - // Inverser la direction gauche-droite en utilisant CSSTidy qui gere aussi les shorthands |
|
| 3017 | - include_spip('lib/csstidy/class.csstidy'); |
|
| 3018 | - $parser = new csstidy(); |
|
| 3019 | - $parser->set_cfg('optimise_shorthands', 0); |
|
| 3020 | - $parser->set_cfg('reverse_left_and_right', true); |
|
| 3021 | - $parser->parse($contenu); |
|
| 3022 | - |
|
| 3023 | - $contenu = $parser->print->plain(); |
|
| 3024 | - |
|
| 3025 | - |
|
| 3026 | - // reperer les @import auxquels il faut propager le direction_css |
|
| 3027 | - preg_match_all(",\@import\s*url\s*\(\s*['\"]?([^'\"/][^:]*)['\"]?\s*\),Uims", $contenu, $regs); |
|
| 3028 | - $src = []; |
|
| 3029 | - $src_direction_css = []; |
|
| 3030 | - $src_faux_abs = []; |
|
| 3031 | - $d = dirname($css); |
|
| 3032 | - foreach ($regs[1] as $k => $import_css) { |
|
| 3033 | - $css_direction = direction_css("$d/$import_css", $voulue); |
|
| 3034 | - // si la css_direction est dans le meme path que la css d'origine, on tronque le path, elle sera passee en absolue |
|
| 3035 | - if (substr($css_direction, 0, strlen($d) + 1) == "$d/") { |
|
| 3036 | - $css_direction = substr($css_direction, strlen($d) + 1); |
|
| 3037 | - } // si la css_direction commence par $dir_var on la fait passer pour une absolue |
|
| 3038 | - elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) { |
|
| 3039 | - $css_direction = substr($css_direction, strlen($dir_var)); |
|
| 3040 | - $src_faux_abs['/@@@@@@/' . $css_direction] = $css_direction; |
|
| 3041 | - $css_direction = '/@@@@@@/' . $css_direction; |
|
| 3042 | - } |
|
| 3043 | - $src[] = $regs[0][$k]; |
|
| 3044 | - $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]); |
|
| 3045 | - } |
|
| 3046 | - $contenu = str_replace($src, $src_direction_css, $contenu); |
|
| 3047 | - |
|
| 3048 | - $contenu = urls_absolues_css($contenu, $css); |
|
| 3049 | - |
|
| 3050 | - // virer les fausses url absolues que l'on a mis dans les import |
|
| 3051 | - if (count($src_faux_abs)) { |
|
| 3052 | - $contenu = str_replace(array_keys($src_faux_abs), $src_faux_abs, $contenu); |
|
| 3053 | - } |
|
| 3054 | - |
|
| 3055 | - if (!ecrire_fichier($f, $contenu)) { |
|
| 3056 | - return $css; |
|
| 3057 | - } |
|
| 3058 | - |
|
| 3059 | - return $f; |
|
| 2947 | + if (!preg_match(',(_rtl)?\.css$,i', $css, $r)) { |
|
| 2948 | + return $css; |
|
| 2949 | + } |
|
| 2950 | + include_spip('inc/lang'); |
|
| 2951 | + // si on a precise le sens voulu en argument, le prendre en compte |
|
| 2952 | + if ($voulue = strtolower($voulue)) { |
|
| 2953 | + if ($voulue != 'rtl' and $voulue != 'ltr') { |
|
| 2954 | + $voulue = lang_dir($voulue); |
|
| 2955 | + } |
|
| 2956 | + } else { |
|
| 2957 | + $voulue = lang_dir(); |
|
| 2958 | + } |
|
| 2959 | + |
|
| 2960 | + $r = count($r) > 1; |
|
| 2961 | + $right = $r ? 'left' : 'right'; // 'right' de la css lue en entree |
|
| 2962 | + $dir = $r ? 'rtl' : 'ltr'; |
|
| 2963 | + $ndir = $r ? 'ltr' : 'rtl'; |
|
| 2964 | + |
|
| 2965 | + if ($voulue == $dir) { |
|
| 2966 | + return $css; |
|
| 2967 | + } |
|
| 2968 | + |
|
| 2969 | + if ( |
|
| 2970 | + // url absolue |
|
| 2971 | + preg_match(',^https?:,i', $css) |
|
| 2972 | + // ou qui contient un ? |
|
| 2973 | + or (($p = strpos($css, '?')) !== false) |
|
| 2974 | + ) { |
|
| 2975 | + $distant = true; |
|
| 2976 | + $cssf = parse_url($css); |
|
| 2977 | + $cssf = $cssf['path'] . ($cssf['query'] ? '?' . $cssf['query'] : ''); |
|
| 2978 | + $cssf = preg_replace(',[?:&=],', '_', $cssf); |
|
| 2979 | + } else { |
|
| 2980 | + $distant = false; |
|
| 2981 | + $cssf = $css; |
|
| 2982 | + // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi |
|
| 2983 | + //propose (rien a faire dans ce cas) |
|
| 2984 | + $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css); |
|
| 2985 | + if (@file_exists($f)) { |
|
| 2986 | + return $f; |
|
| 2987 | + } |
|
| 2988 | + } |
|
| 2989 | + |
|
| 2990 | + // 2. |
|
| 2991 | + $dir_var = sous_repertoire(_DIR_VAR, 'cache-css'); |
|
| 2992 | + $f = $dir_var |
|
| 2993 | + . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf) |
|
| 2994 | + . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css'; |
|
| 2995 | + |
|
| 2996 | + // la css peut etre distante (url absolue !) |
|
| 2997 | + if ($distant) { |
|
| 2998 | + include_spip('inc/distant'); |
|
| 2999 | + $res = recuperer_url($css); |
|
| 3000 | + if (!$res or !$contenu = $res['page']) { |
|
| 3001 | + return $css; |
|
| 3002 | + } |
|
| 3003 | + } else { |
|
| 3004 | + if ( |
|
| 3005 | + (@filemtime($f) > @filemtime($css)) |
|
| 3006 | + and (_VAR_MODE != 'recalcul') |
|
| 3007 | + ) { |
|
| 3008 | + return $f; |
|
| 3009 | + } |
|
| 3010 | + if (!lire_fichier($css, $contenu)) { |
|
| 3011 | + return $css; |
|
| 3012 | + } |
|
| 3013 | + } |
|
| 3014 | + |
|
| 3015 | + |
|
| 3016 | + // Inverser la direction gauche-droite en utilisant CSSTidy qui gere aussi les shorthands |
|
| 3017 | + include_spip('lib/csstidy/class.csstidy'); |
|
| 3018 | + $parser = new csstidy(); |
|
| 3019 | + $parser->set_cfg('optimise_shorthands', 0); |
|
| 3020 | + $parser->set_cfg('reverse_left_and_right', true); |
|
| 3021 | + $parser->parse($contenu); |
|
| 3022 | + |
|
| 3023 | + $contenu = $parser->print->plain(); |
|
| 3024 | + |
|
| 3025 | + |
|
| 3026 | + // reperer les @import auxquels il faut propager le direction_css |
|
| 3027 | + preg_match_all(",\@import\s*url\s*\(\s*['\"]?([^'\"/][^:]*)['\"]?\s*\),Uims", $contenu, $regs); |
|
| 3028 | + $src = []; |
|
| 3029 | + $src_direction_css = []; |
|
| 3030 | + $src_faux_abs = []; |
|
| 3031 | + $d = dirname($css); |
|
| 3032 | + foreach ($regs[1] as $k => $import_css) { |
|
| 3033 | + $css_direction = direction_css("$d/$import_css", $voulue); |
|
| 3034 | + // si la css_direction est dans le meme path que la css d'origine, on tronque le path, elle sera passee en absolue |
|
| 3035 | + if (substr($css_direction, 0, strlen($d) + 1) == "$d/") { |
|
| 3036 | + $css_direction = substr($css_direction, strlen($d) + 1); |
|
| 3037 | + } // si la css_direction commence par $dir_var on la fait passer pour une absolue |
|
| 3038 | + elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) { |
|
| 3039 | + $css_direction = substr($css_direction, strlen($dir_var)); |
|
| 3040 | + $src_faux_abs['/@@@@@@/' . $css_direction] = $css_direction; |
|
| 3041 | + $css_direction = '/@@@@@@/' . $css_direction; |
|
| 3042 | + } |
|
| 3043 | + $src[] = $regs[0][$k]; |
|
| 3044 | + $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]); |
|
| 3045 | + } |
|
| 3046 | + $contenu = str_replace($src, $src_direction_css, $contenu); |
|
| 3047 | + |
|
| 3048 | + $contenu = urls_absolues_css($contenu, $css); |
|
| 3049 | + |
|
| 3050 | + // virer les fausses url absolues que l'on a mis dans les import |
|
| 3051 | + if (count($src_faux_abs)) { |
|
| 3052 | + $contenu = str_replace(array_keys($src_faux_abs), $src_faux_abs, $contenu); |
|
| 3053 | + } |
|
| 3054 | + |
|
| 3055 | + if (!ecrire_fichier($f, $contenu)) { |
|
| 3056 | + return $css; |
|
| 3057 | + } |
|
| 3058 | + |
|
| 3059 | + return $f; |
|
| 3060 | 3060 | } |
| 3061 | 3061 | |
| 3062 | 3062 | |
@@ -3079,46 +3079,46 @@ discard block |
||
| 3079 | 3079 | * - Chemin ou URL du fichier CSS source sinon. |
| 3080 | 3080 | **/ |
| 3081 | 3081 | function url_absolue_css($css) { |
| 3082 | - if (!preg_match(',\.css$,i', $css, $r)) { |
|
| 3083 | - return $css; |
|
| 3084 | - } |
|
| 3082 | + if (!preg_match(',\.css$,i', $css, $r)) { |
|
| 3083 | + return $css; |
|
| 3084 | + } |
|
| 3085 | 3085 | |
| 3086 | - $url_absolue_css = url_absolue($css); |
|
| 3086 | + $url_absolue_css = url_absolue($css); |
|
| 3087 | 3087 | |
| 3088 | - $f = basename($css, '.css'); |
|
| 3089 | - $f = sous_repertoire(_DIR_VAR, 'cache-css') |
|
| 3090 | - . preg_replace(',(.*?)(_rtl|_ltr)?$,', "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f) |
|
| 3091 | - . '.css'; |
|
| 3088 | + $f = basename($css, '.css'); |
|
| 3089 | + $f = sous_repertoire(_DIR_VAR, 'cache-css') |
|
| 3090 | + . preg_replace(',(.*?)(_rtl|_ltr)?$,', "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f) |
|
| 3091 | + . '.css'; |
|
| 3092 | 3092 | |
| 3093 | - if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) { |
|
| 3094 | - return $f; |
|
| 3095 | - } |
|
| 3093 | + if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) { |
|
| 3094 | + return $f; |
|
| 3095 | + } |
|
| 3096 | 3096 | |
| 3097 | - if ($url_absolue_css == $css) { |
|
| 3098 | - if ( |
|
| 3099 | - strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0 |
|
| 3100 | - or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu) |
|
| 3101 | - ) { |
|
| 3102 | - include_spip('inc/distant'); |
|
| 3103 | - $contenu = recuperer_url($css); |
|
| 3104 | - $contenu = $contenu['page'] ?? ''; |
|
| 3105 | - if (!$contenu) { |
|
| 3106 | - return $css; |
|
| 3107 | - } |
|
| 3108 | - } |
|
| 3109 | - } elseif (!lire_fichier($css, $contenu)) { |
|
| 3110 | - return $css; |
|
| 3111 | - } |
|
| 3097 | + if ($url_absolue_css == $css) { |
|
| 3098 | + if ( |
|
| 3099 | + strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0 |
|
| 3100 | + or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu) |
|
| 3101 | + ) { |
|
| 3102 | + include_spip('inc/distant'); |
|
| 3103 | + $contenu = recuperer_url($css); |
|
| 3104 | + $contenu = $contenu['page'] ?? ''; |
|
| 3105 | + if (!$contenu) { |
|
| 3106 | + return $css; |
|
| 3107 | + } |
|
| 3108 | + } |
|
| 3109 | + } elseif (!lire_fichier($css, $contenu)) { |
|
| 3110 | + return $css; |
|
| 3111 | + } |
|
| 3112 | 3112 | |
| 3113 | - // passer les url relatives a la css d'origine en url absolues |
|
| 3114 | - $contenu = urls_absolues_css($contenu, $css); |
|
| 3113 | + // passer les url relatives a la css d'origine en url absolues |
|
| 3114 | + $contenu = urls_absolues_css($contenu, $css); |
|
| 3115 | 3115 | |
| 3116 | - // ecrire la css |
|
| 3117 | - if (!ecrire_fichier($f, $contenu)) { |
|
| 3118 | - return $css; |
|
| 3119 | - } |
|
| 3116 | + // ecrire la css |
|
| 3117 | + if (!ecrire_fichier($f, $contenu)) { |
|
| 3118 | + return $css; |
|
| 3119 | + } |
|
| 3120 | 3120 | |
| 3121 | - return $f; |
|
| 3121 | + return $f; |
|
| 3122 | 3122 | } |
| 3123 | 3123 | |
| 3124 | 3124 | |
@@ -3152,24 +3152,24 @@ discard block |
||
| 3152 | 3152 | * Valeur trouvée ou valeur par défaut. |
| 3153 | 3153 | **/ |
| 3154 | 3154 | function table_valeur($table, $cle, $defaut = '', $conserver_null = false) { |
| 3155 | - foreach (explode('/', $cle) as $k) { |
|
| 3156 | - $table = (is_string($table) ? @unserialize($table) : $table); |
|
| 3155 | + foreach (explode('/', $cle) as $k) { |
|
| 3156 | + $table = (is_string($table) ? @unserialize($table) : $table); |
|
| 3157 | 3157 | |
| 3158 | - if (is_object($table)) { |
|
| 3159 | - $table = (($k !== '') and isset($table->$k)) ? $table->$k : $defaut; |
|
| 3160 | - } elseif (is_array($table)) { |
|
| 3161 | - if ($conserver_null) { |
|
| 3162 | - $table = array_key_exists($k, $table) ? $table[$k] : $defaut; |
|
| 3163 | - } else { |
|
| 3164 | - $table = ($table[$k] ?? $defaut); |
|
| 3165 | - } |
|
| 3166 | - } else { |
|
| 3167 | - $table = $defaut; |
|
| 3168 | - break; |
|
| 3169 | - } |
|
| 3170 | - } |
|
| 3158 | + if (is_object($table)) { |
|
| 3159 | + $table = (($k !== '') and isset($table->$k)) ? $table->$k : $defaut; |
|
| 3160 | + } elseif (is_array($table)) { |
|
| 3161 | + if ($conserver_null) { |
|
| 3162 | + $table = array_key_exists($k, $table) ? $table[$k] : $defaut; |
|
| 3163 | + } else { |
|
| 3164 | + $table = ($table[$k] ?? $defaut); |
|
| 3165 | + } |
|
| 3166 | + } else { |
|
| 3167 | + $table = $defaut; |
|
| 3168 | + break; |
|
| 3169 | + } |
|
| 3170 | + } |
|
| 3171 | 3171 | |
| 3172 | - return $table; |
|
| 3172 | + return $table; |
|
| 3173 | 3173 | } |
| 3174 | 3174 | |
| 3175 | 3175 | /** |
@@ -3202,22 +3202,22 @@ discard block |
||
| 3202 | 3202 | * - string : expression trouvée. |
| 3203 | 3203 | **/ |
| 3204 | 3204 | function filtre_match_dist(?string $texte, $expression, $modif = 'UimsS', $capte = 0) { |
| 3205 | - if (intval($modif) and $capte == 0) { |
|
| 3206 | - $capte = $modif; |
|
| 3207 | - $modif = 'UimsS'; |
|
| 3208 | - } |
|
| 3209 | - $expression = str_replace('\/', '/', $expression); |
|
| 3210 | - $expression = str_replace('/', '\/', $expression); |
|
| 3205 | + if (intval($modif) and $capte == 0) { |
|
| 3206 | + $capte = $modif; |
|
| 3207 | + $modif = 'UimsS'; |
|
| 3208 | + } |
|
| 3209 | + $expression = str_replace('\/', '/', $expression); |
|
| 3210 | + $expression = str_replace('/', '\/', $expression); |
|
| 3211 | 3211 | |
| 3212 | - if (preg_match('/' . $expression . '/' . $modif, $texte ?? '', $r)) { |
|
| 3213 | - if (isset($r[$capte])) { |
|
| 3214 | - return $r[$capte]; |
|
| 3215 | - } else { |
|
| 3216 | - return true; |
|
| 3217 | - } |
|
| 3218 | - } |
|
| 3212 | + if (preg_match('/' . $expression . '/' . $modif, $texte ?? '', $r)) { |
|
| 3213 | + if (isset($r[$capte])) { |
|
| 3214 | + return $r[$capte]; |
|
| 3215 | + } else { |
|
| 3216 | + return true; |
|
| 3217 | + } |
|
| 3218 | + } |
|
| 3219 | 3219 | |
| 3220 | - return false; |
|
| 3220 | + return false; |
|
| 3221 | 3221 | } |
| 3222 | 3222 | |
| 3223 | 3223 | |
@@ -3244,10 +3244,10 @@ discard block |
||
| 3244 | 3244 | * Texte |
| 3245 | 3245 | **/ |
| 3246 | 3246 | function replace($texte, $expression, $replace = '', $modif = 'UimsS') { |
| 3247 | - $expression = str_replace('\/', '/', $expression); |
|
| 3248 | - $expression = str_replace('/', '\/', $expression); |
|
| 3247 | + $expression = str_replace('\/', '/', $expression); |
|
| 3248 | + $expression = str_replace('/', '\/', $expression); |
|
| 3249 | 3249 | |
| 3250 | - return preg_replace('/' . $expression . '/' . $modif, $replace, $texte); |
|
| 3250 | + return preg_replace('/' . $expression . '/' . $modif, $replace, $texte); |
|
| 3251 | 3251 | } |
| 3252 | 3252 | |
| 3253 | 3253 | |
@@ -3265,25 +3265,25 @@ discard block |
||
| 3265 | 3265 | **/ |
| 3266 | 3266 | function traiter_doublons_documents(&$doublons, $letexte) { |
| 3267 | 3267 | |
| 3268 | - // Verifier dans le texte & les notes (pas beau, helas) |
|
| 3269 | - $t = $letexte . $GLOBALS['les_notes']; |
|
| 3268 | + // Verifier dans le texte & les notes (pas beau, helas) |
|
| 3269 | + $t = $letexte . $GLOBALS['les_notes']; |
|
| 3270 | 3270 | |
| 3271 | - if ( |
|
| 3272 | - strstr($t, 'spip_document_') // evite le preg_match_all si inutile |
|
| 3273 | - and preg_match_all( |
|
| 3274 | - ',<[^>]+\sclass=["\']spip_document_([0-9]+)[\s"\'],imsS', |
|
| 3275 | - $t, |
|
| 3276 | - $matches, |
|
| 3277 | - PREG_PATTERN_ORDER |
|
| 3278 | - ) |
|
| 3279 | - ) { |
|
| 3280 | - if (!isset($doublons['documents'])) { |
|
| 3281 | - $doublons['documents'] = ''; |
|
| 3282 | - } |
|
| 3283 | - $doublons['documents'] .= ',' . join(',', $matches[1]); |
|
| 3284 | - } |
|
| 3271 | + if ( |
|
| 3272 | + strstr($t, 'spip_document_') // evite le preg_match_all si inutile |
|
| 3273 | + and preg_match_all( |
|
| 3274 | + ',<[^>]+\sclass=["\']spip_document_([0-9]+)[\s"\'],imsS', |
|
| 3275 | + $t, |
|
| 3276 | + $matches, |
|
| 3277 | + PREG_PATTERN_ORDER |
|
| 3278 | + ) |
|
| 3279 | + ) { |
|
| 3280 | + if (!isset($doublons['documents'])) { |
|
| 3281 | + $doublons['documents'] = ''; |
|
| 3282 | + } |
|
| 3283 | + $doublons['documents'] .= ',' . join(',', $matches[1]); |
|
| 3284 | + } |
|
| 3285 | 3285 | |
| 3286 | - return $letexte; |
|
| 3286 | + return $letexte; |
|
| 3287 | 3287 | } |
| 3288 | 3288 | |
| 3289 | 3289 | /** |
@@ -3297,7 +3297,7 @@ discard block |
||
| 3297 | 3297 | * @return string Chaîne vide |
| 3298 | 3298 | **/ |
| 3299 | 3299 | function vide($texte) { |
| 3300 | - return ''; |
|
| 3300 | + return ''; |
|
| 3301 | 3301 | } |
| 3302 | 3302 | |
| 3303 | 3303 | // |
@@ -3326,23 +3326,23 @@ discard block |
||
| 3326 | 3326 | * Code HTML résultant |
| 3327 | 3327 | **/ |
| 3328 | 3328 | function env_to_params($env, $ignore_params = []) { |
| 3329 | - $ignore_params = array_merge( |
|
| 3330 | - ['id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'], |
|
| 3331 | - $ignore_params |
|
| 3332 | - ); |
|
| 3333 | - if (!is_array($env)) { |
|
| 3334 | - $env = unserialize($env); |
|
| 3335 | - } |
|
| 3336 | - $texte = ''; |
|
| 3337 | - if ($env) { |
|
| 3338 | - foreach ($env as $i => $j) { |
|
| 3339 | - if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3340 | - $texte .= "<param name='" . attribut_html($i) . "'\n\tvalue='" . attribut_html($j) . "' />"; |
|
| 3341 | - } |
|
| 3342 | - } |
|
| 3343 | - } |
|
| 3344 | - |
|
| 3345 | - return $texte; |
|
| 3329 | + $ignore_params = array_merge( |
|
| 3330 | + ['id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'], |
|
| 3331 | + $ignore_params |
|
| 3332 | + ); |
|
| 3333 | + if (!is_array($env)) { |
|
| 3334 | + $env = unserialize($env); |
|
| 3335 | + } |
|
| 3336 | + $texte = ''; |
|
| 3337 | + if ($env) { |
|
| 3338 | + foreach ($env as $i => $j) { |
|
| 3339 | + if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3340 | + $texte .= "<param name='" . attribut_html($i) . "'\n\tvalue='" . attribut_html($j) . "' />"; |
|
| 3341 | + } |
|
| 3342 | + } |
|
| 3343 | + } |
|
| 3344 | + |
|
| 3345 | + return $texte; |
|
| 3346 | 3346 | } |
| 3347 | 3347 | |
| 3348 | 3348 | /** |
@@ -3365,23 +3365,23 @@ discard block |
||
| 3365 | 3365 | * Code HTML résultant |
| 3366 | 3366 | **/ |
| 3367 | 3367 | function env_to_attributs($env, $ignore_params = []) { |
| 3368 | - $ignore_params = array_merge( |
|
| 3369 | - ['id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'], |
|
| 3370 | - $ignore_params |
|
| 3371 | - ); |
|
| 3372 | - if (!is_array($env)) { |
|
| 3373 | - $env = unserialize($env); |
|
| 3374 | - } |
|
| 3375 | - $texte = ''; |
|
| 3376 | - if ($env) { |
|
| 3377 | - foreach ($env as $i => $j) { |
|
| 3378 | - if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3379 | - $texte .= attribut_html($i) . "='" . attribut_html($j) . "' "; |
|
| 3380 | - } |
|
| 3381 | - } |
|
| 3382 | - } |
|
| 3368 | + $ignore_params = array_merge( |
|
| 3369 | + ['id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'], |
|
| 3370 | + $ignore_params |
|
| 3371 | + ); |
|
| 3372 | + if (!is_array($env)) { |
|
| 3373 | + $env = unserialize($env); |
|
| 3374 | + } |
|
| 3375 | + $texte = ''; |
|
| 3376 | + if ($env) { |
|
| 3377 | + foreach ($env as $i => $j) { |
|
| 3378 | + if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3379 | + $texte .= attribut_html($i) . "='" . attribut_html($j) . "' "; |
|
| 3380 | + } |
|
| 3381 | + } |
|
| 3382 | + } |
|
| 3383 | 3383 | |
| 3384 | - return $texte; |
|
| 3384 | + return $texte; |
|
| 3385 | 3385 | } |
| 3386 | 3386 | |
| 3387 | 3387 | |
@@ -3399,7 +3399,7 @@ discard block |
||
| 3399 | 3399 | * @return string Chaînes concaténés |
| 3400 | 3400 | **/ |
| 3401 | 3401 | function concat(...$args): string { |
| 3402 | - return join('', $args); |
|
| 3402 | + return join('', $args); |
|
| 3403 | 3403 | } |
| 3404 | 3404 | |
| 3405 | 3405 | |
@@ -3419,23 +3419,23 @@ discard block |
||
| 3419 | 3419 | * Contenu du ou des fichiers, concaténé |
| 3420 | 3420 | **/ |
| 3421 | 3421 | function charge_scripts($files, $script = true) { |
| 3422 | - $flux = ''; |
|
| 3423 | - foreach (is_array($files) ? $files : explode('|', $files) as $file) { |
|
| 3424 | - if (!is_string($file)) { |
|
| 3425 | - continue; |
|
| 3426 | - } |
|
| 3427 | - if ($script) { |
|
| 3428 | - $file = preg_match(',^\w+$,', $file) ? "javascript/$file.js" : ''; |
|
| 3429 | - } |
|
| 3430 | - if ($file) { |
|
| 3431 | - $path = find_in_path($file); |
|
| 3432 | - if ($path) { |
|
| 3433 | - $flux .= spip_file_get_contents($path); |
|
| 3434 | - } |
|
| 3435 | - } |
|
| 3436 | - } |
|
| 3437 | - |
|
| 3438 | - return $flux; |
|
| 3422 | + $flux = ''; |
|
| 3423 | + foreach (is_array($files) ? $files : explode('|', $files) as $file) { |
|
| 3424 | + if (!is_string($file)) { |
|
| 3425 | + continue; |
|
| 3426 | + } |
|
| 3427 | + if ($script) { |
|
| 3428 | + $file = preg_match(',^\w+$,', $file) ? "javascript/$file.js" : ''; |
|
| 3429 | + } |
|
| 3430 | + if ($file) { |
|
| 3431 | + $path = find_in_path($file); |
|
| 3432 | + if ($path) { |
|
| 3433 | + $flux .= spip_file_get_contents($path); |
|
| 3434 | + } |
|
| 3435 | + } |
|
| 3436 | + } |
|
| 3437 | + |
|
| 3438 | + return $flux; |
|
| 3439 | 3439 | } |
| 3440 | 3440 | |
| 3441 | 3441 | /** |
@@ -3446,22 +3446,22 @@ discard block |
||
| 3446 | 3446 | * @return string |
| 3447 | 3447 | */ |
| 3448 | 3448 | function http_img_variante_svg_si_possible($img_file) { |
| 3449 | - // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
|
| 3450 | - // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
|
| 3451 | - if ( |
|
| 3452 | - preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m) |
|
| 3453 | - and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . '-xx.svg' |
|
| 3454 | - and file_exists($variante_svg_generique) |
|
| 3455 | - ) { |
|
| 3456 | - if ($variante_svg_size = substr($variante_svg_generique, 0, -6) . $m[1] . '.svg' and file_exists($variante_svg_size)) { |
|
| 3457 | - $img_file = $variante_svg_size; |
|
| 3458 | - } |
|
| 3459 | - else { |
|
| 3460 | - $img_file = $variante_svg_generique; |
|
| 3461 | - } |
|
| 3462 | - } |
|
| 3449 | + // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
|
| 3450 | + // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
|
| 3451 | + if ( |
|
| 3452 | + preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m) |
|
| 3453 | + and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . '-xx.svg' |
|
| 3454 | + and file_exists($variante_svg_generique) |
|
| 3455 | + ) { |
|
| 3456 | + if ($variante_svg_size = substr($variante_svg_generique, 0, -6) . $m[1] . '.svg' and file_exists($variante_svg_size)) { |
|
| 3457 | + $img_file = $variante_svg_size; |
|
| 3458 | + } |
|
| 3459 | + else { |
|
| 3460 | + $img_file = $variante_svg_generique; |
|
| 3461 | + } |
|
| 3462 | + } |
|
| 3463 | 3463 | |
| 3464 | - return $img_file; |
|
| 3464 | + return $img_file; |
|
| 3465 | 3465 | } |
| 3466 | 3466 | |
| 3467 | 3467 | /** |
@@ -3482,54 +3482,54 @@ discard block |
||
| 3482 | 3482 | */ |
| 3483 | 3483 | function http_img_pack($img, $alt, $atts = '', $title = '', $options = []) { |
| 3484 | 3484 | |
| 3485 | - $img_file = $img; |
|
| 3486 | - if ($p = strpos($img_file, '?')) { |
|
| 3487 | - $img_file = substr($img_file, 0, $p); |
|
| 3488 | - } |
|
| 3489 | - if (!isset($options['chemin_image']) or $options['chemin_image'] == true) { |
|
| 3490 | - $img_file = chemin_image($img); |
|
| 3491 | - } |
|
| 3492 | - else { |
|
| 3493 | - if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true) { |
|
| 3494 | - $img_file = http_img_variante_svg_si_possible($img_file); |
|
| 3495 | - } |
|
| 3496 | - } |
|
| 3497 | - if (stripos($atts, 'width') === false) { |
|
| 3498 | - // utiliser directement l'info de taille presente dans le nom |
|
| 3499 | - if ( |
|
| 3500 | - (!isset($options['utiliser_suffixe_size']) |
|
| 3501 | - or $options['utiliser_suffixe_size'] == true |
|
| 3502 | - or strpos($img_file, '-xx.svg') !== false) |
|
| 3503 | - and (preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs) |
|
| 3504 | - or preg_match(',\?([0-9]+)px$,', $img, $regs)) |
|
| 3505 | - ) { |
|
| 3506 | - $largeur = $hauteur = intval($regs[1]); |
|
| 3507 | - } else { |
|
| 3508 | - $taille = taille_image($img_file); |
|
| 3509 | - [$hauteur, $largeur] = $taille; |
|
| 3510 | - if (!$hauteur or !$largeur) { |
|
| 3511 | - return ''; |
|
| 3512 | - } |
|
| 3513 | - } |
|
| 3514 | - $atts .= " width='" . $largeur . "' height='" . $hauteur . "'"; |
|
| 3515 | - } |
|
| 3516 | - |
|
| 3517 | - if (file_exists($img_file)) { |
|
| 3518 | - $img_file = timestamp($img_file); |
|
| 3519 | - } |
|
| 3520 | - if ($alt === false) { |
|
| 3521 | - $alt = ''; |
|
| 3522 | - } |
|
| 3523 | - elseif ($alt or $alt === '') { |
|
| 3524 | - $alt = " alt='" . attribut_html($alt) . "'"; |
|
| 3525 | - } |
|
| 3526 | - else { |
|
| 3527 | - $alt = " alt='" . attribut_html($title) . "'"; |
|
| 3528 | - } |
|
| 3529 | - return "<img src='$img_file'$alt" |
|
| 3530 | - . ($title ? ' title="' . attribut_html($title) . '"' : '') |
|
| 3531 | - . ' ' . ltrim($atts) |
|
| 3532 | - . ' />'; |
|
| 3485 | + $img_file = $img; |
|
| 3486 | + if ($p = strpos($img_file, '?')) { |
|
| 3487 | + $img_file = substr($img_file, 0, $p); |
|
| 3488 | + } |
|
| 3489 | + if (!isset($options['chemin_image']) or $options['chemin_image'] == true) { |
|
| 3490 | + $img_file = chemin_image($img); |
|
| 3491 | + } |
|
| 3492 | + else { |
|
| 3493 | + if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true) { |
|
| 3494 | + $img_file = http_img_variante_svg_si_possible($img_file); |
|
| 3495 | + } |
|
| 3496 | + } |
|
| 3497 | + if (stripos($atts, 'width') === false) { |
|
| 3498 | + // utiliser directement l'info de taille presente dans le nom |
|
| 3499 | + if ( |
|
| 3500 | + (!isset($options['utiliser_suffixe_size']) |
|
| 3501 | + or $options['utiliser_suffixe_size'] == true |
|
| 3502 | + or strpos($img_file, '-xx.svg') !== false) |
|
| 3503 | + and (preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs) |
|
| 3504 | + or preg_match(',\?([0-9]+)px$,', $img, $regs)) |
|
| 3505 | + ) { |
|
| 3506 | + $largeur = $hauteur = intval($regs[1]); |
|
| 3507 | + } else { |
|
| 3508 | + $taille = taille_image($img_file); |
|
| 3509 | + [$hauteur, $largeur] = $taille; |
|
| 3510 | + if (!$hauteur or !$largeur) { |
|
| 3511 | + return ''; |
|
| 3512 | + } |
|
| 3513 | + } |
|
| 3514 | + $atts .= " width='" . $largeur . "' height='" . $hauteur . "'"; |
|
| 3515 | + } |
|
| 3516 | + |
|
| 3517 | + if (file_exists($img_file)) { |
|
| 3518 | + $img_file = timestamp($img_file); |
|
| 3519 | + } |
|
| 3520 | + if ($alt === false) { |
|
| 3521 | + $alt = ''; |
|
| 3522 | + } |
|
| 3523 | + elseif ($alt or $alt === '') { |
|
| 3524 | + $alt = " alt='" . attribut_html($alt) . "'"; |
|
| 3525 | + } |
|
| 3526 | + else { |
|
| 3527 | + $alt = " alt='" . attribut_html($title) . "'"; |
|
| 3528 | + } |
|
| 3529 | + return "<img src='$img_file'$alt" |
|
| 3530 | + . ($title ? ' title="' . attribut_html($title) . '"' : '') |
|
| 3531 | + . ' ' . ltrim($atts) |
|
| 3532 | + . ' />'; |
|
| 3533 | 3533 | } |
| 3534 | 3534 | |
| 3535 | 3535 | /** |
@@ -3541,70 +3541,70 @@ discard block |
||
| 3541 | 3541 | * @return string |
| 3542 | 3542 | */ |
| 3543 | 3543 | function http_style_background($img, $att = '', $size = null) { |
| 3544 | - if ($size and is_numeric($size)) { |
|
| 3545 | - $size = trim($size) . 'px'; |
|
| 3546 | - } |
|
| 3547 | - return " style='background" . |
|
| 3548 | - ($att ? '' : '-image') . ': url("' . chemin_image($img) . '")' . ($att ? (' ' . $att) : '') . ';' |
|
| 3549 | - . ($size ? "background-size:{$size};" : '') |
|
| 3550 | - . "'"; |
|
| 3544 | + if ($size and is_numeric($size)) { |
|
| 3545 | + $size = trim($size) . 'px'; |
|
| 3546 | + } |
|
| 3547 | + return " style='background" . |
|
| 3548 | + ($att ? '' : '-image') . ': url("' . chemin_image($img) . '")' . ($att ? (' ' . $att) : '') . ';' |
|
| 3549 | + . ($size ? "background-size:{$size};" : '') |
|
| 3550 | + . "'"; |
|
| 3551 | 3551 | } |
| 3552 | 3552 | |
| 3553 | 3553 | |
| 3554 | 3554 | function helper_filtre_balise_img_svg_arguments($alt_or_size, $class_or_size, $size) { |
| 3555 | - $args = [$alt_or_size, $class_or_size, $size]; |
|
| 3556 | - while (is_null(end($args)) and count($args)) { |
|
| 3557 | - array_pop($args); |
|
| 3558 | - } |
|
| 3559 | - if (!count($args)) { |
|
| 3560 | - return [null, null, null]; |
|
| 3561 | - } |
|
| 3562 | - if (count($args) < 3) { |
|
| 3563 | - $maybe_size = array_pop($args); |
|
| 3564 | - // @2x |
|
| 3565 | - // @1.5x |
|
| 3566 | - // 512 |
|
| 3567 | - // 512x* |
|
| 3568 | - // 512x300 |
|
| 3569 | - if ( |
|
| 3570 | - !strlen($maybe_size) |
|
| 3571 | - or !preg_match(',^(@\d+(\.\d+)?x|\d+(x\*)?|\d+x\d+)$,', trim($maybe_size)) |
|
| 3572 | - ) { |
|
| 3573 | - $args[] = $maybe_size; |
|
| 3574 | - $maybe_size = null; |
|
| 3575 | - } |
|
| 3576 | - while (count($args) < 2) { |
|
| 3577 | - $args[] = null; // default alt or class |
|
| 3578 | - } |
|
| 3579 | - $args[] = $maybe_size; |
|
| 3580 | - } |
|
| 3581 | - return $args; |
|
| 3555 | + $args = [$alt_or_size, $class_or_size, $size]; |
|
| 3556 | + while (is_null(end($args)) and count($args)) { |
|
| 3557 | + array_pop($args); |
|
| 3558 | + } |
|
| 3559 | + if (!count($args)) { |
|
| 3560 | + return [null, null, null]; |
|
| 3561 | + } |
|
| 3562 | + if (count($args) < 3) { |
|
| 3563 | + $maybe_size = array_pop($args); |
|
| 3564 | + // @2x |
|
| 3565 | + // @1.5x |
|
| 3566 | + // 512 |
|
| 3567 | + // 512x* |
|
| 3568 | + // 512x300 |
|
| 3569 | + if ( |
|
| 3570 | + !strlen($maybe_size) |
|
| 3571 | + or !preg_match(',^(@\d+(\.\d+)?x|\d+(x\*)?|\d+x\d+)$,', trim($maybe_size)) |
|
| 3572 | + ) { |
|
| 3573 | + $args[] = $maybe_size; |
|
| 3574 | + $maybe_size = null; |
|
| 3575 | + } |
|
| 3576 | + while (count($args) < 2) { |
|
| 3577 | + $args[] = null; // default alt or class |
|
| 3578 | + } |
|
| 3579 | + $args[] = $maybe_size; |
|
| 3580 | + } |
|
| 3581 | + return $args; |
|
| 3582 | 3582 | } |
| 3583 | 3583 | |
| 3584 | 3584 | function helper_filtre_balise_img_svg_size($img, $size) { |
| 3585 | - // si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite |
|
| 3586 | - if (strpos($size, '@') === 0 and substr($size, -1) === 'x') { |
|
| 3587 | - $coef = floatval(substr($size, 1, -1)); |
|
| 3588 | - [$h, $w] = taille_image($img); |
|
| 3589 | - $height = intval(round($h / $coef)); |
|
| 3590 | - $width = intval(round($w / $coef)); |
|
| 3591 | - } |
|
| 3592 | - // sinon c'est une valeur seule si image caree ou largeurxhauteur |
|
| 3593 | - else { |
|
| 3594 | - $size = explode('x', $size, 2); |
|
| 3595 | - $size = array_map('trim', $size); |
|
| 3596 | - $height = $width = intval(array_shift($size)); |
|
| 3597 | - |
|
| 3598 | - if (count($size) and reset($size)) { |
|
| 3599 | - $height = array_shift($size); |
|
| 3600 | - if ($height === '*') { |
|
| 3601 | - [$h, $w] = taille_image($img); |
|
| 3602 | - $height = intval(round($h * $width / $w)); |
|
| 3603 | - } |
|
| 3604 | - } |
|
| 3605 | - } |
|
| 3606 | - |
|
| 3607 | - return [$width, $height]; |
|
| 3585 | + // si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite |
|
| 3586 | + if (strpos($size, '@') === 0 and substr($size, -1) === 'x') { |
|
| 3587 | + $coef = floatval(substr($size, 1, -1)); |
|
| 3588 | + [$h, $w] = taille_image($img); |
|
| 3589 | + $height = intval(round($h / $coef)); |
|
| 3590 | + $width = intval(round($w / $coef)); |
|
| 3591 | + } |
|
| 3592 | + // sinon c'est une valeur seule si image caree ou largeurxhauteur |
|
| 3593 | + else { |
|
| 3594 | + $size = explode('x', $size, 2); |
|
| 3595 | + $size = array_map('trim', $size); |
|
| 3596 | + $height = $width = intval(array_shift($size)); |
|
| 3597 | + |
|
| 3598 | + if (count($size) and reset($size)) { |
|
| 3599 | + $height = array_shift($size); |
|
| 3600 | + if ($height === '*') { |
|
| 3601 | + [$h, $w] = taille_image($img); |
|
| 3602 | + $height = intval(round($h * $width / $w)); |
|
| 3603 | + } |
|
| 3604 | + } |
|
| 3605 | + } |
|
| 3606 | + |
|
| 3607 | + return [$width, $height]; |
|
| 3608 | 3608 | } |
| 3609 | 3609 | |
| 3610 | 3610 | /** |
@@ -3640,43 +3640,43 @@ discard block |
||
| 3640 | 3640 | */ |
| 3641 | 3641 | function filtre_balise_img_dist($img, $alt = '', $class = null, $size = null) { |
| 3642 | 3642 | |
| 3643 | - [$alt, $class, $size] = helper_filtre_balise_img_svg_arguments($alt, $class, $size); |
|
| 3644 | - |
|
| 3645 | - $img = trim($img); |
|
| 3646 | - if (strpos($img, '<img') === 0) { |
|
| 3647 | - if (!is_null($alt)) { |
|
| 3648 | - $img = inserer_attribut($img, 'alt', $alt); |
|
| 3649 | - } |
|
| 3650 | - if (!is_null($class)) { |
|
| 3651 | - if (strlen($class)) { |
|
| 3652 | - $img = inserer_attribut($img, 'class', $class); |
|
| 3653 | - } |
|
| 3654 | - else { |
|
| 3655 | - $img = vider_attribut($img, 'class'); |
|
| 3656 | - } |
|
| 3657 | - } |
|
| 3658 | - } |
|
| 3659 | - else { |
|
| 3660 | - $img = http_img_pack( |
|
| 3661 | - $img, |
|
| 3662 | - $alt, |
|
| 3663 | - $class ? " class='" . attribut_html($class) . "'" : '', |
|
| 3664 | - '', |
|
| 3665 | - ['chemin_image' => false, 'utiliser_suffixe_size' => false] |
|
| 3666 | - ); |
|
| 3667 | - if (is_null($alt)) { |
|
| 3668 | - $img = vider_attribut($img, 'alt'); |
|
| 3669 | - } |
|
| 3670 | - } |
|
| 3671 | - |
|
| 3672 | - if ($img and !is_null($size) and strlen($size = trim($size))) { |
|
| 3673 | - [$width, $height] = helper_filtre_balise_img_svg_size($img, $size); |
|
| 3674 | - |
|
| 3675 | - $img = inserer_attribut($img, 'width', $width); |
|
| 3676 | - $img = inserer_attribut($img, 'height', $height); |
|
| 3677 | - } |
|
| 3678 | - |
|
| 3679 | - return $img; |
|
| 3643 | + [$alt, $class, $size] = helper_filtre_balise_img_svg_arguments($alt, $class, $size); |
|
| 3644 | + |
|
| 3645 | + $img = trim($img); |
|
| 3646 | + if (strpos($img, '<img') === 0) { |
|
| 3647 | + if (!is_null($alt)) { |
|
| 3648 | + $img = inserer_attribut($img, 'alt', $alt); |
|
| 3649 | + } |
|
| 3650 | + if (!is_null($class)) { |
|
| 3651 | + if (strlen($class)) { |
|
| 3652 | + $img = inserer_attribut($img, 'class', $class); |
|
| 3653 | + } |
|
| 3654 | + else { |
|
| 3655 | + $img = vider_attribut($img, 'class'); |
|
| 3656 | + } |
|
| 3657 | + } |
|
| 3658 | + } |
|
| 3659 | + else { |
|
| 3660 | + $img = http_img_pack( |
|
| 3661 | + $img, |
|
| 3662 | + $alt, |
|
| 3663 | + $class ? " class='" . attribut_html($class) . "'" : '', |
|
| 3664 | + '', |
|
| 3665 | + ['chemin_image' => false, 'utiliser_suffixe_size' => false] |
|
| 3666 | + ); |
|
| 3667 | + if (is_null($alt)) { |
|
| 3668 | + $img = vider_attribut($img, 'alt'); |
|
| 3669 | + } |
|
| 3670 | + } |
|
| 3671 | + |
|
| 3672 | + if ($img and !is_null($size) and strlen($size = trim($size))) { |
|
| 3673 | + [$width, $height] = helper_filtre_balise_img_svg_size($img, $size); |
|
| 3674 | + |
|
| 3675 | + $img = inserer_attribut($img, 'width', $width); |
|
| 3676 | + $img = inserer_attribut($img, 'height', $height); |
|
| 3677 | + } |
|
| 3678 | + |
|
| 3679 | + return $img; |
|
| 3680 | 3680 | } |
| 3681 | 3681 | |
| 3682 | 3682 | |
@@ -3710,80 +3710,80 @@ discard block |
||
| 3710 | 3710 | */ |
| 3711 | 3711 | function filtre_balise_svg_dist($img, $alt = '', $class = null, $size = null) { |
| 3712 | 3712 | |
| 3713 | - $svg = null; |
|
| 3714 | - $img = trim($img); |
|
| 3715 | - $img_file = $img; |
|
| 3716 | - if (strpos($img, '<svg') === false) { |
|
| 3717 | - if ($p = strpos($img_file, '?')) { |
|
| 3718 | - $img_file = substr($img_file, 0, $p); |
|
| 3719 | - } |
|
| 3720 | - |
|
| 3721 | - // ne jamais operer directement sur une image distante pour des raisons de perfo |
|
| 3722 | - // la copie locale a toutes les chances d'etre la ou de resservir |
|
| 3723 | - if (tester_url_absolue($img_file)) { |
|
| 3724 | - include_spip('inc/distant'); |
|
| 3725 | - $fichier = copie_locale($img_file); |
|
| 3726 | - $img_file = ($fichier ? _DIR_RACINE . $fichier : $img_file); |
|
| 3727 | - } |
|
| 3728 | - |
|
| 3729 | - if ( |
|
| 3730 | - !$img_file |
|
| 3731 | - or !file_exists($img_file) |
|
| 3732 | - or !$svg = file_get_contents($img_file) |
|
| 3733 | - ) { |
|
| 3734 | - return ''; |
|
| 3735 | - } |
|
| 3736 | - } |
|
| 3737 | - |
|
| 3738 | - if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) { |
|
| 3739 | - return ''; |
|
| 3740 | - } |
|
| 3741 | - |
|
| 3742 | - [$alt, $class, $size] = helper_filtre_balise_img_svg_arguments($alt, $class, $size); |
|
| 3743 | - |
|
| 3744 | - $balise_svg = $match[0]; |
|
| 3745 | - $balise_svg_source = $balise_svg; |
|
| 3746 | - |
|
| 3747 | - // entete XML à supprimer |
|
| 3748 | - $svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg); |
|
| 3749 | - |
|
| 3750 | - // IE est toujours mon ami |
|
| 3751 | - $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false'); |
|
| 3752 | - |
|
| 3753 | - // regler la classe |
|
| 3754 | - if (!is_null($class)) { |
|
| 3755 | - if (strlen($class)) { |
|
| 3756 | - $balise_svg = inserer_attribut($balise_svg, 'class', $class); |
|
| 3757 | - } |
|
| 3758 | - else { |
|
| 3759 | - $balise_svg = vider_attribut($balise_svg, 'class'); |
|
| 3760 | - } |
|
| 3761 | - } |
|
| 3762 | - |
|
| 3763 | - // regler le alt |
|
| 3764 | - if ($alt) { |
|
| 3765 | - $balise_svg = inserer_attribut($balise_svg, 'role', 'img'); |
|
| 3766 | - $id = 'img-svg-title-' . substr(md5("$img_file:$svg:$alt"), 0, 4); |
|
| 3767 | - $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
|
| 3768 | - $title = "<title id=\"$id\">" . entites_html($alt) . "</title>\n"; |
|
| 3769 | - $balise_svg .= $title; |
|
| 3770 | - } |
|
| 3771 | - else { |
|
| 3772 | - $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true'); |
|
| 3773 | - } |
|
| 3774 | - |
|
| 3775 | - $svg = str_replace($balise_svg_source, $balise_svg, $svg); |
|
| 3776 | - |
|
| 3777 | - if (!is_null($size) and strlen($size = trim($size))) { |
|
| 3778 | - [$width, $height] = helper_filtre_balise_img_svg_size($svg, $size); |
|
| 3779 | - |
|
| 3780 | - if (!function_exists('svg_redimensionner')) { |
|
| 3781 | - include_spip('inc/svg'); |
|
| 3782 | - } |
|
| 3783 | - $svg = svg_redimensionner($svg, $width, $height); |
|
| 3784 | - } |
|
| 3785 | - |
|
| 3786 | - return $svg; |
|
| 3713 | + $svg = null; |
|
| 3714 | + $img = trim($img); |
|
| 3715 | + $img_file = $img; |
|
| 3716 | + if (strpos($img, '<svg') === false) { |
|
| 3717 | + if ($p = strpos($img_file, '?')) { |
|
| 3718 | + $img_file = substr($img_file, 0, $p); |
|
| 3719 | + } |
|
| 3720 | + |
|
| 3721 | + // ne jamais operer directement sur une image distante pour des raisons de perfo |
|
| 3722 | + // la copie locale a toutes les chances d'etre la ou de resservir |
|
| 3723 | + if (tester_url_absolue($img_file)) { |
|
| 3724 | + include_spip('inc/distant'); |
|
| 3725 | + $fichier = copie_locale($img_file); |
|
| 3726 | + $img_file = ($fichier ? _DIR_RACINE . $fichier : $img_file); |
|
| 3727 | + } |
|
| 3728 | + |
|
| 3729 | + if ( |
|
| 3730 | + !$img_file |
|
| 3731 | + or !file_exists($img_file) |
|
| 3732 | + or !$svg = file_get_contents($img_file) |
|
| 3733 | + ) { |
|
| 3734 | + return ''; |
|
| 3735 | + } |
|
| 3736 | + } |
|
| 3737 | + |
|
| 3738 | + if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) { |
|
| 3739 | + return ''; |
|
| 3740 | + } |
|
| 3741 | + |
|
| 3742 | + [$alt, $class, $size] = helper_filtre_balise_img_svg_arguments($alt, $class, $size); |
|
| 3743 | + |
|
| 3744 | + $balise_svg = $match[0]; |
|
| 3745 | + $balise_svg_source = $balise_svg; |
|
| 3746 | + |
|
| 3747 | + // entete XML à supprimer |
|
| 3748 | + $svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg); |
|
| 3749 | + |
|
| 3750 | + // IE est toujours mon ami |
|
| 3751 | + $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false'); |
|
| 3752 | + |
|
| 3753 | + // regler la classe |
|
| 3754 | + if (!is_null($class)) { |
|
| 3755 | + if (strlen($class)) { |
|
| 3756 | + $balise_svg = inserer_attribut($balise_svg, 'class', $class); |
|
| 3757 | + } |
|
| 3758 | + else { |
|
| 3759 | + $balise_svg = vider_attribut($balise_svg, 'class'); |
|
| 3760 | + } |
|
| 3761 | + } |
|
| 3762 | + |
|
| 3763 | + // regler le alt |
|
| 3764 | + if ($alt) { |
|
| 3765 | + $balise_svg = inserer_attribut($balise_svg, 'role', 'img'); |
|
| 3766 | + $id = 'img-svg-title-' . substr(md5("$img_file:$svg:$alt"), 0, 4); |
|
| 3767 | + $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
|
| 3768 | + $title = "<title id=\"$id\">" . entites_html($alt) . "</title>\n"; |
|
| 3769 | + $balise_svg .= $title; |
|
| 3770 | + } |
|
| 3771 | + else { |
|
| 3772 | + $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true'); |
|
| 3773 | + } |
|
| 3774 | + |
|
| 3775 | + $svg = str_replace($balise_svg_source, $balise_svg, $svg); |
|
| 3776 | + |
|
| 3777 | + if (!is_null($size) and strlen($size = trim($size))) { |
|
| 3778 | + [$width, $height] = helper_filtre_balise_img_svg_size($svg, $size); |
|
| 3779 | + |
|
| 3780 | + if (!function_exists('svg_redimensionner')) { |
|
| 3781 | + include_spip('inc/svg'); |
|
| 3782 | + } |
|
| 3783 | + $svg = svg_redimensionner($svg, $width, $height); |
|
| 3784 | + } |
|
| 3785 | + |
|
| 3786 | + return $svg; |
|
| 3787 | 3787 | } |
| 3788 | 3788 | |
| 3789 | 3789 | |
@@ -3809,18 +3809,18 @@ discard block |
||
| 3809 | 3809 | * Code HTML résultant |
| 3810 | 3810 | **/ |
| 3811 | 3811 | function filtre_foreach_dist($tableau, $modele = 'foreach') { |
| 3812 | - $texte = ''; |
|
| 3813 | - if (is_array($tableau)) { |
|
| 3814 | - foreach ($tableau as $k => $v) { |
|
| 3815 | - $res = recuperer_fond( |
|
| 3816 | - 'modeles/' . $modele, |
|
| 3817 | - array_merge(['cle' => $k], (is_array($v) ? $v : ['valeur' => $v])) |
|
| 3818 | - ); |
|
| 3819 | - $texte .= $res; |
|
| 3820 | - } |
|
| 3821 | - } |
|
| 3812 | + $texte = ''; |
|
| 3813 | + if (is_array($tableau)) { |
|
| 3814 | + foreach ($tableau as $k => $v) { |
|
| 3815 | + $res = recuperer_fond( |
|
| 3816 | + 'modeles/' . $modele, |
|
| 3817 | + array_merge(['cle' => $k], (is_array($v) ? $v : ['valeur' => $v])) |
|
| 3818 | + ); |
|
| 3819 | + $texte .= $res; |
|
| 3820 | + } |
|
| 3821 | + } |
|
| 3822 | 3822 | |
| 3823 | - return $texte; |
|
| 3823 | + return $texte; |
|
| 3824 | 3824 | } |
| 3825 | 3825 | |
| 3826 | 3826 | |
@@ -3845,37 +3845,37 @@ discard block |
||
| 3845 | 3845 | * - tout : retourne toutes les informations du plugin actif |
| 3846 | 3846 | **/ |
| 3847 | 3847 | function filtre_info_plugin_dist($plugin, $type_info, $reload = false) { |
| 3848 | - include_spip('inc/plugin'); |
|
| 3849 | - $plugin = strtoupper($plugin); |
|
| 3850 | - $plugins_actifs = liste_plugin_actifs(); |
|
| 3851 | - |
|
| 3852 | - if (!$plugin) { |
|
| 3853 | - return serialize(array_keys($plugins_actifs)); |
|
| 3854 | - } elseif (empty($plugins_actifs[$plugin]) and !$reload) { |
|
| 3855 | - return ''; |
|
| 3856 | - } elseif (($type_info == 'est_actif') and !$reload) { |
|
| 3857 | - return $plugins_actifs[$plugin] ? 1 : 0; |
|
| 3858 | - } elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) { |
|
| 3859 | - return $plugins_actifs[$plugin][$type_info]; |
|
| 3860 | - } else { |
|
| 3861 | - $get_infos = charger_fonction('get_infos', 'plugins'); |
|
| 3862 | - // On prend en compte les extensions |
|
| 3863 | - if (!is_dir($plugins_actifs[$plugin]['dir_type'])) { |
|
| 3864 | - $dir_plugins = constant($plugins_actifs[$plugin]['dir_type']); |
|
| 3865 | - } else { |
|
| 3866 | - $dir_plugins = $plugins_actifs[$plugin]['dir_type']; |
|
| 3867 | - } |
|
| 3868 | - if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) { |
|
| 3869 | - return ''; |
|
| 3870 | - } |
|
| 3871 | - if ($type_info == 'tout') { |
|
| 3872 | - return $infos; |
|
| 3873 | - } elseif ($type_info == 'est_actif') { |
|
| 3874 | - return $infos ? 1 : 0; |
|
| 3875 | - } else { |
|
| 3876 | - return strval($infos[$type_info]); |
|
| 3877 | - } |
|
| 3878 | - } |
|
| 3848 | + include_spip('inc/plugin'); |
|
| 3849 | + $plugin = strtoupper($plugin); |
|
| 3850 | + $plugins_actifs = liste_plugin_actifs(); |
|
| 3851 | + |
|
| 3852 | + if (!$plugin) { |
|
| 3853 | + return serialize(array_keys($plugins_actifs)); |
|
| 3854 | + } elseif (empty($plugins_actifs[$plugin]) and !$reload) { |
|
| 3855 | + return ''; |
|
| 3856 | + } elseif (($type_info == 'est_actif') and !$reload) { |
|
| 3857 | + return $plugins_actifs[$plugin] ? 1 : 0; |
|
| 3858 | + } elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) { |
|
| 3859 | + return $plugins_actifs[$plugin][$type_info]; |
|
| 3860 | + } else { |
|
| 3861 | + $get_infos = charger_fonction('get_infos', 'plugins'); |
|
| 3862 | + // On prend en compte les extensions |
|
| 3863 | + if (!is_dir($plugins_actifs[$plugin]['dir_type'])) { |
|
| 3864 | + $dir_plugins = constant($plugins_actifs[$plugin]['dir_type']); |
|
| 3865 | + } else { |
|
| 3866 | + $dir_plugins = $plugins_actifs[$plugin]['dir_type']; |
|
| 3867 | + } |
|
| 3868 | + if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) { |
|
| 3869 | + return ''; |
|
| 3870 | + } |
|
| 3871 | + if ($type_info == 'tout') { |
|
| 3872 | + return $infos; |
|
| 3873 | + } elseif ($type_info == 'est_actif') { |
|
| 3874 | + return $infos ? 1 : 0; |
|
| 3875 | + } else { |
|
| 3876 | + return strval($infos[$type_info]); |
|
| 3877 | + } |
|
| 3878 | + } |
|
| 3879 | 3879 | } |
| 3880 | 3880 | |
| 3881 | 3881 | |
@@ -3902,9 +3902,9 @@ discard block |
||
| 3902 | 3902 | * Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent) |
| 3903 | 3903 | */ |
| 3904 | 3904 | function puce_changement_statut($id_objet, $statut, $id_rubrique, $type, $ajax = false) { |
| 3905 | - $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3905 | + $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3906 | 3906 | |
| 3907 | - return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax); |
|
| 3907 | + return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax); |
|
| 3908 | 3908 | } |
| 3909 | 3909 | |
| 3910 | 3910 | |
@@ -3934,19 +3934,19 @@ discard block |
||
| 3934 | 3934 | * Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent) |
| 3935 | 3935 | */ |
| 3936 | 3936 | function filtre_puce_statut_dist($statut, $objet, $id_objet = 0, $id_parent = 0) { |
| 3937 | - static $puce_statut = null; |
|
| 3938 | - if (!$puce_statut) { |
|
| 3939 | - $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3940 | - } |
|
| 3937 | + static $puce_statut = null; |
|
| 3938 | + if (!$puce_statut) { |
|
| 3939 | + $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3940 | + } |
|
| 3941 | 3941 | |
| 3942 | - return $puce_statut( |
|
| 3943 | - $id_objet, |
|
| 3944 | - $statut, |
|
| 3945 | - $id_parent, |
|
| 3946 | - $objet, |
|
| 3947 | - false, |
|
| 3948 | - objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false |
|
| 3949 | - ); |
|
| 3942 | + return $puce_statut( |
|
| 3943 | + $id_objet, |
|
| 3944 | + $statut, |
|
| 3945 | + $id_parent, |
|
| 3946 | + $objet, |
|
| 3947 | + false, |
|
| 3948 | + objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false |
|
| 3949 | + ); |
|
| 3950 | 3950 | } |
| 3951 | 3951 | |
| 3952 | 3952 | |
@@ -3973,98 +3973,98 @@ discard block |
||
| 3973 | 3973 | * hash du contexte |
| 3974 | 3974 | */ |
| 3975 | 3975 | function encoder_contexte_ajax($c, $form = '', $emboite = null, $ajaxid = '') { |
| 3976 | - $env = null; |
|
| 3977 | - if ( |
|
| 3978 | - is_string($c) |
|
| 3979 | - and @unserialize($c) !== false |
|
| 3980 | - ) { |
|
| 3981 | - $c = unserialize($c); |
|
| 3982 | - } |
|
| 3983 | - |
|
| 3984 | - // supprimer les parametres debut_x |
|
| 3985 | - // pour que la pagination ajax ne soit pas plantee |
|
| 3986 | - // si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0, |
|
| 3987 | - // le debut_x=0 n'existe pas, et on resterait sur 1 |
|
| 3988 | - if (is_array($c)) { |
|
| 3989 | - foreach ($c as $k => $v) { |
|
| 3990 | - if (strpos($k, 'debut_') === 0) { |
|
| 3991 | - unset($c[$k]); |
|
| 3992 | - } |
|
| 3993 | - } |
|
| 3994 | - } |
|
| 3995 | - |
|
| 3996 | - if (!function_exists('calculer_cle_action')) { |
|
| 3997 | - include_spip('inc/securiser_action'); |
|
| 3998 | - } |
|
| 3999 | - |
|
| 4000 | - $c = serialize($c); |
|
| 4001 | - $cle = calculer_cle_action($form . $c); |
|
| 4002 | - $c = "$cle:$c"; |
|
| 4003 | - |
|
| 4004 | - // on ne stocke pas les contextes dans des fichiers en cache |
|
| 4005 | - // par defaut, sauf si cette configuration a été forcée |
|
| 4006 | - // OU que la longueur de l’argument géneré est plus long |
|
| 4007 | - // que ce qui est toléré. |
|
| 4008 | - $cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX); |
|
| 4009 | - if (!$cache_contextes_ajax) { |
|
| 4010 | - $env = $c; |
|
| 4011 | - if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 4012 | - $env = gzdeflate($env); |
|
| 4013 | - } |
|
| 4014 | - $env = _xor($env); |
|
| 4015 | - $env = base64_encode($env); |
|
| 4016 | - $len = strlen($env); |
|
| 4017 | - // Si l’url est trop longue pour le navigateur |
|
| 4018 | - $max_len = _CACHE_CONTEXTES_AJAX_SUR_LONGUEUR; |
|
| 4019 | - if ($len > $max_len) { |
|
| 4020 | - $cache_contextes_ajax = true; |
|
| 4021 | - spip_log( |
|
| 4022 | - 'Contextes AJAX forces en fichiers !' |
|
| 4023 | - . ' Cela arrive lorsque la valeur du contexte' |
|
| 4024 | - . " depasse la longueur maximale autorisee ($max_len). Ici : $len.", |
|
| 4025 | - _LOG_AVERTISSEMENT |
|
| 4026 | - ); |
|
| 4027 | - } |
|
| 4028 | - // Sinon si Suhosin est actif et a une la valeur maximale des variables en GET... |
|
| 4029 | - elseif ( |
|
| 4030 | - $max_len = @ini_get('suhosin.get.max_value_length') |
|
| 4031 | - and $max_len < $len |
|
| 4032 | - ) { |
|
| 4033 | - $cache_contextes_ajax = true; |
|
| 4034 | - spip_log('Contextes AJAX forces en fichiers !' |
|
| 4035 | - . ' Cela arrive lorsque la valeur du contexte' |
|
| 4036 | - . ' depasse la longueur maximale autorisee par Suhosin' |
|
| 4037 | - . " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len." |
|
| 4038 | - . ' Vous devriez modifier les parametres de Suhosin' |
|
| 4039 | - . ' pour accepter au moins 1024 caracteres.', _LOG_AVERTISSEMENT); |
|
| 4040 | - } |
|
| 4041 | - } |
|
| 4042 | - |
|
| 4043 | - if ($cache_contextes_ajax) { |
|
| 4044 | - $dir = sous_repertoire(_DIR_CACHE, 'contextes'); |
|
| 4045 | - // stocker les contextes sur disque et ne passer qu'un hash dans l'url |
|
| 4046 | - $md5 = md5($c); |
|
| 4047 | - ecrire_fichier("$dir/c$md5", $c); |
|
| 4048 | - $env = $md5; |
|
| 4049 | - } |
|
| 4050 | - |
|
| 4051 | - if ($emboite === null) { |
|
| 4052 | - return $env; |
|
| 4053 | - } |
|
| 4054 | - if (!trim($emboite)) { |
|
| 4055 | - return ''; |
|
| 4056 | - } |
|
| 4057 | - // toujours encoder l'url source dans le bloc ajax |
|
| 4058 | - $r = self(); |
|
| 4059 | - $r = ' data-origin="' . $r . '"'; |
|
| 4060 | - $class = 'ajaxbloc'; |
|
| 4061 | - if ($ajaxid and is_string($ajaxid)) { |
|
| 4062 | - // ajaxid est normalement conforme a un nom de classe css |
|
| 4063 | - // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution |
|
| 4064 | - $class .= ' ajax-id-' . entites_html($ajaxid); |
|
| 4065 | - } |
|
| 4066 | - |
|
| 4067 | - return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 3976 | + $env = null; |
|
| 3977 | + if ( |
|
| 3978 | + is_string($c) |
|
| 3979 | + and @unserialize($c) !== false |
|
| 3980 | + ) { |
|
| 3981 | + $c = unserialize($c); |
|
| 3982 | + } |
|
| 3983 | + |
|
| 3984 | + // supprimer les parametres debut_x |
|
| 3985 | + // pour que la pagination ajax ne soit pas plantee |
|
| 3986 | + // si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0, |
|
| 3987 | + // le debut_x=0 n'existe pas, et on resterait sur 1 |
|
| 3988 | + if (is_array($c)) { |
|
| 3989 | + foreach ($c as $k => $v) { |
|
| 3990 | + if (strpos($k, 'debut_') === 0) { |
|
| 3991 | + unset($c[$k]); |
|
| 3992 | + } |
|
| 3993 | + } |
|
| 3994 | + } |
|
| 3995 | + |
|
| 3996 | + if (!function_exists('calculer_cle_action')) { |
|
| 3997 | + include_spip('inc/securiser_action'); |
|
| 3998 | + } |
|
| 3999 | + |
|
| 4000 | + $c = serialize($c); |
|
| 4001 | + $cle = calculer_cle_action($form . $c); |
|
| 4002 | + $c = "$cle:$c"; |
|
| 4003 | + |
|
| 4004 | + // on ne stocke pas les contextes dans des fichiers en cache |
|
| 4005 | + // par defaut, sauf si cette configuration a été forcée |
|
| 4006 | + // OU que la longueur de l’argument géneré est plus long |
|
| 4007 | + // que ce qui est toléré. |
|
| 4008 | + $cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX); |
|
| 4009 | + if (!$cache_contextes_ajax) { |
|
| 4010 | + $env = $c; |
|
| 4011 | + if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 4012 | + $env = gzdeflate($env); |
|
| 4013 | + } |
|
| 4014 | + $env = _xor($env); |
|
| 4015 | + $env = base64_encode($env); |
|
| 4016 | + $len = strlen($env); |
|
| 4017 | + // Si l’url est trop longue pour le navigateur |
|
| 4018 | + $max_len = _CACHE_CONTEXTES_AJAX_SUR_LONGUEUR; |
|
| 4019 | + if ($len > $max_len) { |
|
| 4020 | + $cache_contextes_ajax = true; |
|
| 4021 | + spip_log( |
|
| 4022 | + 'Contextes AJAX forces en fichiers !' |
|
| 4023 | + . ' Cela arrive lorsque la valeur du contexte' |
|
| 4024 | + . " depasse la longueur maximale autorisee ($max_len). Ici : $len.", |
|
| 4025 | + _LOG_AVERTISSEMENT |
|
| 4026 | + ); |
|
| 4027 | + } |
|
| 4028 | + // Sinon si Suhosin est actif et a une la valeur maximale des variables en GET... |
|
| 4029 | + elseif ( |
|
| 4030 | + $max_len = @ini_get('suhosin.get.max_value_length') |
|
| 4031 | + and $max_len < $len |
|
| 4032 | + ) { |
|
| 4033 | + $cache_contextes_ajax = true; |
|
| 4034 | + spip_log('Contextes AJAX forces en fichiers !' |
|
| 4035 | + . ' Cela arrive lorsque la valeur du contexte' |
|
| 4036 | + . ' depasse la longueur maximale autorisee par Suhosin' |
|
| 4037 | + . " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len." |
|
| 4038 | + . ' Vous devriez modifier les parametres de Suhosin' |
|
| 4039 | + . ' pour accepter au moins 1024 caracteres.', _LOG_AVERTISSEMENT); |
|
| 4040 | + } |
|
| 4041 | + } |
|
| 4042 | + |
|
| 4043 | + if ($cache_contextes_ajax) { |
|
| 4044 | + $dir = sous_repertoire(_DIR_CACHE, 'contextes'); |
|
| 4045 | + // stocker les contextes sur disque et ne passer qu'un hash dans l'url |
|
| 4046 | + $md5 = md5($c); |
|
| 4047 | + ecrire_fichier("$dir/c$md5", $c); |
|
| 4048 | + $env = $md5; |
|
| 4049 | + } |
|
| 4050 | + |
|
| 4051 | + if ($emboite === null) { |
|
| 4052 | + return $env; |
|
| 4053 | + } |
|
| 4054 | + if (!trim($emboite)) { |
|
| 4055 | + return ''; |
|
| 4056 | + } |
|
| 4057 | + // toujours encoder l'url source dans le bloc ajax |
|
| 4058 | + $r = self(); |
|
| 4059 | + $r = ' data-origin="' . $r . '"'; |
|
| 4060 | + $class = 'ajaxbloc'; |
|
| 4061 | + if ($ajaxid and is_string($ajaxid)) { |
|
| 4062 | + // ajaxid est normalement conforme a un nom de classe css |
|
| 4063 | + // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution |
|
| 4064 | + $class .= ' ajax-id-' . entites_html($ajaxid); |
|
| 4065 | + } |
|
| 4066 | + |
|
| 4067 | + return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 4068 | 4068 | } |
| 4069 | 4069 | |
| 4070 | 4070 | /** |
@@ -4084,37 +4084,37 @@ discard block |
||
| 4084 | 4084 | * - false : erreur de décodage |
| 4085 | 4085 | */ |
| 4086 | 4086 | function decoder_contexte_ajax($c, $form = '') { |
| 4087 | - if (!function_exists('calculer_cle_action')) { |
|
| 4088 | - include_spip('inc/securiser_action'); |
|
| 4089 | - } |
|
| 4090 | - if ( |
|
| 4091 | - ((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32) |
|
| 4092 | - and $dir = sous_repertoire(_DIR_CACHE, 'contextes') |
|
| 4093 | - and lire_fichier("$dir/c$c", $contexte) |
|
| 4094 | - ) { |
|
| 4095 | - $c = $contexte; |
|
| 4096 | - } else { |
|
| 4097 | - $c = @base64_decode($c); |
|
| 4098 | - $c = _xor($c); |
|
| 4099 | - if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 4100 | - $c = @gzinflate($c); |
|
| 4101 | - } |
|
| 4102 | - } |
|
| 4103 | - |
|
| 4104 | - // extraire la signature en debut de contexte |
|
| 4105 | - // et la verifier avant de deserializer |
|
| 4106 | - // format : signature:donneesserializees |
|
| 4107 | - if ($p = strpos($c, ':')) { |
|
| 4108 | - $cle = substr($c, 0, $p); |
|
| 4109 | - $c = substr($c, $p + 1); |
|
| 4110 | - |
|
| 4111 | - if ($cle == calculer_cle_action($form . $c)) { |
|
| 4112 | - $env = @unserialize($c); |
|
| 4113 | - return $env; |
|
| 4114 | - } |
|
| 4115 | - } |
|
| 4116 | - |
|
| 4117 | - return false; |
|
| 4087 | + if (!function_exists('calculer_cle_action')) { |
|
| 4088 | + include_spip('inc/securiser_action'); |
|
| 4089 | + } |
|
| 4090 | + if ( |
|
| 4091 | + ((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32) |
|
| 4092 | + and $dir = sous_repertoire(_DIR_CACHE, 'contextes') |
|
| 4093 | + and lire_fichier("$dir/c$c", $contexte) |
|
| 4094 | + ) { |
|
| 4095 | + $c = $contexte; |
|
| 4096 | + } else { |
|
| 4097 | + $c = @base64_decode($c); |
|
| 4098 | + $c = _xor($c); |
|
| 4099 | + if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 4100 | + $c = @gzinflate($c); |
|
| 4101 | + } |
|
| 4102 | + } |
|
| 4103 | + |
|
| 4104 | + // extraire la signature en debut de contexte |
|
| 4105 | + // et la verifier avant de deserializer |
|
| 4106 | + // format : signature:donneesserializees |
|
| 4107 | + if ($p = strpos($c, ':')) { |
|
| 4108 | + $cle = substr($c, 0, $p); |
|
| 4109 | + $c = substr($c, $p + 1); |
|
| 4110 | + |
|
| 4111 | + if ($cle == calculer_cle_action($form . $c)) { |
|
| 4112 | + $env = @unserialize($c); |
|
| 4113 | + return $env; |
|
| 4114 | + } |
|
| 4115 | + } |
|
| 4116 | + |
|
| 4117 | + return false; |
|
| 4118 | 4118 | } |
| 4119 | 4119 | |
| 4120 | 4120 | |
@@ -4132,20 +4132,20 @@ discard block |
||
| 4132 | 4132 | * Message décrypté ou encrypté |
| 4133 | 4133 | **/ |
| 4134 | 4134 | function _xor($message, $key = null) { |
| 4135 | - if (is_null($key)) { |
|
| 4136 | - if (!function_exists('calculer_cle_action')) { |
|
| 4137 | - include_spip('inc/securiser_action'); |
|
| 4138 | - } |
|
| 4139 | - $key = pack('H*', calculer_cle_action('_xor')); |
|
| 4140 | - } |
|
| 4135 | + if (is_null($key)) { |
|
| 4136 | + if (!function_exists('calculer_cle_action')) { |
|
| 4137 | + include_spip('inc/securiser_action'); |
|
| 4138 | + } |
|
| 4139 | + $key = pack('H*', calculer_cle_action('_xor')); |
|
| 4140 | + } |
|
| 4141 | 4141 | |
| 4142 | - $keylen = strlen($key); |
|
| 4143 | - $messagelen = strlen($message); |
|
| 4144 | - for ($i = 0; $i < $messagelen; $i++) { |
|
| 4145 | - $message[$i] = ~($message[$i] ^ $key[$i % $keylen]); |
|
| 4146 | - } |
|
| 4142 | + $keylen = strlen($key); |
|
| 4143 | + $messagelen = strlen($message); |
|
| 4144 | + for ($i = 0; $i < $messagelen; $i++) { |
|
| 4145 | + $message[$i] = ~($message[$i] ^ $key[$i % $keylen]); |
|
| 4146 | + } |
|
| 4147 | 4147 | |
| 4148 | - return $message; |
|
| 4148 | + return $message; |
|
| 4149 | 4149 | } |
| 4150 | 4150 | |
| 4151 | 4151 | /** |
@@ -4159,7 +4159,7 @@ discard block |
||
| 4159 | 4159 | * @return string |
| 4160 | 4160 | */ |
| 4161 | 4161 | function url_reponse_forum($texte) { |
| 4162 | - return $texte; |
|
| 4162 | + return $texte; |
|
| 4163 | 4163 | } |
| 4164 | 4164 | |
| 4165 | 4165 | /** |
@@ -4173,7 +4173,7 @@ discard block |
||
| 4173 | 4173 | * @return string |
| 4174 | 4174 | */ |
| 4175 | 4175 | function url_rss_forum($texte) { |
| 4176 | - return $texte; |
|
| 4176 | + return $texte; |
|
| 4177 | 4177 | } |
| 4178 | 4178 | |
| 4179 | 4179 | |
@@ -4212,37 +4212,37 @@ discard block |
||
| 4212 | 4212 | * Code HTML |
| 4213 | 4213 | */ |
| 4214 | 4214 | function lien_ou_expose($url, $libelle = null, $on = false, $class = '', $title = '', $rel = '', $evt = '') { |
| 4215 | - if ($on) { |
|
| 4216 | - $bal = 'strong'; |
|
| 4217 | - $class = ''; |
|
| 4218 | - $att = ''; |
|
| 4219 | - // si $on passe la balise et optionnelement une ou ++classe |
|
| 4220 | - // a.active span.selected.active etc.... |
|
| 4221 | - if (is_string($on) and (strncmp($on, 'a', 1) == 0 or strncmp($on, 'span', 4) == 0 or strncmp($on, 'strong', 6) == 0)) { |
|
| 4222 | - $on = explode('.', $on); |
|
| 4223 | - // on verifie que c'est exactement une des 3 balises a, span ou strong |
|
| 4224 | - if (in_array(reset($on), ['a', 'span', 'strong'])) { |
|
| 4225 | - $bal = array_shift($on); |
|
| 4226 | - $class = implode(' ', $on); |
|
| 4227 | - if ($bal == 'a') { |
|
| 4228 | - $att = 'href="#" '; |
|
| 4229 | - } |
|
| 4230 | - } |
|
| 4231 | - } |
|
| 4232 | - $att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"'; |
|
| 4233 | - } else { |
|
| 4234 | - $bal = 'a'; |
|
| 4235 | - $att = "href='$url'" |
|
| 4236 | - . ($title ? " title='" . attribut_html($title) . "'" : '') |
|
| 4237 | - . ($class ? " class='" . attribut_html($class) . "'" : '') |
|
| 4238 | - . ($rel ? " rel='" . attribut_html($rel) . "'" : '') |
|
| 4239 | - . $evt; |
|
| 4240 | - } |
|
| 4241 | - if ($libelle === null) { |
|
| 4242 | - $libelle = $url; |
|
| 4243 | - } |
|
| 4244 | - |
|
| 4245 | - return "<$bal $att>$libelle</$bal>"; |
|
| 4215 | + if ($on) { |
|
| 4216 | + $bal = 'strong'; |
|
| 4217 | + $class = ''; |
|
| 4218 | + $att = ''; |
|
| 4219 | + // si $on passe la balise et optionnelement une ou ++classe |
|
| 4220 | + // a.active span.selected.active etc.... |
|
| 4221 | + if (is_string($on) and (strncmp($on, 'a', 1) == 0 or strncmp($on, 'span', 4) == 0 or strncmp($on, 'strong', 6) == 0)) { |
|
| 4222 | + $on = explode('.', $on); |
|
| 4223 | + // on verifie que c'est exactement une des 3 balises a, span ou strong |
|
| 4224 | + if (in_array(reset($on), ['a', 'span', 'strong'])) { |
|
| 4225 | + $bal = array_shift($on); |
|
| 4226 | + $class = implode(' ', $on); |
|
| 4227 | + if ($bal == 'a') { |
|
| 4228 | + $att = 'href="#" '; |
|
| 4229 | + } |
|
| 4230 | + } |
|
| 4231 | + } |
|
| 4232 | + $att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"'; |
|
| 4233 | + } else { |
|
| 4234 | + $bal = 'a'; |
|
| 4235 | + $att = "href='$url'" |
|
| 4236 | + . ($title ? " title='" . attribut_html($title) . "'" : '') |
|
| 4237 | + . ($class ? " class='" . attribut_html($class) . "'" : '') |
|
| 4238 | + . ($rel ? " rel='" . attribut_html($rel) . "'" : '') |
|
| 4239 | + . $evt; |
|
| 4240 | + } |
|
| 4241 | + if ($libelle === null) { |
|
| 4242 | + $libelle = $url; |
|
| 4243 | + } |
|
| 4244 | + |
|
| 4245 | + return "<$bal $att>$libelle</$bal>"; |
|
| 4246 | 4246 | } |
| 4247 | 4247 | |
| 4248 | 4248 | |
@@ -4259,39 +4259,39 @@ discard block |
||
| 4259 | 4259 | * @return string : la chaine de langue finale en utilisant la fonction _T() |
| 4260 | 4260 | */ |
| 4261 | 4261 | function singulier_ou_pluriel($nb, $chaine_un, $chaine_plusieurs, $var = 'nb', $vars = []) { |
| 4262 | - static $local_singulier_ou_pluriel = []; |
|
| 4263 | - |
|
| 4264 | - // si nb=0 ou pas de $vars valide on retourne une chaine vide, a traiter par un |sinon |
|
| 4265 | - if (!is_numeric($nb) or $nb == 0) { |
|
| 4266 | - return ''; |
|
| 4267 | - } |
|
| 4268 | - if (!is_array($vars)) { |
|
| 4269 | - return ''; |
|
| 4270 | - } |
|
| 4271 | - |
|
| 4272 | - $langue = $GLOBALS['spip_lang']; |
|
| 4273 | - if (!isset($local_singulier_ou_pluriel[$langue])) { |
|
| 4274 | - $local_singulier_ou_pluriel[$langue] = false; |
|
| 4275 | - if ( |
|
| 4276 | - $f = charger_fonction("singulier_ou_pluriel_${langue}", 'inc', true) |
|
| 4277 | - or $f = charger_fonction('singulier_ou_pluriel', 'inc', true) |
|
| 4278 | - ) { |
|
| 4279 | - $local_singulier_ou_pluriel[$langue] = $f; |
|
| 4280 | - } |
|
| 4281 | - } |
|
| 4282 | - |
|
| 4283 | - // si on a une surcharge on l'utilise |
|
| 4284 | - if ($local_singulier_ou_pluriel[$langue]) { |
|
| 4285 | - return ($local_singulier_ou_pluriel[$langue])($nb, $chaine_un, $chaine_plusieurs, $var, $vars); |
|
| 4286 | - } |
|
| 4287 | - |
|
| 4288 | - // sinon traitement par defaut |
|
| 4289 | - $vars[$var] = $nb; |
|
| 4290 | - if ($nb >= 2) { |
|
| 4291 | - return _T($chaine_plusieurs, $vars); |
|
| 4292 | - } else { |
|
| 4293 | - return _T($chaine_un, $vars); |
|
| 4294 | - } |
|
| 4262 | + static $local_singulier_ou_pluriel = []; |
|
| 4263 | + |
|
| 4264 | + // si nb=0 ou pas de $vars valide on retourne une chaine vide, a traiter par un |sinon |
|
| 4265 | + if (!is_numeric($nb) or $nb == 0) { |
|
| 4266 | + return ''; |
|
| 4267 | + } |
|
| 4268 | + if (!is_array($vars)) { |
|
| 4269 | + return ''; |
|
| 4270 | + } |
|
| 4271 | + |
|
| 4272 | + $langue = $GLOBALS['spip_lang']; |
|
| 4273 | + if (!isset($local_singulier_ou_pluriel[$langue])) { |
|
| 4274 | + $local_singulier_ou_pluriel[$langue] = false; |
|
| 4275 | + if ( |
|
| 4276 | + $f = charger_fonction("singulier_ou_pluriel_${langue}", 'inc', true) |
|
| 4277 | + or $f = charger_fonction('singulier_ou_pluriel', 'inc', true) |
|
| 4278 | + ) { |
|
| 4279 | + $local_singulier_ou_pluriel[$langue] = $f; |
|
| 4280 | + } |
|
| 4281 | + } |
|
| 4282 | + |
|
| 4283 | + // si on a une surcharge on l'utilise |
|
| 4284 | + if ($local_singulier_ou_pluriel[$langue]) { |
|
| 4285 | + return ($local_singulier_ou_pluriel[$langue])($nb, $chaine_un, $chaine_plusieurs, $var, $vars); |
|
| 4286 | + } |
|
| 4287 | + |
|
| 4288 | + // sinon traitement par defaut |
|
| 4289 | + $vars[$var] = $nb; |
|
| 4290 | + if ($nb >= 2) { |
|
| 4291 | + return _T($chaine_plusieurs, $vars); |
|
| 4292 | + } else { |
|
| 4293 | + return _T($chaine_un, $vars); |
|
| 4294 | + } |
|
| 4295 | 4295 | } |
| 4296 | 4296 | |
| 4297 | 4297 | |
@@ -4319,73 +4319,73 @@ discard block |
||
| 4319 | 4319 | */ |
| 4320 | 4320 | function prepare_icone_base($type, $lien, $texte, $fond, $fonction = '', $class = '', $javascript = '') { |
| 4321 | 4321 | |
| 4322 | - $class_lien = $class_bouton = $class; |
|
| 4323 | - |
|
| 4324 | - // Normaliser la fonction et compléter la classe en fonction |
|
| 4325 | - if (in_array($fonction, ['del', 'supprimer.gif'])) { |
|
| 4326 | - $class_lien .= ' danger'; |
|
| 4327 | - $class_bouton .= ' btn_danger'; |
|
| 4328 | - } elseif ($fonction == 'rien.gif') { |
|
| 4329 | - $fonction = ''; |
|
| 4330 | - } elseif ($fonction == 'delsafe') { |
|
| 4331 | - $fonction = 'del'; |
|
| 4332 | - } |
|
| 4333 | - |
|
| 4334 | - $fond_origine = $fond; |
|
| 4335 | - // Remappage des icone : article-24.png+new => article-new-24.png |
|
| 4336 | - if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) { |
|
| 4337 | - [$fond, $fonction] = $icone_renommer($fond, $fonction); |
|
| 4338 | - } |
|
| 4339 | - |
|
| 4340 | - // Ajouter le type d'objet dans la classe |
|
| 4341 | - $objet_type = substr(basename($fond), 0, -4); |
|
| 4342 | - $class_lien .= " $objet_type"; |
|
| 4343 | - $class_bouton .= " $objet_type"; |
|
| 4344 | - |
|
| 4345 | - // Texte |
|
| 4346 | - $alt = attribut_html($texte); |
|
| 4347 | - $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ? |
|
| 4348 | - |
|
| 4349 | - // Liens : préparer les classes ajax |
|
| 4350 | - $ajax = ''; |
|
| 4351 | - if ($type === 'lien') { |
|
| 4352 | - if (strpos($class_lien, 'ajax') !== false) { |
|
| 4353 | - $ajax = 'ajax'; |
|
| 4354 | - if (strpos($class_lien, 'preload') !== false) { |
|
| 4355 | - $ajax .= ' preload'; |
|
| 4356 | - } |
|
| 4357 | - if (strpos($class_lien, 'nocache') !== false) { |
|
| 4358 | - $ajax .= ' nocache'; |
|
| 4359 | - } |
|
| 4360 | - $ajax = " class='$ajax'"; |
|
| 4361 | - } |
|
| 4362 | - } |
|
| 4363 | - |
|
| 4364 | - // Repérer la taille et l'ajouter dans la classe |
|
| 4365 | - $size = 24; |
|
| 4366 | - if ( |
|
| 4367 | - preg_match('/-([0-9]{1,3})[.](gif|png|svg)$/i', $fond, $match) |
|
| 4368 | - or preg_match('/-([0-9]{1,3})([.](gif|png|svg))?$/i', $fond_origine, $match) |
|
| 4369 | - ) { |
|
| 4370 | - $size = $match[1]; |
|
| 4371 | - } |
|
| 4372 | - $class_lien .= " s$size"; |
|
| 4373 | - $class_bouton .= " s$size"; |
|
| 4374 | - |
|
| 4375 | - // Icône |
|
| 4376 | - $icone = http_img_pack($fond, $alt, "width='$size' height='$size'"); |
|
| 4377 | - $icone = '<span class="icone-image' . ($fonction ? " icone-fonction icone-fonction-$fonction" : '') . "\">$icone</span>"; |
|
| 4378 | - |
|
| 4379 | - // Markup final |
|
| 4380 | - if ($type == 'lien') { |
|
| 4381 | - return "<span class='icone $class_lien'>" |
|
| 4382 | - . "<a href='$lien'$title$ajax$javascript>" |
|
| 4383 | - . $icone |
|
| 4384 | - . "<b>$texte</b>" |
|
| 4385 | - . "</a></span>\n"; |
|
| 4386 | - } else { |
|
| 4387 | - return bouton_action("$icone $texte", $lien, $class_bouton, $javascript, $alt); |
|
| 4388 | - } |
|
| 4322 | + $class_lien = $class_bouton = $class; |
|
| 4323 | + |
|
| 4324 | + // Normaliser la fonction et compléter la classe en fonction |
|
| 4325 | + if (in_array($fonction, ['del', 'supprimer.gif'])) { |
|
| 4326 | + $class_lien .= ' danger'; |
|
| 4327 | + $class_bouton .= ' btn_danger'; |
|
| 4328 | + } elseif ($fonction == 'rien.gif') { |
|
| 4329 | + $fonction = ''; |
|
| 4330 | + } elseif ($fonction == 'delsafe') { |
|
| 4331 | + $fonction = 'del'; |
|
| 4332 | + } |
|
| 4333 | + |
|
| 4334 | + $fond_origine = $fond; |
|
| 4335 | + // Remappage des icone : article-24.png+new => article-new-24.png |
|
| 4336 | + if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) { |
|
| 4337 | + [$fond, $fonction] = $icone_renommer($fond, $fonction); |
|
| 4338 | + } |
|
| 4339 | + |
|
| 4340 | + // Ajouter le type d'objet dans la classe |
|
| 4341 | + $objet_type = substr(basename($fond), 0, -4); |
|
| 4342 | + $class_lien .= " $objet_type"; |
|
| 4343 | + $class_bouton .= " $objet_type"; |
|
| 4344 | + |
|
| 4345 | + // Texte |
|
| 4346 | + $alt = attribut_html($texte); |
|
| 4347 | + $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ? |
|
| 4348 | + |
|
| 4349 | + // Liens : préparer les classes ajax |
|
| 4350 | + $ajax = ''; |
|
| 4351 | + if ($type === 'lien') { |
|
| 4352 | + if (strpos($class_lien, 'ajax') !== false) { |
|
| 4353 | + $ajax = 'ajax'; |
|
| 4354 | + if (strpos($class_lien, 'preload') !== false) { |
|
| 4355 | + $ajax .= ' preload'; |
|
| 4356 | + } |
|
| 4357 | + if (strpos($class_lien, 'nocache') !== false) { |
|
| 4358 | + $ajax .= ' nocache'; |
|
| 4359 | + } |
|
| 4360 | + $ajax = " class='$ajax'"; |
|
| 4361 | + } |
|
| 4362 | + } |
|
| 4363 | + |
|
| 4364 | + // Repérer la taille et l'ajouter dans la classe |
|
| 4365 | + $size = 24; |
|
| 4366 | + if ( |
|
| 4367 | + preg_match('/-([0-9]{1,3})[.](gif|png|svg)$/i', $fond, $match) |
|
| 4368 | + or preg_match('/-([0-9]{1,3})([.](gif|png|svg))?$/i', $fond_origine, $match) |
|
| 4369 | + ) { |
|
| 4370 | + $size = $match[1]; |
|
| 4371 | + } |
|
| 4372 | + $class_lien .= " s$size"; |
|
| 4373 | + $class_bouton .= " s$size"; |
|
| 4374 | + |
|
| 4375 | + // Icône |
|
| 4376 | + $icone = http_img_pack($fond, $alt, "width='$size' height='$size'"); |
|
| 4377 | + $icone = '<span class="icone-image' . ($fonction ? " icone-fonction icone-fonction-$fonction" : '') . "\">$icone</span>"; |
|
| 4378 | + |
|
| 4379 | + // Markup final |
|
| 4380 | + if ($type == 'lien') { |
|
| 4381 | + return "<span class='icone $class_lien'>" |
|
| 4382 | + . "<a href='$lien'$title$ajax$javascript>" |
|
| 4383 | + . $icone |
|
| 4384 | + . "<b>$texte</b>" |
|
| 4385 | + . "</a></span>\n"; |
|
| 4386 | + } else { |
|
| 4387 | + return bouton_action("$icone $texte", $lien, $class_bouton, $javascript, $alt); |
|
| 4388 | + } |
|
| 4389 | 4389 | } |
| 4390 | 4390 | |
| 4391 | 4391 | /** |
@@ -4409,7 +4409,7 @@ discard block |
||
| 4409 | 4409 | * Code HTML du lien |
| 4410 | 4410 | **/ |
| 4411 | 4411 | function icone_base($lien, $texte, $fond, $fonction = '', $class = '', $javascript = '') { |
| 4412 | - return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript); |
|
| 4412 | + return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript); |
|
| 4413 | 4413 | } |
| 4414 | 4414 | |
| 4415 | 4415 | /** |
@@ -4444,7 +4444,7 @@ discard block |
||
| 4444 | 4444 | * Code HTML du lien |
| 4445 | 4445 | **/ |
| 4446 | 4446 | function filtre_icone_verticale_dist($lien, $texte, $fond, $fonction = '', $class = '', $javascript = '') { |
| 4447 | - return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript); |
|
| 4447 | + return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript); |
|
| 4448 | 4448 | } |
| 4449 | 4449 | |
| 4450 | 4450 | /** |
@@ -4489,7 +4489,7 @@ discard block |
||
| 4489 | 4489 | * Code HTML du lien |
| 4490 | 4490 | **/ |
| 4491 | 4491 | function filtre_icone_horizontale_dist($lien, $texte, $fond, $fonction = '', $class = '', $javascript = '') { |
| 4492 | - return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript); |
|
| 4492 | + return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript); |
|
| 4493 | 4493 | } |
| 4494 | 4494 | |
| 4495 | 4495 | /** |
@@ -4520,7 +4520,7 @@ discard block |
||
| 4520 | 4520 | * Code HTML du lien |
| 4521 | 4521 | **/ |
| 4522 | 4522 | function filtre_bouton_action_horizontal_dist($lien, $texte, $fond, $fonction = '', $class = '', $confirm = '') { |
| 4523 | - return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, $class, $confirm); |
|
| 4523 | + return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, $class, $confirm); |
|
| 4524 | 4524 | } |
| 4525 | 4525 | |
| 4526 | 4526 | /** |
@@ -4551,7 +4551,7 @@ discard block |
||
| 4551 | 4551 | * Code HTML du lien |
| 4552 | 4552 | */ |
| 4553 | 4553 | function filtre_icone_dist($lien, $texte, $fond, $align = '', $fonction = '', $class = '', $javascript = '') { |
| 4554 | - return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript); |
|
| 4554 | + return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript); |
|
| 4555 | 4555 | } |
| 4556 | 4556 | |
| 4557 | 4557 | |
@@ -4573,7 +4573,7 @@ discard block |
||
| 4573 | 4573 | * @return array Liste des éléments |
| 4574 | 4574 | */ |
| 4575 | 4575 | function filtre_explode_dist($a, $b) { |
| 4576 | - return explode($b, $a); |
|
| 4576 | + return explode($b, $a); |
|
| 4577 | 4577 | } |
| 4578 | 4578 | |
| 4579 | 4579 | /** |
@@ -4594,7 +4594,7 @@ discard block |
||
| 4594 | 4594 | * @return string Texte |
| 4595 | 4595 | */ |
| 4596 | 4596 | function filtre_implode_dist($a, $b) { |
| 4597 | - return is_array($a) ? implode($b, $a) : $a; |
|
| 4597 | + return is_array($a) ? implode($b, $a) : $a; |
|
| 4598 | 4598 | } |
| 4599 | 4599 | |
| 4600 | 4600 | /** |
@@ -4603,24 +4603,24 @@ discard block |
||
| 4603 | 4603 | * @return string Code CSS |
| 4604 | 4604 | */ |
| 4605 | 4605 | function bando_images_background() { |
| 4606 | - include_spip('inc/bandeau'); |
|
| 4607 | - // recuperer tous les boutons et leurs images |
|
| 4608 | - $boutons = definir_barre_boutons(definir_barre_contexte(), true, false); |
|
| 4606 | + include_spip('inc/bandeau'); |
|
| 4607 | + // recuperer tous les boutons et leurs images |
|
| 4608 | + $boutons = definir_barre_boutons(definir_barre_contexte(), true, false); |
|
| 4609 | 4609 | |
| 4610 | - $res = ''; |
|
| 4611 | - foreach ($boutons as $page => $detail) { |
|
| 4612 | - $selecteur = (in_array($page, ['outils_rapides', 'outils_collaboratifs']) ? '' : '.navigation_avec_icones '); |
|
| 4613 | - if (is_array($detail->sousmenu)) { |
|
| 4614 | - foreach ($detail->sousmenu as $souspage => $sousdetail) { |
|
| 4615 | - if ($sousdetail->icone and strlen(trim($sousdetail->icone))) { |
|
| 4616 | - $img = http_img_variante_svg_si_possible($sousdetail->icone); |
|
| 4617 | - $res .= "\n$selecteur.bando2_$souspage {background-image:url($img);}"; |
|
| 4618 | - } |
|
| 4619 | - } |
|
| 4620 | - } |
|
| 4621 | - } |
|
| 4610 | + $res = ''; |
|
| 4611 | + foreach ($boutons as $page => $detail) { |
|
| 4612 | + $selecteur = (in_array($page, ['outils_rapides', 'outils_collaboratifs']) ? '' : '.navigation_avec_icones '); |
|
| 4613 | + if (is_array($detail->sousmenu)) { |
|
| 4614 | + foreach ($detail->sousmenu as $souspage => $sousdetail) { |
|
| 4615 | + if ($sousdetail->icone and strlen(trim($sousdetail->icone))) { |
|
| 4616 | + $img = http_img_variante_svg_si_possible($sousdetail->icone); |
|
| 4617 | + $res .= "\n$selecteur.bando2_$souspage {background-image:url($img);}"; |
|
| 4618 | + } |
|
| 4619 | + } |
|
| 4620 | + } |
|
| 4621 | + } |
|
| 4622 | 4622 | |
| 4623 | - return $res; |
|
| 4623 | + return $res; |
|
| 4624 | 4624 | } |
| 4625 | 4625 | |
| 4626 | 4626 | /** |
@@ -4645,27 +4645,27 @@ discard block |
||
| 4645 | 4645 | */ |
| 4646 | 4646 | function bouton_action($libelle, $url, $class = '', $confirm = '', $title = '', $callback = '') { |
| 4647 | 4647 | |
| 4648 | - // Classes : dispatcher `ajax` sur le formulaire |
|
| 4649 | - $class_form = ''; |
|
| 4650 | - if (strpos($class, 'ajax') !== false) { |
|
| 4651 | - $class_form = 'ajax'; |
|
| 4652 | - $class = str_replace('ajax', '', $class); |
|
| 4653 | - } |
|
| 4654 | - $class_btn = 'submit ' . trim($class); |
|
| 4648 | + // Classes : dispatcher `ajax` sur le formulaire |
|
| 4649 | + $class_form = ''; |
|
| 4650 | + if (strpos($class, 'ajax') !== false) { |
|
| 4651 | + $class_form = 'ajax'; |
|
| 4652 | + $class = str_replace('ajax', '', $class); |
|
| 4653 | + } |
|
| 4654 | + $class_btn = 'submit ' . trim($class); |
|
| 4655 | 4655 | |
| 4656 | - if ($confirm) { |
|
| 4657 | - $confirm = 'confirm("' . attribut_html($confirm) . '")'; |
|
| 4658 | - if ($callback) { |
|
| 4659 | - $callback = "$confirm?($callback):false"; |
|
| 4660 | - } else { |
|
| 4661 | - $callback = $confirm; |
|
| 4662 | - } |
|
| 4663 | - } |
|
| 4664 | - $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : ''; |
|
| 4665 | - $title = $title ? " title='$title'" : ''; |
|
| 4656 | + if ($confirm) { |
|
| 4657 | + $confirm = 'confirm("' . attribut_html($confirm) . '")'; |
|
| 4658 | + if ($callback) { |
|
| 4659 | + $callback = "$confirm?($callback):false"; |
|
| 4660 | + } else { |
|
| 4661 | + $callback = $confirm; |
|
| 4662 | + } |
|
| 4663 | + } |
|
| 4664 | + $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : ''; |
|
| 4665 | + $title = $title ? " title='$title'" : ''; |
|
| 4666 | 4666 | |
| 4667 | - return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url) |
|
| 4668 | - . "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>"; |
|
| 4667 | + return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url) |
|
| 4668 | + . "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>"; |
|
| 4669 | 4669 | } |
| 4670 | 4670 | |
| 4671 | 4671 | /** |
@@ -4688,94 +4688,94 @@ discard block |
||
| 4688 | 4688 | * @return string |
| 4689 | 4689 | */ |
| 4690 | 4690 | function generer_info_entite($id_objet, $type_objet, $info, $etoile = '', $params = []) { |
| 4691 | - static $trouver_table = null; |
|
| 4692 | - static $objets; |
|
| 4693 | - |
|
| 4694 | - // On verifie qu'on a tout ce qu'il faut |
|
| 4695 | - $id_objet = intval($id_objet); |
|
| 4696 | - if (!($id_objet and $type_objet and $info)) { |
|
| 4697 | - return ''; |
|
| 4698 | - } |
|
| 4699 | - |
|
| 4700 | - // si on a deja note que l'objet n'existe pas, ne pas aller plus loin |
|
| 4701 | - if (isset($objets[$type_objet]) and $objets[$type_objet] === false) { |
|
| 4702 | - return ''; |
|
| 4703 | - } |
|
| 4704 | - |
|
| 4705 | - // Si on demande l'url, on retourne direct la fonction |
|
| 4706 | - if ($info == 'url') { |
|
| 4707 | - return generer_url_entite($id_objet, $type_objet, ...$params); |
|
| 4708 | - } |
|
| 4709 | - |
|
| 4710 | - // Sinon on va tout chercher dans la table et on garde en memoire |
|
| 4711 | - $demande_titre = ($info === 'titre'); |
|
| 4712 | - $demande_introduction = ($info === 'introduction'); |
|
| 4713 | - |
|
| 4714 | - // On ne fait la requete que si on a pas deja l'objet ou si on demande le titre mais qu'on ne l'a pas encore |
|
| 4715 | - if ( |
|
| 4716 | - !isset($objets[$type_objet][$id_objet]) |
|
| 4717 | - or |
|
| 4718 | - ($demande_titre and !isset($objets[$type_objet][$id_objet]['titre'])) |
|
| 4719 | - ) { |
|
| 4720 | - if (!$trouver_table) { |
|
| 4721 | - $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 4722 | - } |
|
| 4723 | - $desc = $trouver_table(table_objet_sql($type_objet)); |
|
| 4724 | - if (!$desc) { |
|
| 4725 | - return $objets[$type_objet] = false; |
|
| 4726 | - } |
|
| 4727 | - |
|
| 4728 | - // Si on demande le titre, on le gere en interne |
|
| 4729 | - $champ_titre = ''; |
|
| 4730 | - if ($demande_titre) { |
|
| 4731 | - // si pas de titre declare mais champ titre, il sera peuple par le select * |
|
| 4732 | - $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : ''; |
|
| 4733 | - } |
|
| 4734 | - include_spip('base/abstract_sql'); |
|
| 4735 | - include_spip('base/connect_sql'); |
|
| 4736 | - $objets[$type_objet][$id_objet] = sql_fetsel( |
|
| 4737 | - '*' . $champ_titre, |
|
| 4738 | - $desc['table_sql'], |
|
| 4739 | - id_table_objet($type_objet) . ' = ' . intval($id_objet) |
|
| 4740 | - ); |
|
| 4741 | - |
|
| 4742 | - // Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci |
|
| 4743 | - $objets[$type_objet]['introduction_longueur'] = $desc['introduction_longueur'] ?? null; |
|
| 4744 | - } |
|
| 4745 | - |
|
| 4746 | - // Pour les fonction generer_xxx, si on demande l'introduction, |
|
| 4747 | - // ajouter la longueur au début des params supplémentaires |
|
| 4748 | - if ($demande_introduction) { |
|
| 4749 | - $introduction_longueur = $objets[$type_objet]['introduction_longueur']; |
|
| 4750 | - array_unshift($params, $introduction_longueur); |
|
| 4751 | - } |
|
| 4752 | - |
|
| 4753 | - // Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee |
|
| 4754 | - if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) { |
|
| 4755 | - $info_generee = $generer($id_objet, $objets[$type_objet][$id_objet], ...$params); |
|
| 4756 | - } // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee |
|
| 4757 | - else { |
|
| 4758 | - if ($generer = charger_fonction("generer_${info}_entite", '', true)) { |
|
| 4759 | - $info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet], ...$params); |
|
| 4760 | - } // Sinon on prend directement le champ SQL tel quel |
|
| 4761 | - else { |
|
| 4762 | - $info_generee = ($objets[$type_objet][$id_objet][$info] ?? ''); |
|
| 4763 | - } |
|
| 4764 | - } |
|
| 4765 | - |
|
| 4766 | - // On va ensuite appliquer les traitements automatiques si besoin |
|
| 4767 | - if (!$etoile) { |
|
| 4768 | - // FIXME: on fournit un ENV minimum avec id et type et connect='' |
|
| 4769 | - // mais ce fonctionnement est a ameliorer ! |
|
| 4770 | - $info_generee = appliquer_traitement_champ( |
|
| 4771 | - $info_generee, |
|
| 4772 | - $info, |
|
| 4773 | - table_objet($type_objet), |
|
| 4774 | - ['id_objet' => $id_objet, 'objet' => $type_objet, ''] |
|
| 4775 | - ); |
|
| 4776 | - } |
|
| 4777 | - |
|
| 4778 | - return $info_generee; |
|
| 4691 | + static $trouver_table = null; |
|
| 4692 | + static $objets; |
|
| 4693 | + |
|
| 4694 | + // On verifie qu'on a tout ce qu'il faut |
|
| 4695 | + $id_objet = intval($id_objet); |
|
| 4696 | + if (!($id_objet and $type_objet and $info)) { |
|
| 4697 | + return ''; |
|
| 4698 | + } |
|
| 4699 | + |
|
| 4700 | + // si on a deja note que l'objet n'existe pas, ne pas aller plus loin |
|
| 4701 | + if (isset($objets[$type_objet]) and $objets[$type_objet] === false) { |
|
| 4702 | + return ''; |
|
| 4703 | + } |
|
| 4704 | + |
|
| 4705 | + // Si on demande l'url, on retourne direct la fonction |
|
| 4706 | + if ($info == 'url') { |
|
| 4707 | + return generer_url_entite($id_objet, $type_objet, ...$params); |
|
| 4708 | + } |
|
| 4709 | + |
|
| 4710 | + // Sinon on va tout chercher dans la table et on garde en memoire |
|
| 4711 | + $demande_titre = ($info === 'titre'); |
|
| 4712 | + $demande_introduction = ($info === 'introduction'); |
|
| 4713 | + |
|
| 4714 | + // On ne fait la requete que si on a pas deja l'objet ou si on demande le titre mais qu'on ne l'a pas encore |
|
| 4715 | + if ( |
|
| 4716 | + !isset($objets[$type_objet][$id_objet]) |
|
| 4717 | + or |
|
| 4718 | + ($demande_titre and !isset($objets[$type_objet][$id_objet]['titre'])) |
|
| 4719 | + ) { |
|
| 4720 | + if (!$trouver_table) { |
|
| 4721 | + $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 4722 | + } |
|
| 4723 | + $desc = $trouver_table(table_objet_sql($type_objet)); |
|
| 4724 | + if (!$desc) { |
|
| 4725 | + return $objets[$type_objet] = false; |
|
| 4726 | + } |
|
| 4727 | + |
|
| 4728 | + // Si on demande le titre, on le gere en interne |
|
| 4729 | + $champ_titre = ''; |
|
| 4730 | + if ($demande_titre) { |
|
| 4731 | + // si pas de titre declare mais champ titre, il sera peuple par le select * |
|
| 4732 | + $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : ''; |
|
| 4733 | + } |
|
| 4734 | + include_spip('base/abstract_sql'); |
|
| 4735 | + include_spip('base/connect_sql'); |
|
| 4736 | + $objets[$type_objet][$id_objet] = sql_fetsel( |
|
| 4737 | + '*' . $champ_titre, |
|
| 4738 | + $desc['table_sql'], |
|
| 4739 | + id_table_objet($type_objet) . ' = ' . intval($id_objet) |
|
| 4740 | + ); |
|
| 4741 | + |
|
| 4742 | + // Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci |
|
| 4743 | + $objets[$type_objet]['introduction_longueur'] = $desc['introduction_longueur'] ?? null; |
|
| 4744 | + } |
|
| 4745 | + |
|
| 4746 | + // Pour les fonction generer_xxx, si on demande l'introduction, |
|
| 4747 | + // ajouter la longueur au début des params supplémentaires |
|
| 4748 | + if ($demande_introduction) { |
|
| 4749 | + $introduction_longueur = $objets[$type_objet]['introduction_longueur']; |
|
| 4750 | + array_unshift($params, $introduction_longueur); |
|
| 4751 | + } |
|
| 4752 | + |
|
| 4753 | + // Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee |
|
| 4754 | + if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) { |
|
| 4755 | + $info_generee = $generer($id_objet, $objets[$type_objet][$id_objet], ...$params); |
|
| 4756 | + } // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee |
|
| 4757 | + else { |
|
| 4758 | + if ($generer = charger_fonction("generer_${info}_entite", '', true)) { |
|
| 4759 | + $info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet], ...$params); |
|
| 4760 | + } // Sinon on prend directement le champ SQL tel quel |
|
| 4761 | + else { |
|
| 4762 | + $info_generee = ($objets[$type_objet][$id_objet][$info] ?? ''); |
|
| 4763 | + } |
|
| 4764 | + } |
|
| 4765 | + |
|
| 4766 | + // On va ensuite appliquer les traitements automatiques si besoin |
|
| 4767 | + if (!$etoile) { |
|
| 4768 | + // FIXME: on fournit un ENV minimum avec id et type et connect='' |
|
| 4769 | + // mais ce fonctionnement est a ameliorer ! |
|
| 4770 | + $info_generee = appliquer_traitement_champ( |
|
| 4771 | + $info_generee, |
|
| 4772 | + $info, |
|
| 4773 | + table_objet($type_objet), |
|
| 4774 | + ['id_objet' => $id_objet, 'objet' => $type_objet, ''] |
|
| 4775 | + ); |
|
| 4776 | + } |
|
| 4777 | + |
|
| 4778 | + return $info_generee; |
|
| 4779 | 4779 | } |
| 4780 | 4780 | |
| 4781 | 4781 | /** |
@@ -4808,36 +4808,36 @@ discard block |
||
| 4808 | 4808 | */ |
| 4809 | 4809 | function generer_introduction_entite($id_objet, $type_objet, $ligne_sql, $introduction_longueur = null, $longueur_ou_suite = null, $suite = null, string $connect = '') { |
| 4810 | 4810 | |
| 4811 | - $descriptif = $ligne_sql['descriptif'] ?? ''; |
|
| 4812 | - $texte = $ligne_sql['texte'] ?? ''; |
|
| 4813 | - // En absence de descriptif, on se rabat sur chapo + texte |
|
| 4814 | - if (isset($ligne_sql['chapo'])) { |
|
| 4815 | - $chapo = $ligne_sql['chapo']; |
|
| 4816 | - $texte = strlen($descriptif) ? |
|
| 4817 | - '' : |
|
| 4818 | - "$chapo \n\n $texte"; |
|
| 4819 | - } |
|
| 4811 | + $descriptif = $ligne_sql['descriptif'] ?? ''; |
|
| 4812 | + $texte = $ligne_sql['texte'] ?? ''; |
|
| 4813 | + // En absence de descriptif, on se rabat sur chapo + texte |
|
| 4814 | + if (isset($ligne_sql['chapo'])) { |
|
| 4815 | + $chapo = $ligne_sql['chapo']; |
|
| 4816 | + $texte = strlen($descriptif) ? |
|
| 4817 | + '' : |
|
| 4818 | + "$chapo \n\n $texte"; |
|
| 4819 | + } |
|
| 4820 | 4820 | |
| 4821 | - // Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur |
|
| 4822 | - if (!intval($longueur_ou_suite)) { |
|
| 4823 | - $longueur = intval($introduction_longueur ?: 600); |
|
| 4824 | - } else { |
|
| 4825 | - $longueur = intval($longueur_ou_suite); |
|
| 4826 | - } |
|
| 4821 | + // Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur |
|
| 4822 | + if (!intval($longueur_ou_suite)) { |
|
| 4823 | + $longueur = intval($introduction_longueur ?: 600); |
|
| 4824 | + } else { |
|
| 4825 | + $longueur = intval($longueur_ou_suite); |
|
| 4826 | + } |
|
| 4827 | 4827 | |
| 4828 | - // On peut optionnellement passer la suite en 1er paramètre de la balise |
|
| 4829 | - // Ex : #INTRODUCTION{...} |
|
| 4830 | - if ( |
|
| 4831 | - is_null($suite) |
|
| 4832 | - and !intval($longueur_ou_suite) |
|
| 4833 | - ) { |
|
| 4834 | - $suite = $longueur_ou_suite; |
|
| 4835 | - } |
|
| 4828 | + // On peut optionnellement passer la suite en 1er paramètre de la balise |
|
| 4829 | + // Ex : #INTRODUCTION{...} |
|
| 4830 | + if ( |
|
| 4831 | + is_null($suite) |
|
| 4832 | + and !intval($longueur_ou_suite) |
|
| 4833 | + ) { |
|
| 4834 | + $suite = $longueur_ou_suite; |
|
| 4835 | + } |
|
| 4836 | 4836 | |
| 4837 | - $f = chercher_filtre('introduction'); |
|
| 4838 | - $introduction = $f($descriptif, $texte, $longueur, $connect, $suite); |
|
| 4837 | + $f = chercher_filtre('introduction'); |
|
| 4838 | + $introduction = $f($descriptif, $texte, $longueur, $connect, $suite); |
|
| 4839 | 4839 | |
| 4840 | - return $introduction; |
|
| 4840 | + return $introduction; |
|
| 4841 | 4841 | } |
| 4842 | 4842 | |
| 4843 | 4843 | /** |
@@ -4851,44 +4851,44 @@ discard block |
||
| 4851 | 4851 | * @return string |
| 4852 | 4852 | */ |
| 4853 | 4853 | function appliquer_traitement_champ($texte, $champ, $table_objet = '', $env = [], string $connect = '') { |
| 4854 | - if (!$champ) { |
|
| 4855 | - return $texte; |
|
| 4856 | - } |
|
| 4854 | + if (!$champ) { |
|
| 4855 | + return $texte; |
|
| 4856 | + } |
|
| 4857 | 4857 | |
| 4858 | - // On charge les définitions des traitements (inc/texte et fichiers de fonctions) |
|
| 4859 | - // car il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc) |
|
| 4860 | - include_fichiers_fonctions(); |
|
| 4858 | + // On charge les définitions des traitements (inc/texte et fichiers de fonctions) |
|
| 4859 | + // car il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc) |
|
| 4860 | + include_fichiers_fonctions(); |
|
| 4861 | 4861 | |
| 4862 | - $champ = strtoupper($champ); |
|
| 4863 | - $traitements = $GLOBALS['table_des_traitements'][$champ] ?? false; |
|
| 4864 | - if (!$traitements or !is_array($traitements)) { |
|
| 4865 | - return $texte; |
|
| 4866 | - } |
|
| 4862 | + $champ = strtoupper($champ); |
|
| 4863 | + $traitements = $GLOBALS['table_des_traitements'][$champ] ?? false; |
|
| 4864 | + if (!$traitements or !is_array($traitements)) { |
|
| 4865 | + return $texte; |
|
| 4866 | + } |
|
| 4867 | 4867 | |
| 4868 | - $traitement = ''; |
|
| 4869 | - if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) { |
|
| 4870 | - // necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg |
|
| 4871 | - $table_objet = table_objet($table_objet); |
|
| 4872 | - if (isset($traitements[$table_objet])) { |
|
| 4873 | - $traitement = $traitements[$table_objet]; |
|
| 4874 | - } |
|
| 4875 | - } |
|
| 4876 | - if (!$traitement and isset($traitements[0])) { |
|
| 4877 | - $traitement = $traitements[0]; |
|
| 4878 | - } |
|
| 4879 | - // (sinon prendre le premier de la liste par defaut ?) |
|
| 4868 | + $traitement = ''; |
|
| 4869 | + if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) { |
|
| 4870 | + // necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg |
|
| 4871 | + $table_objet = table_objet($table_objet); |
|
| 4872 | + if (isset($traitements[$table_objet])) { |
|
| 4873 | + $traitement = $traitements[$table_objet]; |
|
| 4874 | + } |
|
| 4875 | + } |
|
| 4876 | + if (!$traitement and isset($traitements[0])) { |
|
| 4877 | + $traitement = $traitements[0]; |
|
| 4878 | + } |
|
| 4879 | + // (sinon prendre le premier de la liste par defaut ?) |
|
| 4880 | 4880 | |
| 4881 | - if (!$traitement) { |
|
| 4882 | - return $texte; |
|
| 4883 | - } |
|
| 4881 | + if (!$traitement) { |
|
| 4882 | + return $texte; |
|
| 4883 | + } |
|
| 4884 | 4884 | |
| 4885 | - $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement); |
|
| 4885 | + $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement); |
|
| 4886 | 4886 | |
| 4887 | - // Fournir $connect et $Pile[0] au traitement si besoin |
|
| 4888 | - $Pile = [0 => $env]; |
|
| 4889 | - eval("\$texte = $traitement;"); |
|
| 4887 | + // Fournir $connect et $Pile[0] au traitement si besoin |
|
| 4888 | + $Pile = [0 => $env]; |
|
| 4889 | + eval("\$texte = $traitement;"); |
|
| 4890 | 4890 | |
| 4891 | - return $texte; |
|
| 4891 | + return $texte; |
|
| 4892 | 4892 | } |
| 4893 | 4893 | |
| 4894 | 4894 | |
@@ -4902,21 +4902,21 @@ discard block |
||
| 4902 | 4902 | * @return string |
| 4903 | 4903 | */ |
| 4904 | 4904 | function generer_lien_entite($id_objet, $objet, $longueur = 80, $connect = null) { |
| 4905 | - include_spip('inc/liens'); |
|
| 4906 | - $titre = traiter_raccourci_titre($id_objet, $objet, $connect); |
|
| 4907 | - // lorsque l'objet n'est plus declare (plugin desactive par exemple) |
|
| 4908 | - // le raccourcis n'est plus valide |
|
| 4909 | - $titre = typo($titre['titre']) ?? ''; |
|
| 4910 | - // on essaye avec generer_info_entite ? |
|
| 4911 | - if (!strlen($titre) and !$connect) { |
|
| 4912 | - $titre = generer_info_entite($id_objet, $objet, 'titre'); |
|
| 4913 | - } |
|
| 4914 | - if (!strlen($titre)) { |
|
| 4915 | - $titre = _T('info_sans_titre'); |
|
| 4916 | - } |
|
| 4917 | - $url = generer_url_entite($id_objet, $objet, '', '', $connect); |
|
| 4905 | + include_spip('inc/liens'); |
|
| 4906 | + $titre = traiter_raccourci_titre($id_objet, $objet, $connect); |
|
| 4907 | + // lorsque l'objet n'est plus declare (plugin desactive par exemple) |
|
| 4908 | + // le raccourcis n'est plus valide |
|
| 4909 | + $titre = typo($titre['titre']) ?? ''; |
|
| 4910 | + // on essaye avec generer_info_entite ? |
|
| 4911 | + if (!strlen($titre) and !$connect) { |
|
| 4912 | + $titre = generer_info_entite($id_objet, $objet, 'titre'); |
|
| 4913 | + } |
|
| 4914 | + if (!strlen($titre)) { |
|
| 4915 | + $titre = _T('info_sans_titre'); |
|
| 4916 | + } |
|
| 4917 | + $url = generer_url_entite($id_objet, $objet, '', '', $connect); |
|
| 4918 | 4918 | |
| 4919 | - return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . '</a>'; |
|
| 4919 | + return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . '</a>'; |
|
| 4920 | 4920 | } |
| 4921 | 4921 | |
| 4922 | 4922 | |
@@ -4933,15 +4933,15 @@ discard block |
||
| 4933 | 4933 | * @return string |
| 4934 | 4934 | */ |
| 4935 | 4935 | function wrap($texte, $wrap) { |
| 4936 | - $balises = extraire_balises($wrap); |
|
| 4937 | - if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) { |
|
| 4938 | - $texte = $wrap . $texte; |
|
| 4939 | - $regs = array_reverse($regs[1]); |
|
| 4940 | - $wrap = '</' . implode('></', $regs) . '>'; |
|
| 4941 | - $texte = $texte . $wrap; |
|
| 4942 | - } |
|
| 4936 | + $balises = extraire_balises($wrap); |
|
| 4937 | + if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) { |
|
| 4938 | + $texte = $wrap . $texte; |
|
| 4939 | + $regs = array_reverse($regs[1]); |
|
| 4940 | + $wrap = '</' . implode('></', $regs) . '>'; |
|
| 4941 | + $texte = $texte . $wrap; |
|
| 4942 | + } |
|
| 4943 | 4943 | |
| 4944 | - return $texte; |
|
| 4944 | + return $texte; |
|
| 4945 | 4945 | } |
| 4946 | 4946 | |
| 4947 | 4947 | |
@@ -4961,44 +4961,44 @@ discard block |
||
| 4961 | 4961 | * @return array|mixed|string |
| 4962 | 4962 | */ |
| 4963 | 4963 | function filtre_print_dist($u, $join = '<br />', $indent = 0) { |
| 4964 | - if (is_string($u)) { |
|
| 4965 | - $u = typo($u); |
|
| 4964 | + if (is_string($u)) { |
|
| 4965 | + $u = typo($u); |
|
| 4966 | 4966 | |
| 4967 | - return $u; |
|
| 4968 | - } |
|
| 4967 | + return $u; |
|
| 4968 | + } |
|
| 4969 | 4969 | |
| 4970 | - // caster $u en array si besoin |
|
| 4971 | - if (is_object($u)) { |
|
| 4972 | - $u = (array)$u; |
|
| 4973 | - } |
|
| 4970 | + // caster $u en array si besoin |
|
| 4971 | + if (is_object($u)) { |
|
| 4972 | + $u = (array)$u; |
|
| 4973 | + } |
|
| 4974 | 4974 | |
| 4975 | - if (is_array($u)) { |
|
| 4976 | - $out = ''; |
|
| 4977 | - // toutes les cles sont numeriques ? |
|
| 4978 | - // et aucun enfant n'est un tableau |
|
| 4979 | - // liste simple separee par des virgules |
|
| 4980 | - $numeric_keys = array_map('is_numeric', array_keys($u)); |
|
| 4981 | - $array_values = array_map('is_array', $u); |
|
| 4982 | - $object_values = array_map('is_object', $u); |
|
| 4983 | - if ( |
|
| 4984 | - array_sum($numeric_keys) == count($numeric_keys) |
|
| 4985 | - and !array_sum($array_values) |
|
| 4986 | - and !array_sum($object_values) |
|
| 4987 | - ) { |
|
| 4988 | - return join(', ', array_map('filtre_print_dist', $u)); |
|
| 4989 | - } |
|
| 4975 | + if (is_array($u)) { |
|
| 4976 | + $out = ''; |
|
| 4977 | + // toutes les cles sont numeriques ? |
|
| 4978 | + // et aucun enfant n'est un tableau |
|
| 4979 | + // liste simple separee par des virgules |
|
| 4980 | + $numeric_keys = array_map('is_numeric', array_keys($u)); |
|
| 4981 | + $array_values = array_map('is_array', $u); |
|
| 4982 | + $object_values = array_map('is_object', $u); |
|
| 4983 | + if ( |
|
| 4984 | + array_sum($numeric_keys) == count($numeric_keys) |
|
| 4985 | + and !array_sum($array_values) |
|
| 4986 | + and !array_sum($object_values) |
|
| 4987 | + ) { |
|
| 4988 | + return join(', ', array_map('filtre_print_dist', $u)); |
|
| 4989 | + } |
|
| 4990 | 4990 | |
| 4991 | - // sinon on passe a la ligne et on indente |
|
| 4992 | - $i_str = str_pad('', $indent, ' '); |
|
| 4993 | - foreach ($u as $k => $v) { |
|
| 4994 | - $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2); |
|
| 4995 | - } |
|
| 4991 | + // sinon on passe a la ligne et on indente |
|
| 4992 | + $i_str = str_pad('', $indent, ' '); |
|
| 4993 | + foreach ($u as $k => $v) { |
|
| 4994 | + $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2); |
|
| 4995 | + } |
|
| 4996 | 4996 | |
| 4997 | - return $out; |
|
| 4998 | - } |
|
| 4997 | + return $out; |
|
| 4998 | + } |
|
| 4999 | 4999 | |
| 5000 | - // on sait pas quoi faire... |
|
| 5001 | - return $u; |
|
| 5000 | + // on sait pas quoi faire... |
|
| 5001 | + return $u; |
|
| 5002 | 5002 | } |
| 5003 | 5003 | |
| 5004 | 5004 | |
@@ -5011,10 +5011,10 @@ discard block |
||
| 5011 | 5011 | * @return string|array |
| 5012 | 5012 | */ |
| 5013 | 5013 | function objet_info($objet, $info) { |
| 5014 | - $table = table_objet_sql($objet); |
|
| 5015 | - $infos = lister_tables_objets_sql($table); |
|
| 5014 | + $table = table_objet_sql($objet); |
|
| 5015 | + $infos = lister_tables_objets_sql($table); |
|
| 5016 | 5016 | |
| 5017 | - return ($infos[$info] ?? ''); |
|
| 5017 | + return ($infos[$info] ?? ''); |
|
| 5018 | 5018 | } |
| 5019 | 5019 | |
| 5020 | 5020 | /** |
@@ -5029,11 +5029,11 @@ discard block |
||
| 5029 | 5029 | * Texte traduit du comptage, tel que '3 articles' |
| 5030 | 5030 | */ |
| 5031 | 5031 | function objet_afficher_nb($nb, $objet) { |
| 5032 | - if (!$nb) { |
|
| 5033 | - return _T(objet_info($objet, 'info_aucun_objet')); |
|
| 5034 | - } else { |
|
| 5035 | - return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), ['nb' => $nb]); |
|
| 5036 | - } |
|
| 5032 | + if (!$nb) { |
|
| 5033 | + return _T(objet_info($objet, 'info_aucun_objet')); |
|
| 5034 | + } else { |
|
| 5035 | + return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), ['nb' => $nb]); |
|
| 5036 | + } |
|
| 5037 | 5037 | } |
| 5038 | 5038 | |
| 5039 | 5039 | /** |
@@ -5045,11 +5045,11 @@ discard block |
||
| 5045 | 5045 | * @return string |
| 5046 | 5046 | */ |
| 5047 | 5047 | function objet_icone($objet, $taille = 24, $class = '') { |
| 5048 | - $icone = objet_info($objet, 'icone_objet') . '-' . $taille . '.png'; |
|
| 5049 | - $icone = chemin_image($icone); |
|
| 5050 | - $balise_img = charger_filtre('balise_img'); |
|
| 5048 | + $icone = objet_info($objet, 'icone_objet') . '-' . $taille . '.png'; |
|
| 5049 | + $icone = chemin_image($icone); |
|
| 5050 | + $balise_img = charger_filtre('balise_img'); |
|
| 5051 | 5051 | |
| 5052 | - return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : ''; |
|
| 5052 | + return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : ''; |
|
| 5053 | 5053 | } |
| 5054 | 5054 | |
| 5055 | 5055 | /** |
@@ -5070,12 +5070,12 @@ discard block |
||
| 5070 | 5070 | * @return string |
| 5071 | 5071 | */ |
| 5072 | 5072 | function objet_T($objet, $chaine, $args = [], $options = []) { |
| 5073 | - $chaine = explode(':', $chaine); |
|
| 5074 | - if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, ['force' => false]))) { |
|
| 5075 | - return $t; |
|
| 5076 | - } |
|
| 5077 | - $chaine = implode(':', $chaine); |
|
| 5078 | - return _T($chaine, $args, $options); |
|
| 5073 | + $chaine = explode(':', $chaine); |
|
| 5074 | + if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, ['force' => false]))) { |
|
| 5075 | + return $t; |
|
| 5076 | + } |
|
| 5077 | + $chaine = implode(':', $chaine); |
|
| 5078 | + return _T($chaine, $args, $options); |
|
| 5079 | 5079 | } |
| 5080 | 5080 | |
| 5081 | 5081 | /** |
@@ -5089,18 +5089,18 @@ discard block |
||
| 5089 | 5089 | * @return string Code HTML |
| 5090 | 5090 | */ |
| 5091 | 5091 | function insert_head_css_conditionnel($flux) { |
| 5092 | - if ( |
|
| 5093 | - strpos($flux, '<!-- insert_head_css -->') === false |
|
| 5094 | - and $p = strpos($flux, '<!-- insert_head -->') |
|
| 5095 | - ) { |
|
| 5096 | - // plutot avant le premier js externe (jquery) pour etre non bloquant |
|
| 5097 | - if ($p1 = stripos($flux, '<script src=') and $p1 < $p) { |
|
| 5098 | - $p = $p1; |
|
| 5099 | - } |
|
| 5100 | - $flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0); |
|
| 5101 | - } |
|
| 5092 | + if ( |
|
| 5093 | + strpos($flux, '<!-- insert_head_css -->') === false |
|
| 5094 | + and $p = strpos($flux, '<!-- insert_head -->') |
|
| 5095 | + ) { |
|
| 5096 | + // plutot avant le premier js externe (jquery) pour etre non bloquant |
|
| 5097 | + if ($p1 = stripos($flux, '<script src=') and $p1 < $p) { |
|
| 5098 | + $p = $p1; |
|
| 5099 | + } |
|
| 5100 | + $flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0); |
|
| 5101 | + } |
|
| 5102 | 5102 | |
| 5103 | - return $flux; |
|
| 5103 | + return $flux; |
|
| 5104 | 5104 | } |
| 5105 | 5105 | |
| 5106 | 5106 | /** |
@@ -5123,72 +5123,72 @@ discard block |
||
| 5123 | 5123 | * @return string |
| 5124 | 5124 | */ |
| 5125 | 5125 | function produire_fond_statique($fond, $contexte = [], $options = [], string $connect = '') { |
| 5126 | - if (isset($contexte['format'])) { |
|
| 5127 | - $extension = $contexte['format']; |
|
| 5128 | - unset($contexte['format']); |
|
| 5129 | - } else { |
|
| 5130 | - $extension = 'html'; |
|
| 5131 | - if (preg_match(',[.](css|js|json|xml|svg)$,', $fond, $m)) { |
|
| 5132 | - $extension = $m[1]; |
|
| 5133 | - } |
|
| 5134 | - } |
|
| 5135 | - // recuperer le contenu produit par le squelette |
|
| 5136 | - $options['raw'] = true; |
|
| 5137 | - $cache = recuperer_fond($fond, $contexte, $options, $connect); |
|
| 5138 | - |
|
| 5139 | - // calculer le nom de la css |
|
| 5140 | - $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension); |
|
| 5141 | - $nom_safe = preg_replace(',\W,', '_', str_replace('.', '_', $fond)); |
|
| 5142 | - $contexte_implicite = calculer_contexte_implicite(); |
|
| 5143 | - |
|
| 5144 | - // par defaut on hash selon les contextes qui sont a priori moins variables |
|
| 5145 | - // mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu |
|
| 5146 | - // reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine |
|
| 5147 | - if (isset($options['hash_on_content']) and $options['hash_on_content']) { |
|
| 5148 | - $hash = md5($contexte_implicite['host'] . '::' . $cache); |
|
| 5149 | - } |
|
| 5150 | - else { |
|
| 5151 | - unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js |
|
| 5152 | - ksort($contexte); |
|
| 5153 | - $hash = md5($fond . json_encode($contexte_implicite, JSON_THROW_ON_ERROR) . json_encode($contexte, JSON_THROW_ON_ERROR) . $connect); |
|
| 5154 | - } |
|
| 5155 | - $filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension"; |
|
| 5156 | - |
|
| 5157 | - // mettre a jour le fichier si il n'existe pas |
|
| 5158 | - // ou trop ancien |
|
| 5159 | - // le dernier fichier produit est toujours suffixe par .last |
|
| 5160 | - // et recopie sur le fichier cible uniquement si il change |
|
| 5161 | - if ( |
|
| 5162 | - !file_exists($filename) |
|
| 5163 | - or !file_exists($filename . '.last') |
|
| 5164 | - or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . '.last') < $cache['lastmodified']) |
|
| 5165 | - or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul') |
|
| 5166 | - ) { |
|
| 5167 | - $contenu = $cache['texte']; |
|
| 5168 | - // passer les urls en absolu si c'est une css |
|
| 5169 | - if ($extension == 'css') { |
|
| 5170 | - $contenu = urls_absolues_css( |
|
| 5171 | - $contenu, |
|
| 5172 | - test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond) |
|
| 5173 | - ); |
|
| 5174 | - } |
|
| 5175 | - |
|
| 5176 | - $comment = ''; |
|
| 5177 | - // ne pas insérer de commentaire sur certains formats |
|
| 5178 | - if (!in_array($extension, ['json', 'xml', 'svg'])) { |
|
| 5179 | - $comment = "/* #PRODUIRE{fond=$fond"; |
|
| 5180 | - foreach ($contexte as $k => $v) { |
|
| 5181 | - $comment .= ",$k=$v"; |
|
| 5182 | - } |
|
| 5183 | - // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj |
|
| 5184 | - // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non |
|
| 5185 | - $comment .= "}\n md5:" . md5($contenu) . " */\n"; |
|
| 5186 | - } |
|
| 5187 | - // et ecrire le fichier si il change |
|
| 5188 | - ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true); |
|
| 5189 | - } |
|
| 5190 | - |
|
| 5191 | - return timestamp($filename); |
|
| 5126 | + if (isset($contexte['format'])) { |
|
| 5127 | + $extension = $contexte['format']; |
|
| 5128 | + unset($contexte['format']); |
|
| 5129 | + } else { |
|
| 5130 | + $extension = 'html'; |
|
| 5131 | + if (preg_match(',[.](css|js|json|xml|svg)$,', $fond, $m)) { |
|
| 5132 | + $extension = $m[1]; |
|
| 5133 | + } |
|
| 5134 | + } |
|
| 5135 | + // recuperer le contenu produit par le squelette |
|
| 5136 | + $options['raw'] = true; |
|
| 5137 | + $cache = recuperer_fond($fond, $contexte, $options, $connect); |
|
| 5138 | + |
|
| 5139 | + // calculer le nom de la css |
|
| 5140 | + $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension); |
|
| 5141 | + $nom_safe = preg_replace(',\W,', '_', str_replace('.', '_', $fond)); |
|
| 5142 | + $contexte_implicite = calculer_contexte_implicite(); |
|
| 5143 | + |
|
| 5144 | + // par defaut on hash selon les contextes qui sont a priori moins variables |
|
| 5145 | + // mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu |
|
| 5146 | + // reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine |
|
| 5147 | + if (isset($options['hash_on_content']) and $options['hash_on_content']) { |
|
| 5148 | + $hash = md5($contexte_implicite['host'] . '::' . $cache); |
|
| 5149 | + } |
|
| 5150 | + else { |
|
| 5151 | + unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js |
|
| 5152 | + ksort($contexte); |
|
| 5153 | + $hash = md5($fond . json_encode($contexte_implicite, JSON_THROW_ON_ERROR) . json_encode($contexte, JSON_THROW_ON_ERROR) . $connect); |
|
| 5154 | + } |
|
| 5155 | + $filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension"; |
|
| 5156 | + |
|
| 5157 | + // mettre a jour le fichier si il n'existe pas |
|
| 5158 | + // ou trop ancien |
|
| 5159 | + // le dernier fichier produit est toujours suffixe par .last |
|
| 5160 | + // et recopie sur le fichier cible uniquement si il change |
|
| 5161 | + if ( |
|
| 5162 | + !file_exists($filename) |
|
| 5163 | + or !file_exists($filename . '.last') |
|
| 5164 | + or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . '.last') < $cache['lastmodified']) |
|
| 5165 | + or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul') |
|
| 5166 | + ) { |
|
| 5167 | + $contenu = $cache['texte']; |
|
| 5168 | + // passer les urls en absolu si c'est une css |
|
| 5169 | + if ($extension == 'css') { |
|
| 5170 | + $contenu = urls_absolues_css( |
|
| 5171 | + $contenu, |
|
| 5172 | + test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond) |
|
| 5173 | + ); |
|
| 5174 | + } |
|
| 5175 | + |
|
| 5176 | + $comment = ''; |
|
| 5177 | + // ne pas insérer de commentaire sur certains formats |
|
| 5178 | + if (!in_array($extension, ['json', 'xml', 'svg'])) { |
|
| 5179 | + $comment = "/* #PRODUIRE{fond=$fond"; |
|
| 5180 | + foreach ($contexte as $k => $v) { |
|
| 5181 | + $comment .= ",$k=$v"; |
|
| 5182 | + } |
|
| 5183 | + // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj |
|
| 5184 | + // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non |
|
| 5185 | + $comment .= "}\n md5:" . md5($contenu) . " */\n"; |
|
| 5186 | + } |
|
| 5187 | + // et ecrire le fichier si il change |
|
| 5188 | + ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true); |
|
| 5189 | + } |
|
| 5190 | + |
|
| 5191 | + return timestamp($filename); |
|
| 5192 | 5192 | } |
| 5193 | 5193 | |
| 5194 | 5194 | /** |
@@ -5201,15 +5201,15 @@ discard block |
||
| 5201 | 5201 | * $fichier auquel on a ajouté le timestamp |
| 5202 | 5202 | */ |
| 5203 | 5203 | function timestamp($fichier) { |
| 5204 | - if ( |
|
| 5205 | - !$fichier |
|
| 5206 | - or !file_exists($fichier) |
|
| 5207 | - or !$m = filemtime($fichier) |
|
| 5208 | - ) { |
|
| 5209 | - return $fichier; |
|
| 5210 | - } |
|
| 5204 | + if ( |
|
| 5205 | + !$fichier |
|
| 5206 | + or !file_exists($fichier) |
|
| 5207 | + or !$m = filemtime($fichier) |
|
| 5208 | + ) { |
|
| 5209 | + return $fichier; |
|
| 5210 | + } |
|
| 5211 | 5211 | |
| 5212 | - return "$fichier?$m"; |
|
| 5212 | + return "$fichier?$m"; |
|
| 5213 | 5213 | } |
| 5214 | 5214 | |
| 5215 | 5215 | /** |
@@ -5219,11 +5219,11 @@ discard block |
||
| 5219 | 5219 | * @return string |
| 5220 | 5220 | */ |
| 5221 | 5221 | function supprimer_timestamp($url) { |
| 5222 | - if (strpos($url, '?') === false) { |
|
| 5223 | - return $url; |
|
| 5224 | - } |
|
| 5222 | + if (strpos($url, '?') === false) { |
|
| 5223 | + return $url; |
|
| 5224 | + } |
|
| 5225 | 5225 | |
| 5226 | - return preg_replace(',\?[[:digit:]]+$,', '', $url); |
|
| 5226 | + return preg_replace(',\?[[:digit:]]+$,', '', $url); |
|
| 5227 | 5227 | } |
| 5228 | 5228 | |
| 5229 | 5229 | /** |
@@ -5238,9 +5238,9 @@ discard block |
||
| 5238 | 5238 | * @return string |
| 5239 | 5239 | */ |
| 5240 | 5240 | function filtre_nettoyer_titre_email_dist($titre) { |
| 5241 | - include_spip('inc/envoyer_mail'); |
|
| 5241 | + include_spip('inc/envoyer_mail'); |
|
| 5242 | 5242 | |
| 5243 | - return nettoyer_titre_email($titre); |
|
| 5243 | + return nettoyer_titre_email($titre); |
|
| 5244 | 5244 | } |
| 5245 | 5245 | |
| 5246 | 5246 | /** |
@@ -5262,27 +5262,27 @@ discard block |
||
| 5262 | 5262 | * @return string |
| 5263 | 5263 | */ |
| 5264 | 5264 | function filtre_chercher_rubrique_dist( |
| 5265 | - $titre, |
|
| 5266 | - $id_objet, |
|
| 5267 | - $id_parent, |
|
| 5268 | - $objet, |
|
| 5269 | - $id_secteur, |
|
| 5270 | - $restreint, |
|
| 5271 | - $actionable = false, |
|
| 5272 | - $retour_sans_cadre = false |
|
| 5265 | + $titre, |
|
| 5266 | + $id_objet, |
|
| 5267 | + $id_parent, |
|
| 5268 | + $objet, |
|
| 5269 | + $id_secteur, |
|
| 5270 | + $restreint, |
|
| 5271 | + $actionable = false, |
|
| 5272 | + $retour_sans_cadre = false |
|
| 5273 | 5273 | ) { |
| 5274 | - include_spip('inc/filtres_ecrire'); |
|
| 5274 | + include_spip('inc/filtres_ecrire'); |
|
| 5275 | 5275 | |
| 5276 | - return chercher_rubrique( |
|
| 5277 | - $titre, |
|
| 5278 | - $id_objet, |
|
| 5279 | - $id_parent, |
|
| 5280 | - $objet, |
|
| 5281 | - $id_secteur, |
|
| 5282 | - $restreint, |
|
| 5283 | - $actionable, |
|
| 5284 | - $retour_sans_cadre |
|
| 5285 | - ); |
|
| 5276 | + return chercher_rubrique( |
|
| 5277 | + $titre, |
|
| 5278 | + $id_objet, |
|
| 5279 | + $id_parent, |
|
| 5280 | + $objet, |
|
| 5281 | + $id_secteur, |
|
| 5282 | + $restreint, |
|
| 5283 | + $actionable, |
|
| 5284 | + $retour_sans_cadre |
|
| 5285 | + ); |
|
| 5286 | 5286 | } |
| 5287 | 5287 | |
| 5288 | 5288 | /** |
@@ -5311,56 +5311,56 @@ discard block |
||
| 5311 | 5311 | * Chaîne vide si l'accès est autorisé |
| 5312 | 5312 | */ |
| 5313 | 5313 | function sinon_interdire_acces($ok = false, $url = '', $statut = 0, $message = null) { |
| 5314 | - if ($ok) { |
|
| 5315 | - return ''; |
|
| 5316 | - } |
|
| 5317 | - |
|
| 5318 | - // Vider tous les tampons |
|
| 5319 | - $level = @ob_get_level(); |
|
| 5320 | - while ($level--) { |
|
| 5321 | - @ob_end_clean(); |
|
| 5322 | - } |
|
| 5323 | - |
|
| 5324 | - include_spip('inc/headers'); |
|
| 5325 | - |
|
| 5326 | - // S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut) |
|
| 5327 | - if ($url) { |
|
| 5328 | - redirige_par_entete($url, '', $statut); |
|
| 5329 | - } |
|
| 5330 | - |
|
| 5331 | - // ecriture simplifiee avec message en 3eme argument (= statut 403) |
|
| 5332 | - if (!is_numeric($statut) and is_null($message)) { |
|
| 5333 | - $message = $statut; |
|
| 5334 | - $statut = 0; |
|
| 5335 | - } |
|
| 5336 | - if (!$message) { |
|
| 5337 | - $message = ''; |
|
| 5338 | - } |
|
| 5339 | - $statut = intval($statut); |
|
| 5340 | - |
|
| 5341 | - // Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404 |
|
| 5342 | - if (test_espace_prive()) { |
|
| 5343 | - if (!$statut or !in_array($statut, [404, 403])) { |
|
| 5344 | - $statut = 403; |
|
| 5345 | - } |
|
| 5346 | - http_response_code(403); |
|
| 5347 | - $echec = charger_fonction('403', 'exec'); |
|
| 5348 | - $echec($message); |
|
| 5349 | - } else { |
|
| 5350 | - // Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement |
|
| 5351 | - if (!$statut) { |
|
| 5352 | - $statut = 404; |
|
| 5353 | - } |
|
| 5354 | - // Dans tous les cas on modifie l'entité avec ce qui est demandé |
|
| 5355 | - http_response_code($statut); |
|
| 5356 | - // Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom |
|
| 5357 | - if ($statut >= 400) { |
|
| 5358 | - echo recuperer_fond("$statut", ['erreur' => $message]); |
|
| 5359 | - } |
|
| 5360 | - } |
|
| 5361 | - |
|
| 5362 | - |
|
| 5363 | - exit; |
|
| 5314 | + if ($ok) { |
|
| 5315 | + return ''; |
|
| 5316 | + } |
|
| 5317 | + |
|
| 5318 | + // Vider tous les tampons |
|
| 5319 | + $level = @ob_get_level(); |
|
| 5320 | + while ($level--) { |
|
| 5321 | + @ob_end_clean(); |
|
| 5322 | + } |
|
| 5323 | + |
|
| 5324 | + include_spip('inc/headers'); |
|
| 5325 | + |
|
| 5326 | + // S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut) |
|
| 5327 | + if ($url) { |
|
| 5328 | + redirige_par_entete($url, '', $statut); |
|
| 5329 | + } |
|
| 5330 | + |
|
| 5331 | + // ecriture simplifiee avec message en 3eme argument (= statut 403) |
|
| 5332 | + if (!is_numeric($statut) and is_null($message)) { |
|
| 5333 | + $message = $statut; |
|
| 5334 | + $statut = 0; |
|
| 5335 | + } |
|
| 5336 | + if (!$message) { |
|
| 5337 | + $message = ''; |
|
| 5338 | + } |
|
| 5339 | + $statut = intval($statut); |
|
| 5340 | + |
|
| 5341 | + // Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404 |
|
| 5342 | + if (test_espace_prive()) { |
|
| 5343 | + if (!$statut or !in_array($statut, [404, 403])) { |
|
| 5344 | + $statut = 403; |
|
| 5345 | + } |
|
| 5346 | + http_response_code(403); |
|
| 5347 | + $echec = charger_fonction('403', 'exec'); |
|
| 5348 | + $echec($message); |
|
| 5349 | + } else { |
|
| 5350 | + // Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement |
|
| 5351 | + if (!$statut) { |
|
| 5352 | + $statut = 404; |
|
| 5353 | + } |
|
| 5354 | + // Dans tous les cas on modifie l'entité avec ce qui est demandé |
|
| 5355 | + http_response_code($statut); |
|
| 5356 | + // Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom |
|
| 5357 | + if ($statut >= 400) { |
|
| 5358 | + echo recuperer_fond("$statut", ['erreur' => $message]); |
|
| 5359 | + } |
|
| 5360 | + } |
|
| 5361 | + |
|
| 5362 | + |
|
| 5363 | + exit; |
|
| 5364 | 5364 | } |
| 5365 | 5365 | |
| 5366 | 5366 | /** |
@@ -5371,11 +5371,11 @@ discard block |
||
| 5371 | 5371 | * @return string |
| 5372 | 5372 | */ |
| 5373 | 5373 | function filtre_compacte_dist($source, $format = null) { |
| 5374 | - if (function_exists('compacte')) { |
|
| 5375 | - return compacte($source, $format); |
|
| 5376 | - } |
|
| 5374 | + if (function_exists('compacte')) { |
|
| 5375 | + return compacte($source, $format); |
|
| 5376 | + } |
|
| 5377 | 5377 | |
| 5378 | - return $source; |
|
| 5378 | + return $source; |
|
| 5379 | 5379 | } |
| 5380 | 5380 | |
| 5381 | 5381 | |
@@ -5387,31 +5387,31 @@ discard block |
||
| 5387 | 5387 | * @return string |
| 5388 | 5388 | */ |
| 5389 | 5389 | function spip_affiche_mot_de_passe_masque($passe, $afficher_partiellement = false, $portion_pourcent = null) { |
| 5390 | - $l = strlen($passe); |
|
| 5391 | - |
|
| 5392 | - if ($l <= 8 or !$afficher_partiellement) { |
|
| 5393 | - if (!$l) { |
|
| 5394 | - return ''; // montrer qu'il y a pas de mot de passe si il y en a pas |
|
| 5395 | - } |
|
| 5396 | - return str_pad('', $afficher_partiellement ? $l : 16, '*'); |
|
| 5397 | - } |
|
| 5398 | - |
|
| 5399 | - if (is_null($portion_pourcent)) { |
|
| 5400 | - if (!defined('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT')) { |
|
| 5401 | - define('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT', 20); // 20% |
|
| 5402 | - } |
|
| 5403 | - $portion_pourcent = _SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT; |
|
| 5404 | - } |
|
| 5405 | - if ($portion_pourcent >= 100) { |
|
| 5406 | - return $passe; |
|
| 5407 | - } |
|
| 5408 | - $e = intval(ceil($l * $portion_pourcent / 100 / 2)); |
|
| 5409 | - $e = max($e, 0); |
|
| 5410 | - $mid = str_pad('', $l - 2 * $e, '*'); |
|
| 5411 | - if ($e > 0 and strlen($mid) > 8) { |
|
| 5412 | - $mid = '***...***'; |
|
| 5413 | - } |
|
| 5414 | - return substr($passe, 0, $e) . $mid . ($e > 0 ? substr($passe, -$e) : ''); |
|
| 5390 | + $l = strlen($passe); |
|
| 5391 | + |
|
| 5392 | + if ($l <= 8 or !$afficher_partiellement) { |
|
| 5393 | + if (!$l) { |
|
| 5394 | + return ''; // montrer qu'il y a pas de mot de passe si il y en a pas |
|
| 5395 | + } |
|
| 5396 | + return str_pad('', $afficher_partiellement ? $l : 16, '*'); |
|
| 5397 | + } |
|
| 5398 | + |
|
| 5399 | + if (is_null($portion_pourcent)) { |
|
| 5400 | + if (!defined('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT')) { |
|
| 5401 | + define('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT', 20); // 20% |
|
| 5402 | + } |
|
| 5403 | + $portion_pourcent = _SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT; |
|
| 5404 | + } |
|
| 5405 | + if ($portion_pourcent >= 100) { |
|
| 5406 | + return $passe; |
|
| 5407 | + } |
|
| 5408 | + $e = intval(ceil($l * $portion_pourcent / 100 / 2)); |
|
| 5409 | + $e = max($e, 0); |
|
| 5410 | + $mid = str_pad('', $l - 2 * $e, '*'); |
|
| 5411 | + if ($e > 0 and strlen($mid) > 8) { |
|
| 5412 | + $mid = '***...***'; |
|
| 5413 | + } |
|
| 5414 | + return substr($passe, 0, $e) . $mid . ($e > 0 ? substr($passe, -$e) : ''); |
|
| 5415 | 5415 | } |
| 5416 | 5416 | |
| 5417 | 5417 | |
@@ -5432,64 +5432,64 @@ discard block |
||
| 5432 | 5432 | */ |
| 5433 | 5433 | function identifiant_slug($texte, $type = '', $options = []) { |
| 5434 | 5434 | |
| 5435 | - $original = $texte; |
|
| 5436 | - $separateur = ($options['separateur'] ?? '_'); |
|
| 5437 | - $longueur_maxi = ($options['longueur_maxi'] ?? 60); |
|
| 5438 | - $longueur_mini = ($options['longueur_mini'] ?? 0); |
|
| 5435 | + $original = $texte; |
|
| 5436 | + $separateur = ($options['separateur'] ?? '_'); |
|
| 5437 | + $longueur_maxi = ($options['longueur_maxi'] ?? 60); |
|
| 5438 | + $longueur_mini = ($options['longueur_mini'] ?? 0); |
|
| 5439 | 5439 | |
| 5440 | - if (!function_exists('translitteration')) { |
|
| 5441 | - include_spip('inc/charsets'); |
|
| 5442 | - } |
|
| 5440 | + if (!function_exists('translitteration')) { |
|
| 5441 | + include_spip('inc/charsets'); |
|
| 5442 | + } |
|
| 5443 | 5443 | |
| 5444 | - // pas de balise html |
|
| 5445 | - if (strpos($texte, '<') !== false) { |
|
| 5446 | - $texte = strip_tags($texte); |
|
| 5447 | - } |
|
| 5448 | - if (strpos($texte, '&') !== false) { |
|
| 5449 | - $texte = unicode2charset($texte); |
|
| 5450 | - } |
|
| 5451 | - // On enlève les espaces indésirables |
|
| 5452 | - $texte = trim($texte); |
|
| 5444 | + // pas de balise html |
|
| 5445 | + if (strpos($texte, '<') !== false) { |
|
| 5446 | + $texte = strip_tags($texte); |
|
| 5447 | + } |
|
| 5448 | + if (strpos($texte, '&') !== false) { |
|
| 5449 | + $texte = unicode2charset($texte); |
|
| 5450 | + } |
|
| 5451 | + // On enlève les espaces indésirables |
|
| 5452 | + $texte = trim($texte); |
|
| 5453 | 5453 | |
| 5454 | - // On enlève les accents et cie |
|
| 5455 | - $texte = translitteration($texte); |
|
| 5454 | + // On enlève les accents et cie |
|
| 5455 | + $texte = translitteration($texte); |
|
| 5456 | 5456 | |
| 5457 | - // On remplace tout ce qui n'est pas un mot par un séparateur |
|
| 5458 | - $texte = preg_replace(',[\W_]+,ms', $separateur, $texte); |
|
| 5457 | + // On remplace tout ce qui n'est pas un mot par un séparateur |
|
| 5458 | + $texte = preg_replace(',[\W_]+,ms', $separateur, $texte); |
|
| 5459 | 5459 | |
| 5460 | - // nettoyer les doubles occurences du separateur si besoin |
|
| 5461 | - while (strpos($texte, (string) "$separateur$separateur") !== false) { |
|
| 5462 | - $texte = str_replace("$separateur$separateur", $separateur, $texte); |
|
| 5463 | - } |
|
| 5460 | + // nettoyer les doubles occurences du separateur si besoin |
|
| 5461 | + while (strpos($texte, (string) "$separateur$separateur") !== false) { |
|
| 5462 | + $texte = str_replace("$separateur$separateur", $separateur, $texte); |
|
| 5463 | + } |
|
| 5464 | 5464 | |
| 5465 | - // pas de separateur au debut ni a la fin |
|
| 5466 | - $texte = trim($texte, $separateur); |
|
| 5465 | + // pas de separateur au debut ni a la fin |
|
| 5466 | + $texte = trim($texte, $separateur); |
|
| 5467 | 5467 | |
| 5468 | - // en minuscules |
|
| 5469 | - $texte = strtolower($texte); |
|
| 5468 | + // en minuscules |
|
| 5469 | + $texte = strtolower($texte); |
|
| 5470 | 5470 | |
| 5471 | - switch ($type) { |
|
| 5472 | - case 'class': |
|
| 5473 | - case 'id': |
|
| 5474 | - case 'anchor': |
|
| 5475 | - if (preg_match(',^\d,', $texte)) { |
|
| 5476 | - $texte = substr($type, 0, 1) . $texte; |
|
| 5477 | - } |
|
| 5478 | - } |
|
| 5471 | + switch ($type) { |
|
| 5472 | + case 'class': |
|
| 5473 | + case 'id': |
|
| 5474 | + case 'anchor': |
|
| 5475 | + if (preg_match(',^\d,', $texte)) { |
|
| 5476 | + $texte = substr($type, 0, 1) . $texte; |
|
| 5477 | + } |
|
| 5478 | + } |
|
| 5479 | 5479 | |
| 5480 | - if (strlen($texte) > $longueur_maxi) { |
|
| 5481 | - $texte = substr($texte, 0, $longueur_maxi); |
|
| 5482 | - } |
|
| 5480 | + if (strlen($texte) > $longueur_maxi) { |
|
| 5481 | + $texte = substr($texte, 0, $longueur_maxi); |
|
| 5482 | + } |
|
| 5483 | 5483 | |
| 5484 | - if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) { |
|
| 5485 | - if (preg_match(',^\d,', $texte)) { |
|
| 5486 | - $texte = ($type ? substr($type, 0, 1) : 's') . $texte; |
|
| 5487 | - } |
|
| 5488 | - $texte .= $separateur . md5($original); |
|
| 5489 | - $texte = substr($texte, 0, $longueur_mini); |
|
| 5490 | - } |
|
| 5484 | + if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) { |
|
| 5485 | + if (preg_match(',^\d,', $texte)) { |
|
| 5486 | + $texte = ($type ? substr($type, 0, 1) : 's') . $texte; |
|
| 5487 | + } |
|
| 5488 | + $texte .= $separateur . md5($original); |
|
| 5489 | + $texte = substr($texte, 0, $longueur_mini); |
|
| 5490 | + } |
|
| 5491 | 5491 | |
| 5492 | - return $texte; |
|
| 5492 | + return $texte; |
|
| 5493 | 5493 | } |
| 5494 | 5494 | |
| 5495 | 5495 | |
@@ -5510,11 +5510,11 @@ discard block |
||
| 5510 | 5510 | * @exemple `<:info_maximum|label_nettoyer:>` |
| 5511 | 5511 | */ |
| 5512 | 5512 | function label_nettoyer(string $text, bool $ucfirst = true): string { |
| 5513 | - $label = preg_replace('#([\s:]|\ )+$#u', '', $text); |
|
| 5514 | - if ($ucfirst) { |
|
| 5515 | - $label = spip_ucfirst($label); |
|
| 5516 | - } |
|
| 5517 | - return $label; |
|
| 5513 | + $label = preg_replace('#([\s:]|\ )+$#u', '', $text); |
|
| 5514 | + if ($ucfirst) { |
|
| 5515 | + $label = spip_ucfirst($label); |
|
| 5516 | + } |
|
| 5517 | + return $label; |
|
| 5518 | 5518 | } |
| 5519 | 5519 | |
| 5520 | 5520 | /** |
@@ -5527,8 +5527,8 @@ discard block |
||
| 5527 | 5527 | * @exemple `<:info_maximum|label_ponctuer:>` |
| 5528 | 5528 | */ |
| 5529 | 5529 | function label_ponctuer(string $text, bool $ucfirst = true): string { |
| 5530 | - $label = label_nettoyer($text, $ucfirst); |
|
| 5531 | - return _T('label_ponctuer', ['label' => $label]); |
|
| 5530 | + $label = label_nettoyer($text, $ucfirst); |
|
| 5531 | + return _T('label_ponctuer', ['label' => $label]); |
|
| 5532 | 5532 | } |
| 5533 | 5533 | |
| 5534 | 5534 | |
@@ -5541,19 +5541,19 @@ discard block |
||
| 5541 | 5541 | * @return array |
| 5542 | 5542 | */ |
| 5543 | 5543 | function helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, $fonction) { |
| 5544 | - if (!in_array($fonction, ['objet_lister_parents', 'objet_lister_enfants', 'objet_lister_parents_par_type', 'objet_lister_enfants_par_type'])) { |
|
| 5545 | - return []; |
|
| 5546 | - } |
|
| 5544 | + if (!in_array($fonction, ['objet_lister_parents', 'objet_lister_enfants', 'objet_lister_parents_par_type', 'objet_lister_enfants_par_type'])) { |
|
| 5545 | + return []; |
|
| 5546 | + } |
|
| 5547 | 5547 | |
| 5548 | - // compatibilite signature inversee |
|
| 5549 | - if (is_numeric($objet) and !is_numeric($id_objet)) { |
|
| 5550 | - [$objet, $id_objet] = [$id_objet, $objet]; |
|
| 5551 | - } |
|
| 5548 | + // compatibilite signature inversee |
|
| 5549 | + if (is_numeric($objet) and !is_numeric($id_objet)) { |
|
| 5550 | + [$objet, $id_objet] = [$id_objet, $objet]; |
|
| 5551 | + } |
|
| 5552 | 5552 | |
| 5553 | - if (!function_exists($fonction)) { |
|
| 5554 | - include_spip('base/objets'); |
|
| 5555 | - } |
|
| 5556 | - return $fonction($objet, $id_objet); |
|
| 5553 | + if (!function_exists($fonction)) { |
|
| 5554 | + include_spip('base/objets'); |
|
| 5555 | + } |
|
| 5556 | + return $fonction($objet, $id_objet); |
|
| 5557 | 5557 | } |
| 5558 | 5558 | |
| 5559 | 5559 | |
@@ -5568,7 +5568,7 @@ discard block |
||
| 5568 | 5568 | * @return array |
| 5569 | 5569 | */ |
| 5570 | 5570 | function filtre_objet_lister_parents_dist($objet, $id_objet) { |
| 5571 | - return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents'); |
|
| 5571 | + return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents'); |
|
| 5572 | 5572 | } |
| 5573 | 5573 | |
| 5574 | 5574 | /** |
@@ -5582,7 +5582,7 @@ discard block |
||
| 5582 | 5582 | * @return array |
| 5583 | 5583 | */ |
| 5584 | 5584 | function filtre_objet_lister_parents_par_type_dist($objet, $id_objet) { |
| 5585 | - return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents_par_type'); |
|
| 5585 | + return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents_par_type'); |
|
| 5586 | 5586 | } |
| 5587 | 5587 | |
| 5588 | 5588 | /** |
@@ -5596,7 +5596,7 @@ discard block |
||
| 5596 | 5596 | * @return array |
| 5597 | 5597 | */ |
| 5598 | 5598 | function filtre_objet_lister_enfants_dist($objet, $id_objet) { |
| 5599 | - return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants'); |
|
| 5599 | + return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants'); |
|
| 5600 | 5600 | } |
| 5601 | 5601 | |
| 5602 | 5602 | /** |
@@ -5610,5 +5610,5 @@ discard block |
||
| 5610 | 5610 | * @return array |
| 5611 | 5611 | */ |
| 5612 | 5612 | function filtre_objet_lister_enfants_par_type_dist($objet, $id_objet) { |
| 5613 | - return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants_par_type'); |
|
| 5613 | + return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants_par_type'); |
|
| 5614 | 5614 | } |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | include_fichiers_fonctions(); |
| 99 | - foreach (['filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc] as $f) { |
|
| 99 | + foreach (['filtre_'.$fonc, 'filtre_'.$fonc.'_dist', $fonc] as $f) { |
|
| 100 | 100 | trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels |
| 101 | 101 | // fonction ou name\space\fonction |
| 102 | 102 | if (is_callable($f)) { |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | // affichage "GIT [master: abcdef]" |
| 224 | 224 | $commit = $desc['commit_short'] ?? $desc['commit']; |
| 225 | 225 | if ($desc['branch']) { |
| 226 | - $commit = $desc['branch'] . ': ' . $commit; |
|
| 226 | + $commit = $desc['branch'].': '.$commit; |
|
| 227 | 227 | } |
| 228 | 228 | return "{$desc['vcs']} [$commit]"; |
| 229 | 229 | } |
@@ -242,9 +242,9 @@ discard block |
||
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | // version installee par GIT |
| 245 | - if (lire_fichier($dir . '/.git/HEAD', $c)) { |
|
| 245 | + if (lire_fichier($dir.'/.git/HEAD', $c)) { |
|
| 246 | 246 | $currentHead = trim(substr($c, 4)); |
| 247 | - if (lire_fichier($dir . '/.git/' . $currentHead, $hash)) { |
|
| 247 | + if (lire_fichier($dir.'/.git/'.$currentHead, $hash)) { |
|
| 248 | 248 | return [ |
| 249 | 249 | 'vcs' => 'GIT', |
| 250 | 250 | 'branch' => basename($currentHead), |
@@ -271,8 +271,8 @@ discard block |
||
| 271 | 271 | $dir = '.'; |
| 272 | 272 | } |
| 273 | 273 | // version installee par SVN |
| 274 | - if (file_exists($dir . '/.svn/wc.db') && class_exists(\SQLite3::class)) { |
|
| 275 | - $db = new SQLite3($dir . '/.svn/wc.db'); |
|
| 274 | + if (file_exists($dir.'/.svn/wc.db') && class_exists(\SQLite3::class)) { |
|
| 275 | + $db = new SQLite3($dir.'/.svn/wc.db'); |
|
| 276 | 276 | $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1'); |
| 277 | 277 | if ($result) { |
| 278 | 278 | $row = $result->fetchArray(); |
@@ -290,12 +290,12 @@ discard block |
||
| 290 | 290 | |
| 291 | 291 | // La matrice est necessaire pour ne filtrer _que_ des fonctions definies dans filtres_images |
| 292 | 292 | // et laisser passer les fonctions personnelles baptisees image_... |
| 293 | -$GLOBALS['spip_matrice']['image_graver'] = true;//'inc/filtres_images_mini.php'; |
|
| 294 | -$GLOBALS['spip_matrice']['image_select'] = true;//'inc/filtres_images_mini.php'; |
|
| 295 | -$GLOBALS['spip_matrice']['image_reduire'] = true;//'inc/filtres_images_mini.php'; |
|
| 296 | -$GLOBALS['spip_matrice']['image_reduire_par'] = true;//'inc/filtres_images_mini.php'; |
|
| 297 | -$GLOBALS['spip_matrice']['image_passe_partout'] = true;//'inc/filtres_images_mini.php'; |
|
| 298 | -$GLOBALS['spip_matrice']['image_recadre_avec_fallback'] = true;//'inc/filtres_images_mini.php'; |
|
| 293 | +$GLOBALS['spip_matrice']['image_graver'] = true; //'inc/filtres_images_mini.php'; |
|
| 294 | +$GLOBALS['spip_matrice']['image_select'] = true; //'inc/filtres_images_mini.php'; |
|
| 295 | +$GLOBALS['spip_matrice']['image_reduire'] = true; //'inc/filtres_images_mini.php'; |
|
| 296 | +$GLOBALS['spip_matrice']['image_reduire_par'] = true; //'inc/filtres_images_mini.php'; |
|
| 297 | +$GLOBALS['spip_matrice']['image_passe_partout'] = true; //'inc/filtres_images_mini.php'; |
|
| 298 | +$GLOBALS['spip_matrice']['image_recadre_avec_fallback'] = true; //'inc/filtres_images_mini.php'; |
|
| 299 | 299 | |
| 300 | 300 | $GLOBALS['spip_matrice']['couleur_html_to_hex'] = 'inc/filtres_images_mini.php'; |
| 301 | 301 | $GLOBALS['spip_matrice']['couleur_hex_to_hsl'] = 'inc/filtres_images_mini.php'; |
@@ -454,8 +454,8 @@ discard block |
||
| 454 | 454 | */ |
| 455 | 455 | function filtre_debug($val, $key = null) { |
| 456 | 456 | $debug = ( |
| 457 | - is_null($key) ? '' : (var_export($key, true) . ' = ') |
|
| 458 | - ) . var_export($val, true); |
|
| 457 | + is_null($key) ? '' : (var_export($key, true).' = ') |
|
| 458 | + ).var_export($val, true); |
|
| 459 | 459 | |
| 460 | 460 | include_spip('inc/autoriser'); |
| 461 | 461 | if (autoriser('webmestre')) { |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | $is_file = false; |
| 510 | 510 | } |
| 511 | 511 | if ($is_file) { |
| 512 | - $is_local_file = function ($path) { |
|
| 512 | + $is_local_file = function($path) { |
|
| 513 | 513 | if (strpos($path, '?') !== false) { |
| 514 | 514 | $path = supprimer_timestamp($path); |
| 515 | 515 | // remove ?24px added by find_in_theme on .svg files |
@@ -561,7 +561,7 @@ discard block |
||
| 561 | 561 | if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) { |
| 562 | 562 | $srcover = $match[1]; |
| 563 | 563 | array_shift($args); |
| 564 | - array_unshift($args, "<img src='" . $match[1] . "' />"); |
|
| 564 | + array_unshift($args, "<img src='".$match[1]."' />"); |
|
| 565 | 565 | $srcover_filter = call_user_func_array($filtre, $args); |
| 566 | 566 | $srcover_filter = extraire_attribut($srcover_filter, 'src'); |
| 567 | 567 | $reduit = str_replace($srcover, $srcover_filter, $reduit); |
@@ -928,7 +928,7 @@ discard block |
||
| 928 | 928 | // " -> " et tout ce genre de choses |
| 929 | 929 | $u = $GLOBALS['meta']['pcre_u']; |
| 930 | 930 | $texte = str_replace(' ', ' ', $texte); |
| 931 | - $texte = preg_replace('/\s{2,}/S' . $u, ' ', $texte); |
|
| 931 | + $texte = preg_replace('/\s{2,}/S'.$u, ' ', $texte); |
|
| 932 | 932 | // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal |
| 933 | 933 | $texte = entites_html($texte, false, false); |
| 934 | 934 | // mais bien echapper les double quotes ! |
@@ -988,7 +988,7 @@ discard block |
||
| 988 | 988 | **/ |
| 989 | 989 | function supprimer_numero($texte) { |
| 990 | 990 | return preg_replace( |
| 991 | - ',^[[:space:]]*([0-9]+)([.)]|' . chr(194) . '?' . chr(176) . ')[[:space:]]+,S', |
|
| 991 | + ',^[[:space:]]*([0-9]+)([.)]|'.chr(194).'?'.chr(176).')[[:space:]]+,S', |
|
| 992 | 992 | '', |
| 993 | 993 | $texte |
| 994 | 994 | ); |
@@ -1016,7 +1016,7 @@ discard block |
||
| 1016 | 1016 | function recuperer_numero($texte) { |
| 1017 | 1017 | if ( |
| 1018 | 1018 | preg_match( |
| 1019 | - ',^[[:space:]]*([0-9]+)([.)]|' . chr(194) . '?' . chr(176) . ')[[:space:]]+,S', |
|
| 1019 | + ',^[[:space:]]*([0-9]+)([.)]|'.chr(194).'?'.chr(176).')[[:space:]]+,S', |
|
| 1020 | 1020 | $texte, |
| 1021 | 1021 | $regs |
| 1022 | 1022 | ) |
@@ -1107,8 +1107,8 @@ discard block |
||
| 1107 | 1107 | **/ |
| 1108 | 1108 | function textebrut($texte) { |
| 1109 | 1109 | $u = $GLOBALS['meta']['pcre_u']; |
| 1110 | - $texte = preg_replace('/\s+/S' . $u, ' ', $texte); |
|
| 1111 | - $texte = preg_replace('/<(p|br)( [^>]*)?' . '>/iS', "\n\n", $texte); |
|
| 1110 | + $texte = preg_replace('/\s+/S'.$u, ' ', $texte); |
|
| 1111 | + $texte = preg_replace('/<(p|br)( [^>]*)?'.'>/iS', "\n\n", $texte); |
|
| 1112 | 1112 | $texte = preg_replace("/^\n+/", '', $texte); |
| 1113 | 1113 | $texte = preg_replace("/\n+$/", '', $texte); |
| 1114 | 1114 | $texte = preg_replace("/\n +/", "\n", $texte); |
@@ -1142,7 +1142,7 @@ discard block |
||
| 1142 | 1142 | ) |
| 1143 | 1143 | ) { |
| 1144 | 1144 | foreach ($liens[0] as $a) { |
| 1145 | - $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel'); |
|
| 1145 | + $rel = 'noopener noreferrer '.extraire_attribut($a, 'rel'); |
|
| 1146 | 1146 | $ablank = inserer_attribut($a, 'rel', $rel); |
| 1147 | 1147 | $ablank = inserer_attribut($ablank, 'target', '_blank'); |
| 1148 | 1148 | $texte = str_replace($a, $ablank, $texte); |
@@ -1167,7 +1167,7 @@ discard block |
||
| 1167 | 1167 | foreach ($regs[0] as $a) { |
| 1168 | 1168 | $rel = extraire_attribut($a, 'rel'); |
| 1169 | 1169 | if (strpos($rel, 'nofollow') === false) { |
| 1170 | - $rel = 'nofollow' . ($rel ? " $rel" : ''); |
|
| 1170 | + $rel = 'nofollow'.($rel ? " $rel" : ''); |
|
| 1171 | 1171 | $anofollow = inserer_attribut($a, 'rel', $rel); |
| 1172 | 1172 | $texte = str_replace($a, $anofollow, $texte); |
| 1173 | 1173 | } |
@@ -1196,7 +1196,7 @@ discard block |
||
| 1196 | 1196 | $u = $GLOBALS['meta']['pcre_u']; |
| 1197 | 1197 | $texte = preg_replace('@</p>@iS', "\n", $texte); |
| 1198 | 1198 | $texte = preg_replace("@<p\b.*>@UiS", '<br />', $texte); |
| 1199 | - $texte = preg_replace('@^\s*<br />@S' . $u, '', $texte); |
|
| 1199 | + $texte = preg_replace('@^\s*<br />@S'.$u, '', $texte); |
|
| 1200 | 1200 | |
| 1201 | 1201 | return $texte; |
| 1202 | 1202 | } |
@@ -1227,7 +1227,7 @@ discard block |
||
| 1227 | 1227 | return $texte; |
| 1228 | 1228 | } |
| 1229 | 1229 | include_spip('inc/texte'); |
| 1230 | - $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ? |
|
| 1230 | + $tag = preg_match(',</?('._BALISES_BLOCS.')[>[:space:]],iS', $texte) ? |
|
| 1231 | 1231 | 'div' : 'span'; |
| 1232 | 1232 | |
| 1233 | 1233 | return "<$tag style='word-wrap:break-word;'>$texte</$tag>"; |
@@ -1339,7 +1339,7 @@ discard block |
||
| 1339 | 1339 | } |
| 1340 | 1340 | $u = $GLOBALS['meta']['pcre_u']; |
| 1341 | 1341 | if ($textebrut) { |
| 1342 | - $texte = preg_replace([",\n,", ',\s(?=\s),msS' . $u], [' ', ''], textebrut($texte)); |
|
| 1342 | + $texte = preg_replace([",\n,", ',\s(?=\s),msS'.$u], [' ', ''], textebrut($texte)); |
|
| 1343 | 1343 | } |
| 1344 | 1344 | $texte = texte_backend($texte); |
| 1345 | 1345 | $texte = str_replace(["'", '"'], [''', '"'], $texte); |
@@ -1374,7 +1374,7 @@ discard block |
||
| 1374 | 1374 | # un message pour abs_url |
| 1375 | 1375 | $GLOBALS['mode_abs_url'] = 'url'; |
| 1376 | 1376 | $url = trim($url); |
| 1377 | - $r = ',^(?:' . _PROTOCOLES_STD . '):?/?/?$,iS'; |
|
| 1377 | + $r = ',^(?:'._PROTOCOLES_STD.'):?/?/?$,iS'; |
|
| 1378 | 1378 | |
| 1379 | 1379 | return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url); |
| 1380 | 1380 | } |
@@ -1578,14 +1578,14 @@ discard block |
||
| 1578 | 1578 | if (strpos($texte, '<') !== false) { |
| 1579 | 1579 | include_spip('inc/lien'); |
| 1580 | 1580 | if (defined('_PREG_MODELE')) { |
| 1581 | - $preg_modeles = '@' . _PREG_MODELE . '@imsS'; |
|
| 1581 | + $preg_modeles = '@'._PREG_MODELE.'@imsS'; |
|
| 1582 | 1582 | $texte = echappe_html($texte, '', true, $preg_modeles); |
| 1583 | 1583 | } |
| 1584 | 1584 | } |
| 1585 | 1585 | |
| 1586 | 1586 | $debut = ''; |
| 1587 | 1587 | $suite = $texte; |
| 1588 | - while ($t = strpos('-' . $suite, "\n", 1)) { |
|
| 1588 | + while ($t = strpos('-'.$suite, "\n", 1)) { |
|
| 1589 | 1589 | $debut .= substr($suite, 0, $t - 1); |
| 1590 | 1590 | $suite = substr($suite, $t); |
| 1591 | 1591 | $car = substr($suite, 0, 1); |
@@ -1603,11 +1603,11 @@ discard block |
||
| 1603 | 1603 | $suite = substr($suite, strlen($regs[0])); |
| 1604 | 1604 | } |
| 1605 | 1605 | } |
| 1606 | - $texte = $debut . $suite; |
|
| 1606 | + $texte = $debut.$suite; |
|
| 1607 | 1607 | |
| 1608 | 1608 | $texte = echappe_retour($texte); |
| 1609 | 1609 | |
| 1610 | - return $texte . $fin; |
|
| 1610 | + return $texte.$fin; |
|
| 1611 | 1611 | } |
| 1612 | 1612 | |
| 1613 | 1613 | |
@@ -1669,7 +1669,7 @@ discard block |
||
| 1669 | 1669 | } |
| 1670 | 1670 | |
| 1671 | 1671 | foreach ($regs as $reg) { |
| 1672 | - $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2]; |
|
| 1672 | + $cle = ($reg[1] ? $reg[1].':' : '').$reg[2]; |
|
| 1673 | 1673 | $desc = $traduire($cle, $lang, true); |
| 1674 | 1674 | $l = $desc->langue; |
| 1675 | 1675 | // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte. |
@@ -1783,9 +1783,9 @@ discard block |
||
| 1783 | 1783 | // il ne faut pas echapper en div si propre produit un seul paragraphe |
| 1784 | 1784 | include_spip('inc/texte'); |
| 1785 | 1785 | $trad_propre = preg_replace(',(^<p[^>]*>|</p>$),Uims', '', propre($trad)); |
| 1786 | - $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1786 | + $mode = preg_match(',</?('._BALISES_BLOCS.')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1787 | 1787 | if ($mode === 'div') { |
| 1788 | - $trad = rtrim($trad) . "\n\n"; |
|
| 1788 | + $trad = rtrim($trad)."\n\n"; |
|
| 1789 | 1789 | } |
| 1790 | 1790 | $trad = code_echappement($trad, 'multi', false, $mode); |
| 1791 | 1791 | $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
@@ -1981,7 +1981,7 @@ discard block |
||
| 1981 | 1981 | if (is_array($balise)) { |
| 1982 | 1982 | array_walk( |
| 1983 | 1983 | $balise, |
| 1984 | - function (&$a, $key, $t) { |
|
| 1984 | + function(&$a, $key, $t) { |
|
| 1985 | 1985 | $a = extraire_attribut($a, $t); |
| 1986 | 1986 | }, |
| 1987 | 1987 | $attribut |
@@ -2073,14 +2073,14 @@ discard block |
||
| 2073 | 2073 | |
| 2074 | 2074 | if ($old !== null) { |
| 2075 | 2075 | // Remplacer l'ancien attribut du meme nom |
| 2076 | - $balise = $r[1] . $insert . $r[5]; |
|
| 2076 | + $balise = $r[1].$insert.$r[5]; |
|
| 2077 | 2077 | } else { |
| 2078 | 2078 | // preferer une balise " />" (comme <img />) |
| 2079 | 2079 | if (preg_match(',/>,', $balise)) { |
| 2080 | - $balise = preg_replace(',\s?/>,S', $insert . ' />', $balise, 1); |
|
| 2080 | + $balise = preg_replace(',\s?/>,S', $insert.' />', $balise, 1); |
|
| 2081 | 2081 | } // sinon une balise <a ...> ... </a> |
| 2082 | 2082 | else { |
| 2083 | - $balise = preg_replace(',\s?>,S', $insert . '>', $balise, 1); |
|
| 2083 | + $balise = preg_replace(',\s?>,S', $insert.'>', $balise, 1); |
|
| 2084 | 2084 | } |
| 2085 | 2085 | } |
| 2086 | 2086 | |
@@ -2135,7 +2135,7 @@ discard block |
||
| 2135 | 2135 | if ( |
| 2136 | 2136 | $class_courante |
| 2137 | 2137 | and strpos($class_courante, (string) $c) !== false |
| 2138 | - and preg_match('/(^|\s)' . preg_quote($c) . '($|\s)/', $class_courante) |
|
| 2138 | + and preg_match('/(^|\s)'.preg_quote($c).'($|\s)/', $class_courante) |
|
| 2139 | 2139 | ) { |
| 2140 | 2140 | $is_class_presente = true; |
| 2141 | 2141 | } |
@@ -2143,12 +2143,12 @@ discard block |
||
| 2143 | 2143 | in_array($operation, ['ajouter', 'commuter']) |
| 2144 | 2144 | and !$is_class_presente |
| 2145 | 2145 | ) { |
| 2146 | - $class_new = ltrim(rtrim($class_new ?? '') . ' ' . $c); |
|
| 2146 | + $class_new = ltrim(rtrim($class_new ?? '').' '.$c); |
|
| 2147 | 2147 | } elseif ( |
| 2148 | 2148 | in_array($operation, ['supprimer', 'commuter']) |
| 2149 | 2149 | and $is_class_presente |
| 2150 | 2150 | ) { |
| 2151 | - $class_new = trim(preg_replace('/(^|\s)' . preg_quote($c) . '($|\s)/', "\\1", $class_new)); |
|
| 2151 | + $class_new = trim(preg_replace('/(^|\s)'.preg_quote($c).'($|\s)/', "\\1", $class_new)); |
|
| 2152 | 2152 | } |
| 2153 | 2153 | } |
| 2154 | 2154 | |
@@ -2211,7 +2211,7 @@ discard block |
||
| 2211 | 2211 | // Quelques fonctions de calcul arithmetique |
| 2212 | 2212 | // |
| 2213 | 2213 | function floatstr($a) { |
| 2214 | - return str_replace(',', '.', (string)floatval($a)); |
|
| 2214 | + return str_replace(',', '.', (string) floatval($a)); |
|
| 2215 | 2215 | } |
| 2216 | 2216 | function strize($f, $a, $b) { |
| 2217 | 2217 | return floatstr($f(floatstr($a), floatstr($b))); |
@@ -2347,13 +2347,13 @@ discard block |
||
| 2347 | 2347 | if (!defined('_TAGS_NOM_AUTEUR')) { |
| 2348 | 2348 | define('_TAGS_NOM_AUTEUR', ''); |
| 2349 | 2349 | } |
| 2350 | - $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR)); |
|
| 2350 | + $tags_acceptes = array_unique(explode(',', 'multi,'._TAGS_NOM_AUTEUR)); |
|
| 2351 | 2351 | foreach ($tags_acceptes as $tag) { |
| 2352 | 2352 | if (strlen($tag)) { |
| 2353 | - $remp1[] = '<' . trim($tag) . '>'; |
|
| 2354 | - $remp1[] = '</' . trim($tag) . '>'; |
|
| 2355 | - $remp2[] = '\x60' . trim($tag) . '\x61'; |
|
| 2356 | - $remp2[] = '\x60/' . trim($tag) . '\x61'; |
|
| 2353 | + $remp1[] = '<'.trim($tag).'>'; |
|
| 2354 | + $remp1[] = '</'.trim($tag).'>'; |
|
| 2355 | + $remp2[] = '\x60'.trim($tag).'\x61'; |
|
| 2356 | + $remp2[] = '\x60/'.trim($tag).'\x61'; |
|
| 2357 | 2357 | } |
| 2358 | 2358 | } |
| 2359 | 2359 | $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom))); |
@@ -2407,7 +2407,7 @@ discard block |
||
| 2407 | 2407 | . http_img_pack( |
| 2408 | 2408 | 'attachment-16.png', |
| 2409 | 2409 | $t, |
| 2410 | - 'title="' . attribut_html($t) . '"' |
|
| 2410 | + 'title="'.attribut_html($t).'"' |
|
| 2411 | 2411 | ) |
| 2412 | 2412 | . '</a>', |
| 2413 | 2413 | $tag |
@@ -2471,10 +2471,10 @@ discard block |
||
| 2471 | 2471 | $fichier = basename($url); |
| 2472 | 2472 | |
| 2473 | 2473 | return '<a rel="enclosure"' |
| 2474 | - . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2475 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2476 | - . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '') |
|
| 2477 | - . '>' . $fichier . '</a>'; |
|
| 2474 | + . ($url ? ' href="'.spip_htmlspecialchars($url).'"' : '') |
|
| 2475 | + . ($type ? ' type="'.spip_htmlspecialchars($type).'"' : '') |
|
| 2476 | + . ($length ? ' title="'.spip_htmlspecialchars($length).'"' : '') |
|
| 2477 | + . '>'.$fichier.'</a>'; |
|
| 2478 | 2478 | } |
| 2479 | 2479 | |
| 2480 | 2480 | /** |
@@ -2502,9 +2502,9 @@ discard block |
||
| 2502 | 2502 | } # vieux data |
| 2503 | 2503 | $fichier = basename($url); |
| 2504 | 2504 | $enclosures[] = '<enclosure' |
| 2505 | - . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2506 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2507 | - . ($length ? ' length="' . $length . '"' : '') |
|
| 2505 | + . ($url ? ' url="'.spip_htmlspecialchars($url).'"' : '') |
|
| 2506 | + . ($type ? ' type="'.spip_htmlspecialchars($type).'"' : '') |
|
| 2507 | + . ($length ? ' length="'.$length.'"' : '') |
|
| 2508 | 2508 | . ' />'; |
| 2509 | 2509 | } |
| 2510 | 2510 | } |
@@ -2530,7 +2530,7 @@ discard block |
||
| 2530 | 2530 | if (extraire_attribut($e, 'rel') == 'tag') { |
| 2531 | 2531 | $subjects .= '<dc:subject>' |
| 2532 | 2532 | . texte_backend(textebrut($e)) |
| 2533 | - . '</dc:subject>' . "\n"; |
|
| 2533 | + . '</dc:subject>'."\n"; |
|
| 2534 | 2534 | } |
| 2535 | 2535 | } |
| 2536 | 2536 | |
@@ -2566,7 +2566,7 @@ discard block |
||
| 2566 | 2566 | if (is_array($texte)) { |
| 2567 | 2567 | array_walk( |
| 2568 | 2568 | $texte, |
| 2569 | - function (&$a, $key, $t) { |
|
| 2569 | + function(&$a, $key, $t) { |
|
| 2570 | 2570 | $a = extraire_balise($a, $t); |
| 2571 | 2571 | }, |
| 2572 | 2572 | $tag |
@@ -2614,7 +2614,7 @@ discard block |
||
| 2614 | 2614 | if (is_array($texte)) { |
| 2615 | 2615 | array_walk( |
| 2616 | 2616 | $texte, |
| 2617 | - function (&$a, $key, $t) { |
|
| 2617 | + function(&$a, $key, $t) { |
|
| 2618 | 2618 | $a = extraire_balises($a, $t); |
| 2619 | 2619 | }, |
| 2620 | 2620 | $tag |
@@ -2746,7 +2746,7 @@ discard block |
||
| 2746 | 2746 | if ($fond != '404') { |
| 2747 | 2747 | $contexte = array_shift($p); |
| 2748 | 2748 | $contexte['page'] = $fond; |
| 2749 | - $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2749 | + $action = preg_replace('/([?]'.preg_quote($fond).'[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2750 | 2750 | } |
| 2751 | 2751 | } |
| 2752 | 2752 | // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url |
@@ -2801,9 +2801,9 @@ discard block |
||
| 2801 | 2801 | . '"' |
| 2802 | 2802 | . (is_null($val) |
| 2803 | 2803 | ? '' |
| 2804 | - : ' value="' . entites_html($val) . '"' |
|
| 2804 | + : ' value="'.entites_html($val).'"' |
|
| 2805 | 2805 | ) |
| 2806 | - . ' type="hidden"' . "\n/>"; |
|
| 2806 | + . ' type="hidden"'."\n/>"; |
|
| 2807 | 2807 | } |
| 2808 | 2808 | |
| 2809 | 2809 | return join('', $hidden); |
@@ -2913,7 +2913,7 @@ discard block |
||
| 2913 | 2913 | |
| 2914 | 2914 | return preg_replace_callback( |
| 2915 | 2915 | ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims", |
| 2916 | - fn($x) => "url('" . suivre_lien($path, $x[1]) . "')", |
|
| 2916 | + fn($x) => "url('".suivre_lien($path, $x[1])."')", |
|
| 2917 | 2917 | $contenu |
| 2918 | 2918 | ); |
| 2919 | 2919 | } |
@@ -2974,14 +2974,14 @@ discard block |
||
| 2974 | 2974 | ) { |
| 2975 | 2975 | $distant = true; |
| 2976 | 2976 | $cssf = parse_url($css); |
| 2977 | - $cssf = $cssf['path'] . ($cssf['query'] ? '?' . $cssf['query'] : ''); |
|
| 2977 | + $cssf = $cssf['path'].($cssf['query'] ? '?'.$cssf['query'] : ''); |
|
| 2978 | 2978 | $cssf = preg_replace(',[?:&=],', '_', $cssf); |
| 2979 | 2979 | } else { |
| 2980 | 2980 | $distant = false; |
| 2981 | 2981 | $cssf = $css; |
| 2982 | 2982 | // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi |
| 2983 | 2983 | //propose (rien a faire dans ce cas) |
| 2984 | - $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css); |
|
| 2984 | + $f = preg_replace(',(_rtl)?\.css$,i', '_'.$ndir.'.css', $css); |
|
| 2985 | 2985 | if (@file_exists($f)) { |
| 2986 | 2986 | return $f; |
| 2987 | 2987 | } |
@@ -2991,7 +2991,7 @@ discard block |
||
| 2991 | 2991 | $dir_var = sous_repertoire(_DIR_VAR, 'cache-css'); |
| 2992 | 2992 | $f = $dir_var |
| 2993 | 2993 | . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf) |
| 2994 | - . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css'; |
|
| 2994 | + . '.'.substr(md5($cssf), 0, 4).'_'.$ndir.'.css'; |
|
| 2995 | 2995 | |
| 2996 | 2996 | // la css peut etre distante (url absolue !) |
| 2997 | 2997 | if ($distant) { |
@@ -3037,8 +3037,8 @@ discard block |
||
| 3037 | 3037 | } // si la css_direction commence par $dir_var on la fait passer pour une absolue |
| 3038 | 3038 | elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) { |
| 3039 | 3039 | $css_direction = substr($css_direction, strlen($dir_var)); |
| 3040 | - $src_faux_abs['/@@@@@@/' . $css_direction] = $css_direction; |
|
| 3041 | - $css_direction = '/@@@@@@/' . $css_direction; |
|
| 3040 | + $src_faux_abs['/@@@@@@/'.$css_direction] = $css_direction; |
|
| 3041 | + $css_direction = '/@@@@@@/'.$css_direction; |
|
| 3042 | 3042 | } |
| 3043 | 3043 | $src[] = $regs[0][$k]; |
| 3044 | 3044 | $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]); |
@@ -3087,7 +3087,7 @@ discard block |
||
| 3087 | 3087 | |
| 3088 | 3088 | $f = basename($css, '.css'); |
| 3089 | 3089 | $f = sous_repertoire(_DIR_VAR, 'cache-css') |
| 3090 | - . preg_replace(',(.*?)(_rtl|_ltr)?$,', "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f) |
|
| 3090 | + . preg_replace(',(.*?)(_rtl|_ltr)?$,', "\\1-urlabs-".substr(md5("$css-urlabs"), 0, 4)."\\2", $f) |
|
| 3091 | 3091 | . '.css'; |
| 3092 | 3092 | |
| 3093 | 3093 | if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) { |
@@ -3097,7 +3097,7 @@ discard block |
||
| 3097 | 3097 | if ($url_absolue_css == $css) { |
| 3098 | 3098 | if ( |
| 3099 | 3099 | strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0 |
| 3100 | - or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu) |
|
| 3100 | + or !lire_fichier(_DIR_RACINE.substr($css, $l), $contenu) |
|
| 3101 | 3101 | ) { |
| 3102 | 3102 | include_spip('inc/distant'); |
| 3103 | 3103 | $contenu = recuperer_url($css); |
@@ -3209,7 +3209,7 @@ discard block |
||
| 3209 | 3209 | $expression = str_replace('\/', '/', $expression); |
| 3210 | 3210 | $expression = str_replace('/', '\/', $expression); |
| 3211 | 3211 | |
| 3212 | - if (preg_match('/' . $expression . '/' . $modif, $texte ?? '', $r)) { |
|
| 3212 | + if (preg_match('/'.$expression.'/'.$modif, $texte ?? '', $r)) { |
|
| 3213 | 3213 | if (isset($r[$capte])) { |
| 3214 | 3214 | return $r[$capte]; |
| 3215 | 3215 | } else { |
@@ -3247,7 +3247,7 @@ discard block |
||
| 3247 | 3247 | $expression = str_replace('\/', '/', $expression); |
| 3248 | 3248 | $expression = str_replace('/', '\/', $expression); |
| 3249 | 3249 | |
| 3250 | - return preg_replace('/' . $expression . '/' . $modif, $replace, $texte); |
|
| 3250 | + return preg_replace('/'.$expression.'/'.$modif, $replace, $texte); |
|
| 3251 | 3251 | } |
| 3252 | 3252 | |
| 3253 | 3253 | |
@@ -3266,7 +3266,7 @@ discard block |
||
| 3266 | 3266 | function traiter_doublons_documents(&$doublons, $letexte) { |
| 3267 | 3267 | |
| 3268 | 3268 | // Verifier dans le texte & les notes (pas beau, helas) |
| 3269 | - $t = $letexte . $GLOBALS['les_notes']; |
|
| 3269 | + $t = $letexte.$GLOBALS['les_notes']; |
|
| 3270 | 3270 | |
| 3271 | 3271 | if ( |
| 3272 | 3272 | strstr($t, 'spip_document_') // evite le preg_match_all si inutile |
@@ -3280,7 +3280,7 @@ discard block |
||
| 3280 | 3280 | if (!isset($doublons['documents'])) { |
| 3281 | 3281 | $doublons['documents'] = ''; |
| 3282 | 3282 | } |
| 3283 | - $doublons['documents'] .= ',' . join(',', $matches[1]); |
|
| 3283 | + $doublons['documents'] .= ','.join(',', $matches[1]); |
|
| 3284 | 3284 | } |
| 3285 | 3285 | |
| 3286 | 3286 | return $letexte; |
@@ -3337,7 +3337,7 @@ discard block |
||
| 3337 | 3337 | if ($env) { |
| 3338 | 3338 | foreach ($env as $i => $j) { |
| 3339 | 3339 | if (is_string($j) and !in_array($i, $ignore_params)) { |
| 3340 | - $texte .= "<param name='" . attribut_html($i) . "'\n\tvalue='" . attribut_html($j) . "' />"; |
|
| 3340 | + $texte .= "<param name='".attribut_html($i)."'\n\tvalue='".attribut_html($j)."' />"; |
|
| 3341 | 3341 | } |
| 3342 | 3342 | } |
| 3343 | 3343 | } |
@@ -3376,7 +3376,7 @@ discard block |
||
| 3376 | 3376 | if ($env) { |
| 3377 | 3377 | foreach ($env as $i => $j) { |
| 3378 | 3378 | if (is_string($j) and !in_array($i, $ignore_params)) { |
| 3379 | - $texte .= attribut_html($i) . "='" . attribut_html($j) . "' "; |
|
| 3379 | + $texte .= attribut_html($i)."='".attribut_html($j)."' "; |
|
| 3380 | 3380 | } |
| 3381 | 3381 | } |
| 3382 | 3382 | } |
@@ -3450,10 +3450,10 @@ discard block |
||
| 3450 | 3450 | // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
| 3451 | 3451 | if ( |
| 3452 | 3452 | preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m) |
| 3453 | - and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . '-xx.svg' |
|
| 3453 | + and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])).'-xx.svg' |
|
| 3454 | 3454 | and file_exists($variante_svg_generique) |
| 3455 | 3455 | ) { |
| 3456 | - if ($variante_svg_size = substr($variante_svg_generique, 0, -6) . $m[1] . '.svg' and file_exists($variante_svg_size)) { |
|
| 3456 | + if ($variante_svg_size = substr($variante_svg_generique, 0, -6).$m[1].'.svg' and file_exists($variante_svg_size)) { |
|
| 3457 | 3457 | $img_file = $variante_svg_size; |
| 3458 | 3458 | } |
| 3459 | 3459 | else { |
@@ -3511,7 +3511,7 @@ discard block |
||
| 3511 | 3511 | return ''; |
| 3512 | 3512 | } |
| 3513 | 3513 | } |
| 3514 | - $atts .= " width='" . $largeur . "' height='" . $hauteur . "'"; |
|
| 3514 | + $atts .= " width='".$largeur."' height='".$hauteur."'"; |
|
| 3515 | 3515 | } |
| 3516 | 3516 | |
| 3517 | 3517 | if (file_exists($img_file)) { |
@@ -3521,14 +3521,14 @@ discard block |
||
| 3521 | 3521 | $alt = ''; |
| 3522 | 3522 | } |
| 3523 | 3523 | elseif ($alt or $alt === '') { |
| 3524 | - $alt = " alt='" . attribut_html($alt) . "'"; |
|
| 3524 | + $alt = " alt='".attribut_html($alt)."'"; |
|
| 3525 | 3525 | } |
| 3526 | 3526 | else { |
| 3527 | - $alt = " alt='" . attribut_html($title) . "'"; |
|
| 3527 | + $alt = " alt='".attribut_html($title)."'"; |
|
| 3528 | 3528 | } |
| 3529 | 3529 | return "<img src='$img_file'$alt" |
| 3530 | - . ($title ? ' title="' . attribut_html($title) . '"' : '') |
|
| 3531 | - . ' ' . ltrim($atts) |
|
| 3530 | + . ($title ? ' title="'.attribut_html($title).'"' : '') |
|
| 3531 | + . ' '.ltrim($atts) |
|
| 3532 | 3532 | . ' />'; |
| 3533 | 3533 | } |
| 3534 | 3534 | |
@@ -3542,10 +3542,10 @@ discard block |
||
| 3542 | 3542 | */ |
| 3543 | 3543 | function http_style_background($img, $att = '', $size = null) { |
| 3544 | 3544 | if ($size and is_numeric($size)) { |
| 3545 | - $size = trim($size) . 'px'; |
|
| 3545 | + $size = trim($size).'px'; |
|
| 3546 | 3546 | } |
| 3547 | - return " style='background" . |
|
| 3548 | - ($att ? '' : '-image') . ': url("' . chemin_image($img) . '")' . ($att ? (' ' . $att) : '') . ';' |
|
| 3547 | + return " style='background". |
|
| 3548 | + ($att ? '' : '-image').': url("'.chemin_image($img).'")'.($att ? (' '.$att) : '').';' |
|
| 3549 | 3549 | . ($size ? "background-size:{$size};" : '') |
| 3550 | 3550 | . "'"; |
| 3551 | 3551 | } |
@@ -3660,7 +3660,7 @@ discard block |
||
| 3660 | 3660 | $img = http_img_pack( |
| 3661 | 3661 | $img, |
| 3662 | 3662 | $alt, |
| 3663 | - $class ? " class='" . attribut_html($class) . "'" : '', |
|
| 3663 | + $class ? " class='".attribut_html($class)."'" : '', |
|
| 3664 | 3664 | '', |
| 3665 | 3665 | ['chemin_image' => false, 'utiliser_suffixe_size' => false] |
| 3666 | 3666 | ); |
@@ -3745,7 +3745,7 @@ discard block |
||
| 3745 | 3745 | $balise_svg_source = $balise_svg; |
| 3746 | 3746 | |
| 3747 | 3747 | // entete XML à supprimer |
| 3748 | - $svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg); |
|
| 3748 | + $svg = preg_replace(',^\s*<\?xml[^>]*\?'.'>,', '', $svg); |
|
| 3749 | 3749 | |
| 3750 | 3750 | // IE est toujours mon ami |
| 3751 | 3751 | $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false'); |
@@ -3763,9 +3763,9 @@ discard block |
||
| 3763 | 3763 | // regler le alt |
| 3764 | 3764 | if ($alt) { |
| 3765 | 3765 | $balise_svg = inserer_attribut($balise_svg, 'role', 'img'); |
| 3766 | - $id = 'img-svg-title-' . substr(md5("$img_file:$svg:$alt"), 0, 4); |
|
| 3766 | + $id = 'img-svg-title-'.substr(md5("$img_file:$svg:$alt"), 0, 4); |
|
| 3767 | 3767 | $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
| 3768 | - $title = "<title id=\"$id\">" . entites_html($alt) . "</title>\n"; |
|
| 3768 | + $title = "<title id=\"$id\">".entites_html($alt)."</title>\n"; |
|
| 3769 | 3769 | $balise_svg .= $title; |
| 3770 | 3770 | } |
| 3771 | 3771 | else { |
@@ -3813,7 +3813,7 @@ discard block |
||
| 3813 | 3813 | if (is_array($tableau)) { |
| 3814 | 3814 | foreach ($tableau as $k => $v) { |
| 3815 | 3815 | $res = recuperer_fond( |
| 3816 | - 'modeles/' . $modele, |
|
| 3816 | + 'modeles/'.$modele, |
|
| 3817 | 3817 | array_merge(['cle' => $k], (is_array($v) ? $v : ['valeur' => $v])) |
| 3818 | 3818 | ); |
| 3819 | 3819 | $texte .= $res; |
@@ -3998,7 +3998,7 @@ discard block |
||
| 3998 | 3998 | } |
| 3999 | 3999 | |
| 4000 | 4000 | $c = serialize($c); |
| 4001 | - $cle = calculer_cle_action($form . $c); |
|
| 4001 | + $cle = calculer_cle_action($form.$c); |
|
| 4002 | 4002 | $c = "$cle:$c"; |
| 4003 | 4003 | |
| 4004 | 4004 | // on ne stocke pas les contextes dans des fichiers en cache |
@@ -4056,15 +4056,15 @@ discard block |
||
| 4056 | 4056 | } |
| 4057 | 4057 | // toujours encoder l'url source dans le bloc ajax |
| 4058 | 4058 | $r = self(); |
| 4059 | - $r = ' data-origin="' . $r . '"'; |
|
| 4059 | + $r = ' data-origin="'.$r.'"'; |
|
| 4060 | 4060 | $class = 'ajaxbloc'; |
| 4061 | 4061 | if ($ajaxid and is_string($ajaxid)) { |
| 4062 | 4062 | // ajaxid est normalement conforme a un nom de classe css |
| 4063 | 4063 | // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution |
| 4064 | - $class .= ' ajax-id-' . entites_html($ajaxid); |
|
| 4064 | + $class .= ' ajax-id-'.entites_html($ajaxid); |
|
| 4065 | 4065 | } |
| 4066 | 4066 | |
| 4067 | - return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 4067 | + return "<div class='$class' "."data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 4068 | 4068 | } |
| 4069 | 4069 | |
| 4070 | 4070 | /** |
@@ -4108,7 +4108,7 @@ discard block |
||
| 4108 | 4108 | $cle = substr($c, 0, $p); |
| 4109 | 4109 | $c = substr($c, $p + 1); |
| 4110 | 4110 | |
| 4111 | - if ($cle == calculer_cle_action($form . $c)) { |
|
| 4111 | + if ($cle == calculer_cle_action($form.$c)) { |
|
| 4112 | 4112 | $env = @unserialize($c); |
| 4113 | 4113 | return $env; |
| 4114 | 4114 | } |
@@ -4229,13 +4229,13 @@ discard block |
||
| 4229 | 4229 | } |
| 4230 | 4230 | } |
| 4231 | 4231 | } |
| 4232 | - $att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"'; |
|
| 4232 | + $att .= 'class="'.($class ? attribut_html($class).' ' : '').(defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on').'"'; |
|
| 4233 | 4233 | } else { |
| 4234 | 4234 | $bal = 'a'; |
| 4235 | 4235 | $att = "href='$url'" |
| 4236 | - . ($title ? " title='" . attribut_html($title) . "'" : '') |
|
| 4237 | - . ($class ? " class='" . attribut_html($class) . "'" : '') |
|
| 4238 | - . ($rel ? " rel='" . attribut_html($rel) . "'" : '') |
|
| 4236 | + . ($title ? " title='".attribut_html($title)."'" : '') |
|
| 4237 | + . ($class ? " class='".attribut_html($class)."'" : '') |
|
| 4238 | + . ($rel ? " rel='".attribut_html($rel)."'" : '') |
|
| 4239 | 4239 | . $evt; |
| 4240 | 4240 | } |
| 4241 | 4241 | if ($libelle === null) { |
@@ -4374,7 +4374,7 @@ discard block |
||
| 4374 | 4374 | |
| 4375 | 4375 | // Icône |
| 4376 | 4376 | $icone = http_img_pack($fond, $alt, "width='$size' height='$size'"); |
| 4377 | - $icone = '<span class="icone-image' . ($fonction ? " icone-fonction icone-fonction-$fonction" : '') . "\">$icone</span>"; |
|
| 4377 | + $icone = '<span class="icone-image'.($fonction ? " icone-fonction icone-fonction-$fonction" : '')."\">$icone</span>"; |
|
| 4378 | 4378 | |
| 4379 | 4379 | // Markup final |
| 4380 | 4380 | if ($type == 'lien') { |
@@ -4651,20 +4651,20 @@ discard block |
||
| 4651 | 4651 | $class_form = 'ajax'; |
| 4652 | 4652 | $class = str_replace('ajax', '', $class); |
| 4653 | 4653 | } |
| 4654 | - $class_btn = 'submit ' . trim($class); |
|
| 4654 | + $class_btn = 'submit '.trim($class); |
|
| 4655 | 4655 | |
| 4656 | 4656 | if ($confirm) { |
| 4657 | - $confirm = 'confirm("' . attribut_html($confirm) . '")'; |
|
| 4657 | + $confirm = 'confirm("'.attribut_html($confirm).'")'; |
|
| 4658 | 4658 | if ($callback) { |
| 4659 | 4659 | $callback = "$confirm?($callback):false"; |
| 4660 | 4660 | } else { |
| 4661 | 4661 | $callback = $confirm; |
| 4662 | 4662 | } |
| 4663 | 4663 | } |
| 4664 | - $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : ''; |
|
| 4664 | + $onclick = $callback ? " onclick='return ".addcslashes($callback, "'")."'" : ''; |
|
| 4665 | 4665 | $title = $title ? " title='$title'" : ''; |
| 4666 | 4666 | |
| 4667 | - return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url) |
|
| 4667 | + return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>".form_hidden($url) |
|
| 4668 | 4668 | . "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>"; |
| 4669 | 4669 | } |
| 4670 | 4670 | |
@@ -4729,14 +4729,14 @@ discard block |
||
| 4729 | 4729 | $champ_titre = ''; |
| 4730 | 4730 | if ($demande_titre) { |
| 4731 | 4731 | // si pas de titre declare mais champ titre, il sera peuple par le select * |
| 4732 | - $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : ''; |
|
| 4732 | + $champ_titre = (!empty($desc['titre'])) ? ', '.$desc['titre'] : ''; |
|
| 4733 | 4733 | } |
| 4734 | 4734 | include_spip('base/abstract_sql'); |
| 4735 | 4735 | include_spip('base/connect_sql'); |
| 4736 | 4736 | $objets[$type_objet][$id_objet] = sql_fetsel( |
| 4737 | - '*' . $champ_titre, |
|
| 4737 | + '*'.$champ_titre, |
|
| 4738 | 4738 | $desc['table_sql'], |
| 4739 | - id_table_objet($type_objet) . ' = ' . intval($id_objet) |
|
| 4739 | + id_table_objet($type_objet).' = '.intval($id_objet) |
|
| 4740 | 4740 | ); |
| 4741 | 4741 | |
| 4742 | 4742 | // Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci |
@@ -4814,8 +4814,7 @@ discard block |
||
| 4814 | 4814 | if (isset($ligne_sql['chapo'])) { |
| 4815 | 4815 | $chapo = $ligne_sql['chapo']; |
| 4816 | 4816 | $texte = strlen($descriptif) ? |
| 4817 | - '' : |
|
| 4818 | - "$chapo \n\n $texte"; |
|
| 4817 | + '' : "$chapo \n\n $texte"; |
|
| 4819 | 4818 | } |
| 4820 | 4819 | |
| 4821 | 4820 | // Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur |
@@ -4882,7 +4881,7 @@ discard block |
||
| 4882 | 4881 | return $texte; |
| 4883 | 4882 | } |
| 4884 | 4883 | |
| 4885 | - $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement); |
|
| 4884 | + $traitement = str_replace('%s', "'".texte_script($texte)."'", $traitement); |
|
| 4886 | 4885 | |
| 4887 | 4886 | // Fournir $connect et $Pile[0] au traitement si besoin |
| 4888 | 4887 | $Pile = [0 => $env]; |
@@ -4916,7 +4915,7 @@ discard block |
||
| 4916 | 4915 | } |
| 4917 | 4916 | $url = generer_url_entite($id_objet, $objet, '', '', $connect); |
| 4918 | 4917 | |
| 4919 | - return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . '</a>'; |
|
| 4918 | + return "<a href='$url' class='$objet'>".couper($titre, $longueur).'</a>'; |
|
| 4920 | 4919 | } |
| 4921 | 4920 | |
| 4922 | 4921 | |
@@ -4935,10 +4934,10 @@ discard block |
||
| 4935 | 4934 | function wrap($texte, $wrap) { |
| 4936 | 4935 | $balises = extraire_balises($wrap); |
| 4937 | 4936 | if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) { |
| 4938 | - $texte = $wrap . $texte; |
|
| 4937 | + $texte = $wrap.$texte; |
|
| 4939 | 4938 | $regs = array_reverse($regs[1]); |
| 4940 | - $wrap = '</' . implode('></', $regs) . '>'; |
|
| 4941 | - $texte = $texte . $wrap; |
|
| 4939 | + $wrap = '</'.implode('></', $regs).'>'; |
|
| 4940 | + $texte = $texte.$wrap; |
|
| 4942 | 4941 | } |
| 4943 | 4942 | |
| 4944 | 4943 | return $texte; |
@@ -4969,7 +4968,7 @@ discard block |
||
| 4969 | 4968 | |
| 4970 | 4969 | // caster $u en array si besoin |
| 4971 | 4970 | if (is_object($u)) { |
| 4972 | - $u = (array)$u; |
|
| 4971 | + $u = (array) $u; |
|
| 4973 | 4972 | } |
| 4974 | 4973 | |
| 4975 | 4974 | if (is_array($u)) { |
@@ -4991,7 +4990,7 @@ discard block |
||
| 4991 | 4990 | // sinon on passe a la ligne et on indente |
| 4992 | 4991 | $i_str = str_pad('', $indent, ' '); |
| 4993 | 4992 | foreach ($u as $k => $v) { |
| 4994 | - $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2); |
|
| 4993 | + $out .= $join.$i_str."$k: ".filtre_print_dist($v, $join, $indent + 2); |
|
| 4995 | 4994 | } |
| 4996 | 4995 | |
| 4997 | 4996 | return $out; |
@@ -5045,7 +5044,7 @@ discard block |
||
| 5045 | 5044 | * @return string |
| 5046 | 5045 | */ |
| 5047 | 5046 | function objet_icone($objet, $taille = 24, $class = '') { |
| 5048 | - $icone = objet_info($objet, 'icone_objet') . '-' . $taille . '.png'; |
|
| 5047 | + $icone = objet_info($objet, 'icone_objet').'-'.$taille.'.png'; |
|
| 5049 | 5048 | $icone = chemin_image($icone); |
| 5050 | 5049 | $balise_img = charger_filtre('balise_img'); |
| 5051 | 5050 | |
@@ -5071,7 +5070,7 @@ discard block |
||
| 5071 | 5070 | */ |
| 5072 | 5071 | function objet_T($objet, $chaine, $args = [], $options = []) { |
| 5073 | 5072 | $chaine = explode(':', $chaine); |
| 5074 | - if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, ['force' => false]))) { |
|
| 5073 | + if ($t = _T($objet.':'.end($chaine), $args, array_merge($options, ['force' => false]))) { |
|
| 5075 | 5074 | return $t; |
| 5076 | 5075 | } |
| 5077 | 5076 | $chaine = implode(':', $chaine); |
@@ -5137,7 +5136,7 @@ discard block |
||
| 5137 | 5136 | $cache = recuperer_fond($fond, $contexte, $options, $connect); |
| 5138 | 5137 | |
| 5139 | 5138 | // calculer le nom de la css |
| 5140 | - $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension); |
|
| 5139 | + $dir_var = sous_repertoire(_DIR_VAR, 'cache-'.$extension); |
|
| 5141 | 5140 | $nom_safe = preg_replace(',\W,', '_', str_replace('.', '_', $fond)); |
| 5142 | 5141 | $contexte_implicite = calculer_contexte_implicite(); |
| 5143 | 5142 | |
@@ -5145,14 +5144,14 @@ discard block |
||
| 5145 | 5144 | // mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu |
| 5146 | 5145 | // reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine |
| 5147 | 5146 | if (isset($options['hash_on_content']) and $options['hash_on_content']) { |
| 5148 | - $hash = md5($contexte_implicite['host'] . '::' . $cache); |
|
| 5147 | + $hash = md5($contexte_implicite['host'].'::'.$cache); |
|
| 5149 | 5148 | } |
| 5150 | 5149 | else { |
| 5151 | 5150 | unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js |
| 5152 | 5151 | ksort($contexte); |
| 5153 | - $hash = md5($fond . json_encode($contexte_implicite, JSON_THROW_ON_ERROR) . json_encode($contexte, JSON_THROW_ON_ERROR) . $connect); |
|
| 5152 | + $hash = md5($fond.json_encode($contexte_implicite, JSON_THROW_ON_ERROR).json_encode($contexte, JSON_THROW_ON_ERROR).$connect); |
|
| 5154 | 5153 | } |
| 5155 | - $filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension"; |
|
| 5154 | + $filename = $dir_var.$extension."dyn-$nom_safe-".substr($hash, 0, 8).".$extension"; |
|
| 5156 | 5155 | |
| 5157 | 5156 | // mettre a jour le fichier si il n'existe pas |
| 5158 | 5157 | // ou trop ancien |
@@ -5160,8 +5159,8 @@ discard block |
||
| 5160 | 5159 | // et recopie sur le fichier cible uniquement si il change |
| 5161 | 5160 | if ( |
| 5162 | 5161 | !file_exists($filename) |
| 5163 | - or !file_exists($filename . '.last') |
|
| 5164 | - or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . '.last') < $cache['lastmodified']) |
|
| 5162 | + or !file_exists($filename.'.last') |
|
| 5163 | + or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename.'.last') < $cache['lastmodified']) |
|
| 5165 | 5164 | or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul') |
| 5166 | 5165 | ) { |
| 5167 | 5166 | $contenu = $cache['texte']; |
@@ -5182,10 +5181,10 @@ discard block |
||
| 5182 | 5181 | } |
| 5183 | 5182 | // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj |
| 5184 | 5183 | // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non |
| 5185 | - $comment .= "}\n md5:" . md5($contenu) . " */\n"; |
|
| 5184 | + $comment .= "}\n md5:".md5($contenu)." */\n"; |
|
| 5186 | 5185 | } |
| 5187 | 5186 | // et ecrire le fichier si il change |
| 5188 | - ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true); |
|
| 5187 | + ecrire_fichier_calcule_si_modifie($filename, $comment.$contenu, false, true); |
|
| 5189 | 5188 | } |
| 5190 | 5189 | |
| 5191 | 5190 | return timestamp($filename); |
@@ -5411,7 +5410,7 @@ discard block |
||
| 5411 | 5410 | if ($e > 0 and strlen($mid) > 8) { |
| 5412 | 5411 | $mid = '***...***'; |
| 5413 | 5412 | } |
| 5414 | - return substr($passe, 0, $e) . $mid . ($e > 0 ? substr($passe, -$e) : ''); |
|
| 5413 | + return substr($passe, 0, $e).$mid.($e > 0 ? substr($passe, -$e) : ''); |
|
| 5415 | 5414 | } |
| 5416 | 5415 | |
| 5417 | 5416 | |
@@ -5473,7 +5472,7 @@ discard block |
||
| 5473 | 5472 | case 'id': |
| 5474 | 5473 | case 'anchor': |
| 5475 | 5474 | if (preg_match(',^\d,', $texte)) { |
| 5476 | - $texte = substr($type, 0, 1) . $texte; |
|
| 5475 | + $texte = substr($type, 0, 1).$texte; |
|
| 5477 | 5476 | } |
| 5478 | 5477 | } |
| 5479 | 5478 | |
@@ -5483,9 +5482,9 @@ discard block |
||
| 5483 | 5482 | |
| 5484 | 5483 | if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) { |
| 5485 | 5484 | if (preg_match(',^\d,', $texte)) { |
| 5486 | - $texte = ($type ? substr($type, 0, 1) : 's') . $texte; |
|
| 5485 | + $texte = ($type ? substr($type, 0, 1) : 's').$texte; |
|
| 5487 | 5486 | } |
| 5488 | - $texte .= $separateur . md5($original); |
|
| 5487 | + $texte .= $separateur.md5($original); |
|
| 5489 | 5488 | $texte = substr($texte, 0, $longueur_mini); |
| 5490 | 5489 | } |
| 5491 | 5490 | |
@@ -631,8 +631,7 @@ discard block |
||
| 631 | 631 | if (!$srcHeight) { |
| 632 | 632 | $hauteur_img[$src] = $srcHeight = $srcsize[1]; |
| 633 | 633 | } |
| 634 | - } |
|
| 635 | - elseif (strpos($src, '<svg') !== false) { |
|
| 634 | + } elseif (strpos($src, '<svg') !== false) { |
|
| 636 | 635 | include_spip('inc/svg'); |
| 637 | 636 | if ($attrs = svg_lire_attributs($src)) { |
| 638 | 637 | [$width, $height, $viewbox] = svg_getimagesize_from_attr($attrs); |
@@ -3455,8 +3454,7 @@ discard block |
||
| 3455 | 3454 | ) { |
| 3456 | 3455 | if ($variante_svg_size = substr($variante_svg_generique, 0, -6) . $m[1] . '.svg' and file_exists($variante_svg_size)) { |
| 3457 | 3456 | $img_file = $variante_svg_size; |
| 3458 | - } |
|
| 3459 | - else { |
|
| 3457 | + } else { |
|
| 3460 | 3458 | $img_file = $variante_svg_generique; |
| 3461 | 3459 | } |
| 3462 | 3460 | } |
@@ -3488,8 +3486,7 @@ discard block |
||
| 3488 | 3486 | } |
| 3489 | 3487 | if (!isset($options['chemin_image']) or $options['chemin_image'] == true) { |
| 3490 | 3488 | $img_file = chemin_image($img); |
| 3491 | - } |
|
| 3492 | - else { |
|
| 3489 | + } else { |
|
| 3493 | 3490 | if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true) { |
| 3494 | 3491 | $img_file = http_img_variante_svg_si_possible($img_file); |
| 3495 | 3492 | } |
@@ -3519,11 +3516,9 @@ discard block |
||
| 3519 | 3516 | } |
| 3520 | 3517 | if ($alt === false) { |
| 3521 | 3518 | $alt = ''; |
| 3522 | - } |
|
| 3523 | - elseif ($alt or $alt === '') { |
|
| 3519 | + } elseif ($alt or $alt === '') { |
|
| 3524 | 3520 | $alt = " alt='" . attribut_html($alt) . "'"; |
| 3525 | - } |
|
| 3526 | - else { |
|
| 3521 | + } else { |
|
| 3527 | 3522 | $alt = " alt='" . attribut_html($title) . "'"; |
| 3528 | 3523 | } |
| 3529 | 3524 | return "<img src='$img_file'$alt" |
@@ -3650,13 +3645,11 @@ discard block |
||
| 3650 | 3645 | if (!is_null($class)) { |
| 3651 | 3646 | if (strlen($class)) { |
| 3652 | 3647 | $img = inserer_attribut($img, 'class', $class); |
| 3653 | - } |
|
| 3654 | - else { |
|
| 3648 | + } else { |
|
| 3655 | 3649 | $img = vider_attribut($img, 'class'); |
| 3656 | 3650 | } |
| 3657 | 3651 | } |
| 3658 | - } |
|
| 3659 | - else { |
|
| 3652 | + } else { |
|
| 3660 | 3653 | $img = http_img_pack( |
| 3661 | 3654 | $img, |
| 3662 | 3655 | $alt, |
@@ -3754,8 +3747,7 @@ discard block |
||
| 3754 | 3747 | if (!is_null($class)) { |
| 3755 | 3748 | if (strlen($class)) { |
| 3756 | 3749 | $balise_svg = inserer_attribut($balise_svg, 'class', $class); |
| 3757 | - } |
|
| 3758 | - else { |
|
| 3750 | + } else { |
|
| 3759 | 3751 | $balise_svg = vider_attribut($balise_svg, 'class'); |
| 3760 | 3752 | } |
| 3761 | 3753 | } |
@@ -3767,8 +3759,7 @@ discard block |
||
| 3767 | 3759 | $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
| 3768 | 3760 | $title = "<title id=\"$id\">" . entites_html($alt) . "</title>\n"; |
| 3769 | 3761 | $balise_svg .= $title; |
| 3770 | - } |
|
| 3771 | - else { |
|
| 3762 | + } else { |
|
| 3772 | 3763 | $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true'); |
| 3773 | 3764 | } |
| 3774 | 3765 | |
@@ -5146,8 +5137,7 @@ discard block |
||
| 5146 | 5137 | // reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine |
| 5147 | 5138 | if (isset($options['hash_on_content']) and $options['hash_on_content']) { |
| 5148 | 5139 | $hash = md5($contexte_implicite['host'] . '::' . $cache); |
| 5149 | - } |
|
| 5150 | - else { |
|
| 5140 | + } else { |
|
| 5151 | 5141 | unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js |
| 5152 | 5142 | ksort($contexte); |
| 5153 | 5143 | $hash = md5($fond . json_encode($contexte_implicite, JSON_THROW_ON_ERROR) . json_encode($contexte, JSON_THROW_ON_ERROR) . $connect); |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | **/ |
| 18 | 18 | |
| 19 | 19 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 20 | - return; |
|
| 20 | + return; |
|
| 21 | 21 | } |
| 22 | 22 | include_spip('base/objets'); |
| 23 | 23 | |
@@ -57,116 +57,116 @@ discard block |
||
| 57 | 57 | * |
| 58 | 58 | */ |
| 59 | 59 | function urls_decoder_url($url, $fond = '', $contexte = [], $assembler = false) { |
| 60 | - static $current_base = null; |
|
| 60 | + static $current_base = null; |
|
| 61 | 61 | |
| 62 | - // les anciennes fonctions modifient directement les globales |
|
| 63 | - // on les sauve avant l'appel, et on les retablit apres ! |
|
| 64 | - $save = [ |
|
| 65 | - $GLOBALS['fond'] ?? null, |
|
| 66 | - $GLOBALS['contexte'] ?? null, |
|
| 67 | - $_SERVER['REDIRECT_url_propre'] ?? null, |
|
| 68 | - $_ENV['url_propre'] ?? null, |
|
| 69 | - $GLOBALS['profondeur_url'] |
|
| 70 | - ]; |
|
| 62 | + // les anciennes fonctions modifient directement les globales |
|
| 63 | + // on les sauve avant l'appel, et on les retablit apres ! |
|
| 64 | + $save = [ |
|
| 65 | + $GLOBALS['fond'] ?? null, |
|
| 66 | + $GLOBALS['contexte'] ?? null, |
|
| 67 | + $_SERVER['REDIRECT_url_propre'] ?? null, |
|
| 68 | + $_ENV['url_propre'] ?? null, |
|
| 69 | + $GLOBALS['profondeur_url'] |
|
| 70 | + ]; |
|
| 71 | 71 | |
| 72 | - if (is_null($current_base)) { |
|
| 73 | - include_spip('inc/filtres_mini'); |
|
| 74 | - // le decodage des urls se fait toujours par rapport au site public |
|
| 75 | - $current_base = url_absolue(_DIR_RACINE ?: './'); |
|
| 76 | - } |
|
| 77 | - if (strncmp($url, $current_base, strlen($current_base)) == 0) { |
|
| 78 | - $url = substr($url, strlen($current_base)); |
|
| 79 | - } |
|
| 72 | + if (is_null($current_base)) { |
|
| 73 | + include_spip('inc/filtres_mini'); |
|
| 74 | + // le decodage des urls se fait toujours par rapport au site public |
|
| 75 | + $current_base = url_absolue(_DIR_RACINE ?: './'); |
|
| 76 | + } |
|
| 77 | + if (strncmp($url, $current_base, strlen($current_base)) == 0) { |
|
| 78 | + $url = substr($url, strlen($current_base)); |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - // si on est en train d'assembler la page principale, |
|
| 82 | - // recuperer l'url depuis les globales url propres si fournies |
|
| 83 | - // sinon extraire la bonne portion d'url |
|
| 84 | - if ($assembler) { |
|
| 85 | - if (isset($_SERVER['REDIRECT_url_propre'])) { |
|
| 86 | - $url = $_SERVER['REDIRECT_url_propre']; |
|
| 87 | - } elseif (isset($_ENV['url_propre'])) { |
|
| 88 | - $url = $_ENV['url_propre']; |
|
| 89 | - } else { |
|
| 90 | - $qs = explode('?', $url); |
|
| 91 | - // ne prendre que le segment d'url qui correspond, en fonction de la profondeur calculee |
|
| 92 | - $url = ltrim($qs[0], '/'); |
|
| 93 | - $url = explode('/', $url); |
|
| 94 | - while (count($url) > $GLOBALS['profondeur_url'] + 1) { |
|
| 95 | - array_shift($url); |
|
| 96 | - } |
|
| 97 | - $qs[0] = implode('/', $url); |
|
| 98 | - $url = implode('?', $qs); |
|
| 99 | - } |
|
| 100 | - } |
|
| 81 | + // si on est en train d'assembler la page principale, |
|
| 82 | + // recuperer l'url depuis les globales url propres si fournies |
|
| 83 | + // sinon extraire la bonne portion d'url |
|
| 84 | + if ($assembler) { |
|
| 85 | + if (isset($_SERVER['REDIRECT_url_propre'])) { |
|
| 86 | + $url = $_SERVER['REDIRECT_url_propre']; |
|
| 87 | + } elseif (isset($_ENV['url_propre'])) { |
|
| 88 | + $url = $_ENV['url_propre']; |
|
| 89 | + } else { |
|
| 90 | + $qs = explode('?', $url); |
|
| 91 | + // ne prendre que le segment d'url qui correspond, en fonction de la profondeur calculee |
|
| 92 | + $url = ltrim($qs[0], '/'); |
|
| 93 | + $url = explode('/', $url); |
|
| 94 | + while (count($url) > $GLOBALS['profondeur_url'] + 1) { |
|
| 95 | + array_shift($url); |
|
| 96 | + } |
|
| 97 | + $qs[0] = implode('/', $url); |
|
| 98 | + $url = implode('?', $qs); |
|
| 99 | + } |
|
| 100 | + } |
|
| 101 | 101 | |
| 102 | - unset($_SERVER['REDIRECT_url_propre']); |
|
| 103 | - unset($_ENV['url_propre']); |
|
| 104 | - include_spip('inc/filtres_mini'); |
|
| 105 | - if (strpos($url, '://') === false) { |
|
| 106 | - $GLOBALS['profondeur_url'] = substr_count(ltrim(resolve_path("/$url"), '/'), '/'); |
|
| 107 | - } else { |
|
| 108 | - $GLOBALS['profondeur_url'] = max(0, substr_count($url, '/') - substr_count($current_base, '/')); |
|
| 109 | - } |
|
| 102 | + unset($_SERVER['REDIRECT_url_propre']); |
|
| 103 | + unset($_ENV['url_propre']); |
|
| 104 | + include_spip('inc/filtres_mini'); |
|
| 105 | + if (strpos($url, '://') === false) { |
|
| 106 | + $GLOBALS['profondeur_url'] = substr_count(ltrim(resolve_path("/$url"), '/'), '/'); |
|
| 107 | + } else { |
|
| 108 | + $GLOBALS['profondeur_url'] = max(0, substr_count($url, '/') - substr_count($current_base, '/')); |
|
| 109 | + } |
|
| 110 | 110 | |
| 111 | - $url_redirect = ''; |
|
| 112 | - $renommer = generer_url_entite('', '', '', '', true); |
|
| 113 | - if (!$renommer and !function_exists('recuperer_parametres_url')) { |
|
| 114 | - $renommer = charger_fonction('page', 'urls'); |
|
| 115 | - } // fallback pour decoder l'url |
|
| 116 | - if ($renommer) { |
|
| 117 | - $a = $renommer($url, $fond, $contexte); |
|
| 118 | - if (is_array($a)) { |
|
| 119 | - [$ncontexte, $type, $url_redirect, $nfond] = array_pad($a, 4, null); |
|
| 120 | - $url_redirect ??= ''; |
|
| 121 | - if ($url_redirect === $url) { |
|
| 122 | - $url_redirect = ''; |
|
| 123 | - } // securite pour eviter une redirection infinie |
|
| 124 | - if ($assembler and strlen($url_redirect)) { |
|
| 125 | - spip_log("Redirige $url vers $url_redirect"); |
|
| 126 | - include_spip('inc/headers'); |
|
| 127 | - redirige_par_entete($url_redirect, '', 301); |
|
| 128 | - } |
|
| 129 | - if (isset($nfond)) { |
|
| 130 | - $fond = $nfond; |
|
| 131 | - } else { |
|
| 132 | - if ( |
|
| 133 | - $fond == '' |
|
| 134 | - or $fond == 'type_urls' /* compat avec htaccess 2.0.0 */ |
|
| 135 | - ) { |
|
| 136 | - $fond = $type; |
|
| 137 | - } |
|
| 138 | - } |
|
| 139 | - if (isset($ncontexte)) { |
|
| 140 | - $contexte = $ncontexte; |
|
| 141 | - } |
|
| 142 | - if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) { |
|
| 143 | - $contexte['type'] = $type; |
|
| 144 | - } |
|
| 145 | - if (!defined('_DEFINIR_CONTEXTE_TYPE_PAGE') or _DEFINIR_CONTEXTE_TYPE_PAGE) { |
|
| 146 | - $contexte['type-page'] = $type; |
|
| 147 | - } |
|
| 148 | - } |
|
| 149 | - } // compatibilite <= 1.9.2 |
|
| 150 | - elseif (function_exists('recuperer_parametres_url')) { |
|
| 151 | - $GLOBALS['fond'] = $fond; |
|
| 152 | - $GLOBALS['contexte'] = $contexte; |
|
| 153 | - recuperer_parametres_url($fond, nettoyer_uri()); |
|
| 154 | - // fond est en principe modifiee directement |
|
| 155 | - $contexte = $GLOBALS['contexte']; |
|
| 156 | - } |
|
| 111 | + $url_redirect = ''; |
|
| 112 | + $renommer = generer_url_entite('', '', '', '', true); |
|
| 113 | + if (!$renommer and !function_exists('recuperer_parametres_url')) { |
|
| 114 | + $renommer = charger_fonction('page', 'urls'); |
|
| 115 | + } // fallback pour decoder l'url |
|
| 116 | + if ($renommer) { |
|
| 117 | + $a = $renommer($url, $fond, $contexte); |
|
| 118 | + if (is_array($a)) { |
|
| 119 | + [$ncontexte, $type, $url_redirect, $nfond] = array_pad($a, 4, null); |
|
| 120 | + $url_redirect ??= ''; |
|
| 121 | + if ($url_redirect === $url) { |
|
| 122 | + $url_redirect = ''; |
|
| 123 | + } // securite pour eviter une redirection infinie |
|
| 124 | + if ($assembler and strlen($url_redirect)) { |
|
| 125 | + spip_log("Redirige $url vers $url_redirect"); |
|
| 126 | + include_spip('inc/headers'); |
|
| 127 | + redirige_par_entete($url_redirect, '', 301); |
|
| 128 | + } |
|
| 129 | + if (isset($nfond)) { |
|
| 130 | + $fond = $nfond; |
|
| 131 | + } else { |
|
| 132 | + if ( |
|
| 133 | + $fond == '' |
|
| 134 | + or $fond == 'type_urls' /* compat avec htaccess 2.0.0 */ |
|
| 135 | + ) { |
|
| 136 | + $fond = $type; |
|
| 137 | + } |
|
| 138 | + } |
|
| 139 | + if (isset($ncontexte)) { |
|
| 140 | + $contexte = $ncontexte; |
|
| 141 | + } |
|
| 142 | + if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) { |
|
| 143 | + $contexte['type'] = $type; |
|
| 144 | + } |
|
| 145 | + if (!defined('_DEFINIR_CONTEXTE_TYPE_PAGE') or _DEFINIR_CONTEXTE_TYPE_PAGE) { |
|
| 146 | + $contexte['type-page'] = $type; |
|
| 147 | + } |
|
| 148 | + } |
|
| 149 | + } // compatibilite <= 1.9.2 |
|
| 150 | + elseif (function_exists('recuperer_parametres_url')) { |
|
| 151 | + $GLOBALS['fond'] = $fond; |
|
| 152 | + $GLOBALS['contexte'] = $contexte; |
|
| 153 | + recuperer_parametres_url($fond, nettoyer_uri()); |
|
| 154 | + // fond est en principe modifiee directement |
|
| 155 | + $contexte = $GLOBALS['contexte']; |
|
| 156 | + } |
|
| 157 | 157 | |
| 158 | - // retablir les globales |
|
| 159 | - [$GLOBALS['fond'], $GLOBALS['contexte'], $_SERVER['REDIRECT_url_propre'], $_ENV['url_propre'], $GLOBALS['profondeur_url']] = $save; |
|
| 158 | + // retablir les globales |
|
| 159 | + [$GLOBALS['fond'], $GLOBALS['contexte'], $_SERVER['REDIRECT_url_propre'], $_ENV['url_propre'], $GLOBALS['profondeur_url']] = $save; |
|
| 160 | 160 | |
| 161 | - // vider les globales url propres qui ne doivent plus etre utilisees en cas |
|
| 162 | - // d'inversion url => objet |
|
| 163 | - // maintenir pour compat ? |
|
| 164 | - #if ($assembler) { |
|
| 165 | - # unset($_SERVER['REDIRECT_url_propre']); |
|
| 166 | - # unset($_ENV['url_propre']); |
|
| 167 | - #} |
|
| 161 | + // vider les globales url propres qui ne doivent plus etre utilisees en cas |
|
| 162 | + // d'inversion url => objet |
|
| 163 | + // maintenir pour compat ? |
|
| 164 | + #if ($assembler) { |
|
| 165 | + # unset($_SERVER['REDIRECT_url_propre']); |
|
| 166 | + # unset($_ENV['url_propre']); |
|
| 167 | + #} |
|
| 168 | 168 | |
| 169 | - return [$fond, $contexte, $url_redirect]; |
|
| 169 | + return [$fond, $contexte, $url_redirect]; |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | |
@@ -180,24 +180,24 @@ discard block |
||
| 180 | 180 | * @return string|array |
| 181 | 181 | */ |
| 182 | 182 | function urls_liste_objets($preg = true) { |
| 183 | - static $url_objets = null; |
|
| 184 | - if (is_null($url_objets)) { |
|
| 185 | - $url_objets = []; |
|
| 186 | - // recuperer les tables_objets_sql declarees |
|
| 187 | - $tables_objets = lister_tables_objets_sql(); |
|
| 188 | - foreach ($tables_objets as $t => $infos) { |
|
| 189 | - if ($infos['page']) { |
|
| 190 | - $url_objets[] = $infos['type']; |
|
| 191 | - $url_objets = array_merge($url_objets, $infos['type_surnoms']); |
|
| 192 | - } |
|
| 193 | - } |
|
| 194 | - $url_objets = pipeline('declarer_url_objets', $url_objets); |
|
| 195 | - } |
|
| 196 | - if (!$preg) { |
|
| 197 | - return $url_objets; |
|
| 198 | - } |
|
| 183 | + static $url_objets = null; |
|
| 184 | + if (is_null($url_objets)) { |
|
| 185 | + $url_objets = []; |
|
| 186 | + // recuperer les tables_objets_sql declarees |
|
| 187 | + $tables_objets = lister_tables_objets_sql(); |
|
| 188 | + foreach ($tables_objets as $t => $infos) { |
|
| 189 | + if ($infos['page']) { |
|
| 190 | + $url_objets[] = $infos['type']; |
|
| 191 | + $url_objets = array_merge($url_objets, $infos['type_surnoms']); |
|
| 192 | + } |
|
| 193 | + } |
|
| 194 | + $url_objets = pipeline('declarer_url_objets', $url_objets); |
|
| 195 | + } |
|
| 196 | + if (!$preg) { |
|
| 197 | + return $url_objets; |
|
| 198 | + } |
|
| 199 | 199 | |
| 200 | - return implode('|', array_map('preg_quote', $url_objets)); |
|
| 200 | + return implode('|', array_map('preg_quote', $url_objets)); |
|
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | /** |
@@ -211,26 +211,26 @@ discard block |
||
| 211 | 211 | * @return array |
| 212 | 212 | */ |
| 213 | 213 | function nettoyer_url_page($url, $contexte = []) { |
| 214 | - $url_objets = urls_liste_objets(); |
|
| 215 | - $raccourci_url_page_html = ',^(?:[^?]*/)?(' . $url_objets . ')([0-9]+)(?:\.html)?([?&].*)?$,'; |
|
| 216 | - $raccourci_url_page_id = ',^(?:[^?]*/)?(' . $url_objets . ')\.php3?[?]id_\1=([0-9]+)([?&].*)?$,'; |
|
| 217 | - $raccourci_url_page_spip = ',^(?:[^?]*/)?(?:spip[.]php)?[?](' . $url_objets . ')([0-9]+)=?(&.*)?$,'; |
|
| 214 | + $url_objets = urls_liste_objets(); |
|
| 215 | + $raccourci_url_page_html = ',^(?:[^?]*/)?(' . $url_objets . ')([0-9]+)(?:\.html)?([?&].*)?$,'; |
|
| 216 | + $raccourci_url_page_id = ',^(?:[^?]*/)?(' . $url_objets . ')\.php3?[?]id_\1=([0-9]+)([?&].*)?$,'; |
|
| 217 | + $raccourci_url_page_spip = ',^(?:[^?]*/)?(?:spip[.]php)?[?](' . $url_objets . ')([0-9]+)=?(&.*)?$,'; |
|
| 218 | 218 | |
| 219 | - if ( |
|
| 220 | - preg_match($raccourci_url_page_html, $url, $regs) |
|
| 221 | - or preg_match($raccourci_url_page_id, $url, $regs) |
|
| 222 | - or preg_match($raccourci_url_page_spip, $url, $regs) |
|
| 223 | - ) { |
|
| 224 | - $regs = array_pad($regs, 4, null); |
|
| 225 | - $type = objet_type($regs[1]); |
|
| 226 | - $_id = id_table_objet($type); |
|
| 227 | - $contexte[$_id] = $regs[2]; |
|
| 228 | - $suite = $regs[3]; |
|
| 219 | + if ( |
|
| 220 | + preg_match($raccourci_url_page_html, $url, $regs) |
|
| 221 | + or preg_match($raccourci_url_page_id, $url, $regs) |
|
| 222 | + or preg_match($raccourci_url_page_spip, $url, $regs) |
|
| 223 | + ) { |
|
| 224 | + $regs = array_pad($regs, 4, null); |
|
| 225 | + $type = objet_type($regs[1]); |
|
| 226 | + $_id = id_table_objet($type); |
|
| 227 | + $contexte[$_id] = $regs[2]; |
|
| 228 | + $suite = $regs[3]; |
|
| 229 | 229 | |
| 230 | - return [$contexte, $type, null, $type, $suite]; |
|
| 231 | - } |
|
| 230 | + return [$contexte, $type, null, $type, $suite]; |
|
| 231 | + } |
|
| 232 | 232 | |
| 233 | - return []; |
|
| 233 | + return []; |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | /** |
@@ -249,33 +249,33 @@ discard block |
||
| 249 | 249 | * |
| 250 | 250 | */ |
| 251 | 251 | function generer_url_ecrire_objet($objet, $id, $args = '', $ancre = '', $public = null, string $connect = '') { |
| 252 | - static $furls = []; |
|
| 253 | - if (!isset($furls[$objet])) { |
|
| 254 | - if ( |
|
| 255 | - function_exists($f = 'generer_url_ecrire_' . $objet) |
|
| 256 | - // ou definie par un plugin |
|
| 257 | - or $f = charger_fonction($f, 'urls', true) |
|
| 258 | - ) { |
|
| 259 | - $furls[$objet] = $f; |
|
| 260 | - } else { |
|
| 261 | - $furls[$objet] = ''; |
|
| 262 | - } |
|
| 263 | - } |
|
| 264 | - if ($furls[$objet]) { |
|
| 265 | - return $furls[$objet]($id, $args, $ancre, $public, $connect); |
|
| 266 | - } |
|
| 267 | - // si pas de flag public fourni |
|
| 268 | - // le calculer en fonction de la declaration de statut |
|
| 269 | - if (is_null($public) and !$connect) { |
|
| 270 | - $public = objet_test_si_publie($objet, $id, $connect); |
|
| 271 | - } |
|
| 272 | - if ($public or $connect) { |
|
| 273 | - return generer_url_entite_absolue($id, $objet, $args, $ancre, $connect); |
|
| 274 | - } |
|
| 275 | - $a = id_table_objet($objet) . '=' . intval($id); |
|
| 276 | - if (!function_exists('objet_info')) { |
|
| 277 | - include_spip('inc/filtres'); |
|
| 278 | - } |
|
| 252 | + static $furls = []; |
|
| 253 | + if (!isset($furls[$objet])) { |
|
| 254 | + if ( |
|
| 255 | + function_exists($f = 'generer_url_ecrire_' . $objet) |
|
| 256 | + // ou definie par un plugin |
|
| 257 | + or $f = charger_fonction($f, 'urls', true) |
|
| 258 | + ) { |
|
| 259 | + $furls[$objet] = $f; |
|
| 260 | + } else { |
|
| 261 | + $furls[$objet] = ''; |
|
| 262 | + } |
|
| 263 | + } |
|
| 264 | + if ($furls[$objet]) { |
|
| 265 | + return $furls[$objet]($id, $args, $ancre, $public, $connect); |
|
| 266 | + } |
|
| 267 | + // si pas de flag public fourni |
|
| 268 | + // le calculer en fonction de la declaration de statut |
|
| 269 | + if (is_null($public) and !$connect) { |
|
| 270 | + $public = objet_test_si_publie($objet, $id, $connect); |
|
| 271 | + } |
|
| 272 | + if ($public or $connect) { |
|
| 273 | + return generer_url_entite_absolue($id, $objet, $args, $ancre, $connect); |
|
| 274 | + } |
|
| 275 | + $a = id_table_objet($objet) . '=' . intval($id); |
|
| 276 | + if (!function_exists('objet_info')) { |
|
| 277 | + include_spip('inc/filtres'); |
|
| 278 | + } |
|
| 279 | 279 | |
| 280 | - return generer_url_ecrire(objet_info($objet, 'url_voir'), $a . ($args ? "&$args" : '')) . ($ancre ? "#$ancre" : ''); |
|
| 280 | + return generer_url_ecrire(objet_info($objet, 'url_voir'), $a . ($args ? "&$args" : '')) . ($ancre ? "#$ancre" : ''); |
|
| 281 | 281 | } |
@@ -18,16 +18,16 @@ discard block |
||
| 18 | 18 | **/ |
| 19 | 19 | |
| 20 | 20 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 21 | - return; |
|
| 21 | + return; |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | if (!defined('_SPIP_SELECT_RUBRIQUES')) { |
| 25 | - /** |
|
| 26 | - * @var int Nombre de rubriques maximum du sélecteur de rubriques. |
|
| 27 | - * Au delà, on bascule sur un sélecteur ajax. |
|
| 28 | - * mettre 100000 pour desactiver ajax |
|
| 29 | - */ |
|
| 30 | - define('_SPIP_SELECT_RUBRIQUES', 20); |
|
| 25 | + /** |
|
| 26 | + * @var int Nombre de rubriques maximum du sélecteur de rubriques. |
|
| 27 | + * Au delà, on bascule sur un sélecteur ajax. |
|
| 28 | + * mettre 100000 pour desactiver ajax |
|
| 29 | + */ |
|
| 30 | + define('_SPIP_SELECT_RUBRIQUES', 20); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -55,22 +55,22 @@ discard block |
||
| 55 | 55 | * Code HTML du sélecteur |
| 56 | 56 | **/ |
| 57 | 57 | function inc_chercher_rubrique_dist($id_rubrique, $type, $restreint, $idem = 0, $do = 'aff') { |
| 58 | - if (sql_countsel('spip_rubriques') < 1) { |
|
| 59 | - return ''; |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - // Mode sans Ajax : |
|
| 63 | - // - soit parce que le cookie ajax n'est pas la |
|
| 64 | - // - soit parce qu'il y a peu de rubriques |
|
| 65 | - if ( |
|
| 66 | - _SPIP_AJAX < 1 |
|
| 67 | - or $type == 'breve' |
|
| 68 | - or sql_countsel('spip_rubriques') < _SPIP_SELECT_RUBRIQUES |
|
| 69 | - ) { |
|
| 70 | - return selecteur_rubrique_html($id_rubrique, $type, $restreint, $idem); |
|
| 71 | - } else { |
|
| 72 | - return selecteur_rubrique_ajax($id_rubrique, $type, $restreint, $idem, $do); |
|
| 73 | - } |
|
| 58 | + if (sql_countsel('spip_rubriques') < 1) { |
|
| 59 | + return ''; |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + // Mode sans Ajax : |
|
| 63 | + // - soit parce que le cookie ajax n'est pas la |
|
| 64 | + // - soit parce qu'il y a peu de rubriques |
|
| 65 | + if ( |
|
| 66 | + _SPIP_AJAX < 1 |
|
| 67 | + or $type == 'breve' |
|
| 68 | + or sql_countsel('spip_rubriques') < _SPIP_SELECT_RUBRIQUES |
|
| 69 | + ) { |
|
| 70 | + return selecteur_rubrique_html($id_rubrique, $type, $restreint, $idem); |
|
| 71 | + } else { |
|
| 72 | + return selecteur_rubrique_ajax($id_rubrique, $type, $restreint, $idem, $do); |
|
| 73 | + } |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | // compatibilite pour extensions qui utilisaient l'ancien nom |
@@ -87,17 +87,17 @@ discard block |
||
| 87 | 87 | **/ |
| 88 | 88 | function style_menu_rubriques($i) { |
| 89 | 89 | |
| 90 | - $espace = ''; |
|
| 91 | - $style = ''; |
|
| 92 | - for ($count = 1; $count <= $i; $count++) { |
|
| 93 | - $espace .= ' '; |
|
| 94 | - } |
|
| 95 | - if ($i == 1) { |
|
| 96 | - $espace = ''; |
|
| 97 | - } |
|
| 98 | - $class = "niveau_$i"; |
|
| 99 | - |
|
| 100 | - return [$class, $style, $espace]; |
|
| 90 | + $espace = ''; |
|
| 91 | + $style = ''; |
|
| 92 | + for ($count = 1; $count <= $i; $count++) { |
|
| 93 | + $espace .= ' '; |
|
| 94 | + } |
|
| 95 | + if ($i == 1) { |
|
| 96 | + $espace = ''; |
|
| 97 | + } |
|
| 98 | + $class = "niveau_$i"; |
|
| 99 | + |
|
| 100 | + return [$class, $style, $espace]; |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | /** |
@@ -121,60 +121,60 @@ discard block |
||
| 121 | 121 | * Code HTML du sélecteur |
| 122 | 122 | **/ |
| 123 | 123 | function sous_menu_rubriques($id_rubrique, $root, $niv, &$data, &$enfants, $exclus, $restreint, $type) { |
| 124 | - static $decalage_secteur; |
|
| 125 | - |
|
| 126 | - // Si on a demande l'exclusion ne pas descendre dans la rubrique courante |
|
| 127 | - if ( |
|
| 128 | - $exclus > 0 |
|
| 129 | - and $root == $exclus |
|
| 130 | - ) { |
|
| 131 | - return ''; |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - // en fonction du niveau faire un affichage plus ou moins kikoo |
|
| 135 | - |
|
| 136 | - // selected ? |
|
| 137 | - $selected = ($root == $id_rubrique) ? ' selected="selected"' : ''; |
|
| 138 | - |
|
| 139 | - // le style en fonction de la profondeur |
|
| 140 | - [$class, $style, $espace] = style_menu_rubriques($niv); |
|
| 141 | - |
|
| 142 | - $class .= ' selec_rub'; |
|
| 143 | - |
|
| 144 | - // creer l'<option> pour la rubrique $root |
|
| 145 | - |
|
| 146 | - if (isset($data[$root])) { # pas de racine sauf pour les rubriques |
|
| 147 | - $r = "<option$selected value='$root' class='$class' style='$style'>$espace" |
|
| 148 | - . $data[$root] |
|
| 149 | - . '</option>' . "\n"; |
|
| 150 | - } else { |
|
| 151 | - $r = ''; |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - // et le sous-menu pour ses enfants |
|
| 155 | - $sous = ''; |
|
| 156 | - if (isset($enfants[$root])) { |
|
| 157 | - foreach ($enfants[$root] as $sousrub) { |
|
| 158 | - $sous .= sous_menu_rubriques( |
|
| 159 | - $id_rubrique, |
|
| 160 | - $sousrub, |
|
| 161 | - $niv + 1, |
|
| 162 | - $data, |
|
| 163 | - $enfants, |
|
| 164 | - $exclus, |
|
| 165 | - $restreint, |
|
| 166 | - $type |
|
| 167 | - ); |
|
| 168 | - } |
|
| 169 | - } |
|
| 170 | - |
|
| 171 | - // si l'objet a deplacer est publie, verifier qu'on a acces aux rubriques |
|
| 172 | - if ($restreint and $root != $id_rubrique and !autoriser('publierdans', 'rubrique', $root)) { |
|
| 173 | - return $sous; |
|
| 174 | - } |
|
| 175 | - |
|
| 176 | - // et voila le travail |
|
| 177 | - return $r . $sous; |
|
| 124 | + static $decalage_secteur; |
|
| 125 | + |
|
| 126 | + // Si on a demande l'exclusion ne pas descendre dans la rubrique courante |
|
| 127 | + if ( |
|
| 128 | + $exclus > 0 |
|
| 129 | + and $root == $exclus |
|
| 130 | + ) { |
|
| 131 | + return ''; |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + // en fonction du niveau faire un affichage plus ou moins kikoo |
|
| 135 | + |
|
| 136 | + // selected ? |
|
| 137 | + $selected = ($root == $id_rubrique) ? ' selected="selected"' : ''; |
|
| 138 | + |
|
| 139 | + // le style en fonction de la profondeur |
|
| 140 | + [$class, $style, $espace] = style_menu_rubriques($niv); |
|
| 141 | + |
|
| 142 | + $class .= ' selec_rub'; |
|
| 143 | + |
|
| 144 | + // creer l'<option> pour la rubrique $root |
|
| 145 | + |
|
| 146 | + if (isset($data[$root])) { # pas de racine sauf pour les rubriques |
|
| 147 | + $r = "<option$selected value='$root' class='$class' style='$style'>$espace" |
|
| 148 | + . $data[$root] |
|
| 149 | + . '</option>' . "\n"; |
|
| 150 | + } else { |
|
| 151 | + $r = ''; |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + // et le sous-menu pour ses enfants |
|
| 155 | + $sous = ''; |
|
| 156 | + if (isset($enfants[$root])) { |
|
| 157 | + foreach ($enfants[$root] as $sousrub) { |
|
| 158 | + $sous .= sous_menu_rubriques( |
|
| 159 | + $id_rubrique, |
|
| 160 | + $sousrub, |
|
| 161 | + $niv + 1, |
|
| 162 | + $data, |
|
| 163 | + $enfants, |
|
| 164 | + $exclus, |
|
| 165 | + $restreint, |
|
| 166 | + $type |
|
| 167 | + ); |
|
| 168 | + } |
|
| 169 | + } |
|
| 170 | + |
|
| 171 | + // si l'objet a deplacer est publie, verifier qu'on a acces aux rubriques |
|
| 172 | + if ($restreint and $root != $id_rubrique and !autoriser('publierdans', 'rubrique', $root)) { |
|
| 173 | + return $sous; |
|
| 174 | + } |
|
| 175 | + |
|
| 176 | + // et voila le travail |
|
| 177 | + return $r . $sous; |
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | /** |
@@ -195,75 +195,75 @@ discard block |
||
| 195 | 195 | * Code HTML du sélecteur |
| 196 | 196 | **/ |
| 197 | 197 | function selecteur_rubrique_html($id_rubrique, $type, $restreint, $idem = 0) { |
| 198 | - $enfants = []; |
|
| 199 | - $data = []; |
|
| 200 | - if ($type == 'rubrique' and autoriser('publierdans', 'rubrique', 0)) { |
|
| 201 | - $data[0] = _T('info_racine_site'); |
|
| 202 | - } |
|
| 203 | - # premier choix = neant |
|
| 204 | - # si auteur (rubriques restreintes) |
|
| 205 | - # ou si creation avec id_rubrique=0 |
|
| 206 | - elseif ($type == 'auteur' or !$id_rubrique) { |
|
| 207 | - $data[0] = ' '; |
|
| 208 | - } |
|
| 209 | - |
|
| 210 | - // |
|
| 211 | - // creer une structure contenant toute l'arborescence |
|
| 212 | - // |
|
| 213 | - |
|
| 214 | - include_spip('base/abstract_sql'); |
|
| 215 | - $q = sql_select( |
|
| 216 | - 'id_rubrique, id_parent, titre, statut, lang, langue_choisie', |
|
| 217 | - 'spip_rubriques', |
|
| 218 | - ($type == 'breve' ? ' id_parent=0 ' : ''), |
|
| 219 | - '', |
|
| 220 | - '0+titre,titre' |
|
| 221 | - ); |
|
| 222 | - while ($r = sql_fetch($q)) { |
|
| 223 | - if (autoriser('voir', 'rubrique', $r['id_rubrique'])) { |
|
| 224 | - // titre largeur maxi a 50 |
|
| 225 | - $titre = couper(supprimer_tags(typo($r['titre'])) . ' ', 50); |
|
| 226 | - if ( |
|
| 227 | - $GLOBALS['meta']['multi_rubriques'] == 'oui' |
|
| 228 | - and ($r['langue_choisie'] == 'oui' or $r['id_parent'] == 0) |
|
| 229 | - ) { |
|
| 230 | - $titre .= ' [' . traduire_nom_langue($r['lang']) . ']'; |
|
| 231 | - } |
|
| 232 | - $data[$r['id_rubrique']] = $titre; |
|
| 233 | - $enfants[$r['id_parent']][] = $r['id_rubrique']; |
|
| 234 | - if ($id_rubrique == $r['id_rubrique']) { |
|
| 235 | - $id_parent = $r['id_parent']; |
|
| 236 | - } |
|
| 237 | - } |
|
| 238 | - } |
|
| 239 | - |
|
| 240 | - // si une seule rubrique comme choix possible, |
|
| 241 | - // inutile de mettre le selecteur sur un choix vide par defaut |
|
| 242 | - // sauf si le selecteur s'adresse a une rubrique puisque on peut la mettre a la racine dans ce cas |
|
| 243 | - if ( |
|
| 244 | - count($data) == 2 |
|
| 245 | - and isset($data[0]) |
|
| 246 | - and !in_array($type, ['auteur', 'rubrique']) |
|
| 247 | - and !$id_rubrique |
|
| 248 | - ) { |
|
| 249 | - unset($data[0]); |
|
| 250 | - } |
|
| 251 | - |
|
| 252 | - |
|
| 253 | - $opt = sous_menu_rubriques($id_rubrique, 0, 0, $data, $enfants, $idem, $restreint, $type); |
|
| 254 | - $att = " id='id_parent' name='id_parent'\nclass='selecteur_parent verdana1'"; |
|
| 255 | - |
|
| 256 | - if (preg_match(',^<option[^<>]*value=.(\d*).[^<>]*>([^<]*)</option>$,', $opt, $r)) { |
|
| 257 | - $r = "<input$att type='hidden' value='" . $r[1] . "' />" . $r[2]; |
|
| 258 | - } else { |
|
| 259 | - $r = '<select' . $att . " size='1'>\n$opt</select>\n"; |
|
| 260 | - } |
|
| 261 | - |
|
| 262 | - # message pour neuneus (a supprimer ?) |
|
| 198 | + $enfants = []; |
|
| 199 | + $data = []; |
|
| 200 | + if ($type == 'rubrique' and autoriser('publierdans', 'rubrique', 0)) { |
|
| 201 | + $data[0] = _T('info_racine_site'); |
|
| 202 | + } |
|
| 203 | + # premier choix = neant |
|
| 204 | + # si auteur (rubriques restreintes) |
|
| 205 | + # ou si creation avec id_rubrique=0 |
|
| 206 | + elseif ($type == 'auteur' or !$id_rubrique) { |
|
| 207 | + $data[0] = ' '; |
|
| 208 | + } |
|
| 209 | + |
|
| 210 | + // |
|
| 211 | + // creer une structure contenant toute l'arborescence |
|
| 212 | + // |
|
| 213 | + |
|
| 214 | + include_spip('base/abstract_sql'); |
|
| 215 | + $q = sql_select( |
|
| 216 | + 'id_rubrique, id_parent, titre, statut, lang, langue_choisie', |
|
| 217 | + 'spip_rubriques', |
|
| 218 | + ($type == 'breve' ? ' id_parent=0 ' : ''), |
|
| 219 | + '', |
|
| 220 | + '0+titre,titre' |
|
| 221 | + ); |
|
| 222 | + while ($r = sql_fetch($q)) { |
|
| 223 | + if (autoriser('voir', 'rubrique', $r['id_rubrique'])) { |
|
| 224 | + // titre largeur maxi a 50 |
|
| 225 | + $titre = couper(supprimer_tags(typo($r['titre'])) . ' ', 50); |
|
| 226 | + if ( |
|
| 227 | + $GLOBALS['meta']['multi_rubriques'] == 'oui' |
|
| 228 | + and ($r['langue_choisie'] == 'oui' or $r['id_parent'] == 0) |
|
| 229 | + ) { |
|
| 230 | + $titre .= ' [' . traduire_nom_langue($r['lang']) . ']'; |
|
| 231 | + } |
|
| 232 | + $data[$r['id_rubrique']] = $titre; |
|
| 233 | + $enfants[$r['id_parent']][] = $r['id_rubrique']; |
|
| 234 | + if ($id_rubrique == $r['id_rubrique']) { |
|
| 235 | + $id_parent = $r['id_parent']; |
|
| 236 | + } |
|
| 237 | + } |
|
| 238 | + } |
|
| 239 | + |
|
| 240 | + // si une seule rubrique comme choix possible, |
|
| 241 | + // inutile de mettre le selecteur sur un choix vide par defaut |
|
| 242 | + // sauf si le selecteur s'adresse a une rubrique puisque on peut la mettre a la racine dans ce cas |
|
| 243 | + if ( |
|
| 244 | + count($data) == 2 |
|
| 245 | + and isset($data[0]) |
|
| 246 | + and !in_array($type, ['auteur', 'rubrique']) |
|
| 247 | + and !$id_rubrique |
|
| 248 | + ) { |
|
| 249 | + unset($data[0]); |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + |
|
| 253 | + $opt = sous_menu_rubriques($id_rubrique, 0, 0, $data, $enfants, $idem, $restreint, $type); |
|
| 254 | + $att = " id='id_parent' name='id_parent'\nclass='selecteur_parent verdana1'"; |
|
| 255 | + |
|
| 256 | + if (preg_match(',^<option[^<>]*value=.(\d*).[^<>]*>([^<]*)</option>$,', $opt, $r)) { |
|
| 257 | + $r = "<input$att type='hidden' value='" . $r[1] . "' />" . $r[2]; |
|
| 258 | + } else { |
|
| 259 | + $r = '<select' . $att . " size='1'>\n$opt</select>\n"; |
|
| 260 | + } |
|
| 261 | + |
|
| 262 | + # message pour neuneus (a supprimer ?) |
|
| 263 | 263 | # if ($type != 'auteur' AND $type != 'breve') |
| 264 | 264 | # $r .= "\n<br />"._T('texte_rappel_selection_champs'); |
| 265 | 265 | |
| 266 | - return $r; |
|
| 266 | + return $r; |
|
| 267 | 267 | } |
| 268 | 268 | |
| 269 | 269 | /** |
@@ -297,26 +297,26 @@ discard block |
||
| 297 | 297 | */ |
| 298 | 298 | function selecteur_rubrique_ajax($id_rubrique, $type, $restreint, $idem = 0, $do = 'aff') { |
| 299 | 299 | |
| 300 | - if ($id_rubrique) { |
|
| 301 | - $titre = sql_getfetsel('titre', 'spip_rubriques', 'id_rubrique=' . intval($id_rubrique)); |
|
| 302 | - } else { |
|
| 303 | - if ($type == 'auteur') { |
|
| 304 | - $titre = ' '; |
|
| 305 | - } else { |
|
| 306 | - $titre = _T('info_racine_site'); |
|
| 307 | - } |
|
| 308 | - } |
|
| 300 | + if ($id_rubrique) { |
|
| 301 | + $titre = sql_getfetsel('titre', 'spip_rubriques', 'id_rubrique=' . intval($id_rubrique)); |
|
| 302 | + } else { |
|
| 303 | + if ($type == 'auteur') { |
|
| 304 | + $titre = ' '; |
|
| 305 | + } else { |
|
| 306 | + $titre = _T('info_racine_site'); |
|
| 307 | + } |
|
| 308 | + } |
|
| 309 | 309 | |
| 310 | - $titre = str_replace('&', '&', entites_html(textebrut(typo($titre)))); |
|
| 311 | - $init = " disabled='disabled' type='text' value=\"" . $titre . "\"\nstyle='width:300px;'"; |
|
| 310 | + $titre = str_replace('&', '&', entites_html(textebrut(typo($titre)))); |
|
| 311 | + $init = " disabled='disabled' type='text' value=\"" . $titre . "\"\nstyle='width:300px;'"; |
|
| 312 | 312 | |
| 313 | - $url = generer_url_ecrire('selectionner', "id=$id_rubrique&type=$type&do=$do" |
|
| 314 | - . (!$idem ? '' : "&exclus=$idem") |
|
| 315 | - . ($restreint ? '' : '&racine=oui') |
|
| 316 | - . (isset($GLOBALS['var_profile']) ? '&var_profile=1' : '')); |
|
| 313 | + $url = generer_url_ecrire('selectionner', "id=$id_rubrique&type=$type&do=$do" |
|
| 314 | + . (!$idem ? '' : "&exclus=$idem") |
|
| 315 | + . ($restreint ? '' : '&racine=oui') |
|
| 316 | + . (isset($GLOBALS['var_profile']) ? '&var_profile=1' : '')); |
|
| 317 | 317 | |
| 318 | 318 | |
| 319 | - return construire_selecteur($url, '', 'selection_rubrique', 'id_parent', $init, $id_rubrique); |
|
| 319 | + return construire_selecteur($url, '', 'selection_rubrique', 'id_parent', $init, $id_rubrique); |
|
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | /** |
@@ -346,30 +346,30 @@ discard block |
||
| 346 | 346 | * Code HTML du sélecteur de rubrique AJAX |
| 347 | 347 | **/ |
| 348 | 348 | function construire_selecteur($url, $js, $idom, $name, $init = '', $id = 0) { |
| 349 | - $icone = (strpos($idom, 'auteur') !== false) ? 'auteur-24.png' : 'rechercher-20.png'; |
|
| 350 | - // si icone de recherche on embed le svg |
|
| 351 | - $balise = ($icone === 'rechercher-20.png' ? chercher_filtre('balise_svg') : chercher_filtre('balise_img')); |
|
| 352 | - $img_icone = $balise(chemin_image($icone), _T('titre_image_selecteur')); |
|
| 353 | - |
|
| 354 | - return |
|
| 355 | - "<div class='rubrique_actuelle'><a href='#' class='rubrique-search' role='button' style='display:inline-flex;vertical-align:middle;' onclick=\"" |
|
| 356 | - . $js |
|
| 357 | - . " jQuery(this).toggleClass('toggled'); " |
|
| 358 | - . "return charger_node_url_si_vide('" |
|
| 359 | - . $url |
|
| 360 | - . "', this.parentNode.nextSibling, this.nextSibling,'',event)\" title='" . attribut_html(_T('titre_image_selecteur')) . "'>" |
|
| 361 | - . $img_icone |
|
| 362 | - . "</a><img src='" |
|
| 363 | - . chemin_image('loader.svg') |
|
| 364 | - . "' class='loader' id='img_" |
|
| 365 | - . $idom |
|
| 366 | - . "'\nstyle='visibility: hidden;' alt='*' />" |
|
| 367 | - . "<input id='titreparent' name='titreparent' class='text'" |
|
| 368 | - . $init |
|
| 369 | - . ' />' |
|
| 370 | - . "<input type='hidden' id='$name' name='$name' value='" |
|
| 371 | - . $id |
|
| 372 | - . "' /><div class='nettoyeur'></div></div><div id='" |
|
| 373 | - . $idom |
|
| 374 | - . "'\nstyle='display: none;'></div>"; |
|
| 349 | + $icone = (strpos($idom, 'auteur') !== false) ? 'auteur-24.png' : 'rechercher-20.png'; |
|
| 350 | + // si icone de recherche on embed le svg |
|
| 351 | + $balise = ($icone === 'rechercher-20.png' ? chercher_filtre('balise_svg') : chercher_filtre('balise_img')); |
|
| 352 | + $img_icone = $balise(chemin_image($icone), _T('titre_image_selecteur')); |
|
| 353 | + |
|
| 354 | + return |
|
| 355 | + "<div class='rubrique_actuelle'><a href='#' class='rubrique-search' role='button' style='display:inline-flex;vertical-align:middle;' onclick=\"" |
|
| 356 | + . $js |
|
| 357 | + . " jQuery(this).toggleClass('toggled'); " |
|
| 358 | + . "return charger_node_url_si_vide('" |
|
| 359 | + . $url |
|
| 360 | + . "', this.parentNode.nextSibling, this.nextSibling,'',event)\" title='" . attribut_html(_T('titre_image_selecteur')) . "'>" |
|
| 361 | + . $img_icone |
|
| 362 | + . "</a><img src='" |
|
| 363 | + . chemin_image('loader.svg') |
|
| 364 | + . "' class='loader' id='img_" |
|
| 365 | + . $idom |
|
| 366 | + . "'\nstyle='visibility: hidden;' alt='*' />" |
|
| 367 | + . "<input id='titreparent' name='titreparent' class='text'" |
|
| 368 | + . $init |
|
| 369 | + . ' />' |
|
| 370 | + . "<input type='hidden' id='$name' name='$name' value='" |
|
| 371 | + . $id |
|
| 372 | + . "' /><div class='nettoyeur'></div></div><div id='" |
|
| 373 | + . $idom |
|
| 374 | + . "'\nstyle='display: none;'></div>"; |
|
| 375 | 375 | } |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * @package SPIP\Core\Surligne |
| 17 | 17 | **/ |
| 18 | 18 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 19 | - return; |
|
| 19 | + return; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -35,43 +35,43 @@ discard block |
||
| 35 | 35 | * Page HTML |
| 36 | 36 | **/ |
| 37 | 37 | function surligner_mots($page, $surcharge_surligne = '') { |
| 38 | - $surlignejs_engines = [ |
|
| 39 | - [ |
|
| 40 | - ',' . str_replace(['/', '.'], ['\/', '\.'], $GLOBALS['meta']['adresse_site']) . ',i', |
|
| 41 | - ',recherche=([^&]+),i' |
|
| 42 | - ], //SPIP |
|
| 43 | - [',^http://(www\.)?google\.,i', ',q=([^&]+),i'], // Google |
|
| 44 | - [',^http://(www\.)?search\.yahoo\.,i', ',p=([^&]+),i'], // Yahoo |
|
| 45 | - [',^http://(www\.)?search\.msn\.,i', ',q=([^&]+),i'], // MSN |
|
| 46 | - [',^http://(www\.)?search\.live\.,i', ',query=([^&]+),i'], // MSN Live |
|
| 47 | - [',^http://(www\.)?search\.aol\.,i', ',userQuery=([^&]+),i'], // AOL |
|
| 48 | - [',^http://(www\.)?ask\.com,i', ',q=([^&]+),i'], // Ask.com |
|
| 49 | - [',^http://(www\.)?altavista\.,i', ',q=([^&]+),i'], // AltaVista |
|
| 50 | - [',^http://(www\.)?feedster\.,i', ',q=([^&]+),i'], // Feedster |
|
| 51 | - [',^http://(www\.)?search\.lycos\.,i', ',q=([^&]+),i'], // Lycos |
|
| 52 | - [',^http://(www\.)?alltheweb\.,i', ',q=([^&]+),i'], // AllTheWeb |
|
| 53 | - [',^http://(www\.)?technorati\.com,i', ',([^\?\/]+)(?:\?.*)$,i'], // Technorati |
|
| 54 | - ]; |
|
| 38 | + $surlignejs_engines = [ |
|
| 39 | + [ |
|
| 40 | + ',' . str_replace(['/', '.'], ['\/', '\.'], $GLOBALS['meta']['adresse_site']) . ',i', |
|
| 41 | + ',recherche=([^&]+),i' |
|
| 42 | + ], //SPIP |
|
| 43 | + [',^http://(www\.)?google\.,i', ',q=([^&]+),i'], // Google |
|
| 44 | + [',^http://(www\.)?search\.yahoo\.,i', ',p=([^&]+),i'], // Yahoo |
|
| 45 | + [',^http://(www\.)?search\.msn\.,i', ',q=([^&]+),i'], // MSN |
|
| 46 | + [',^http://(www\.)?search\.live\.,i', ',query=([^&]+),i'], // MSN Live |
|
| 47 | + [',^http://(www\.)?search\.aol\.,i', ',userQuery=([^&]+),i'], // AOL |
|
| 48 | + [',^http://(www\.)?ask\.com,i', ',q=([^&]+),i'], // Ask.com |
|
| 49 | + [',^http://(www\.)?altavista\.,i', ',q=([^&]+),i'], // AltaVista |
|
| 50 | + [',^http://(www\.)?feedster\.,i', ',q=([^&]+),i'], // Feedster |
|
| 51 | + [',^http://(www\.)?search\.lycos\.,i', ',q=([^&]+),i'], // Lycos |
|
| 52 | + [',^http://(www\.)?alltheweb\.,i', ',q=([^&]+),i'], // AllTheWeb |
|
| 53 | + [',^http://(www\.)?technorati\.com,i', ',([^\?\/]+)(?:\?.*)$,i'], // Technorati |
|
| 54 | + ]; |
|
| 55 | 55 | |
| 56 | 56 | |
| 57 | - $ref = $_SERVER['HTTP_REFERER'] ?? null; |
|
| 58 | - //avoid a js injection |
|
| 59 | - if ($surcharge_surligne) { |
|
| 60 | - $surcharge_surligne = preg_replace(",(?<!\\\\)((?:(?>\\\\){2})*)('),", '$1\\\$2', $surcharge_surligne); |
|
| 61 | - $surcharge_surligne = str_replace('\\', '\\\\', $surcharge_surligne); |
|
| 62 | - if ($GLOBALS['meta']['charset'] == 'utf-8') { |
|
| 63 | - include_spip('inc/charsets'); |
|
| 64 | - if (!is_utf8($surcharge_surligne)) { |
|
| 65 | - $surcharge_surligne = utf8_encode($surcharge_surligne); |
|
| 66 | - } |
|
| 67 | - } |
|
| 68 | - $surcharge_surligne = preg_replace(',\*$,', '', trim($surcharge_surligne)); # supprimer un * final |
|
| 69 | - } |
|
| 70 | - foreach ($surlignejs_engines as $engine) { |
|
| 71 | - if ($surcharge_surligne || (preg_match($engine[0], $ref) && preg_match($engine[1], $ref))) { |
|
| 72 | - //good referrer found or var_recherche is not null |
|
| 73 | - include_spip('inc/filtres'); |
|
| 74 | - $script = " |
|
| 57 | + $ref = $_SERVER['HTTP_REFERER'] ?? null; |
|
| 58 | + //avoid a js injection |
|
| 59 | + if ($surcharge_surligne) { |
|
| 60 | + $surcharge_surligne = preg_replace(",(?<!\\\\)((?:(?>\\\\){2})*)('),", '$1\\\$2', $surcharge_surligne); |
|
| 61 | + $surcharge_surligne = str_replace('\\', '\\\\', $surcharge_surligne); |
|
| 62 | + if ($GLOBALS['meta']['charset'] == 'utf-8') { |
|
| 63 | + include_spip('inc/charsets'); |
|
| 64 | + if (!is_utf8($surcharge_surligne)) { |
|
| 65 | + $surcharge_surligne = utf8_encode($surcharge_surligne); |
|
| 66 | + } |
|
| 67 | + } |
|
| 68 | + $surcharge_surligne = preg_replace(',\*$,', '', trim($surcharge_surligne)); # supprimer un * final |
|
| 69 | + } |
|
| 70 | + foreach ($surlignejs_engines as $engine) { |
|
| 71 | + if ($surcharge_surligne || (preg_match($engine[0], $ref) && preg_match($engine[1], $ref))) { |
|
| 72 | + //good referrer found or var_recherche is not null |
|
| 73 | + include_spip('inc/filtres'); |
|
| 74 | + $script = " |
|
| 75 | 75 | <script type='text/javascript' src='" . url_absolue(find_in_path('javascript/SearchHighlight.js')) . "'></script> |
| 76 | 76 | <script type='text/javascript'> |
| 77 | 77 | var highlighter = function() { |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | engines:[/^" . str_replace(['/', '.'], ['\/', '\.'], $GLOBALS['meta']['adresse_site']) . "/i,/recherche=([^&]+)/i], |
| 84 | 84 | highlight:'.surlignable', |
| 85 | 85 | nohighlight:'.pas_surlignable'" . |
| 86 | - ($surcharge_surligne ? ", |
|
| 86 | + ($surcharge_surligne ? ", |
|
| 87 | 87 | keys:'$surcharge_surligne'" : '') . ', |
| 88 | 88 | min_length: 3 |
| 89 | 89 | }); |
@@ -94,14 +94,14 @@ discard block |
||
| 94 | 94 | }; |
| 95 | 95 | </script> |
| 96 | 96 | '; |
| 97 | - // on l'insere juste avant </head>, sinon tout en bas |
|
| 98 | - if (is_null($l = strpos($page, '</head>'))) { |
|
| 99 | - $l = strlen($page); |
|
| 100 | - } |
|
| 101 | - $page = substr_replace($page, $script, $l, 0); |
|
| 102 | - break; |
|
| 103 | - } |
|
| 104 | - } |
|
| 97 | + // on l'insere juste avant </head>, sinon tout en bas |
|
| 98 | + if (is_null($l = strpos($page, '</head>'))) { |
|
| 99 | + $l = strlen($page); |
|
| 100 | + } |
|
| 101 | + $page = substr_replace($page, $script, $l, 0); |
|
| 102 | + break; |
|
| 103 | + } |
|
| 104 | + } |
|
| 105 | 105 | |
| 106 | - return $page; |
|
| 106 | + return $page; |
|
| 107 | 107 | } |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | **/ |
| 18 | 18 | |
| 19 | 19 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 20 | - return; |
|
| 20 | + return; |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | // Les parametres generaux du site sont dans une table SQL; |
@@ -28,51 +28,51 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | // https://code.spip.net/@inc_meta_dist |
| 30 | 30 | function inc_meta_dist($table = 'meta') { |
| 31 | - $new = null; |
|
| 32 | - // Lire les meta, en cache si present, valide et lisible |
|
| 33 | - // en cas d'install ne pas faire confiance au meta_cache eventuel |
|
| 34 | - $cache = cache_meta($table); |
|
| 31 | + $new = null; |
|
| 32 | + // Lire les meta, en cache si present, valide et lisible |
|
| 33 | + // en cas d'install ne pas faire confiance au meta_cache eventuel |
|
| 34 | + $cache = cache_meta($table); |
|
| 35 | 35 | |
| 36 | - if ( |
|
| 37 | - (!$exec = _request('exec') or !autoriser_sans_cookie($exec)) |
|
| 38 | - and $new = jeune_fichier($cache, _META_CACHE_TIME) |
|
| 39 | - and lire_fichier_securise($cache, $meta) |
|
| 40 | - and $meta = @unserialize($meta) |
|
| 41 | - ) { |
|
| 42 | - $GLOBALS[$table] = $meta; |
|
| 43 | - } |
|
| 36 | + if ( |
|
| 37 | + (!$exec = _request('exec') or !autoriser_sans_cookie($exec)) |
|
| 38 | + and $new = jeune_fichier($cache, _META_CACHE_TIME) |
|
| 39 | + and lire_fichier_securise($cache, $meta) |
|
| 40 | + and $meta = @unserialize($meta) |
|
| 41 | + ) { |
|
| 42 | + $GLOBALS[$table] = $meta; |
|
| 43 | + } |
|
| 44 | 44 | |
| 45 | - if ( |
|
| 46 | - isset($GLOBALS[$table]['touch']) |
|
| 47 | - and ($GLOBALS[$table]['touch'] < time() - _META_CACHE_TIME) |
|
| 48 | - ) { |
|
| 49 | - $GLOBALS[$table] = []; |
|
| 50 | - } |
|
| 51 | - // sinon lire en base |
|
| 52 | - if (!$GLOBALS[$table]) { |
|
| 53 | - $new = !lire_metas($table); |
|
| 54 | - } |
|
| 45 | + if ( |
|
| 46 | + isset($GLOBALS[$table]['touch']) |
|
| 47 | + and ($GLOBALS[$table]['touch'] < time() - _META_CACHE_TIME) |
|
| 48 | + ) { |
|
| 49 | + $GLOBALS[$table] = []; |
|
| 50 | + } |
|
| 51 | + // sinon lire en base |
|
| 52 | + if (!$GLOBALS[$table]) { |
|
| 53 | + $new = !lire_metas($table); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - // renouveller l'alea general si trop vieux ou sur demande explicite |
|
| 57 | - if ( |
|
| 58 | - (test_espace_prive() || isset($_GET['renouvelle_alea'])) |
|
| 59 | - and $GLOBALS[$table] |
|
| 60 | - and (time() > _RENOUVELLE_ALEA + ($GLOBALS['meta']['alea_ephemere_date'] ?? 0)) |
|
| 61 | - ) { |
|
| 62 | - // si on n'a pas l'acces en ecriture sur le cache, |
|
| 63 | - // ne pas renouveller l'alea sinon le cache devient faux |
|
| 64 | - if (supprimer_fichier($cache)) { |
|
| 65 | - include_spip('inc/acces'); |
|
| 66 | - renouvelle_alea(); |
|
| 67 | - $new = false; |
|
| 68 | - } else { |
|
| 69 | - spip_log("impossible d'ecrire dans " . $cache); |
|
| 70 | - } |
|
| 71 | - } |
|
| 72 | - // et refaire le cache si on a du lire en base |
|
| 73 | - if (!$new) { |
|
| 74 | - touch_meta(false, $table); |
|
| 75 | - } |
|
| 56 | + // renouveller l'alea general si trop vieux ou sur demande explicite |
|
| 57 | + if ( |
|
| 58 | + (test_espace_prive() || isset($_GET['renouvelle_alea'])) |
|
| 59 | + and $GLOBALS[$table] |
|
| 60 | + and (time() > _RENOUVELLE_ALEA + ($GLOBALS['meta']['alea_ephemere_date'] ?? 0)) |
|
| 61 | + ) { |
|
| 62 | + // si on n'a pas l'acces en ecriture sur le cache, |
|
| 63 | + // ne pas renouveller l'alea sinon le cache devient faux |
|
| 64 | + if (supprimer_fichier($cache)) { |
|
| 65 | + include_spip('inc/acces'); |
|
| 66 | + renouvelle_alea(); |
|
| 67 | + $new = false; |
|
| 68 | + } else { |
|
| 69 | + spip_log("impossible d'ecrire dans " . $cache); |
|
| 70 | + } |
|
| 71 | + } |
|
| 72 | + // et refaire le cache si on a du lire en base |
|
| 73 | + if (!$new) { |
|
| 74 | + touch_meta(false, $table); |
|
| 75 | + } |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | // fonctions aussi appelees a l'install ==> spip_query en premiere requete |
@@ -81,39 +81,39 @@ discard block |
||
| 81 | 81 | // https://code.spip.net/@lire_metas |
| 82 | 82 | function lire_metas($table = 'meta') { |
| 83 | 83 | |
| 84 | - if ($result = spip_query("SELECT nom,valeur FROM spip_$table")) { |
|
| 85 | - include_spip('base/abstract_sql'); |
|
| 86 | - $GLOBALS[$table] = []; |
|
| 87 | - while ($row = sql_fetch($result)) { |
|
| 88 | - $GLOBALS[$table][$row['nom']] = $row['valeur']; |
|
| 89 | - } |
|
| 90 | - sql_free($result); |
|
| 84 | + if ($result = spip_query("SELECT nom,valeur FROM spip_$table")) { |
|
| 85 | + include_spip('base/abstract_sql'); |
|
| 86 | + $GLOBALS[$table] = []; |
|
| 87 | + while ($row = sql_fetch($result)) { |
|
| 88 | + $GLOBALS[$table][$row['nom']] = $row['valeur']; |
|
| 89 | + } |
|
| 90 | + sql_free($result); |
|
| 91 | 91 | |
| 92 | - if ( |
|
| 93 | - !isset($GLOBALS[$table]['charset']) |
|
| 94 | - or !$GLOBALS[$table]['charset'] |
|
| 95 | - or $GLOBALS[$table]['charset'] == '_DEFAULT_CHARSET' // hum, correction d'un bug ayant abime quelques install |
|
| 96 | - ) { |
|
| 97 | - ecrire_meta('charset', _DEFAULT_CHARSET, null, $table); |
|
| 98 | - } |
|
| 92 | + if ( |
|
| 93 | + !isset($GLOBALS[$table]['charset']) |
|
| 94 | + or !$GLOBALS[$table]['charset'] |
|
| 95 | + or $GLOBALS[$table]['charset'] == '_DEFAULT_CHARSET' // hum, correction d'un bug ayant abime quelques install |
|
| 96 | + ) { |
|
| 97 | + ecrire_meta('charset', _DEFAULT_CHARSET, null, $table); |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | - // noter cette table de configuration dans les meta de SPIP |
|
| 101 | - if ($table !== 'meta') { |
|
| 102 | - $liste = []; |
|
| 103 | - if (isset($GLOBALS['meta']['tables_config'])) { |
|
| 104 | - $liste = unserialize($GLOBALS['meta']['tables_config']); |
|
| 105 | - } |
|
| 106 | - if (!$liste) { |
|
| 107 | - $liste = []; |
|
| 108 | - } |
|
| 109 | - if (!in_array($table, $liste)) { |
|
| 110 | - $liste[] = $table; |
|
| 111 | - ecrire_meta('tables_config', serialize($liste)); |
|
| 112 | - } |
|
| 113 | - } |
|
| 114 | - } |
|
| 100 | + // noter cette table de configuration dans les meta de SPIP |
|
| 101 | + if ($table !== 'meta') { |
|
| 102 | + $liste = []; |
|
| 103 | + if (isset($GLOBALS['meta']['tables_config'])) { |
|
| 104 | + $liste = unserialize($GLOBALS['meta']['tables_config']); |
|
| 105 | + } |
|
| 106 | + if (!$liste) { |
|
| 107 | + $liste = []; |
|
| 108 | + } |
|
| 109 | + if (!in_array($table, $liste)) { |
|
| 110 | + $liste[] = $table; |
|
| 111 | + ecrire_meta('tables_config', serialize($liste)); |
|
| 112 | + } |
|
| 113 | + } |
|
| 114 | + } |
|
| 115 | 115 | |
| 116 | - return $GLOBALS[$table] ?? null; |
|
| 116 | + return $GLOBALS[$table] ?? null; |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | |
@@ -127,22 +127,22 @@ discard block |
||
| 127 | 127 | * Table SQL d'enregistrement des meta. |
| 128 | 128 | **/ |
| 129 | 129 | function touch_meta($antidate = false, $table = 'meta') { |
| 130 | - $file = cache_meta($table); |
|
| 131 | - if (!$antidate or !@touch($file, $antidate)) { |
|
| 132 | - $r = $GLOBALS[$table] ?? []; |
|
| 133 | - if ($table == 'meta') { |
|
| 134 | - unset($r['alea_ephemere']); |
|
| 135 | - unset($r['alea_ephemere_ancien']); |
|
| 136 | - // le secret du site est utilise pour encoder les contextes ajax que l'on considere fiables |
|
| 137 | - // mais le sortir deu cache meta implique une requete sql des qu'on a un form dynamique |
|
| 138 | - // meme si son squelette est en cache |
|
| 139 | - //unset($r['secret_du_site']); |
|
| 140 | - if ($antidate) { |
|
| 141 | - $r['touch'] = $antidate; |
|
| 142 | - } |
|
| 143 | - } |
|
| 144 | - ecrire_fichier_securise($file, serialize($r)); |
|
| 145 | - } |
|
| 130 | + $file = cache_meta($table); |
|
| 131 | + if (!$antidate or !@touch($file, $antidate)) { |
|
| 132 | + $r = $GLOBALS[$table] ?? []; |
|
| 133 | + if ($table == 'meta') { |
|
| 134 | + unset($r['alea_ephemere']); |
|
| 135 | + unset($r['alea_ephemere_ancien']); |
|
| 136 | + // le secret du site est utilise pour encoder les contextes ajax que l'on considere fiables |
|
| 137 | + // mais le sortir deu cache meta implique une requete sql des qu'on a un form dynamique |
|
| 138 | + // meme si son squelette est en cache |
|
| 139 | + //unset($r['secret_du_site']); |
|
| 140 | + if ($antidate) { |
|
| 141 | + $r['touch'] = $antidate; |
|
| 142 | + } |
|
| 143 | + } |
|
| 144 | + ecrire_fichier_securise($file, serialize($r)); |
|
| 145 | + } |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
@@ -158,21 +158,21 @@ discard block |
||
| 158 | 158 | * Table SQL d'enregistrement de la meta. |
| 159 | 159 | **/ |
| 160 | 160 | function effacer_meta($nom, $table = 'meta') { |
| 161 | - // section critique sur le cache: |
|
| 162 | - // l'invalider avant et apres la MAJ de la BD |
|
| 163 | - // c'est un peu moins bien qu'un vrai verrou mais ca suffira |
|
| 164 | - // et utiliser une statique pour eviter des acces disques a repetition |
|
| 165 | - static $touch = []; |
|
| 166 | - $antidate = time() - (_META_CACHE_TIME << 4); |
|
| 167 | - if (!isset($touch[$table])) { |
|
| 168 | - touch_meta($antidate, $table); |
|
| 169 | - } |
|
| 170 | - sql_delete('spip_' . $table, "nom='$nom'", '', 'continue'); |
|
| 171 | - unset($GLOBALS[$table][$nom]); |
|
| 172 | - if (!isset($touch[$table])) { |
|
| 173 | - touch_meta($antidate, $table); |
|
| 174 | - $touch[$table] = false; |
|
| 175 | - } |
|
| 161 | + // section critique sur le cache: |
|
| 162 | + // l'invalider avant et apres la MAJ de la BD |
|
| 163 | + // c'est un peu moins bien qu'un vrai verrou mais ca suffira |
|
| 164 | + // et utiliser une statique pour eviter des acces disques a repetition |
|
| 165 | + static $touch = []; |
|
| 166 | + $antidate = time() - (_META_CACHE_TIME << 4); |
|
| 167 | + if (!isset($touch[$table])) { |
|
| 168 | + touch_meta($antidate, $table); |
|
| 169 | + } |
|
| 170 | + sql_delete('spip_' . $table, "nom='$nom'", '', 'continue'); |
|
| 171 | + unset($GLOBALS[$table][$nom]); |
|
| 172 | + if (!isset($touch[$table])) { |
|
| 173 | + touch_meta($antidate, $table); |
|
| 174 | + $touch[$table] = false; |
|
| 175 | + } |
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | /** |
@@ -193,53 +193,53 @@ discard block |
||
| 193 | 193 | **/ |
| 194 | 194 | function ecrire_meta($nom, $valeur, $importable = null, $table = 'meta') { |
| 195 | 195 | |
| 196 | - static $touch = []; |
|
| 197 | - if (!$nom) { |
|
| 198 | - return; |
|
| 199 | - } |
|
| 200 | - include_spip('base/abstract_sql'); |
|
| 201 | - $res = sql_select('*', 'spip_' . $table, 'nom=' . sql_quote($nom), '', '', '', '', '', 'continue'); |
|
| 202 | - // table pas encore installee, travailler en php seulement |
|
| 203 | - if (!$res) { |
|
| 204 | - $GLOBALS[$table][$nom] = $valeur; |
|
| 196 | + static $touch = []; |
|
| 197 | + if (!$nom) { |
|
| 198 | + return; |
|
| 199 | + } |
|
| 200 | + include_spip('base/abstract_sql'); |
|
| 201 | + $res = sql_select('*', 'spip_' . $table, 'nom=' . sql_quote($nom), '', '', '', '', '', 'continue'); |
|
| 202 | + // table pas encore installee, travailler en php seulement |
|
| 203 | + if (!$res) { |
|
| 204 | + $GLOBALS[$table][$nom] = $valeur; |
|
| 205 | 205 | |
| 206 | - return; |
|
| 207 | - } |
|
| 208 | - $row = sql_fetch($res); |
|
| 209 | - sql_free($res); |
|
| 206 | + return; |
|
| 207 | + } |
|
| 208 | + $row = sql_fetch($res); |
|
| 209 | + sql_free($res); |
|
| 210 | 210 | |
| 211 | - // ne pas invalider le cache si affectation a l'identique |
|
| 212 | - // (tant pis si impt aurait du changer) |
|
| 213 | - if ( |
|
| 214 | - $row and $valeur == $row['valeur'] |
|
| 215 | - and isset($GLOBALS[$table][$nom]) |
|
| 216 | - and $GLOBALS[$table][$nom] == $valeur |
|
| 217 | - ) { |
|
| 218 | - return; |
|
| 219 | - } |
|
| 211 | + // ne pas invalider le cache si affectation a l'identique |
|
| 212 | + // (tant pis si impt aurait du changer) |
|
| 213 | + if ( |
|
| 214 | + $row and $valeur == $row['valeur'] |
|
| 215 | + and isset($GLOBALS[$table][$nom]) |
|
| 216 | + and $GLOBALS[$table][$nom] == $valeur |
|
| 217 | + ) { |
|
| 218 | + return; |
|
| 219 | + } |
|
| 220 | 220 | |
| 221 | - $GLOBALS[$table][$nom] = $valeur; |
|
| 222 | - // cf effacer pour comprendre le double touch |
|
| 223 | - $antidate = time() - (_META_CACHE_TIME << 1); |
|
| 224 | - if (!isset($touch[$table])) { |
|
| 225 | - touch_meta($antidate, $table); |
|
| 226 | - } |
|
| 227 | - $r = ['nom' => sql_quote($nom, '', 'text'), 'valeur' => sql_quote($valeur, '', 'text')]; |
|
| 228 | - // Gaffe aux tables sans impt (vieilles versions de SPIP notamment) |
|
| 229 | - // ici on utilise pas sql_updateq et sql_insertq pour ne pas provoquer trop tot |
|
| 230 | - // de lecture des descriptions des tables |
|
| 231 | - if ($importable and isset($row['impt'])) { |
|
| 232 | - $r['impt'] = sql_quote($importable, '', 'text'); |
|
| 233 | - } |
|
| 234 | - if ($row) { |
|
| 235 | - sql_update('spip_' . $table, $r, 'nom=' . sql_quote($nom)); |
|
| 236 | - } else { |
|
| 237 | - sql_insert('spip_' . $table, '(' . join(',', array_keys($r)) . ')', '(' . join(',', array_values($r)) . ')'); |
|
| 238 | - } |
|
| 239 | - if (!isset($touch[$table])) { |
|
| 240 | - touch_meta($antidate, $table); |
|
| 241 | - $touch[$table] = false; |
|
| 242 | - } |
|
| 221 | + $GLOBALS[$table][$nom] = $valeur; |
|
| 222 | + // cf effacer pour comprendre le double touch |
|
| 223 | + $antidate = time() - (_META_CACHE_TIME << 1); |
|
| 224 | + if (!isset($touch[$table])) { |
|
| 225 | + touch_meta($antidate, $table); |
|
| 226 | + } |
|
| 227 | + $r = ['nom' => sql_quote($nom, '', 'text'), 'valeur' => sql_quote($valeur, '', 'text')]; |
|
| 228 | + // Gaffe aux tables sans impt (vieilles versions de SPIP notamment) |
|
| 229 | + // ici on utilise pas sql_updateq et sql_insertq pour ne pas provoquer trop tot |
|
| 230 | + // de lecture des descriptions des tables |
|
| 231 | + if ($importable and isset($row['impt'])) { |
|
| 232 | + $r['impt'] = sql_quote($importable, '', 'text'); |
|
| 233 | + } |
|
| 234 | + if ($row) { |
|
| 235 | + sql_update('spip_' . $table, $r, 'nom=' . sql_quote($nom)); |
|
| 236 | + } else { |
|
| 237 | + sql_insert('spip_' . $table, '(' . join(',', array_keys($r)) . ')', '(' . join(',', array_values($r)) . ')'); |
|
| 238 | + } |
|
| 239 | + if (!isset($touch[$table])) { |
|
| 240 | + touch_meta($antidate, $table); |
|
| 241 | + $touch[$table] = false; |
|
| 242 | + } |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | * Nom du fichier cache |
| 252 | 252 | **/ |
| 253 | 253 | function cache_meta($table = 'meta') { |
| 254 | - return ($table == 'meta') ? _FILE_META : (_DIR_CACHE . $table . '.php'); |
|
| 254 | + return ($table == 'meta') ? _FILE_META : (_DIR_CACHE . $table . '.php'); |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | /** |
@@ -260,14 +260,14 @@ discard block |
||
| 260 | 260 | * @param string $table |
| 261 | 261 | */ |
| 262 | 262 | function installer_table_meta($table) { |
| 263 | - $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 264 | - if (!$trouver_table("spip_$table")) { |
|
| 265 | - include_spip('base/auxiliaires'); |
|
| 266 | - include_spip('base/create'); |
|
| 267 | - creer_ou_upgrader_table("spip_$table", $GLOBALS['tables_auxiliaires']['spip_meta'], false, false); |
|
| 268 | - $trouver_table(''); |
|
| 269 | - } |
|
| 270 | - lire_metas($table); |
|
| 263 | + $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 264 | + if (!$trouver_table("spip_$table")) { |
|
| 265 | + include_spip('base/auxiliaires'); |
|
| 266 | + include_spip('base/create'); |
|
| 267 | + creer_ou_upgrader_table("spip_$table", $GLOBALS['tables_auxiliaires']['spip_meta'], false, false); |
|
| 268 | + $trouver_table(''); |
|
| 269 | + } |
|
| 270 | + lire_metas($table); |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | /** |
@@ -279,47 +279,47 @@ discard block |
||
| 279 | 279 | * @param bool $force |
| 280 | 280 | */ |
| 281 | 281 | function supprimer_table_meta($table, $force = false) { |
| 282 | - if ($table !== 'meta') { |
|
| 283 | - // Vérifier le contenu restant de la table |
|
| 284 | - $nb_variables = sql_countsel("spip_$table"); |
|
| 282 | + if ($table !== 'meta') { |
|
| 283 | + // Vérifier le contenu restant de la table |
|
| 284 | + $nb_variables = sql_countsel("spip_$table"); |
|
| 285 | 285 | |
| 286 | - // Supprimer si : |
|
| 287 | - // - la table est vide |
|
| 288 | - // - ou limitée à la variable charset |
|
| 289 | - // - ou qu'on force la suppression |
|
| 290 | - if ( |
|
| 291 | - $force |
|
| 292 | - or !$nb_variables |
|
| 293 | - or ( |
|
| 294 | - ($nb_variables == 1) |
|
| 295 | - and isset($GLOBALS[$table]['charset']) |
|
| 296 | - ) |
|
| 297 | - ) { |
|
| 298 | - // Supprimer la table des globaleset de la base |
|
| 299 | - unset($GLOBALS[$table]); |
|
| 300 | - sql_drop_table("spip_$table"); |
|
| 301 | - // Supprimer le fichier cache |
|
| 302 | - include_spip('inc/flock'); |
|
| 303 | - $cache = cache_meta($table); |
|
| 304 | - supprimer_fichier($cache); |
|
| 286 | + // Supprimer si : |
|
| 287 | + // - la table est vide |
|
| 288 | + // - ou limitée à la variable charset |
|
| 289 | + // - ou qu'on force la suppression |
|
| 290 | + if ( |
|
| 291 | + $force |
|
| 292 | + or !$nb_variables |
|
| 293 | + or ( |
|
| 294 | + ($nb_variables == 1) |
|
| 295 | + and isset($GLOBALS[$table]['charset']) |
|
| 296 | + ) |
|
| 297 | + ) { |
|
| 298 | + // Supprimer la table des globaleset de la base |
|
| 299 | + unset($GLOBALS[$table]); |
|
| 300 | + sql_drop_table("spip_$table"); |
|
| 301 | + // Supprimer le fichier cache |
|
| 302 | + include_spip('inc/flock'); |
|
| 303 | + $cache = cache_meta($table); |
|
| 304 | + supprimer_fichier($cache); |
|
| 305 | 305 | |
| 306 | - // vider le cache des tables |
|
| 307 | - $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 308 | - $trouver_table(''); |
|
| 306 | + // vider le cache des tables |
|
| 307 | + $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 308 | + $trouver_table(''); |
|
| 309 | 309 | |
| 310 | - // Supprimer la table de la liste des tables de configuration autres que spip_meta |
|
| 311 | - if (isset($GLOBALS['meta']['tables_config'])) { |
|
| 312 | - $liste = unserialize($GLOBALS['meta']['tables_config']); |
|
| 313 | - $cle = array_search($table, $liste); |
|
| 314 | - if ($cle !== false) { |
|
| 315 | - unset($liste[$cle]); |
|
| 316 | - if ($liste) { |
|
| 317 | - ecrire_meta('tables_config', serialize($liste)); |
|
| 318 | - } else { |
|
| 319 | - effacer_meta('tables_config'); |
|
| 320 | - } |
|
| 321 | - } |
|
| 322 | - } |
|
| 323 | - } |
|
| 324 | - } |
|
| 310 | + // Supprimer la table de la liste des tables de configuration autres que spip_meta |
|
| 311 | + if (isset($GLOBALS['meta']['tables_config'])) { |
|
| 312 | + $liste = unserialize($GLOBALS['meta']['tables_config']); |
|
| 313 | + $cle = array_search($table, $liste); |
|
| 314 | + if ($cle !== false) { |
|
| 315 | + unset($liste[$cle]); |
|
| 316 | + if ($liste) { |
|
| 317 | + ecrire_meta('tables_config', serialize($liste)); |
|
| 318 | + } else { |
|
| 319 | + effacer_meta('tables_config'); |
|
| 320 | + } |
|
| 321 | + } |
|
| 322 | + } |
|
| 323 | + } |
|
| 324 | + } |
|
| 325 | 325 | } |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | **/ |
| 18 | 18 | |
| 19 | 19 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 20 | - return; |
|
| 20 | + return; |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /** |
@@ -31,46 +31,46 @@ discard block |
||
| 31 | 31 | * Mot de passe |
| 32 | 32 | **/ |
| 33 | 33 | function creer_pass_aleatoire($longueur = 16, $sel = '') { |
| 34 | - $seed = (int)round(((float)microtime() + 1) * time()); |
|
| 35 | - |
|
| 36 | - mt_srand($seed); |
|
| 37 | - $s = ''; |
|
| 38 | - $pass = ''; |
|
| 39 | - for ($i = 0; $i < $longueur; $i++) { |
|
| 40 | - if (!$s) { |
|
| 41 | - $s = random_int(0, mt_getrandmax()); |
|
| 42 | - if (!$s) { |
|
| 43 | - $s = random_int(0, mt_getrandmax()); |
|
| 44 | - } |
|
| 45 | - $s = substr(md5(uniqid($s) . $sel), 0, 16); |
|
| 46 | - } |
|
| 47 | - $r = unpack('Cr', pack('H2', $s . $s)); |
|
| 48 | - $x = $r['r'] & 63; |
|
| 49 | - if ($x < 10) { |
|
| 50 | - $x = chr($x + 48); |
|
| 51 | - } else { |
|
| 52 | - if ($x < 36) { |
|
| 53 | - $x = chr($x + 55); |
|
| 54 | - } else { |
|
| 55 | - if ($x < 62) { |
|
| 56 | - $x = chr($x + 61); |
|
| 57 | - } else { |
|
| 58 | - if ($x == 63) { |
|
| 59 | - $x = '/'; |
|
| 60 | - } else { |
|
| 61 | - $x = '.'; |
|
| 62 | - } |
|
| 63 | - } |
|
| 64 | - } |
|
| 65 | - } |
|
| 66 | - $pass .= $x; |
|
| 67 | - $s = substr($s, 2); |
|
| 68 | - } |
|
| 69 | - $pass = preg_replace('@[./]@', 'a', $pass); |
|
| 70 | - $pass = preg_replace('@[I1l]@', 'L', $pass); |
|
| 71 | - $pass = preg_replace('@[0O]@', 'o', $pass); |
|
| 72 | - |
|
| 73 | - return $pass; |
|
| 34 | + $seed = (int)round(((float)microtime() + 1) * time()); |
|
| 35 | + |
|
| 36 | + mt_srand($seed); |
|
| 37 | + $s = ''; |
|
| 38 | + $pass = ''; |
|
| 39 | + for ($i = 0; $i < $longueur; $i++) { |
|
| 40 | + if (!$s) { |
|
| 41 | + $s = random_int(0, mt_getrandmax()); |
|
| 42 | + if (!$s) { |
|
| 43 | + $s = random_int(0, mt_getrandmax()); |
|
| 44 | + } |
|
| 45 | + $s = substr(md5(uniqid($s) . $sel), 0, 16); |
|
| 46 | + } |
|
| 47 | + $r = unpack('Cr', pack('H2', $s . $s)); |
|
| 48 | + $x = $r['r'] & 63; |
|
| 49 | + if ($x < 10) { |
|
| 50 | + $x = chr($x + 48); |
|
| 51 | + } else { |
|
| 52 | + if ($x < 36) { |
|
| 53 | + $x = chr($x + 55); |
|
| 54 | + } else { |
|
| 55 | + if ($x < 62) { |
|
| 56 | + $x = chr($x + 61); |
|
| 57 | + } else { |
|
| 58 | + if ($x == 63) { |
|
| 59 | + $x = '/'; |
|
| 60 | + } else { |
|
| 61 | + $x = '.'; |
|
| 62 | + } |
|
| 63 | + } |
|
| 64 | + } |
|
| 65 | + } |
|
| 66 | + $pass .= $x; |
|
| 67 | + $s = substr($s, 2); |
|
| 68 | + } |
|
| 69 | + $pass = preg_replace('@[./]@', 'a', $pass); |
|
| 70 | + $pass = preg_replace('@[I1l]@', 'L', $pass); |
|
| 71 | + $pass = preg_replace('@[0O]@', 'o', $pass); |
|
| 72 | + |
|
| 73 | + return $pass; |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | /** |
@@ -79,20 +79,20 @@ discard block |
||
| 79 | 79 | * @return string Identifiant |
| 80 | 80 | */ |
| 81 | 81 | function creer_uniqid() { |
| 82 | - static $seeded; |
|
| 82 | + static $seeded; |
|
| 83 | 83 | |
| 84 | - if (!$seeded) { |
|
| 85 | - $seed = (int)round(((float)microtime() + 1) * time()); |
|
| 86 | - mt_srand($seed); |
|
| 87 | - $seeded = true; |
|
| 88 | - } |
|
| 84 | + if (!$seeded) { |
|
| 85 | + $seed = (int)round(((float)microtime() + 1) * time()); |
|
| 86 | + mt_srand($seed); |
|
| 87 | + $seeded = true; |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - $s = random_int(0, mt_getrandmax()); |
|
| 91 | - if (!$s) { |
|
| 92 | - $s = random_int(0, mt_getrandmax()); |
|
| 93 | - } |
|
| 90 | + $s = random_int(0, mt_getrandmax()); |
|
| 91 | + if (!$s) { |
|
| 92 | + $s = random_int(0, mt_getrandmax()); |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - return uniqid($s, 1); |
|
| 95 | + return uniqid($s, 1); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
@@ -106,42 +106,42 @@ discard block |
||
| 106 | 106 | * @return string Retourne l'alea éphemère actuel au passage |
| 107 | 107 | */ |
| 108 | 108 | function charger_aleas() { |
| 109 | - if (!isset($GLOBALS['meta']['alea_ephemere'])) { |
|
| 110 | - include_spip('base/abstract_sql'); |
|
| 111 | - $aleas = sql_allfetsel( |
|
| 112 | - ['nom', 'valeur'], |
|
| 113 | - 'spip_meta', |
|
| 114 | - sql_in('nom', ['alea_ephemere', 'alea_ephemere_ancien']), |
|
| 115 | - '', |
|
| 116 | - '', |
|
| 117 | - '', |
|
| 118 | - '', |
|
| 119 | - '', |
|
| 120 | - 'continue' |
|
| 121 | - ); |
|
| 122 | - if ($aleas) { |
|
| 123 | - foreach ($aleas as $a) { |
|
| 124 | - $GLOBALS['meta'][$a['nom']] = $a['valeur']; |
|
| 125 | - } |
|
| 126 | - return $GLOBALS['meta']['alea_ephemere']; |
|
| 127 | - } else { |
|
| 128 | - spip_log('aleas indisponibles', 'session'); |
|
| 129 | - return ''; |
|
| 130 | - } |
|
| 131 | - } |
|
| 132 | - return $GLOBALS['meta']['alea_ephemere']; |
|
| 109 | + if (!isset($GLOBALS['meta']['alea_ephemere'])) { |
|
| 110 | + include_spip('base/abstract_sql'); |
|
| 111 | + $aleas = sql_allfetsel( |
|
| 112 | + ['nom', 'valeur'], |
|
| 113 | + 'spip_meta', |
|
| 114 | + sql_in('nom', ['alea_ephemere', 'alea_ephemere_ancien']), |
|
| 115 | + '', |
|
| 116 | + '', |
|
| 117 | + '', |
|
| 118 | + '', |
|
| 119 | + '', |
|
| 120 | + 'continue' |
|
| 121 | + ); |
|
| 122 | + if ($aleas) { |
|
| 123 | + foreach ($aleas as $a) { |
|
| 124 | + $GLOBALS['meta'][$a['nom']] = $a['valeur']; |
|
| 125 | + } |
|
| 126 | + return $GLOBALS['meta']['alea_ephemere']; |
|
| 127 | + } else { |
|
| 128 | + spip_log('aleas indisponibles', 'session'); |
|
| 129 | + return ''; |
|
| 130 | + } |
|
| 131 | + } |
|
| 132 | + return $GLOBALS['meta']['alea_ephemere']; |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | /** |
| 136 | 136 | * Renouveller l'alea (utilisé pour sécuriser les scripts du répertoire `action/`) |
| 137 | 137 | **/ |
| 138 | 138 | function renouvelle_alea() { |
| 139 | - charger_aleas(); |
|
| 140 | - ecrire_meta('alea_ephemere_ancien', @$GLOBALS['meta']['alea_ephemere'], 'non'); |
|
| 141 | - $GLOBALS['meta']['alea_ephemere'] = md5(creer_uniqid()); |
|
| 142 | - ecrire_meta('alea_ephemere', $GLOBALS['meta']['alea_ephemere'], 'non'); |
|
| 143 | - ecrire_meta('alea_ephemere_date', time(), 'non'); |
|
| 144 | - spip_log("renouvellement de l'alea_ephemere"); |
|
| 139 | + charger_aleas(); |
|
| 140 | + ecrire_meta('alea_ephemere_ancien', @$GLOBALS['meta']['alea_ephemere'], 'non'); |
|
| 141 | + $GLOBALS['meta']['alea_ephemere'] = md5(creer_uniqid()); |
|
| 142 | + ecrire_meta('alea_ephemere', $GLOBALS['meta']['alea_ephemere'], 'non'); |
|
| 143 | + ecrire_meta('alea_ephemere_date', time(), 'non'); |
|
| 144 | + spip_log("renouvellement de l'alea_ephemere"); |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | |
@@ -161,21 +161,21 @@ discard block |
||
| 161 | 161 | * Clé de sécurité. |
| 162 | 162 | **/ |
| 163 | 163 | function low_sec($id_auteur) { |
| 164 | - // Pas d'id_auteur : low_sec |
|
| 165 | - if (!$id_auteur = intval($id_auteur)) { |
|
| 166 | - include_spip('inc/config'); |
|
| 167 | - if (!$low_sec = lire_config('low_sec')) { |
|
| 168 | - ecrire_meta('low_sec', $low_sec = creer_pass_aleatoire()); |
|
| 169 | - } |
|
| 170 | - } else { |
|
| 171 | - $low_sec = sql_getfetsel('low_sec', 'spip_auteurs', 'id_auteur = ' . intval($id_auteur)); |
|
| 172 | - if (!$low_sec) { |
|
| 173 | - $low_sec = creer_pass_aleatoire(); |
|
| 174 | - sql_updateq('spip_auteurs', ['low_sec' => $low_sec], 'id_auteur = ' . intval($id_auteur)); |
|
| 175 | - } |
|
| 176 | - } |
|
| 177 | - |
|
| 178 | - return $low_sec; |
|
| 164 | + // Pas d'id_auteur : low_sec |
|
| 165 | + if (!$id_auteur = intval($id_auteur)) { |
|
| 166 | + include_spip('inc/config'); |
|
| 167 | + if (!$low_sec = lire_config('low_sec')) { |
|
| 168 | + ecrire_meta('low_sec', $low_sec = creer_pass_aleatoire()); |
|
| 169 | + } |
|
| 170 | + } else { |
|
| 171 | + $low_sec = sql_getfetsel('low_sec', 'spip_auteurs', 'id_auteur = ' . intval($id_auteur)); |
|
| 172 | + if (!$low_sec) { |
|
| 173 | + $low_sec = creer_pass_aleatoire(); |
|
| 174 | + sql_updateq('spip_auteurs', ['low_sec' => $low_sec], 'id_auteur = ' . intval($id_auteur)); |
|
| 175 | + } |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + return $low_sec; |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -191,27 +191,27 @@ discard block |
||
| 191 | 191 | * @return string |
| 192 | 192 | */ |
| 193 | 193 | function param_low_sec($op, $args = [], $lang = '', $mime = 'rss') { |
| 194 | - $a = $b = ''; |
|
| 195 | - foreach ($args as $val => $var) { |
|
| 196 | - if ($var) { |
|
| 197 | - if ($val <> 'statut') { |
|
| 198 | - $a .= ':' . $val . '-' . $var; |
|
| 199 | - } |
|
| 200 | - $b .= $val . '=' . $var . '&'; |
|
| 201 | - } |
|
| 202 | - } |
|
| 203 | - $a = substr($a, 1); |
|
| 204 | - $id = intval(@$GLOBALS['connect_id_auteur']); |
|
| 205 | - |
|
| 206 | - return $b |
|
| 207 | - . 'op=' |
|
| 208 | - . $op |
|
| 209 | - . '&id=' |
|
| 210 | - . $id |
|
| 211 | - . '&cle=' |
|
| 212 | - . afficher_low_sec($id, "$mime $op $a") |
|
| 213 | - . (!$a ? '' : "&args=$a") |
|
| 214 | - . (!$lang ? '' : "&lang=$lang"); |
|
| 194 | + $a = $b = ''; |
|
| 195 | + foreach ($args as $val => $var) { |
|
| 196 | + if ($var) { |
|
| 197 | + if ($val <> 'statut') { |
|
| 198 | + $a .= ':' . $val . '-' . $var; |
|
| 199 | + } |
|
| 200 | + $b .= $val . '=' . $var . '&'; |
|
| 201 | + } |
|
| 202 | + } |
|
| 203 | + $a = substr($a, 1); |
|
| 204 | + $id = intval(@$GLOBALS['connect_id_auteur']); |
|
| 205 | + |
|
| 206 | + return $b |
|
| 207 | + . 'op=' |
|
| 208 | + . $op |
|
| 209 | + . '&id=' |
|
| 210 | + . $id |
|
| 211 | + . '&cle=' |
|
| 212 | + . afficher_low_sec($id, "$mime $op $a") |
|
| 213 | + . (!$a ? '' : "&args=$a") |
|
| 214 | + . (!$lang ? '' : "&lang=$lang"); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | /** |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | * Clé |
| 228 | 228 | **/ |
| 229 | 229 | function afficher_low_sec($id_auteur, $action = '') { |
| 230 | - return substr(md5($action . low_sec($id_auteur)), 0, 8); |
|
| 230 | + return substr(md5($action . low_sec($id_auteur)), 0, 8); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | * true si les clés corresponde, false sinon |
| 246 | 246 | **/ |
| 247 | 247 | function verifier_low_sec($id_auteur, $cle, $action = '') { |
| 248 | - return ($cle == afficher_low_sec($id_auteur, $action)); |
|
| 248 | + return ($cle == afficher_low_sec($id_auteur, $action)); |
|
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | /** |
@@ -255,10 +255,10 @@ discard block |
||
| 255 | 255 | * Identifiant de l'auteur |
| 256 | 256 | **/ |
| 257 | 257 | function effacer_low_sec($id_auteur) { |
| 258 | - if (!$id_auteur = intval($id_auteur)) { |
|
| 259 | - return; |
|
| 260 | - } // jamais trop prudent ;) |
|
| 261 | - sql_updateq('spip_auteurs', ['low_sec' => ''], 'id_auteur = ' . intval($id_auteur)); |
|
| 258 | + if (!$id_auteur = intval($id_auteur)) { |
|
| 259 | + return; |
|
| 260 | + } // jamais trop prudent ;) |
|
| 261 | + sql_updateq('spip_auteurs', ['low_sec' => ''], 'id_auteur = ' . intval($id_auteur)); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | /** |
@@ -267,14 +267,14 @@ discard block |
||
| 267 | 267 | * @return void|bool |
| 268 | 268 | */ |
| 269 | 269 | function initialiser_sel() { |
| 270 | - if (!isset($GLOBALS['htsalt'])) { |
|
| 271 | - if (CRYPT_MD5) { |
|
| 272 | - $GLOBALS['htsalt'] = '$1$' . creer_pass_aleatoire(); |
|
| 273 | - } else { |
|
| 274 | - $GLOBALS['htsalt'] = ''; |
|
| 275 | - } |
|
| 276 | - } |
|
| 277 | - return $GLOBALS['htsalt']; |
|
| 270 | + if (!isset($GLOBALS['htsalt'])) { |
|
| 271 | + if (CRYPT_MD5) { |
|
| 272 | + $GLOBALS['htsalt'] = '$1$' . creer_pass_aleatoire(); |
|
| 273 | + } else { |
|
| 274 | + $GLOBALS['htsalt'] = ''; |
|
| 275 | + } |
|
| 276 | + } |
|
| 277 | + return $GLOBALS['htsalt']; |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | /** |
@@ -291,32 +291,32 @@ discard block |
||
| 291 | 291 | * - void sinon. |
| 292 | 292 | **/ |
| 293 | 293 | function ecrire_acces() { |
| 294 | - $htaccess = _DIR_RESTREINT . _ACCESS_FILE_NAME; |
|
| 295 | - $htpasswd = _DIR_TMP . _AUTH_USER_FILE; |
|
| 296 | - |
|
| 297 | - // Cette variable de configuration peut etre posee par un plugin |
|
| 298 | - // par exemple acces_restreint ; |
|
| 299 | - // si .htaccess existe, outrepasser spip_meta |
|
| 300 | - if ( |
|
| 301 | - (!isset($GLOBALS['meta']['creer_htpasswd']) |
|
| 302 | - or ($GLOBALS['meta']['creer_htpasswd'] != 'oui')) |
|
| 303 | - and !@file_exists($htaccess) |
|
| 304 | - ) { |
|
| 305 | - spip_unlink($htpasswd); |
|
| 306 | - spip_unlink($htpasswd . '-admin'); |
|
| 307 | - return; |
|
| 308 | - } |
|
| 309 | - |
|
| 310 | - # remarque : ici on laisse passer les "nouveau" de maniere a leur permettre |
|
| 311 | - # de devenir redacteur le cas echeant (auth http)... a nettoyer |
|
| 312 | - // attention, il faut au prealable se connecter a la base (necessaire car utilise par install) |
|
| 313 | - // TODO: factoriser avec auth/spip qui fait deja ce job et generaliser le test spip_connect_ldap() |
|
| 314 | - |
|
| 315 | - if (spip_connect_ldap()) { |
|
| 316 | - return; |
|
| 317 | - } |
|
| 318 | - |
|
| 319 | - generer_htpasswd_files($htpasswd, "$htpasswd-admin"); |
|
| 294 | + $htaccess = _DIR_RESTREINT . _ACCESS_FILE_NAME; |
|
| 295 | + $htpasswd = _DIR_TMP . _AUTH_USER_FILE; |
|
| 296 | + |
|
| 297 | + // Cette variable de configuration peut etre posee par un plugin |
|
| 298 | + // par exemple acces_restreint ; |
|
| 299 | + // si .htaccess existe, outrepasser spip_meta |
|
| 300 | + if ( |
|
| 301 | + (!isset($GLOBALS['meta']['creer_htpasswd']) |
|
| 302 | + or ($GLOBALS['meta']['creer_htpasswd'] != 'oui')) |
|
| 303 | + and !@file_exists($htaccess) |
|
| 304 | + ) { |
|
| 305 | + spip_unlink($htpasswd); |
|
| 306 | + spip_unlink($htpasswd . '-admin'); |
|
| 307 | + return; |
|
| 308 | + } |
|
| 309 | + |
|
| 310 | + # remarque : ici on laisse passer les "nouveau" de maniere a leur permettre |
|
| 311 | + # de devenir redacteur le cas echeant (auth http)... a nettoyer |
|
| 312 | + // attention, il faut au prealable se connecter a la base (necessaire car utilise par install) |
|
| 313 | + // TODO: factoriser avec auth/spip qui fait deja ce job et generaliser le test spip_connect_ldap() |
|
| 314 | + |
|
| 315 | + if (spip_connect_ldap()) { |
|
| 316 | + return; |
|
| 317 | + } |
|
| 318 | + |
|
| 319 | + generer_htpasswd_files($htpasswd, "$htpasswd-admin"); |
|
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | /** |
@@ -325,29 +325,29 @@ discard block |
||
| 325 | 325 | * @param $htpasswd_admin |
| 326 | 326 | */ |
| 327 | 327 | function generer_htpasswd_files($htpasswd, $htpasswd_admin) { |
| 328 | - if ($generer_htpasswd = charger_fonction('generer_htpasswd_files', 'inc', true)) { |
|
| 329 | - $generer_htpasswd($htpasswd, $htpasswd_admin); |
|
| 330 | - } |
|
| 331 | - |
|
| 332 | - $pwd_all = ''; // login:htpass pour tous |
|
| 333 | - $pwd_admin = ''; // login:htpass pour les admins |
|
| 334 | - |
|
| 335 | - $res = sql_select('login, htpass, statut', 'spip_auteurs', "htpass!='' AND login!='' AND " . sql_in('statut', ['1comite', '0minirezo', 'nouveau'])); |
|
| 336 | - while ($row = sql_fetch($res)) { |
|
| 337 | - if (strlen($row['login']) and strlen($row['htpass'])) { |
|
| 338 | - $ligne = $row['login'] . ':' . $row['htpass'] . "\n"; |
|
| 339 | - $pwd_all .= $ligne; |
|
| 340 | - if ($row['statut'] == '0minirezo') { |
|
| 341 | - $pwd_admin .= $ligne; |
|
| 342 | - } |
|
| 343 | - } |
|
| 344 | - } |
|
| 345 | - |
|
| 346 | - if ($pwd_all) { |
|
| 347 | - ecrire_fichier($htpasswd, $pwd_all); |
|
| 348 | - ecrire_fichier($htpasswd_admin, $pwd_admin); |
|
| 349 | - spip_log("Ecriture de $htpasswd et $htpasswd_admin", 'htpass'); |
|
| 350 | - } |
|
| 328 | + if ($generer_htpasswd = charger_fonction('generer_htpasswd_files', 'inc', true)) { |
|
| 329 | + $generer_htpasswd($htpasswd, $htpasswd_admin); |
|
| 330 | + } |
|
| 331 | + |
|
| 332 | + $pwd_all = ''; // login:htpass pour tous |
|
| 333 | + $pwd_admin = ''; // login:htpass pour les admins |
|
| 334 | + |
|
| 335 | + $res = sql_select('login, htpass, statut', 'spip_auteurs', "htpass!='' AND login!='' AND " . sql_in('statut', ['1comite', '0minirezo', 'nouveau'])); |
|
| 336 | + while ($row = sql_fetch($res)) { |
|
| 337 | + if (strlen($row['login']) and strlen($row['htpass'])) { |
|
| 338 | + $ligne = $row['login'] . ':' . $row['htpass'] . "\n"; |
|
| 339 | + $pwd_all .= $ligne; |
|
| 340 | + if ($row['statut'] == '0minirezo') { |
|
| 341 | + $pwd_admin .= $ligne; |
|
| 342 | + } |
|
| 343 | + } |
|
| 344 | + } |
|
| 345 | + |
|
| 346 | + if ($pwd_all) { |
|
| 347 | + ecrire_fichier($htpasswd, $pwd_all); |
|
| 348 | + ecrire_fichier($htpasswd_admin, $pwd_admin); |
|
| 349 | + spip_log("Ecriture de $htpasswd et $htpasswd_admin", 'htpass'); |
|
| 350 | + } |
|
| 351 | 351 | } |
| 352 | 352 | |
| 353 | 353 | /** |
@@ -361,13 +361,13 @@ discard block |
||
| 361 | 361 | * La chaîne hachée si fonction crypt présente, rien sinon. |
| 362 | 362 | */ |
| 363 | 363 | function generer_htpass($pass) { |
| 364 | - if ($generer_htpass = charger_fonction('generer_htpass', 'inc', true)) { |
|
| 365 | - return $generer_htpass($pass); |
|
| 366 | - } |
|
| 367 | - elseif (function_exists('crypt')) { |
|
| 368 | - return crypt($pass, initialiser_sel()); |
|
| 369 | - } |
|
| 370 | - return ''; |
|
| 364 | + if ($generer_htpass = charger_fonction('generer_htpass', 'inc', true)) { |
|
| 365 | + return $generer_htpass($pass); |
|
| 366 | + } |
|
| 367 | + elseif (function_exists('crypt')) { |
|
| 368 | + return crypt($pass, initialiser_sel()); |
|
| 369 | + } |
|
| 370 | + return ''; |
|
| 371 | 371 | } |
| 372 | 372 | |
| 373 | 373 | /** |
@@ -380,14 +380,14 @@ discard block |
||
| 380 | 380 | * @return boolean |
| 381 | 381 | */ |
| 382 | 382 | function verifier_htaccess($rep, $force = false) { |
| 383 | - $htaccess = rtrim($rep, '/') . '/' . _ACCESS_FILE_NAME; |
|
| 384 | - if (((@file_exists($htaccess)) or defined('_TEST_DIRS')) and !$force) { |
|
| 385 | - return true; |
|
| 386 | - } |
|
| 387 | - |
|
| 388 | - // directive deny compatible Apache 2.0+ |
|
| 389 | - $deny = |
|
| 390 | - '# Deny all requests from Apache 2.4+. |
|
| 383 | + $htaccess = rtrim($rep, '/') . '/' . _ACCESS_FILE_NAME; |
|
| 384 | + if (((@file_exists($htaccess)) or defined('_TEST_DIRS')) and !$force) { |
|
| 385 | + return true; |
|
| 386 | + } |
|
| 387 | + |
|
| 388 | + // directive deny compatible Apache 2.0+ |
|
| 389 | + $deny = |
|
| 390 | + '# Deny all requests from Apache 2.4+. |
|
| 391 | 391 | <IfModule mod_authz_core.c> |
| 392 | 392 | Require all denied |
| 393 | 393 | </IfModule> |
@@ -396,32 +396,32 @@ discard block |
||
| 396 | 396 | Deny from all |
| 397 | 397 | </IfModule> |
| 398 | 398 | '; |
| 399 | - // support des vieilles versions Apache 1.x mais uniquement si elles l'annoncent (pas en mode PROD) |
|
| 400 | - if ( |
|
| 401 | - function_exists('apache_get_version') |
|
| 402 | - and $v = apache_get_version() |
|
| 403 | - and strncmp($v, 'Apache/1.', 9) == 0 |
|
| 404 | - ) { |
|
| 405 | - $deny = "deny from all\n"; |
|
| 406 | - } |
|
| 407 | - |
|
| 408 | - if ($ht = @fopen($htaccess, 'w')) { |
|
| 409 | - fputs($ht, $deny); |
|
| 410 | - fclose($ht); |
|
| 411 | - @chmod($htaccess, _SPIP_CHMOD & 0666); |
|
| 412 | - $t = rtrim($rep, '/') . '/.ok'; |
|
| 413 | - if ($ht = @fopen($t, 'w')) { |
|
| 414 | - @fclose($ht); |
|
| 415 | - include_spip('inc/distant'); |
|
| 416 | - $t = substr($t, strlen(_DIR_RACINE)); |
|
| 417 | - $t = url_de_base() . $t; |
|
| 418 | - $ht = recuperer_url($t, ['methode' => 'HEAD', 'taille_max' => 0, 'follow_location' => false]); |
|
| 419 | - $ht = ($ht['status'] ?? null) === 403; |
|
| 420 | - } |
|
| 421 | - } |
|
| 422 | - spip_log("Creation de $htaccess " . ($ht ? ' reussie' : ' manquee')); |
|
| 423 | - |
|
| 424 | - return $ht; |
|
| 399 | + // support des vieilles versions Apache 1.x mais uniquement si elles l'annoncent (pas en mode PROD) |
|
| 400 | + if ( |
|
| 401 | + function_exists('apache_get_version') |
|
| 402 | + and $v = apache_get_version() |
|
| 403 | + and strncmp($v, 'Apache/1.', 9) == 0 |
|
| 404 | + ) { |
|
| 405 | + $deny = "deny from all\n"; |
|
| 406 | + } |
|
| 407 | + |
|
| 408 | + if ($ht = @fopen($htaccess, 'w')) { |
|
| 409 | + fputs($ht, $deny); |
|
| 410 | + fclose($ht); |
|
| 411 | + @chmod($htaccess, _SPIP_CHMOD & 0666); |
|
| 412 | + $t = rtrim($rep, '/') . '/.ok'; |
|
| 413 | + if ($ht = @fopen($t, 'w')) { |
|
| 414 | + @fclose($ht); |
|
| 415 | + include_spip('inc/distant'); |
|
| 416 | + $t = substr($t, strlen(_DIR_RACINE)); |
|
| 417 | + $t = url_de_base() . $t; |
|
| 418 | + $ht = recuperer_url($t, ['methode' => 'HEAD', 'taille_max' => 0, 'follow_location' => false]); |
|
| 419 | + $ht = ($ht['status'] ?? null) === 403; |
|
| 420 | + } |
|
| 421 | + } |
|
| 422 | + spip_log("Creation de $htaccess " . ($ht ? ' reussie' : ' manquee')); |
|
| 423 | + |
|
| 424 | + return $ht; |
|
| 425 | 425 | } |
| 426 | 426 | |
| 427 | 427 | /** |
@@ -439,20 +439,20 @@ discard block |
||
| 439 | 439 | * Valeur de la configuration `creer_htaccess` |
| 440 | 440 | */ |
| 441 | 441 | function gerer_htaccess() { |
| 442 | - // Cette variable de configuration peut etre posee par un plugin |
|
| 443 | - // par exemple acces_restreint |
|
| 444 | - $f = (isset($GLOBALS['meta']['creer_htaccess']) and ($GLOBALS['meta']['creer_htaccess'] === 'oui')); |
|
| 445 | - $dirs = sql_allfetsel('extension', 'spip_types_documents'); |
|
| 446 | - $dirs[] = ['extension' => 'distant']; |
|
| 447 | - foreach ($dirs as $e) { |
|
| 448 | - if (is_dir($dir = _DIR_IMG . $e['extension'])) { |
|
| 449 | - if ($f) { |
|
| 450 | - verifier_htaccess($dir); |
|
| 451 | - } else { |
|
| 452 | - spip_unlink($dir . '/' . _ACCESS_FILE_NAME); |
|
| 453 | - } |
|
| 454 | - } |
|
| 455 | - } |
|
| 456 | - |
|
| 457 | - return $GLOBALS['meta']['creer_htaccess'] ?? ''; |
|
| 442 | + // Cette variable de configuration peut etre posee par un plugin |
|
| 443 | + // par exemple acces_restreint |
|
| 444 | + $f = (isset($GLOBALS['meta']['creer_htaccess']) and ($GLOBALS['meta']['creer_htaccess'] === 'oui')); |
|
| 445 | + $dirs = sql_allfetsel('extension', 'spip_types_documents'); |
|
| 446 | + $dirs[] = ['extension' => 'distant']; |
|
| 447 | + foreach ($dirs as $e) { |
|
| 448 | + if (is_dir($dir = _DIR_IMG . $e['extension'])) { |
|
| 449 | + if ($f) { |
|
| 450 | + verifier_htaccess($dir); |
|
| 451 | + } else { |
|
| 452 | + spip_unlink($dir . '/' . _ACCESS_FILE_NAME); |
|
| 453 | + } |
|
| 454 | + } |
|
| 455 | + } |
|
| 456 | + |
|
| 457 | + return $GLOBALS['meta']['creer_htaccess'] ?? ''; |
|
| 458 | 458 | } |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * Mot de passe |
| 32 | 32 | **/ |
| 33 | 33 | function creer_pass_aleatoire($longueur = 16, $sel = '') { |
| 34 | - $seed = (int)round(((float)microtime() + 1) * time()); |
|
| 34 | + $seed = (int) round(((float) microtime() + 1) * time()); |
|
| 35 | 35 | |
| 36 | 36 | mt_srand($seed); |
| 37 | 37 | $s = ''; |
@@ -42,9 +42,9 @@ discard block |
||
| 42 | 42 | if (!$s) { |
| 43 | 43 | $s = random_int(0, mt_getrandmax()); |
| 44 | 44 | } |
| 45 | - $s = substr(md5(uniqid($s) . $sel), 0, 16); |
|
| 45 | + $s = substr(md5(uniqid($s).$sel), 0, 16); |
|
| 46 | 46 | } |
| 47 | - $r = unpack('Cr', pack('H2', $s . $s)); |
|
| 47 | + $r = unpack('Cr', pack('H2', $s.$s)); |
|
| 48 | 48 | $x = $r['r'] & 63; |
| 49 | 49 | if ($x < 10) { |
| 50 | 50 | $x = chr($x + 48); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | static $seeded; |
| 83 | 83 | |
| 84 | 84 | if (!$seeded) { |
| 85 | - $seed = (int)round(((float)microtime() + 1) * time()); |
|
| 85 | + $seed = (int) round(((float) microtime() + 1) * time()); |
|
| 86 | 86 | mt_srand($seed); |
| 87 | 87 | $seeded = true; |
| 88 | 88 | } |
@@ -168,10 +168,10 @@ discard block |
||
| 168 | 168 | ecrire_meta('low_sec', $low_sec = creer_pass_aleatoire()); |
| 169 | 169 | } |
| 170 | 170 | } else { |
| 171 | - $low_sec = sql_getfetsel('low_sec', 'spip_auteurs', 'id_auteur = ' . intval($id_auteur)); |
|
| 171 | + $low_sec = sql_getfetsel('low_sec', 'spip_auteurs', 'id_auteur = '.intval($id_auteur)); |
|
| 172 | 172 | if (!$low_sec) { |
| 173 | 173 | $low_sec = creer_pass_aleatoire(); |
| 174 | - sql_updateq('spip_auteurs', ['low_sec' => $low_sec], 'id_auteur = ' . intval($id_auteur)); |
|
| 174 | + sql_updateq('spip_auteurs', ['low_sec' => $low_sec], 'id_auteur = '.intval($id_auteur)); |
|
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | 177 | |
@@ -195,9 +195,9 @@ discard block |
||
| 195 | 195 | foreach ($args as $val => $var) { |
| 196 | 196 | if ($var) { |
| 197 | 197 | if ($val <> 'statut') { |
| 198 | - $a .= ':' . $val . '-' . $var; |
|
| 198 | + $a .= ':'.$val.'-'.$var; |
|
| 199 | 199 | } |
| 200 | - $b .= $val . '=' . $var . '&'; |
|
| 200 | + $b .= $val.'='.$var.'&'; |
|
| 201 | 201 | } |
| 202 | 202 | } |
| 203 | 203 | $a = substr($a, 1); |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | * Clé |
| 228 | 228 | **/ |
| 229 | 229 | function afficher_low_sec($id_auteur, $action = '') { |
| 230 | - return substr(md5($action . low_sec($id_auteur)), 0, 8); |
|
| 230 | + return substr(md5($action.low_sec($id_auteur)), 0, 8); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | if (!$id_auteur = intval($id_auteur)) { |
| 259 | 259 | return; |
| 260 | 260 | } // jamais trop prudent ;) |
| 261 | - sql_updateq('spip_auteurs', ['low_sec' => ''], 'id_auteur = ' . intval($id_auteur)); |
|
| 261 | + sql_updateq('spip_auteurs', ['low_sec' => ''], 'id_auteur = '.intval($id_auteur)); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | /** |
@@ -269,7 +269,7 @@ discard block |
||
| 269 | 269 | function initialiser_sel() { |
| 270 | 270 | if (!isset($GLOBALS['htsalt'])) { |
| 271 | 271 | if (CRYPT_MD5) { |
| 272 | - $GLOBALS['htsalt'] = '$1$' . creer_pass_aleatoire(); |
|
| 272 | + $GLOBALS['htsalt'] = '$1$'.creer_pass_aleatoire(); |
|
| 273 | 273 | } else { |
| 274 | 274 | $GLOBALS['htsalt'] = ''; |
| 275 | 275 | } |
@@ -291,8 +291,8 @@ discard block |
||
| 291 | 291 | * - void sinon. |
| 292 | 292 | **/ |
| 293 | 293 | function ecrire_acces() { |
| 294 | - $htaccess = _DIR_RESTREINT . _ACCESS_FILE_NAME; |
|
| 295 | - $htpasswd = _DIR_TMP . _AUTH_USER_FILE; |
|
| 294 | + $htaccess = _DIR_RESTREINT._ACCESS_FILE_NAME; |
|
| 295 | + $htpasswd = _DIR_TMP._AUTH_USER_FILE; |
|
| 296 | 296 | |
| 297 | 297 | // Cette variable de configuration peut etre posee par un plugin |
| 298 | 298 | // par exemple acces_restreint ; |
@@ -303,7 +303,7 @@ discard block |
||
| 303 | 303 | and !@file_exists($htaccess) |
| 304 | 304 | ) { |
| 305 | 305 | spip_unlink($htpasswd); |
| 306 | - spip_unlink($htpasswd . '-admin'); |
|
| 306 | + spip_unlink($htpasswd.'-admin'); |
|
| 307 | 307 | return; |
| 308 | 308 | } |
| 309 | 309 | |
@@ -332,10 +332,10 @@ discard block |
||
| 332 | 332 | $pwd_all = ''; // login:htpass pour tous |
| 333 | 333 | $pwd_admin = ''; // login:htpass pour les admins |
| 334 | 334 | |
| 335 | - $res = sql_select('login, htpass, statut', 'spip_auteurs', "htpass!='' AND login!='' AND " . sql_in('statut', ['1comite', '0minirezo', 'nouveau'])); |
|
| 335 | + $res = sql_select('login, htpass, statut', 'spip_auteurs', "htpass!='' AND login!='' AND ".sql_in('statut', ['1comite', '0minirezo', 'nouveau'])); |
|
| 336 | 336 | while ($row = sql_fetch($res)) { |
| 337 | 337 | if (strlen($row['login']) and strlen($row['htpass'])) { |
| 338 | - $ligne = $row['login'] . ':' . $row['htpass'] . "\n"; |
|
| 338 | + $ligne = $row['login'].':'.$row['htpass']."\n"; |
|
| 339 | 339 | $pwd_all .= $ligne; |
| 340 | 340 | if ($row['statut'] == '0minirezo') { |
| 341 | 341 | $pwd_admin .= $ligne; |
@@ -380,7 +380,7 @@ discard block |
||
| 380 | 380 | * @return boolean |
| 381 | 381 | */ |
| 382 | 382 | function verifier_htaccess($rep, $force = false) { |
| 383 | - $htaccess = rtrim($rep, '/') . '/' . _ACCESS_FILE_NAME; |
|
| 383 | + $htaccess = rtrim($rep, '/').'/'._ACCESS_FILE_NAME; |
|
| 384 | 384 | if (((@file_exists($htaccess)) or defined('_TEST_DIRS')) and !$force) { |
| 385 | 385 | return true; |
| 386 | 386 | } |
@@ -409,17 +409,17 @@ discard block |
||
| 409 | 409 | fputs($ht, $deny); |
| 410 | 410 | fclose($ht); |
| 411 | 411 | @chmod($htaccess, _SPIP_CHMOD & 0666); |
| 412 | - $t = rtrim($rep, '/') . '/.ok'; |
|
| 412 | + $t = rtrim($rep, '/').'/.ok'; |
|
| 413 | 413 | if ($ht = @fopen($t, 'w')) { |
| 414 | 414 | @fclose($ht); |
| 415 | 415 | include_spip('inc/distant'); |
| 416 | 416 | $t = substr($t, strlen(_DIR_RACINE)); |
| 417 | - $t = url_de_base() . $t; |
|
| 417 | + $t = url_de_base().$t; |
|
| 418 | 418 | $ht = recuperer_url($t, ['methode' => 'HEAD', 'taille_max' => 0, 'follow_location' => false]); |
| 419 | 419 | $ht = ($ht['status'] ?? null) === 403; |
| 420 | 420 | } |
| 421 | 421 | } |
| 422 | - spip_log("Creation de $htaccess " . ($ht ? ' reussie' : ' manquee')); |
|
| 422 | + spip_log("Creation de $htaccess ".($ht ? ' reussie' : ' manquee')); |
|
| 423 | 423 | |
| 424 | 424 | return $ht; |
| 425 | 425 | } |
@@ -445,11 +445,11 @@ discard block |
||
| 445 | 445 | $dirs = sql_allfetsel('extension', 'spip_types_documents'); |
| 446 | 446 | $dirs[] = ['extension' => 'distant']; |
| 447 | 447 | foreach ($dirs as $e) { |
| 448 | - if (is_dir($dir = _DIR_IMG . $e['extension'])) { |
|
| 448 | + if (is_dir($dir = _DIR_IMG.$e['extension'])) { |
|
| 449 | 449 | if ($f) { |
| 450 | 450 | verifier_htaccess($dir); |
| 451 | 451 | } else { |
| 452 | - spip_unlink($dir . '/' . _ACCESS_FILE_NAME); |
|
| 452 | + spip_unlink($dir.'/'._ACCESS_FILE_NAME); |
|
| 453 | 453 | } |
| 454 | 454 | } |
| 455 | 455 | } |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | **/ |
| 8 | 8 | |
| 9 | 9 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 10 | - return; |
|
| 10 | + return; |
|
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | /** |
@@ -28,51 +28,51 @@ discard block |
||
| 28 | 28 | * - afficher : tableau des objets à afficher (mais pas forcément sélectionnables) |
| 29 | 29 | */ |
| 30 | 30 | function selecteur_lister_objets($whitelist = [], $blacklist = []) { |
| 31 | - static $liste_selecteurs, $liste_parents; |
|
| 32 | - |
|
| 33 | - if (!$liste_selecteurs) { |
|
| 34 | - $liste_selecteurs = find_all_in_path('formulaires/selecteur/', 'hierarchie-[\w]+[.]html$'); |
|
| 35 | - } |
|
| 36 | - $objets_selectionner = []; |
|
| 37 | - foreach ($liste_selecteurs as $fichier => $chemin) { |
|
| 38 | - $objets_selectionner[] = preg_replace('/^hierarchie-([\w]+)[.]html$/', '$1', $fichier); |
|
| 39 | - } |
|
| 40 | - |
|
| 41 | - // S'il y a une whitelist on ne garde que ce qui est dedans |
|
| 42 | - if (!empty($whitelist)) { |
|
| 43 | - $whitelist = array_map('table_objet', $whitelist); |
|
| 44 | - $objets_selectionner = array_intersect($objets_selectionner, $whitelist); |
|
| 45 | - } |
|
| 46 | - // On supprime ce qui est dans la blacklist |
|
| 47 | - $blacklist = array_map('table_objet', $blacklist); |
|
| 48 | - // On enlève toujours la racine |
|
| 49 | - $blacklist[] = 'racine'; |
|
| 50 | - $objets_selectionner = array_diff($objets_selectionner, $blacklist); |
|
| 51 | - |
|
| 52 | - // Ensuite on cherche ce qu'on doit afficher : au moins ceux qu'on peut sélectionner |
|
| 53 | - $objets_afficher = $objets_selectionner; |
|
| 54 | - |
|
| 55 | - // Il faut alors chercher d'éventuels parents obligatoires en plus : |
|
| 56 | - // lister-trucs-bidules.html => on doit afficher des "trucs" pour trouver des "bidules" |
|
| 57 | - if (!$liste_parents) { |
|
| 58 | - $liste_parents = find_all_in_path('formulaires/selecteur/', 'lister-[\w]+-[\w]+[.]html$'); |
|
| 59 | - } |
|
| 60 | - foreach ($liste_parents as $fichier => $chemin) { |
|
| 61 | - preg_match('/^lister-([\w]+)-([\w]+)[.]html$/', $fichier, $captures); |
|
| 62 | - $parent = $captures[1]; |
|
| 63 | - $type = $captures[2]; |
|
| 64 | - // Si le type fait partie de ce qu'on doit afficher alors on ajoute aussi le parent à l'affichage |
|
| 65 | - if (in_array($type, $objets_afficher)) { |
|
| 66 | - $objets_afficher[] = $parent; |
|
| 67 | - } |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - $objets = [ |
|
| 71 | - 'selectionner' => array_unique($objets_selectionner), |
|
| 72 | - 'afficher' => array_unique($objets_afficher), |
|
| 73 | - ]; |
|
| 74 | - |
|
| 75 | - return $objets; |
|
| 31 | + static $liste_selecteurs, $liste_parents; |
|
| 32 | + |
|
| 33 | + if (!$liste_selecteurs) { |
|
| 34 | + $liste_selecteurs = find_all_in_path('formulaires/selecteur/', 'hierarchie-[\w]+[.]html$'); |
|
| 35 | + } |
|
| 36 | + $objets_selectionner = []; |
|
| 37 | + foreach ($liste_selecteurs as $fichier => $chemin) { |
|
| 38 | + $objets_selectionner[] = preg_replace('/^hierarchie-([\w]+)[.]html$/', '$1', $fichier); |
|
| 39 | + } |
|
| 40 | + |
|
| 41 | + // S'il y a une whitelist on ne garde que ce qui est dedans |
|
| 42 | + if (!empty($whitelist)) { |
|
| 43 | + $whitelist = array_map('table_objet', $whitelist); |
|
| 44 | + $objets_selectionner = array_intersect($objets_selectionner, $whitelist); |
|
| 45 | + } |
|
| 46 | + // On supprime ce qui est dans la blacklist |
|
| 47 | + $blacklist = array_map('table_objet', $blacklist); |
|
| 48 | + // On enlève toujours la racine |
|
| 49 | + $blacklist[] = 'racine'; |
|
| 50 | + $objets_selectionner = array_diff($objets_selectionner, $blacklist); |
|
| 51 | + |
|
| 52 | + // Ensuite on cherche ce qu'on doit afficher : au moins ceux qu'on peut sélectionner |
|
| 53 | + $objets_afficher = $objets_selectionner; |
|
| 54 | + |
|
| 55 | + // Il faut alors chercher d'éventuels parents obligatoires en plus : |
|
| 56 | + // lister-trucs-bidules.html => on doit afficher des "trucs" pour trouver des "bidules" |
|
| 57 | + if (!$liste_parents) { |
|
| 58 | + $liste_parents = find_all_in_path('formulaires/selecteur/', 'lister-[\w]+-[\w]+[.]html$'); |
|
| 59 | + } |
|
| 60 | + foreach ($liste_parents as $fichier => $chemin) { |
|
| 61 | + preg_match('/^lister-([\w]+)-([\w]+)[.]html$/', $fichier, $captures); |
|
| 62 | + $parent = $captures[1]; |
|
| 63 | + $type = $captures[2]; |
|
| 64 | + // Si le type fait partie de ce qu'on doit afficher alors on ajoute aussi le parent à l'affichage |
|
| 65 | + if (in_array($type, $objets_afficher)) { |
|
| 66 | + $objets_afficher[] = $parent; |
|
| 67 | + } |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + $objets = [ |
|
| 71 | + 'selectionner' => array_unique($objets_selectionner), |
|
| 72 | + 'afficher' => array_unique($objets_afficher), |
|
| 73 | + ]; |
|
| 74 | + |
|
| 75 | + return $objets; |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
@@ -99,31 +99,31 @@ discard block |
||
| 99 | 99 | * liste des couples (objets => id_objet) ou liste des identifiants d'un type d'objet. |
| 100 | 100 | **/ |
| 101 | 101 | function picker_selected($selected, $type = '') { |
| 102 | - $select = []; |
|
| 103 | - $type = preg_replace(',\W,', '', $type); |
|
| 104 | - |
|
| 105 | - if ($selected and !is_array($selected)) { |
|
| 106 | - $selected = explode(',', $selected); |
|
| 107 | - } |
|
| 108 | - |
|
| 109 | - if (is_array($selected)) { |
|
| 110 | - foreach ($selected as $value) { |
|
| 111 | - // Si c'est le bon format déjà |
|
| 112 | - if (preg_match('/^([\w]+)[|]([0-9]+)$/', $value, $captures)) { |
|
| 113 | - $objet = $captures[1]; |
|
| 114 | - $id_objet = intval($captures[2]); |
|
| 115 | - |
|
| 116 | - // Si on cherche un type et que c'est le bon, on renvoit un tableau que d'identifiants |
|
| 117 | - if (is_string($type) and $type == $objet and ($id_objet or in_array($objet, ['racine', 'rubrique']))) { |
|
| 118 | - $select[] = $id_objet; |
|
| 119 | - } elseif (!$type and ($id_objet or in_array($objet, ['racine', 'rubrique']))) { |
|
| 120 | - $select[] = ['objet' => $objet, 'id_objet' => $id_objet]; |
|
| 121 | - } |
|
| 122 | - } |
|
| 123 | - } |
|
| 124 | - } |
|
| 125 | - |
|
| 126 | - return $select; |
|
| 102 | + $select = []; |
|
| 103 | + $type = preg_replace(',\W,', '', $type); |
|
| 104 | + |
|
| 105 | + if ($selected and !is_array($selected)) { |
|
| 106 | + $selected = explode(',', $selected); |
|
| 107 | + } |
|
| 108 | + |
|
| 109 | + if (is_array($selected)) { |
|
| 110 | + foreach ($selected as $value) { |
|
| 111 | + // Si c'est le bon format déjà |
|
| 112 | + if (preg_match('/^([\w]+)[|]([0-9]+)$/', $value, $captures)) { |
|
| 113 | + $objet = $captures[1]; |
|
| 114 | + $id_objet = intval($captures[2]); |
|
| 115 | + |
|
| 116 | + // Si on cherche un type et que c'est le bon, on renvoit un tableau que d'identifiants |
|
| 117 | + if (is_string($type) and $type == $objet and ($id_objet or in_array($objet, ['racine', 'rubrique']))) { |
|
| 118 | + $select[] = $id_objet; |
|
| 119 | + } elseif (!$type and ($id_objet or in_array($objet, ['racine', 'rubrique']))) { |
|
| 120 | + $select[] = ['objet' => $objet, 'id_objet' => $id_objet]; |
|
| 121 | + } |
|
| 122 | + } |
|
| 123 | + } |
|
| 124 | + } |
|
| 125 | + |
|
| 126 | + return $select; |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | /** |
@@ -140,49 +140,49 @@ discard block |
||
| 140 | 140 | * Booléen indiquant si les articles sont sélectionnables |
| 141 | 141 | */ |
| 142 | 142 | function picker_identifie_id_rapide($ref, $rubriques_ou_objets = false, $articles = false) { |
| 143 | - include_spip('inc/json'); |
|
| 144 | - include_spip('inc/lien'); |
|
| 145 | - |
|
| 146 | - // On construit un tableau des objets sélectionnables suivant les paramètres |
|
| 147 | - $objets = []; |
|
| 148 | - if ($rubriques_ou_objets and is_array($rubriques_ou_objets)) { |
|
| 149 | - $objets = $rubriques_ou_objets; |
|
| 150 | - } else { |
|
| 151 | - if ($rubriques_ou_objets) { |
|
| 152 | - $objets[] = 'rubriques'; |
|
| 153 | - } |
|
| 154 | - if ($articles) { |
|
| 155 | - $objets[] = 'articles'; |
|
| 156 | - } |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - // si id numerique et un seul objet possible, pas d'ambiguite |
|
| 160 | - if (is_numeric($ref) and count($objets) === 1) { |
|
| 161 | - $ref = reset($objets) . $ref; |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - // Si la référence ne correspond à rien, c'est fini |
|
| 165 | - if (!($match = typer_raccourci($ref))) { |
|
| 166 | - return json_export(false); |
|
| 167 | - } |
|
| 168 | - // Sinon on récupère les infos utiles |
|
| 169 | - @[$type, , $id, , , , ] = $match; |
|
| 170 | - |
|
| 171 | - // On regarde si le type trouvé fait partie des objets sélectionnables |
|
| 172 | - if (!in_array(table_objet($type), $objets)) { |
|
| 173 | - return json_export(false); |
|
| 174 | - } |
|
| 175 | - |
|
| 176 | - // Maintenant que tout est bon, on cherche les informations sur cet objet |
|
| 177 | - include_spip('inc/filtres'); |
|
| 178 | - if (!$titre = generer_info_entite($id, $type, 'titre')) { |
|
| 179 | - return json_export(false); |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - // On simplifie le texte |
|
| 183 | - $titre = attribut_html($titre); |
|
| 184 | - |
|
| 185 | - return json_export(['type' => $type, 'id' => "$type|$id", 'titre' => $titre]); |
|
| 143 | + include_spip('inc/json'); |
|
| 144 | + include_spip('inc/lien'); |
|
| 145 | + |
|
| 146 | + // On construit un tableau des objets sélectionnables suivant les paramètres |
|
| 147 | + $objets = []; |
|
| 148 | + if ($rubriques_ou_objets and is_array($rubriques_ou_objets)) { |
|
| 149 | + $objets = $rubriques_ou_objets; |
|
| 150 | + } else { |
|
| 151 | + if ($rubriques_ou_objets) { |
|
| 152 | + $objets[] = 'rubriques'; |
|
| 153 | + } |
|
| 154 | + if ($articles) { |
|
| 155 | + $objets[] = 'articles'; |
|
| 156 | + } |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + // si id numerique et un seul objet possible, pas d'ambiguite |
|
| 160 | + if (is_numeric($ref) and count($objets) === 1) { |
|
| 161 | + $ref = reset($objets) . $ref; |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + // Si la référence ne correspond à rien, c'est fini |
|
| 165 | + if (!($match = typer_raccourci($ref))) { |
|
| 166 | + return json_export(false); |
|
| 167 | + } |
|
| 168 | + // Sinon on récupère les infos utiles |
|
| 169 | + @[$type, , $id, , , , ] = $match; |
|
| 170 | + |
|
| 171 | + // On regarde si le type trouvé fait partie des objets sélectionnables |
|
| 172 | + if (!in_array(table_objet($type), $objets)) { |
|
| 173 | + return json_export(false); |
|
| 174 | + } |
|
| 175 | + |
|
| 176 | + // Maintenant que tout est bon, on cherche les informations sur cet objet |
|
| 177 | + include_spip('inc/filtres'); |
|
| 178 | + if (!$titre = generer_info_entite($id, $type, 'titre')) { |
|
| 179 | + return json_export(false); |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + // On simplifie le texte |
|
| 183 | + $titre = attribut_html($titre); |
|
| 184 | + |
|
| 185 | + return json_export(['type' => $type, 'id' => "$type|$id", 'titre' => $titre]); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | /** |
@@ -205,34 +205,34 @@ discard block |
||
| 205 | 205 | * Comme le filtre `oui` : espace (` `) si rubrique à afficher, chaîne vide sinon. |
| 206 | 206 | */ |
| 207 | 207 | function test_enfants_rubrique($id_rubrique, $types = []) { |
| 208 | - static $has_child = []; |
|
| 209 | - |
|
| 210 | - if (!isset($has_child[$id_rubrique])) { |
|
| 211 | - $types = (is_array($types) ? array_filter($types) : []); |
|
| 212 | - |
|
| 213 | - // recuperer tous les freres et soeurs de la rubrique visee |
|
| 214 | - $id_parent = sql_getfetsel('id_parent', 'spip_rubriques', 'id_rubrique=' . intval($id_rubrique)); |
|
| 215 | - $fratrie = sql_allfetsel('id_rubrique', 'spip_rubriques', 'id_parent=' . intval($id_parent)); |
|
| 216 | - $fratrie = array_column($fratrie, 'id_rubrique'); |
|
| 217 | - $has = sql_allfetsel('DISTINCT id_parent', 'spip_rubriques', sql_in('id_parent', $fratrie)); |
|
| 218 | - $has = array_column($has, 'id_parent'); |
|
| 219 | - $fratrie = array_diff($fratrie, $has); |
|
| 220 | - |
|
| 221 | - while (count($fratrie) and is_array($types) and count($types)) { |
|
| 222 | - $type = array_shift($types); |
|
| 223 | - $h = sql_allfetsel('DISTINCT id_rubrique', table_objet_sql($type), sql_in('id_rubrique', $fratrie)); |
|
| 224 | - $h = array_column($h, 'id_rubrique'); |
|
| 225 | - $has = array_merge($has, $h); |
|
| 226 | - $fratrie = array_diff($fratrie, $h); |
|
| 227 | - } |
|
| 228 | - |
|
| 229 | - if (count($has)) { |
|
| 230 | - $has_child = $has_child + array_combine($has, array_pad([], count($has), true)); |
|
| 231 | - } |
|
| 232 | - if (count($fratrie)) { |
|
| 233 | - $has_child = $has_child + array_combine($fratrie, array_pad([], count($fratrie), false)); |
|
| 234 | - } |
|
| 235 | - } |
|
| 236 | - |
|
| 237 | - return $has_child[$id_rubrique] ? ' ' : ''; |
|
| 208 | + static $has_child = []; |
|
| 209 | + |
|
| 210 | + if (!isset($has_child[$id_rubrique])) { |
|
| 211 | + $types = (is_array($types) ? array_filter($types) : []); |
|
| 212 | + |
|
| 213 | + // recuperer tous les freres et soeurs de la rubrique visee |
|
| 214 | + $id_parent = sql_getfetsel('id_parent', 'spip_rubriques', 'id_rubrique=' . intval($id_rubrique)); |
|
| 215 | + $fratrie = sql_allfetsel('id_rubrique', 'spip_rubriques', 'id_parent=' . intval($id_parent)); |
|
| 216 | + $fratrie = array_column($fratrie, 'id_rubrique'); |
|
| 217 | + $has = sql_allfetsel('DISTINCT id_parent', 'spip_rubriques', sql_in('id_parent', $fratrie)); |
|
| 218 | + $has = array_column($has, 'id_parent'); |
|
| 219 | + $fratrie = array_diff($fratrie, $has); |
|
| 220 | + |
|
| 221 | + while (count($fratrie) and is_array($types) and count($types)) { |
|
| 222 | + $type = array_shift($types); |
|
| 223 | + $h = sql_allfetsel('DISTINCT id_rubrique', table_objet_sql($type), sql_in('id_rubrique', $fratrie)); |
|
| 224 | + $h = array_column($h, 'id_rubrique'); |
|
| 225 | + $has = array_merge($has, $h); |
|
| 226 | + $fratrie = array_diff($fratrie, $h); |
|
| 227 | + } |
|
| 228 | + |
|
| 229 | + if (count($has)) { |
|
| 230 | + $has_child = $has_child + array_combine($has, array_pad([], count($has), true)); |
|
| 231 | + } |
|
| 232 | + if (count($fratrie)) { |
|
| 233 | + $has_child = $has_child + array_combine($fratrie, array_pad([], count($fratrie), false)); |
|
| 234 | + } |
|
| 235 | + } |
|
| 236 | + |
|
| 237 | + return $has_child[$id_rubrique] ? ' ' : ''; |
|
| 238 | 238 | } |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | |
| 159 | 159 | // si id numerique et un seul objet possible, pas d'ambiguite |
| 160 | 160 | if (is_numeric($ref) and count($objets) === 1) { |
| 161 | - $ref = reset($objets) . $ref; |
|
| 161 | + $ref = reset($objets).$ref; |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | // Si la référence ne correspond à rien, c'est fini |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | return json_export(false); |
| 167 | 167 | } |
| 168 | 168 | // Sinon on récupère les infos utiles |
| 169 | - @[$type, , $id, , , , ] = $match; |
|
| 169 | + @[$type,, $id,,,,] = $match; |
|
| 170 | 170 | |
| 171 | 171 | // On regarde si le type trouvé fait partie des objets sélectionnables |
| 172 | 172 | if (!in_array(table_objet($type), $objets)) { |
@@ -211,8 +211,8 @@ discard block |
||
| 211 | 211 | $types = (is_array($types) ? array_filter($types) : []); |
| 212 | 212 | |
| 213 | 213 | // recuperer tous les freres et soeurs de la rubrique visee |
| 214 | - $id_parent = sql_getfetsel('id_parent', 'spip_rubriques', 'id_rubrique=' . intval($id_rubrique)); |
|
| 215 | - $fratrie = sql_allfetsel('id_rubrique', 'spip_rubriques', 'id_parent=' . intval($id_parent)); |
|
| 214 | + $id_parent = sql_getfetsel('id_parent', 'spip_rubriques', 'id_rubrique='.intval($id_rubrique)); |
|
| 215 | + $fratrie = sql_allfetsel('id_rubrique', 'spip_rubriques', 'id_parent='.intval($id_parent)); |
|
| 216 | 216 | $fratrie = array_column($fratrie, 'id_rubrique'); |
| 217 | 217 | $has = sql_allfetsel('DISTINCT id_parent', 'spip_rubriques', sql_in('id_parent', $fratrie)); |
| 218 | 218 | $has = array_column($has, 'id_parent'); |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * @package SPIP\Core\Autorisations |
| 17 | 17 | **/ |
| 18 | 18 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 19 | - return; |
|
| 19 | + return; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | include_spip('base/abstract_sql'); |
@@ -38,84 +38,84 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | |
| 40 | 40 | if (!function_exists('autoriser')) { |
| 41 | - /** |
|
| 42 | - * Autoriser une action |
|
| 43 | - * |
|
| 44 | - * Teste si une personne (par défaut le visiteur en cours) peut effectuer |
|
| 45 | - * une certaine action. Cette fonction est le point d'entrée de toutes |
|
| 46 | - * les autorisations. |
|
| 47 | - * |
|
| 48 | - * La fonction se charge d'appeler des fonctions d'autorisations spécifiques |
|
| 49 | - * aux actions demandées si elles existent. Elle cherche donc les fonctions |
|
| 50 | - * dans cet ordre : |
|
| 51 | - * |
|
| 52 | - * - autoriser_{type}_{faire}, sinon avec _dist |
|
| 53 | - * - autoriser_{type}, sinon avec _dist |
|
| 54 | - * - autoriser_{faire}, sinon avec _dist |
|
| 55 | - * - autoriser_{defaut}, sinon avec _dist |
|
| 56 | - * |
|
| 57 | - * Seul le premier argument est obligatoire. |
|
| 58 | - * |
|
| 59 | - * @note |
|
| 60 | - * Le paramètre `$type` attend par défaut un type d'objet éditorial, et à ce titre, |
|
| 61 | - * la valeur transmise se verra appliquer la fonction 'objet_type' pour uniformiser |
|
| 62 | - * cette valeur. |
|
| 63 | - * |
|
| 64 | - * Si ce paramètre n'a rien n'a voir avec un objet éditorial, par exemple |
|
| 65 | - * 'statistiques', un souligné avant le terme est ajouté afin d'indiquer |
|
| 66 | - * explicitement à la fonction autoriser de ne pas transformer la chaîne en type |
|
| 67 | - * d'objet. Cela donne pour cet exemple : `autoriser('detruire', '_statistiques')` |
|
| 68 | - * |
|
| 69 | - * @note |
|
| 70 | - * Le paramètre `$type`, en plus de l'uniformisation en type d'objet, se voit retirer |
|
| 71 | - * tous les soulignés du terme. Ainsi le type d'objet `livre_art` deviendra `livreart` |
|
| 72 | - * et SPIP cherchera une fonction `autoriser_livreart_{faire}`. Ceci permet |
|
| 73 | - * d'éviter une possible confusion si une fonction `autoriser_livre_art` existait : |
|
| 74 | - * quel serait le type, quel serait l'action ? |
|
| 75 | - * |
|
| 76 | - * Pour résumer, si le type d'objet éditorial a un souligné, tel que 'livre_art', |
|
| 77 | - * la fonction d'autorisation correspondante ne l'aura pas. |
|
| 78 | - * Exemple : `function autoriser_livreart_modifier_dist(...){...}` |
|
| 79 | - * |
|
| 80 | - * @api |
|
| 81 | - * @see autoriser_dist() |
|
| 82 | - * |
|
| 83 | - * @param string $faire |
|
| 84 | - * une action ('modifier', 'publier'...) |
|
| 85 | - * @param ?string $type |
|
| 86 | - * type d'objet ou nom de table ('article') |
|
| 87 | - * @param int $id |
|
| 88 | - * id de l'objet sur lequel on veut agir |
|
| 89 | - * Casté en int si différent. |
|
| 90 | - * @param null|int|array $qui |
|
| 91 | - * - si null on prend alors visiteur_session |
|
| 92 | - * - un id_auteur (on regarde dans la base) |
|
| 93 | - * - un tableau auteur complet, y compris [restreint] |
|
| 94 | - * @param array $opt |
|
| 95 | - * options sous forme de tableau associatif |
|
| 96 | - * @return bool |
|
| 97 | - * true si la personne peut effectuer l'action |
|
| 98 | - */ |
|
| 99 | - function autoriser(string $faire, ?string $type = '', $id = 0, $qui = null, array $opt = []): bool { |
|
| 100 | - // Charger les fonctions d'autorisation supplementaires |
|
| 101 | - static $pipe; |
|
| 102 | - if (!isset($pipe)) { |
|
| 103 | - $pipe = 1; |
|
| 104 | - pipeline('autoriser'); |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - $args = func_get_args(); |
|
| 108 | - |
|
| 109 | - return call_user_func_array('autoriser_dist', $args); |
|
| 110 | - } |
|
| 41 | + /** |
|
| 42 | + * Autoriser une action |
|
| 43 | + * |
|
| 44 | + * Teste si une personne (par défaut le visiteur en cours) peut effectuer |
|
| 45 | + * une certaine action. Cette fonction est le point d'entrée de toutes |
|
| 46 | + * les autorisations. |
|
| 47 | + * |
|
| 48 | + * La fonction se charge d'appeler des fonctions d'autorisations spécifiques |
|
| 49 | + * aux actions demandées si elles existent. Elle cherche donc les fonctions |
|
| 50 | + * dans cet ordre : |
|
| 51 | + * |
|
| 52 | + * - autoriser_{type}_{faire}, sinon avec _dist |
|
| 53 | + * - autoriser_{type}, sinon avec _dist |
|
| 54 | + * - autoriser_{faire}, sinon avec _dist |
|
| 55 | + * - autoriser_{defaut}, sinon avec _dist |
|
| 56 | + * |
|
| 57 | + * Seul le premier argument est obligatoire. |
|
| 58 | + * |
|
| 59 | + * @note |
|
| 60 | + * Le paramètre `$type` attend par défaut un type d'objet éditorial, et à ce titre, |
|
| 61 | + * la valeur transmise se verra appliquer la fonction 'objet_type' pour uniformiser |
|
| 62 | + * cette valeur. |
|
| 63 | + * |
|
| 64 | + * Si ce paramètre n'a rien n'a voir avec un objet éditorial, par exemple |
|
| 65 | + * 'statistiques', un souligné avant le terme est ajouté afin d'indiquer |
|
| 66 | + * explicitement à la fonction autoriser de ne pas transformer la chaîne en type |
|
| 67 | + * d'objet. Cela donne pour cet exemple : `autoriser('detruire', '_statistiques')` |
|
| 68 | + * |
|
| 69 | + * @note |
|
| 70 | + * Le paramètre `$type`, en plus de l'uniformisation en type d'objet, se voit retirer |
|
| 71 | + * tous les soulignés du terme. Ainsi le type d'objet `livre_art` deviendra `livreart` |
|
| 72 | + * et SPIP cherchera une fonction `autoriser_livreart_{faire}`. Ceci permet |
|
| 73 | + * d'éviter une possible confusion si une fonction `autoriser_livre_art` existait : |
|
| 74 | + * quel serait le type, quel serait l'action ? |
|
| 75 | + * |
|
| 76 | + * Pour résumer, si le type d'objet éditorial a un souligné, tel que 'livre_art', |
|
| 77 | + * la fonction d'autorisation correspondante ne l'aura pas. |
|
| 78 | + * Exemple : `function autoriser_livreart_modifier_dist(...){...}` |
|
| 79 | + * |
|
| 80 | + * @api |
|
| 81 | + * @see autoriser_dist() |
|
| 82 | + * |
|
| 83 | + * @param string $faire |
|
| 84 | + * une action ('modifier', 'publier'...) |
|
| 85 | + * @param ?string $type |
|
| 86 | + * type d'objet ou nom de table ('article') |
|
| 87 | + * @param int $id |
|
| 88 | + * id de l'objet sur lequel on veut agir |
|
| 89 | + * Casté en int si différent. |
|
| 90 | + * @param null|int|array $qui |
|
| 91 | + * - si null on prend alors visiteur_session |
|
| 92 | + * - un id_auteur (on regarde dans la base) |
|
| 93 | + * - un tableau auteur complet, y compris [restreint] |
|
| 94 | + * @param array $opt |
|
| 95 | + * options sous forme de tableau associatif |
|
| 96 | + * @return bool |
|
| 97 | + * true si la personne peut effectuer l'action |
|
| 98 | + */ |
|
| 99 | + function autoriser(string $faire, ?string $type = '', $id = 0, $qui = null, array $opt = []): bool { |
|
| 100 | + // Charger les fonctions d'autorisation supplementaires |
|
| 101 | + static $pipe; |
|
| 102 | + if (!isset($pipe)) { |
|
| 103 | + $pipe = 1; |
|
| 104 | + pipeline('autoriser'); |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + $args = func_get_args(); |
|
| 108 | + |
|
| 109 | + return call_user_func_array('autoriser_dist', $args); |
|
| 110 | + } |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | |
| 114 | 114 | // mes_fonctions peut aussi declarer des autorisations, il faut donc le charger |
| 115 | 115 | // mais apres la fonction autoriser() |
| 116 | 116 | if ($f = find_in_path('mes_fonctions.php')) { |
| 117 | - global $dossier_squelettes; |
|
| 118 | - include_once(_ROOT_CWD . $f); |
|
| 117 | + global $dossier_squelettes; |
|
| 118 | + include_once(_ROOT_CWD . $f); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | |
@@ -144,84 +144,84 @@ discard block |
||
| 144 | 144 | */ |
| 145 | 145 | function autoriser_dist(string $faire, ?string $type = '', $id = 0, $qui = null, array $opt = []): bool { |
| 146 | 146 | |
| 147 | - $a = null; |
|
| 148 | - // Tolérance avec certains appels de $id (null, '', 'new', 'oui'). |
|
| 149 | - $id = (int) $id; |
|
| 150 | - if ($type === null) { |
|
| 151 | - $type = ''; |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - // Qui ? visiteur_session ? |
|
| 155 | - // si null ou '' (appel depuis #AUTORISER) on prend l'auteur loge |
|
| 156 | - if ($qui === null or $qui === '') { |
|
| 157 | - $qui = $GLOBALS['visiteur_session'] ?: []; |
|
| 158 | - $qui = array_merge(['statut' => '', 'id_auteur' => 0, 'webmestre' => 'non'], $qui); |
|
| 159 | - } elseif (is_numeric($qui)) { |
|
| 160 | - $qui = sql_fetsel('*', 'spip_auteurs', 'id_auteur=' . $qui); |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - // Admins restreints, on construit ici (pas generique mais...) |
|
| 164 | - // le tableau de toutes leurs rubriques (y compris les sous-rubriques) |
|
| 165 | - if (_ADMINS_RESTREINTS and is_array($qui)) { |
|
| 166 | - $qui['restreint'] = isset($qui['id_auteur']) ? liste_rubriques_auteur($qui['id_auteur']) : []; |
|
| 167 | - } |
|
| 168 | - |
|
| 169 | - spip_log( |
|
| 170 | - "autoriser $faire $type $id (" . ($qui['nom'] ?? '') . ') ?', |
|
| 171 | - 'autoriser' . _LOG_DEBUG |
|
| 172 | - ); |
|
| 173 | - |
|
| 174 | - // passer par objet_type pour avoir les alias |
|
| 175 | - // sauf si _ est le premier caractère. |
|
| 176 | - if ($type and $type[0] !== '_') { |
|
| 177 | - $type = objet_type($type, false); |
|
| 178 | - } |
|
| 179 | - // et supprimer les _ |
|
| 180 | - $type = str_replace('_', '', (string) $type); |
|
| 181 | - |
|
| 182 | - // Si une exception a ete decretee plus haut dans le code, l'appliquer |
|
| 183 | - if ( |
|
| 184 | - (isset($GLOBALS['autoriser_exception'][$faire][$type][$id]) and autoriser_exception($faire, $type, $id, 'verifier')) |
|
| 185 | - or (isset($GLOBALS['autoriser_exception'][$faire][$type]['*']) and autoriser_exception($faire, $type, '*', 'verifier')) |
|
| 186 | - ) { |
|
| 187 | - spip_log("autoriser ($faire, $type, $id, " . ($qui['nom'] ?? '') . ') : OK Exception', 'autoriser' . _LOG_DEBUG); |
|
| 188 | - return true; |
|
| 189 | - } |
|
| 190 | - |
|
| 191 | - // Chercher une fonction d'autorisation |
|
| 192 | - // Dans l'ordre on va chercher autoriser_type_faire[_dist], autoriser_type[_dist], |
|
| 193 | - // autoriser_faire[_dist], autoriser_defaut[_dist] |
|
| 194 | - $fonctions = $type |
|
| 195 | - ? [ |
|
| 196 | - 'autoriser_' . $type . '_' . $faire, |
|
| 197 | - 'autoriser_' . $type . '_' . $faire . '_dist', |
|
| 198 | - 'autoriser_' . $type, |
|
| 199 | - 'autoriser_' . $type . '_dist', |
|
| 200 | - 'autoriser_' . $faire, |
|
| 201 | - 'autoriser_' . $faire . '_dist', |
|
| 202 | - 'autoriser_defaut', |
|
| 203 | - 'autoriser_defaut_dist' |
|
| 204 | - ] |
|
| 205 | - : [ |
|
| 206 | - 'autoriser_' . $faire, |
|
| 207 | - 'autoriser_' . $faire . '_dist', |
|
| 208 | - 'autoriser_defaut', |
|
| 209 | - 'autoriser_defaut_dist' |
|
| 210 | - ]; |
|
| 211 | - |
|
| 212 | - foreach ($fonctions as $f) { |
|
| 213 | - if (function_exists($f)) { |
|
| 214 | - $a = $f($faire, $type, $id, $qui, $opt); |
|
| 215 | - break; |
|
| 216 | - } |
|
| 217 | - } |
|
| 218 | - |
|
| 219 | - spip_log( |
|
| 220 | - "$f($faire, $type, $id, " . ($qui['nom'] ?? '') . ') : ' . ($a ? 'OK' : 'niet'), |
|
| 221 | - 'autoriser' . _LOG_DEBUG |
|
| 222 | - ); |
|
| 223 | - |
|
| 224 | - return $a; |
|
| 147 | + $a = null; |
|
| 148 | + // Tolérance avec certains appels de $id (null, '', 'new', 'oui'). |
|
| 149 | + $id = (int) $id; |
|
| 150 | + if ($type === null) { |
|
| 151 | + $type = ''; |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + // Qui ? visiteur_session ? |
|
| 155 | + // si null ou '' (appel depuis #AUTORISER) on prend l'auteur loge |
|
| 156 | + if ($qui === null or $qui === '') { |
|
| 157 | + $qui = $GLOBALS['visiteur_session'] ?: []; |
|
| 158 | + $qui = array_merge(['statut' => '', 'id_auteur' => 0, 'webmestre' => 'non'], $qui); |
|
| 159 | + } elseif (is_numeric($qui)) { |
|
| 160 | + $qui = sql_fetsel('*', 'spip_auteurs', 'id_auteur=' . $qui); |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + // Admins restreints, on construit ici (pas generique mais...) |
|
| 164 | + // le tableau de toutes leurs rubriques (y compris les sous-rubriques) |
|
| 165 | + if (_ADMINS_RESTREINTS and is_array($qui)) { |
|
| 166 | + $qui['restreint'] = isset($qui['id_auteur']) ? liste_rubriques_auteur($qui['id_auteur']) : []; |
|
| 167 | + } |
|
| 168 | + |
|
| 169 | + spip_log( |
|
| 170 | + "autoriser $faire $type $id (" . ($qui['nom'] ?? '') . ') ?', |
|
| 171 | + 'autoriser' . _LOG_DEBUG |
|
| 172 | + ); |
|
| 173 | + |
|
| 174 | + // passer par objet_type pour avoir les alias |
|
| 175 | + // sauf si _ est le premier caractère. |
|
| 176 | + if ($type and $type[0] !== '_') { |
|
| 177 | + $type = objet_type($type, false); |
|
| 178 | + } |
|
| 179 | + // et supprimer les _ |
|
| 180 | + $type = str_replace('_', '', (string) $type); |
|
| 181 | + |
|
| 182 | + // Si une exception a ete decretee plus haut dans le code, l'appliquer |
|
| 183 | + if ( |
|
| 184 | + (isset($GLOBALS['autoriser_exception'][$faire][$type][$id]) and autoriser_exception($faire, $type, $id, 'verifier')) |
|
| 185 | + or (isset($GLOBALS['autoriser_exception'][$faire][$type]['*']) and autoriser_exception($faire, $type, '*', 'verifier')) |
|
| 186 | + ) { |
|
| 187 | + spip_log("autoriser ($faire, $type, $id, " . ($qui['nom'] ?? '') . ') : OK Exception', 'autoriser' . _LOG_DEBUG); |
|
| 188 | + return true; |
|
| 189 | + } |
|
| 190 | + |
|
| 191 | + // Chercher une fonction d'autorisation |
|
| 192 | + // Dans l'ordre on va chercher autoriser_type_faire[_dist], autoriser_type[_dist], |
|
| 193 | + // autoriser_faire[_dist], autoriser_defaut[_dist] |
|
| 194 | + $fonctions = $type |
|
| 195 | + ? [ |
|
| 196 | + 'autoriser_' . $type . '_' . $faire, |
|
| 197 | + 'autoriser_' . $type . '_' . $faire . '_dist', |
|
| 198 | + 'autoriser_' . $type, |
|
| 199 | + 'autoriser_' . $type . '_dist', |
|
| 200 | + 'autoriser_' . $faire, |
|
| 201 | + 'autoriser_' . $faire . '_dist', |
|
| 202 | + 'autoriser_defaut', |
|
| 203 | + 'autoriser_defaut_dist' |
|
| 204 | + ] |
|
| 205 | + : [ |
|
| 206 | + 'autoriser_' . $faire, |
|
| 207 | + 'autoriser_' . $faire . '_dist', |
|
| 208 | + 'autoriser_defaut', |
|
| 209 | + 'autoriser_defaut_dist' |
|
| 210 | + ]; |
|
| 211 | + |
|
| 212 | + foreach ($fonctions as $f) { |
|
| 213 | + if (function_exists($f)) { |
|
| 214 | + $a = $f($faire, $type, $id, $qui, $opt); |
|
| 215 | + break; |
|
| 216 | + } |
|
| 217 | + } |
|
| 218 | + |
|
| 219 | + spip_log( |
|
| 220 | + "$f($faire, $type, $id, " . ($qui['nom'] ?? '') . ') : ' . ($a ? 'OK' : 'niet'), |
|
| 221 | + 'autoriser' . _LOG_DEBUG |
|
| 222 | + ); |
|
| 223 | + |
|
| 224 | + return $a; |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | // une globale pour aller au plus vite dans la fonction generique ci dessus |
@@ -239,33 +239,33 @@ discard block |
||
| 239 | 239 | * @return bool |
| 240 | 240 | */ |
| 241 | 241 | function autoriser_exception(string $faire, ?string $type = '', $id = 0, bool $autoriser = true): bool { |
| 242 | - // une static innaccessible par url pour verifier que la globale est positionnee a bon escient |
|
| 243 | - static $autorisation; |
|
| 244 | - // Tolérance avec certains appels |
|
| 245 | - if ($type === null) { |
|
| 246 | - $type = ''; |
|
| 247 | - } |
|
| 248 | - if ($id === null) { |
|
| 249 | - $id = 0; |
|
| 250 | - } |
|
| 251 | - if ($autoriser === 'verifier') { |
|
| 252 | - return isset($autorisation[$faire][$type][$id]); |
|
| 253 | - } |
|
| 254 | - if ($autoriser === true) { |
|
| 255 | - $GLOBALS['autoriser_exception'][$faire][$type][$id] = $autorisation[$faire][$type][$id] = true; |
|
| 256 | - } |
|
| 257 | - if ($autoriser === false) { |
|
| 258 | - if ($id === '*') { |
|
| 259 | - unset($GLOBALS['autoriser_exception'][$faire][$type]); |
|
| 260 | - unset($autorisation[$faire][$type]); |
|
| 261 | - } |
|
| 262 | - else { |
|
| 263 | - unset($GLOBALS['autoriser_exception'][$faire][$type][$id]); |
|
| 264 | - unset($autorisation[$faire][$type][$id]); |
|
| 265 | - } |
|
| 266 | - } |
|
| 267 | - |
|
| 268 | - return false; |
|
| 242 | + // une static innaccessible par url pour verifier que la globale est positionnee a bon escient |
|
| 243 | + static $autorisation; |
|
| 244 | + // Tolérance avec certains appels |
|
| 245 | + if ($type === null) { |
|
| 246 | + $type = ''; |
|
| 247 | + } |
|
| 248 | + if ($id === null) { |
|
| 249 | + $id = 0; |
|
| 250 | + } |
|
| 251 | + if ($autoriser === 'verifier') { |
|
| 252 | + return isset($autorisation[$faire][$type][$id]); |
|
| 253 | + } |
|
| 254 | + if ($autoriser === true) { |
|
| 255 | + $GLOBALS['autoriser_exception'][$faire][$type][$id] = $autorisation[$faire][$type][$id] = true; |
|
| 256 | + } |
|
| 257 | + if ($autoriser === false) { |
|
| 258 | + if ($id === '*') { |
|
| 259 | + unset($GLOBALS['autoriser_exception'][$faire][$type]); |
|
| 260 | + unset($autorisation[$faire][$type]); |
|
| 261 | + } |
|
| 262 | + else { |
|
| 263 | + unset($GLOBALS['autoriser_exception'][$faire][$type][$id]); |
|
| 264 | + unset($autorisation[$faire][$type][$id]); |
|
| 265 | + } |
|
| 266 | + } |
|
| 267 | + |
|
| 268 | + return false; |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | |
@@ -282,9 +282,9 @@ discard block |
||
| 282 | 282 | * @return bool true s'il a le droit, false sinon |
| 283 | 283 | **/ |
| 284 | 284 | function autoriser_defaut_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 285 | - return |
|
| 286 | - $qui['statut'] == '0minirezo' |
|
| 287 | - and !$qui['restreint']; |
|
| 285 | + return |
|
| 286 | + $qui['statut'] == '0minirezo' |
|
| 287 | + and !$qui['restreint']; |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | /** |
@@ -300,10 +300,10 @@ discard block |
||
| 300 | 300 | * @return bool |
| 301 | 301 | */ |
| 302 | 302 | function autoriser_loger_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 303 | - if ($qui['statut'] == '5poubelle') { |
|
| 304 | - return false; |
|
| 305 | - } |
|
| 306 | - return true; |
|
| 303 | + if ($qui['statut'] == '5poubelle') { |
|
| 304 | + return false; |
|
| 305 | + } |
|
| 306 | + return true; |
|
| 307 | 307 | } |
| 308 | 308 | |
| 309 | 309 | /** |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | * @return bool true s'il a le droit, false sinon |
| 318 | 318 | **/ |
| 319 | 319 | function autoriser_ecrire_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 320 | - return isset($qui['statut']) and in_array($qui['statut'], ['0minirezo', '1comite']); |
|
| 320 | + return isset($qui['statut']) and in_array($qui['statut'], ['0minirezo', '1comite']); |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | /** |
@@ -334,7 +334,7 @@ discard block |
||
| 334 | 334 | * @return bool true s'il a le droit, false sinon |
| 335 | 335 | **/ |
| 336 | 336 | function autoriser_creer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 337 | - return in_array($qui['statut'], ['0minirezo', '1comite']); |
|
| 337 | + return in_array($qui['statut'], ['0minirezo', '1comite']); |
|
| 338 | 338 | } |
| 339 | 339 | |
| 340 | 340 | /** |
@@ -352,18 +352,18 @@ discard block |
||
| 352 | 352 | **/ |
| 353 | 353 | function autoriser_previsualiser_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 354 | 354 | |
| 355 | - // Le visiteur a-t-il un statut prevu par la config ? |
|
| 356 | - if (strpos($GLOBALS['meta']['preview'], ',' . $qui['statut'] . ',') !== false) { |
|
| 357 | - return test_previsualiser_objet_champ($type, $id, $qui, $opt); |
|
| 358 | - } |
|
| 355 | + // Le visiteur a-t-il un statut prevu par la config ? |
|
| 356 | + if (strpos($GLOBALS['meta']['preview'], ',' . $qui['statut'] . ',') !== false) { |
|
| 357 | + return test_previsualiser_objet_champ($type, $id, $qui, $opt); |
|
| 358 | + } |
|
| 359 | 359 | |
| 360 | - // A-t-on un token de prévisualisation valable ? |
|
| 361 | - include_spip('inc/securiser_action'); |
|
| 362 | - if (decrire_token_previsu()) { |
|
| 363 | - return true; |
|
| 364 | - } |
|
| 360 | + // A-t-on un token de prévisualisation valable ? |
|
| 361 | + include_spip('inc/securiser_action'); |
|
| 362 | + if (decrire_token_previsu()) { |
|
| 363 | + return true; |
|
| 364 | + } |
|
| 365 | 365 | |
| 366 | - return false; |
|
| 366 | + return false; |
|
| 367 | 367 | } |
| 368 | 368 | |
| 369 | 369 | /** |
@@ -391,58 +391,58 @@ discard block |
||
| 391 | 391 | */ |
| 392 | 392 | function test_previsualiser_objet_champ(string $type = '', int $id = 0, array $qui = [], array $opt = []): bool { |
| 393 | 393 | |
| 394 | - // si pas de type et statut fourni, c'est une autorisation generale => OK |
|
| 395 | - if (!$type) { |
|
| 396 | - return true; |
|
| 397 | - } |
|
| 398 | - |
|
| 399 | - include_spip('base/objets'); |
|
| 400 | - $infos = lister_tables_objets_sql(table_objet_sql($type)); |
|
| 401 | - if (isset($infos['statut'])) { |
|
| 402 | - foreach ($infos['statut'] as $c) { |
|
| 403 | - if (isset($c['publie'])) { |
|
| 404 | - if (!isset($c['previsu'])) { |
|
| 405 | - return false; |
|
| 406 | - } // pas de previsu definie => NIET |
|
| 407 | - $champ = $c['champ']; |
|
| 408 | - if (!isset($opt[$champ])) { |
|
| 409 | - return false; |
|
| 410 | - } // pas de champ passe a la demande => NIET |
|
| 411 | - $previsu = explode(',', $c['previsu']); |
|
| 412 | - // regarder si ce statut est autorise pour l'auteur |
|
| 413 | - if (in_array($opt[$champ] . '/auteur', $previsu)) { |
|
| 414 | - // retrouver l’id_auteur qui a filé un lien de prévisu éventuellement, |
|
| 415 | - // sinon l’auteur en session |
|
| 416 | - include_spip('inc/securiser_action'); |
|
| 417 | - if ($desc = decrire_token_previsu()) { |
|
| 418 | - $id_auteur = $desc['id_auteur']; |
|
| 419 | - } elseif (isset($GLOBALS['visiteur_session']['id_auteur'])) { |
|
| 420 | - $id_auteur = intval($GLOBALS['visiteur_session']['id_auteur']); |
|
| 421 | - } else { |
|
| 422 | - $id_auteur = null; |
|
| 423 | - } |
|
| 424 | - |
|
| 425 | - if (!$id_auteur) { |
|
| 426 | - return false; |
|
| 427 | - } elseif (autoriser('previsualiser' . $opt[$champ], $type, 0, $id_auteur)) { |
|
| 428 | - // dans ce cas (admin en general), pas de filtrage sur ce statut |
|
| 429 | - } elseif ( |
|
| 430 | - !sql_countsel( |
|
| 431 | - 'spip_auteurs_liens', |
|
| 432 | - 'id_auteur=' . intval($id_auteur) . ' AND objet=' . sql_quote($type) . ' AND id_objet=' . intval($id) |
|
| 433 | - ) |
|
| 434 | - ) { |
|
| 435 | - return false; |
|
| 436 | - } // pas auteur de cet objet => NIET |
|
| 437 | - } elseif (!in_array($opt[$champ], $previsu)) { |
|
| 438 | - // le statut n'est pas dans ceux definis par la previsu => NIET |
|
| 439 | - return false; |
|
| 440 | - } |
|
| 441 | - } |
|
| 442 | - } |
|
| 443 | - } |
|
| 444 | - |
|
| 445 | - return true; |
|
| 394 | + // si pas de type et statut fourni, c'est une autorisation generale => OK |
|
| 395 | + if (!$type) { |
|
| 396 | + return true; |
|
| 397 | + } |
|
| 398 | + |
|
| 399 | + include_spip('base/objets'); |
|
| 400 | + $infos = lister_tables_objets_sql(table_objet_sql($type)); |
|
| 401 | + if (isset($infos['statut'])) { |
|
| 402 | + foreach ($infos['statut'] as $c) { |
|
| 403 | + if (isset($c['publie'])) { |
|
| 404 | + if (!isset($c['previsu'])) { |
|
| 405 | + return false; |
|
| 406 | + } // pas de previsu definie => NIET |
|
| 407 | + $champ = $c['champ']; |
|
| 408 | + if (!isset($opt[$champ])) { |
|
| 409 | + return false; |
|
| 410 | + } // pas de champ passe a la demande => NIET |
|
| 411 | + $previsu = explode(',', $c['previsu']); |
|
| 412 | + // regarder si ce statut est autorise pour l'auteur |
|
| 413 | + if (in_array($opt[$champ] . '/auteur', $previsu)) { |
|
| 414 | + // retrouver l’id_auteur qui a filé un lien de prévisu éventuellement, |
|
| 415 | + // sinon l’auteur en session |
|
| 416 | + include_spip('inc/securiser_action'); |
|
| 417 | + if ($desc = decrire_token_previsu()) { |
|
| 418 | + $id_auteur = $desc['id_auteur']; |
|
| 419 | + } elseif (isset($GLOBALS['visiteur_session']['id_auteur'])) { |
|
| 420 | + $id_auteur = intval($GLOBALS['visiteur_session']['id_auteur']); |
|
| 421 | + } else { |
|
| 422 | + $id_auteur = null; |
|
| 423 | + } |
|
| 424 | + |
|
| 425 | + if (!$id_auteur) { |
|
| 426 | + return false; |
|
| 427 | + } elseif (autoriser('previsualiser' . $opt[$champ], $type, 0, $id_auteur)) { |
|
| 428 | + // dans ce cas (admin en general), pas de filtrage sur ce statut |
|
| 429 | + } elseif ( |
|
| 430 | + !sql_countsel( |
|
| 431 | + 'spip_auteurs_liens', |
|
| 432 | + 'id_auteur=' . intval($id_auteur) . ' AND objet=' . sql_quote($type) . ' AND id_objet=' . intval($id) |
|
| 433 | + ) |
|
| 434 | + ) { |
|
| 435 | + return false; |
|
| 436 | + } // pas auteur de cet objet => NIET |
|
| 437 | + } elseif (!in_array($opt[$champ], $previsu)) { |
|
| 438 | + // le statut n'est pas dans ceux definis par la previsu => NIET |
|
| 439 | + return false; |
|
| 440 | + } |
|
| 441 | + } |
|
| 442 | + } |
|
| 443 | + } |
|
| 444 | + |
|
| 445 | + return true; |
|
| 446 | 446 | } |
| 447 | 447 | |
| 448 | 448 | /** |
@@ -456,51 +456,51 @@ discard block |
||
| 456 | 456 | * @return bool true s'il a le droit, false sinon |
| 457 | 457 | **/ |
| 458 | 458 | function autoriser_changerlangue_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 459 | - $multi_objets = explode(',', lire_config('multi_objets')); |
|
| 460 | - $gerer_trad_objets = explode(',', lire_config('gerer_trad_objets')); |
|
| 461 | - $table = table_objet_sql($type); |
|
| 462 | - if ( |
|
| 463 | - in_array($table, $multi_objets) |
|
| 464 | - or in_array($table, $gerer_trad_objets) |
|
| 465 | - ) { // affichage du formulaire si la configuration l'accepte |
|
| 466 | - $multi_secteurs = lire_config('multi_secteurs'); |
|
| 467 | - $champs = objet_info($type, 'field'); |
|
| 468 | - if ( |
|
| 469 | - $multi_secteurs == 'oui' |
|
| 470 | - and array_key_exists('id_rubrique', $champs) |
|
| 471 | - ) { |
|
| 472 | - // multilinguisme par secteur et objet rattaché à une rubrique |
|
| 473 | - $primary = id_table_objet($type); |
|
| 474 | - if ($table != 'spip_rubriques') { |
|
| 475 | - $id_rubrique = sql_getfetsel('id_rubrique', "$table", "$primary=" . intval($id)); |
|
| 476 | - } else { |
|
| 477 | - $id_rubrique = $id; |
|
| 478 | - } |
|
| 479 | - $id_secteur = sql_getfetsel('id_secteur', 'spip_rubriques', 'id_rubrique=' . intval($id_rubrique)); |
|
| 480 | - if (!$id_secteur > 0) { |
|
| 481 | - $id_secteur = $id_rubrique; |
|
| 482 | - } |
|
| 483 | - $langue_secteur = sql_getfetsel('lang', 'spip_rubriques', 'id_rubrique=' . intval($id_secteur)); |
|
| 484 | - $langue_objet = sql_getfetsel('lang', "$table", "$primary=" . intval($id)); |
|
| 485 | - if ($langue_secteur != $langue_objet) { |
|
| 486 | - // configuration incohérente, on laisse l'utilisateur corriger la situation |
|
| 487 | - return true; |
|
| 488 | - } |
|
| 489 | - if ($table != 'spip_rubriques') { // le choix de la langue se fait seulement sur les rubriques |
|
| 490 | - return false; |
|
| 491 | - } else { |
|
| 492 | - $id_parent = sql_getfetsel('id_parent', 'spip_rubriques', 'id_rubrique=' . intval($id)); |
|
| 493 | - if ($id_parent != 0) { |
|
| 494 | - // sous-rubriques : pas de choix de langue |
|
| 495 | - return false; |
|
| 496 | - } |
|
| 497 | - } |
|
| 498 | - } |
|
| 499 | - } else { |
|
| 500 | - return false; |
|
| 501 | - } |
|
| 502 | - |
|
| 503 | - return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 459 | + $multi_objets = explode(',', lire_config('multi_objets')); |
|
| 460 | + $gerer_trad_objets = explode(',', lire_config('gerer_trad_objets')); |
|
| 461 | + $table = table_objet_sql($type); |
|
| 462 | + if ( |
|
| 463 | + in_array($table, $multi_objets) |
|
| 464 | + or in_array($table, $gerer_trad_objets) |
|
| 465 | + ) { // affichage du formulaire si la configuration l'accepte |
|
| 466 | + $multi_secteurs = lire_config('multi_secteurs'); |
|
| 467 | + $champs = objet_info($type, 'field'); |
|
| 468 | + if ( |
|
| 469 | + $multi_secteurs == 'oui' |
|
| 470 | + and array_key_exists('id_rubrique', $champs) |
|
| 471 | + ) { |
|
| 472 | + // multilinguisme par secteur et objet rattaché à une rubrique |
|
| 473 | + $primary = id_table_objet($type); |
|
| 474 | + if ($table != 'spip_rubriques') { |
|
| 475 | + $id_rubrique = sql_getfetsel('id_rubrique', "$table", "$primary=" . intval($id)); |
|
| 476 | + } else { |
|
| 477 | + $id_rubrique = $id; |
|
| 478 | + } |
|
| 479 | + $id_secteur = sql_getfetsel('id_secteur', 'spip_rubriques', 'id_rubrique=' . intval($id_rubrique)); |
|
| 480 | + if (!$id_secteur > 0) { |
|
| 481 | + $id_secteur = $id_rubrique; |
|
| 482 | + } |
|
| 483 | + $langue_secteur = sql_getfetsel('lang', 'spip_rubriques', 'id_rubrique=' . intval($id_secteur)); |
|
| 484 | + $langue_objet = sql_getfetsel('lang', "$table", "$primary=" . intval($id)); |
|
| 485 | + if ($langue_secteur != $langue_objet) { |
|
| 486 | + // configuration incohérente, on laisse l'utilisateur corriger la situation |
|
| 487 | + return true; |
|
| 488 | + } |
|
| 489 | + if ($table != 'spip_rubriques') { // le choix de la langue se fait seulement sur les rubriques |
|
| 490 | + return false; |
|
| 491 | + } else { |
|
| 492 | + $id_parent = sql_getfetsel('id_parent', 'spip_rubriques', 'id_rubrique=' . intval($id)); |
|
| 493 | + if ($id_parent != 0) { |
|
| 494 | + // sous-rubriques : pas de choix de langue |
|
| 495 | + return false; |
|
| 496 | + } |
|
| 497 | + } |
|
| 498 | + } |
|
| 499 | + } else { |
|
| 500 | + return false; |
|
| 501 | + } |
|
| 502 | + |
|
| 503 | + return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 504 | 504 | } |
| 505 | 505 | |
| 506 | 506 | /** |
@@ -514,7 +514,7 @@ discard block |
||
| 514 | 514 | * @return bool true s'il a le droit, false sinon |
| 515 | 515 | **/ |
| 516 | 516 | function autoriser_changertraduction_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 517 | - return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 517 | + return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 518 | 518 | } |
| 519 | 519 | |
| 520 | 520 | /** |
@@ -528,41 +528,41 @@ discard block |
||
| 528 | 528 | * @return bool true s'il a le droit, false sinon |
| 529 | 529 | **/ |
| 530 | 530 | function autoriser_dater_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 531 | - $table = table_objet($type); |
|
| 532 | - $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 533 | - $desc = $trouver_table($table); |
|
| 534 | - if (!$desc) { |
|
| 535 | - return false; |
|
| 536 | - } |
|
| 537 | - |
|
| 538 | - if (!isset($opt['statut'])) { |
|
| 539 | - if (isset($desc['field']['statut'])) { |
|
| 540 | - $statut = sql_getfetsel('statut', $desc['table'], id_table_objet($type) . '=' . intval($id)); |
|
| 541 | - } else { |
|
| 542 | - $statut = 'publie'; |
|
| 543 | - } // pas de statut => publie |
|
| 544 | - } else { |
|
| 545 | - $statut = $opt['statut']; |
|
| 546 | - } |
|
| 547 | - |
|
| 548 | - // Liste des statuts publiés pour cet objet |
|
| 549 | - if (isset($desc['statut'][0]['publie'])) { |
|
| 550 | - $statuts_publies = explode(',', $desc['statut'][0]['publie']); |
|
| 551 | - } |
|
| 552 | - // Sinon en dur le statut "publie" |
|
| 553 | - else { |
|
| 554 | - $statuts_publies = ['publie']; |
|
| 555 | - } |
|
| 556 | - |
|
| 557 | - if ( |
|
| 558 | - in_array($statut, $statuts_publies) |
|
| 559 | - // Ou cas particulier géré en dur ici pour les articles |
|
| 560 | - or ($statut == 'prop' and $type == 'article' and $GLOBALS['meta']['post_dates'] == 'non') |
|
| 561 | - ) { |
|
| 562 | - return autoriser('modifier', $type, $id); |
|
| 563 | - } |
|
| 564 | - |
|
| 565 | - return false; |
|
| 531 | + $table = table_objet($type); |
|
| 532 | + $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 533 | + $desc = $trouver_table($table); |
|
| 534 | + if (!$desc) { |
|
| 535 | + return false; |
|
| 536 | + } |
|
| 537 | + |
|
| 538 | + if (!isset($opt['statut'])) { |
|
| 539 | + if (isset($desc['field']['statut'])) { |
|
| 540 | + $statut = sql_getfetsel('statut', $desc['table'], id_table_objet($type) . '=' . intval($id)); |
|
| 541 | + } else { |
|
| 542 | + $statut = 'publie'; |
|
| 543 | + } // pas de statut => publie |
|
| 544 | + } else { |
|
| 545 | + $statut = $opt['statut']; |
|
| 546 | + } |
|
| 547 | + |
|
| 548 | + // Liste des statuts publiés pour cet objet |
|
| 549 | + if (isset($desc['statut'][0]['publie'])) { |
|
| 550 | + $statuts_publies = explode(',', $desc['statut'][0]['publie']); |
|
| 551 | + } |
|
| 552 | + // Sinon en dur le statut "publie" |
|
| 553 | + else { |
|
| 554 | + $statuts_publies = ['publie']; |
|
| 555 | + } |
|
| 556 | + |
|
| 557 | + if ( |
|
| 558 | + in_array($statut, $statuts_publies) |
|
| 559 | + // Ou cas particulier géré en dur ici pour les articles |
|
| 560 | + or ($statut == 'prop' and $type == 'article' and $GLOBALS['meta']['post_dates'] == 'non') |
|
| 561 | + ) { |
|
| 562 | + return autoriser('modifier', $type, $id); |
|
| 563 | + } |
|
| 564 | + |
|
| 565 | + return false; |
|
| 566 | 566 | } |
| 567 | 567 | |
| 568 | 568 | /** |
@@ -579,7 +579,7 @@ discard block |
||
| 579 | 579 | * @return bool true s'il a le droit, false sinon |
| 580 | 580 | **/ |
| 581 | 581 | function autoriser_instituer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 582 | - return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 582 | + return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 583 | 583 | } |
| 584 | 584 | |
| 585 | 585 | /** |
@@ -595,12 +595,12 @@ discard block |
||
| 595 | 595 | * @return bool true s'il a le droit, false sinon |
| 596 | 596 | **/ |
| 597 | 597 | function autoriser_rubrique_publierdans_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 598 | - return |
|
| 599 | - ($qui['statut'] == '0minirezo') |
|
| 600 | - and ( |
|
| 601 | - !$qui['restreint'] or !$id |
|
| 602 | - or in_array($id, $qui['restreint']) |
|
| 603 | - ); |
|
| 598 | + return |
|
| 599 | + ($qui['statut'] == '0minirezo') |
|
| 600 | + and ( |
|
| 601 | + !$qui['restreint'] or !$id |
|
| 602 | + or in_array($id, $qui['restreint']) |
|
| 603 | + ); |
|
| 604 | 604 | } |
| 605 | 605 | |
| 606 | 606 | /** |
@@ -616,12 +616,12 @@ discard block |
||
| 616 | 616 | * @return bool true s'il a le droit, false sinon |
| 617 | 617 | **/ |
| 618 | 618 | function autoriser_rubrique_creer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 619 | - if (!empty($opt['id_parent'])) { |
|
| 620 | - return autoriser('creerrubriquedans', 'rubrique', $opt['id_parent'], $qui); |
|
| 621 | - } |
|
| 622 | - else { |
|
| 623 | - return autoriser('defaut', null, null, $qui, $opt); |
|
| 624 | - } |
|
| 619 | + if (!empty($opt['id_parent'])) { |
|
| 620 | + return autoriser('creerrubriquedans', 'rubrique', $opt['id_parent'], $qui); |
|
| 621 | + } |
|
| 622 | + else { |
|
| 623 | + return autoriser('defaut', null, null, $qui, $opt); |
|
| 624 | + } |
|
| 625 | 625 | } |
| 626 | 626 | |
| 627 | 627 | /** |
@@ -637,10 +637,10 @@ discard block |
||
| 637 | 637 | * @return bool true s'il a le droit, false sinon |
| 638 | 638 | **/ |
| 639 | 639 | function autoriser_rubrique_creerrubriquedans_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 640 | - return |
|
| 641 | - ($id or ($qui['statut'] == '0minirezo' and !$qui['restreint'])) |
|
| 642 | - and autoriser('voir', 'rubrique', $id) |
|
| 643 | - and autoriser('publierdans', 'rubrique', $id); |
|
| 640 | + return |
|
| 641 | + ($id or ($qui['statut'] == '0minirezo' and !$qui['restreint'])) |
|
| 642 | + and autoriser('voir', 'rubrique', $id) |
|
| 643 | + and autoriser('publierdans', 'rubrique', $id); |
|
| 644 | 644 | } |
| 645 | 645 | |
| 646 | 646 | /** |
@@ -656,10 +656,10 @@ discard block |
||
| 656 | 656 | * @return bool true s'il a le droit, false sinon |
| 657 | 657 | **/ |
| 658 | 658 | function autoriser_rubrique_creerarticledans_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 659 | - return |
|
| 660 | - $id |
|
| 661 | - and autoriser('voir', 'rubrique', $id) |
|
| 662 | - and autoriser('creer', 'article'); |
|
| 659 | + return |
|
| 660 | + $id |
|
| 661 | + and autoriser('voir', 'rubrique', $id) |
|
| 662 | + and autoriser('creer', 'article'); |
|
| 663 | 663 | } |
| 664 | 664 | |
| 665 | 665 | |
@@ -676,8 +676,8 @@ discard block |
||
| 676 | 676 | * @return bool true s'il a le droit, false sinon |
| 677 | 677 | **/ |
| 678 | 678 | function autoriser_rubrique_modifier_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 679 | - return |
|
| 680 | - autoriser('publierdans', 'rubrique', $id, $qui, $opt); |
|
| 679 | + return |
|
| 680 | + autoriser('publierdans', 'rubrique', $id, $qui, $opt); |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | /** |
@@ -693,29 +693,29 @@ discard block |
||
| 693 | 693 | * @return bool true s'il a le droit, false sinon |
| 694 | 694 | **/ |
| 695 | 695 | function autoriser_rubrique_supprimer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 696 | - if (!$id = intval($id)) { |
|
| 697 | - return false; |
|
| 698 | - } |
|
| 696 | + if (!$id = intval($id)) { |
|
| 697 | + return false; |
|
| 698 | + } |
|
| 699 | 699 | |
| 700 | - if (sql_countsel('spip_rubriques', 'id_parent=' . intval($id))) { |
|
| 701 | - return false; |
|
| 702 | - } |
|
| 700 | + if (sql_countsel('spip_rubriques', 'id_parent=' . intval($id))) { |
|
| 701 | + return false; |
|
| 702 | + } |
|
| 703 | 703 | |
| 704 | - if (sql_countsel('spip_articles', 'id_rubrique=' . intval($id) . " AND (statut<>'poubelle')")) { |
|
| 705 | - return false; |
|
| 706 | - } |
|
| 704 | + if (sql_countsel('spip_articles', 'id_rubrique=' . intval($id) . " AND (statut<>'poubelle')")) { |
|
| 705 | + return false; |
|
| 706 | + } |
|
| 707 | 707 | |
| 708 | - $compte = pipeline( |
|
| 709 | - 'objet_compte_enfants', |
|
| 710 | - ['args' => ['objet' => 'rubrique', 'id_objet' => $id], 'data' => []] |
|
| 711 | - ); |
|
| 712 | - foreach ($compte as $objet => $n) { |
|
| 713 | - if ($n) { |
|
| 714 | - return false; |
|
| 715 | - } |
|
| 716 | - } |
|
| 708 | + $compte = pipeline( |
|
| 709 | + 'objet_compte_enfants', |
|
| 710 | + ['args' => ['objet' => 'rubrique', 'id_objet' => $id], 'data' => []] |
|
| 711 | + ); |
|
| 712 | + foreach ($compte as $objet => $n) { |
|
| 713 | + if ($n) { |
|
| 714 | + return false; |
|
| 715 | + } |
|
| 716 | + } |
|
| 717 | 717 | |
| 718 | - return autoriser('modifier', 'rubrique', $id); |
|
| 718 | + return autoriser('modifier', 'rubrique', $id); |
|
| 719 | 719 | } |
| 720 | 720 | |
| 721 | 721 | |
@@ -733,23 +733,23 @@ discard block |
||
| 733 | 733 | * @return bool true s'il a le droit, false sinon |
| 734 | 734 | **/ |
| 735 | 735 | function autoriser_article_modifier_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 736 | - if (!$id) { |
|
| 737 | - return false; |
|
| 738 | - } |
|
| 739 | - $r = sql_fetsel('id_rubrique,statut', 'spip_articles', 'id_article=' . sql_quote($id)); |
|
| 740 | - |
|
| 741 | - return |
|
| 742 | - $r |
|
| 743 | - and |
|
| 744 | - ( |
|
| 745 | - autoriser('publierdans', 'rubrique', $r['id_rubrique'], $qui, $opt) |
|
| 746 | - or ( |
|
| 747 | - (!isset($opt['statut']) or $opt['statut'] !== 'publie') |
|
| 748 | - and in_array($qui['statut'], ['0minirezo', '1comite']) |
|
| 749 | - and in_array($r['statut'], ['prop', 'prepa', 'poubelle']) |
|
| 750 | - and auteurs_objet('article', $id, 'id_auteur=' . $qui['id_auteur']) |
|
| 751 | - ) |
|
| 752 | - ); |
|
| 736 | + if (!$id) { |
|
| 737 | + return false; |
|
| 738 | + } |
|
| 739 | + $r = sql_fetsel('id_rubrique,statut', 'spip_articles', 'id_article=' . sql_quote($id)); |
|
| 740 | + |
|
| 741 | + return |
|
| 742 | + $r |
|
| 743 | + and |
|
| 744 | + ( |
|
| 745 | + autoriser('publierdans', 'rubrique', $r['id_rubrique'], $qui, $opt) |
|
| 746 | + or ( |
|
| 747 | + (!isset($opt['statut']) or $opt['statut'] !== 'publie') |
|
| 748 | + and in_array($qui['statut'], ['0minirezo', '1comite']) |
|
| 749 | + and in_array($r['statut'], ['prop', 'prepa', 'poubelle']) |
|
| 750 | + and auteurs_objet('article', $id, 'id_auteur=' . $qui['id_auteur']) |
|
| 751 | + ) |
|
| 752 | + ); |
|
| 753 | 753 | } |
| 754 | 754 | |
| 755 | 755 | /** |
@@ -765,13 +765,13 @@ discard block |
||
| 765 | 765 | * @return bool true s'il a le droit, false sinon |
| 766 | 766 | **/ |
| 767 | 767 | function autoriser_article_creer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 768 | - if (!empty($opt['id_parent'])) { |
|
| 769 | - // creerarticledans rappelle autoriser(creer,article) sans id, donc on verifiera condition du else aussi |
|
| 770 | - return autoriser('creerarticledans', 'rubrique', $opt['id_parent'], $qui); |
|
| 771 | - } |
|
| 772 | - else { |
|
| 773 | - return (sql_countsel('spip_rubriques') > 0 and in_array($qui['statut'], ['0minirezo', '1comite'])); |
|
| 774 | - } |
|
| 768 | + if (!empty($opt['id_parent'])) { |
|
| 769 | + // creerarticledans rappelle autoriser(creer,article) sans id, donc on verifiera condition du else aussi |
|
| 770 | + return autoriser('creerarticledans', 'rubrique', $opt['id_parent'], $qui); |
|
| 771 | + } |
|
| 772 | + else { |
|
| 773 | + return (sql_countsel('spip_rubriques') > 0 and in_array($qui['statut'], ['0minirezo', '1comite'])); |
|
| 774 | + } |
|
| 775 | 775 | } |
| 776 | 776 | |
| 777 | 777 | /** |
@@ -791,28 +791,28 @@ discard block |
||
| 791 | 791 | * @return bool true s'il a le droit, false sinon |
| 792 | 792 | */ |
| 793 | 793 | function autoriser_article_voir_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 794 | - if ($qui['statut'] == '0minirezo') { |
|
| 795 | - return true; |
|
| 796 | - } |
|
| 797 | - // cas des articles : depend du statut de l'article et de l'auteur |
|
| 798 | - if (isset($opt['statut'])) { |
|
| 799 | - $statut = $opt['statut']; |
|
| 800 | - } else { |
|
| 801 | - if (!$id) { |
|
| 802 | - return false; |
|
| 803 | - } |
|
| 804 | - $statut = sql_getfetsel('statut', 'spip_articles', 'id_article=' . intval($id)); |
|
| 805 | - } |
|
| 806 | - |
|
| 807 | - return |
|
| 808 | - // si on est pas auteur de l'article, |
|
| 809 | - // seuls les propose et publies sont visibles |
|
| 810 | - in_array($statut, ['prop', 'publie']) |
|
| 811 | - // sinon si on est auteur, on a le droit de le voir, evidemment ! |
|
| 812 | - or |
|
| 813 | - ($id |
|
| 814 | - and $qui['id_auteur'] |
|
| 815 | - and auteurs_objet('article', $id, 'id_auteur=' . $qui['id_auteur'])); |
|
| 794 | + if ($qui['statut'] == '0minirezo') { |
|
| 795 | + return true; |
|
| 796 | + } |
|
| 797 | + // cas des articles : depend du statut de l'article et de l'auteur |
|
| 798 | + if (isset($opt['statut'])) { |
|
| 799 | + $statut = $opt['statut']; |
|
| 800 | + } else { |
|
| 801 | + if (!$id) { |
|
| 802 | + return false; |
|
| 803 | + } |
|
| 804 | + $statut = sql_getfetsel('statut', 'spip_articles', 'id_article=' . intval($id)); |
|
| 805 | + } |
|
| 806 | + |
|
| 807 | + return |
|
| 808 | + // si on est pas auteur de l'article, |
|
| 809 | + // seuls les propose et publies sont visibles |
|
| 810 | + in_array($statut, ['prop', 'publie']) |
|
| 811 | + // sinon si on est auteur, on a le droit de le voir, evidemment ! |
|
| 812 | + or |
|
| 813 | + ($id |
|
| 814 | + and $qui['id_auteur'] |
|
| 815 | + and auteurs_objet('article', $id, 'id_auteur=' . $qui['id_auteur'])); |
|
| 816 | 816 | } |
| 817 | 817 | |
| 818 | 818 | |
@@ -829,24 +829,24 @@ discard block |
||
| 829 | 829 | * @return bool true s'il a le droit, false sinon |
| 830 | 830 | **/ |
| 831 | 831 | function autoriser_voir_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 832 | - # securite, mais on aurait pas du arriver ici ! |
|
| 833 | - if ( |
|
| 834 | - function_exists($f = 'autoriser_' . $type . '_voir') |
|
| 835 | - or function_exists($f = 'autoriser_' . $type . '_voir_dist') |
|
| 836 | - ) { |
|
| 837 | - return $f($faire, $type, $id, $qui, $opt); |
|
| 838 | - } |
|
| 832 | + # securite, mais on aurait pas du arriver ici ! |
|
| 833 | + if ( |
|
| 834 | + function_exists($f = 'autoriser_' . $type . '_voir') |
|
| 835 | + or function_exists($f = 'autoriser_' . $type . '_voir_dist') |
|
| 836 | + ) { |
|
| 837 | + return $f($faire, $type, $id, $qui, $opt); |
|
| 838 | + } |
|
| 839 | 839 | |
| 840 | - if ($qui['statut'] == '0minirezo') { |
|
| 841 | - return true; |
|
| 842 | - } |
|
| 843 | - // admins et redacteurs peuvent voir un auteur |
|
| 844 | - if ($type == 'auteur') { |
|
| 845 | - return in_array($qui['statut'], ['0minirezo', '1comite']); |
|
| 846 | - } |
|
| 847 | - // sinon par defaut tout est visible |
|
| 848 | - // sauf cas particuliers traites separemment (ie article) |
|
| 849 | - return true; |
|
| 840 | + if ($qui['statut'] == '0minirezo') { |
|
| 841 | + return true; |
|
| 842 | + } |
|
| 843 | + // admins et redacteurs peuvent voir un auteur |
|
| 844 | + if ($type == 'auteur') { |
|
| 845 | + return in_array($qui['statut'], ['0minirezo', '1comite']); |
|
| 846 | + } |
|
| 847 | + // sinon par defaut tout est visible |
|
| 848 | + // sauf cas particuliers traites separemment (ie article) |
|
| 849 | + return true; |
|
| 850 | 850 | } |
| 851 | 851 | |
| 852 | 852 | |
@@ -867,12 +867,12 @@ discard block |
||
| 867 | 867 | * @return bool true s'il a le droit, false sinon |
| 868 | 868 | **/ |
| 869 | 869 | function autoriser_webmestre_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 870 | - return |
|
| 871 | - (defined('_ID_WEBMESTRES') ? |
|
| 872 | - in_array($qui['id_auteur'], explode(':', _ID_WEBMESTRES)) |
|
| 873 | - : $qui['webmestre'] == 'oui') |
|
| 874 | - and $qui['statut'] == '0minirezo' |
|
| 875 | - and !$qui['restreint']; |
|
| 870 | + return |
|
| 871 | + (defined('_ID_WEBMESTRES') ? |
|
| 872 | + in_array($qui['id_auteur'], explode(':', _ID_WEBMESTRES)) |
|
| 873 | + : $qui['webmestre'] == 'oui') |
|
| 874 | + and $qui['statut'] == '0minirezo' |
|
| 875 | + and !$qui['restreint']; |
|
| 876 | 876 | } |
| 877 | 877 | |
| 878 | 878 | /** |
@@ -888,9 +888,9 @@ discard block |
||
| 888 | 888 | * @return bool true s'il a le droit, false sinon |
| 889 | 889 | **/ |
| 890 | 890 | function autoriser_configurer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 891 | - return |
|
| 892 | - $qui['statut'] == '0minirezo' |
|
| 893 | - and !$qui['restreint']; |
|
| 891 | + return |
|
| 892 | + $qui['statut'] == '0minirezo' |
|
| 893 | + and !$qui['restreint']; |
|
| 894 | 894 | } |
| 895 | 895 | |
| 896 | 896 | /** |
@@ -906,8 +906,8 @@ discard block |
||
| 906 | 906 | * @return bool true s'il a le droit, false sinon |
| 907 | 907 | **/ |
| 908 | 908 | function autoriser_sauvegarder_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 909 | - return |
|
| 910 | - $qui['statut'] == '0minirezo'; |
|
| 909 | + return |
|
| 910 | + $qui['statut'] == '0minirezo'; |
|
| 911 | 911 | } |
| 912 | 912 | |
| 913 | 913 | /** |
@@ -923,7 +923,7 @@ discard block |
||
| 923 | 923 | * @return bool true s'il a le droit, false sinon |
| 924 | 924 | **/ |
| 925 | 925 | function autoriser_detruire_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 926 | - return autoriser('webmestre', null, null, $qui, $opt); |
|
| 926 | + return autoriser('webmestre', null, null, $qui, $opt); |
|
| 927 | 927 | } |
| 928 | 928 | |
| 929 | 929 | /** |
@@ -940,23 +940,23 @@ discard block |
||
| 940 | 940 | * @return bool true s'il a le droit, false sinon |
| 941 | 941 | **/ |
| 942 | 942 | function autoriser_auteur_previsualiser_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 943 | - // les admins peuvent "previsualiser" une page auteur |
|
| 944 | - if ( |
|
| 945 | - $qui['statut'] == '0minirezo' |
|
| 946 | - and !$qui['restreint'] |
|
| 947 | - ) { |
|
| 948 | - return true; |
|
| 949 | - } elseif ($id === 0) { |
|
| 950 | - return false; |
|
| 951 | - } |
|
| 952 | - // "Voir en ligne" si l'auteur a un article publie |
|
| 953 | - $n = sql_fetsel( |
|
| 954 | - 'A.id_article', |
|
| 955 | - 'spip_auteurs_liens AS L LEFT JOIN spip_articles AS A ON (L.objet=\'article\' AND L.id_objet=A.id_article)', |
|
| 956 | - "A.statut='publie' AND L.id_auteur=" . sql_quote($id) |
|
| 957 | - ); |
|
| 943 | + // les admins peuvent "previsualiser" une page auteur |
|
| 944 | + if ( |
|
| 945 | + $qui['statut'] == '0minirezo' |
|
| 946 | + and !$qui['restreint'] |
|
| 947 | + ) { |
|
| 948 | + return true; |
|
| 949 | + } elseif ($id === 0) { |
|
| 950 | + return false; |
|
| 951 | + } |
|
| 952 | + // "Voir en ligne" si l'auteur a un article publie |
|
| 953 | + $n = sql_fetsel( |
|
| 954 | + 'A.id_article', |
|
| 955 | + 'spip_auteurs_liens AS L LEFT JOIN spip_articles AS A ON (L.objet=\'article\' AND L.id_objet=A.id_article)', |
|
| 956 | + "A.statut='publie' AND L.id_auteur=" . sql_quote($id) |
|
| 957 | + ); |
|
| 958 | 958 | |
| 959 | - return $n ? true : false; |
|
| 959 | + return $n ? true : false; |
|
| 960 | 960 | } |
| 961 | 961 | |
| 962 | 962 | |
@@ -984,7 +984,7 @@ discard block |
||
| 984 | 984 | * @return bool true s'il a le droit, false sinon |
| 985 | 985 | **/ |
| 986 | 986 | function autoriser_auteur_creer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 987 | - return ($qui['statut'] == '0minirezo'); |
|
| 987 | + return ($qui['statut'] == '0minirezo'); |
|
| 988 | 988 | } |
| 989 | 989 | |
| 990 | 990 | |
@@ -1004,73 +1004,73 @@ discard block |
||
| 1004 | 1004 | **/ |
| 1005 | 1005 | function autoriser_auteur_modifier_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1006 | 1006 | |
| 1007 | - // Si pas admin : seulement le droit de modifier ses donnees perso, mais pas statut ni login |
|
| 1008 | - // la modif de l'email doit etre verifiee ou notifiee si possible, mais c'est a l'interface de gerer ca |
|
| 1009 | - if (!in_array($qui['statut'], ['0minirezo'])) { |
|
| 1010 | - if ( |
|
| 1011 | - $id == $qui['id_auteur'] |
|
| 1012 | - && empty($opt['statut']) |
|
| 1013 | - && empty($opt['webmestre']) |
|
| 1014 | - && empty($opt['restreintes']) |
|
| 1015 | - && empty($opt['login']) |
|
| 1016 | - ) { |
|
| 1017 | - return true; |
|
| 1018 | - } |
|
| 1019 | - return false; |
|
| 1020 | - } |
|
| 1021 | - |
|
| 1022 | - // Un admin restreint peut modifier/creer un auteur non-admin mais il |
|
| 1023 | - // n'a le droit ni de le promouvoir admin, ni de changer les rubriques |
|
| 1024 | - if ($qui['restreint']) { |
|
| 1025 | - if (isset($opt['webmestre']) and $opt['webmestre']) { |
|
| 1026 | - return false; |
|
| 1027 | - } elseif ( |
|
| 1028 | - (isset($opt['statut']) and ($opt['statut'] == '0minirezo')) |
|
| 1029 | - or (isset($opt['restreintes']) and $opt['restreintes']) |
|
| 1030 | - ) { |
|
| 1031 | - return false; |
|
| 1032 | - } else { |
|
| 1033 | - if ($id == $qui['id_auteur']) { |
|
| 1034 | - if (isset($opt['statut']) and $opt['statut']) { |
|
| 1035 | - return false; |
|
| 1036 | - } else { |
|
| 1037 | - return true; |
|
| 1038 | - } |
|
| 1039 | - } else { |
|
| 1040 | - if ($id_auteur = intval($id)) { |
|
| 1041 | - $t = sql_fetsel('statut', 'spip_auteurs', "id_auteur=$id_auteur"); |
|
| 1042 | - if ($t and $t['statut'] != '0minirezo') { |
|
| 1043 | - return true; |
|
| 1044 | - } else { |
|
| 1045 | - return false; |
|
| 1046 | - } |
|
| 1047 | - } // id = 0 => creation |
|
| 1048 | - else { |
|
| 1049 | - return true; |
|
| 1050 | - } |
|
| 1051 | - } |
|
| 1052 | - } |
|
| 1053 | - } |
|
| 1054 | - |
|
| 1055 | - // Un admin complet fait ce qu'il veut |
|
| 1056 | - // sauf se degrader |
|
| 1057 | - if ($id == $qui['id_auteur'] && (isset($opt['statut']) and $opt['statut'])) { |
|
| 1058 | - return false; |
|
| 1059 | - } elseif ( |
|
| 1060 | - isset($opt['webmestre']) |
|
| 1061 | - and $opt['webmestre'] |
|
| 1062 | - and (defined('_ID_WEBMESTRES') |
|
| 1063 | - or !autoriser('webmestre')) |
|
| 1064 | - ) { |
|
| 1065 | - // et toucher au statut webmestre si il ne l'est pas lui meme |
|
| 1066 | - // ou si les webmestres sont fixes par constante (securite) |
|
| 1067 | - return false; |
|
| 1068 | - } // et modifier un webmestre si il ne l'est pas lui meme |
|
| 1069 | - elseif (intval($id) and autoriser('webmestre', '', 0, $id) and !autoriser('webmestre')) { |
|
| 1070 | - return false; |
|
| 1071 | - } else { |
|
| 1072 | - return true; |
|
| 1073 | - } |
|
| 1007 | + // Si pas admin : seulement le droit de modifier ses donnees perso, mais pas statut ni login |
|
| 1008 | + // la modif de l'email doit etre verifiee ou notifiee si possible, mais c'est a l'interface de gerer ca |
|
| 1009 | + if (!in_array($qui['statut'], ['0minirezo'])) { |
|
| 1010 | + if ( |
|
| 1011 | + $id == $qui['id_auteur'] |
|
| 1012 | + && empty($opt['statut']) |
|
| 1013 | + && empty($opt['webmestre']) |
|
| 1014 | + && empty($opt['restreintes']) |
|
| 1015 | + && empty($opt['login']) |
|
| 1016 | + ) { |
|
| 1017 | + return true; |
|
| 1018 | + } |
|
| 1019 | + return false; |
|
| 1020 | + } |
|
| 1021 | + |
|
| 1022 | + // Un admin restreint peut modifier/creer un auteur non-admin mais il |
|
| 1023 | + // n'a le droit ni de le promouvoir admin, ni de changer les rubriques |
|
| 1024 | + if ($qui['restreint']) { |
|
| 1025 | + if (isset($opt['webmestre']) and $opt['webmestre']) { |
|
| 1026 | + return false; |
|
| 1027 | + } elseif ( |
|
| 1028 | + (isset($opt['statut']) and ($opt['statut'] == '0minirezo')) |
|
| 1029 | + or (isset($opt['restreintes']) and $opt['restreintes']) |
|
| 1030 | + ) { |
|
| 1031 | + return false; |
|
| 1032 | + } else { |
|
| 1033 | + if ($id == $qui['id_auteur']) { |
|
| 1034 | + if (isset($opt['statut']) and $opt['statut']) { |
|
| 1035 | + return false; |
|
| 1036 | + } else { |
|
| 1037 | + return true; |
|
| 1038 | + } |
|
| 1039 | + } else { |
|
| 1040 | + if ($id_auteur = intval($id)) { |
|
| 1041 | + $t = sql_fetsel('statut', 'spip_auteurs', "id_auteur=$id_auteur"); |
|
| 1042 | + if ($t and $t['statut'] != '0minirezo') { |
|
| 1043 | + return true; |
|
| 1044 | + } else { |
|
| 1045 | + return false; |
|
| 1046 | + } |
|
| 1047 | + } // id = 0 => creation |
|
| 1048 | + else { |
|
| 1049 | + return true; |
|
| 1050 | + } |
|
| 1051 | + } |
|
| 1052 | + } |
|
| 1053 | + } |
|
| 1054 | + |
|
| 1055 | + // Un admin complet fait ce qu'il veut |
|
| 1056 | + // sauf se degrader |
|
| 1057 | + if ($id == $qui['id_auteur'] && (isset($opt['statut']) and $opt['statut'])) { |
|
| 1058 | + return false; |
|
| 1059 | + } elseif ( |
|
| 1060 | + isset($opt['webmestre']) |
|
| 1061 | + and $opt['webmestre'] |
|
| 1062 | + and (defined('_ID_WEBMESTRES') |
|
| 1063 | + or !autoriser('webmestre')) |
|
| 1064 | + ) { |
|
| 1065 | + // et toucher au statut webmestre si il ne l'est pas lui meme |
|
| 1066 | + // ou si les webmestres sont fixes par constante (securite) |
|
| 1067 | + return false; |
|
| 1068 | + } // et modifier un webmestre si il ne l'est pas lui meme |
|
| 1069 | + elseif (intval($id) and autoriser('webmestre', '', 0, $id) and !autoriser('webmestre')) { |
|
| 1070 | + return false; |
|
| 1071 | + } else { |
|
| 1072 | + return true; |
|
| 1073 | + } |
|
| 1074 | 1074 | } |
| 1075 | 1075 | |
| 1076 | 1076 | |
@@ -1087,7 +1087,7 @@ discard block |
||
| 1087 | 1087 | * @return bool true s'il a le droit, false sinon |
| 1088 | 1088 | **/ |
| 1089 | 1089 | function autoriser_associerauteurs_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1090 | - return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 1090 | + return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 1091 | 1091 | } |
| 1092 | 1092 | |
| 1093 | 1093 | |
@@ -1104,7 +1104,7 @@ discard block |
||
| 1104 | 1104 | * @return bool true s'il a le droit, false sinon |
| 1105 | 1105 | **/ |
| 1106 | 1106 | function autoriser_chargerftp_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1107 | - return $qui['statut'] == '0minirezo'; |
|
| 1107 | + return $qui['statut'] == '0minirezo'; |
|
| 1108 | 1108 | } |
| 1109 | 1109 | |
| 1110 | 1110 | /** |
@@ -1120,7 +1120,7 @@ discard block |
||
| 1120 | 1120 | * @return bool true s'il a le droit, false sinon |
| 1121 | 1121 | **/ |
| 1122 | 1122 | function autoriser_debug_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1123 | - return $qui['statut'] == '0minirezo'; |
|
| 1123 | + return $qui['statut'] == '0minirezo'; |
|
| 1124 | 1124 | } |
| 1125 | 1125 | |
| 1126 | 1126 | /** |
@@ -1137,54 +1137,54 @@ discard block |
||
| 1137 | 1137 | * @return array Liste des rubriques |
| 1138 | 1138 | **/ |
| 1139 | 1139 | function liste_rubriques_auteur($id_auteur, $raz = false) { |
| 1140 | - static $restreint = []; |
|
| 1141 | - |
|
| 1142 | - if (!$id_auteur = intval($id_auteur)) { |
|
| 1143 | - return []; |
|
| 1144 | - } |
|
| 1145 | - if ($raz) { |
|
| 1146 | - unset($restreint[$id_auteur]); |
|
| 1147 | - } elseif (isset($restreint[$id_auteur])) { |
|
| 1148 | - return $restreint[$id_auteur]; |
|
| 1149 | - } |
|
| 1150 | - |
|
| 1151 | - $rubriques = []; |
|
| 1152 | - if ( |
|
| 1153 | - (!isset($GLOBALS['meta']['version_installee']) |
|
| 1154 | - or $GLOBALS['meta']['version_installee'] > 16428) |
|
| 1155 | - and $r = sql_allfetsel( |
|
| 1156 | - 'id_objet', |
|
| 1157 | - 'spip_auteurs_liens', |
|
| 1158 | - 'id_auteur=' . intval($id_auteur) . " AND objet='rubrique' AND id_objet!=0" |
|
| 1159 | - ) |
|
| 1160 | - and is_countable($r) ? count($r) : 0 |
|
| 1161 | - ) { |
|
| 1162 | - $r = array_column($r, 'id_objet'); |
|
| 1163 | - |
|
| 1164 | - // recuperer toute la branche, au format chaine enumeration |
|
| 1165 | - include_spip('inc/rubriques'); |
|
| 1166 | - $r = calcul_branche_in($r); |
|
| 1167 | - $r = explode(',', $r); |
|
| 1168 | - |
|
| 1169 | - // passer les rubriques en index, elimine les doublons |
|
| 1170 | - $r = array_flip($r); |
|
| 1171 | - // recuperer les index seuls |
|
| 1172 | - $r = array_keys($r); |
|
| 1173 | - // combiner pour avoir un tableau id_rubrique=>id_rubrique |
|
| 1174 | - // est-ce vraiment utile ? (on preserve la forme donnee par le code precedent) |
|
| 1175 | - $rubriques = array_combine($r, $r); |
|
| 1176 | - } |
|
| 1177 | - |
|
| 1178 | - // Affecter l'auteur session le cas echeant |
|
| 1179 | - if ( |
|
| 1180 | - isset($GLOBALS['visiteur_session']['id_auteur']) |
|
| 1181 | - and $GLOBALS['visiteur_session']['id_auteur'] == $id_auteur |
|
| 1182 | - ) { |
|
| 1183 | - $GLOBALS['visiteur_session']['restreint'] = $rubriques; |
|
| 1184 | - } |
|
| 1185 | - |
|
| 1186 | - |
|
| 1187 | - return $restreint[$id_auteur] = $rubriques; |
|
| 1140 | + static $restreint = []; |
|
| 1141 | + |
|
| 1142 | + if (!$id_auteur = intval($id_auteur)) { |
|
| 1143 | + return []; |
|
| 1144 | + } |
|
| 1145 | + if ($raz) { |
|
| 1146 | + unset($restreint[$id_auteur]); |
|
| 1147 | + } elseif (isset($restreint[$id_auteur])) { |
|
| 1148 | + return $restreint[$id_auteur]; |
|
| 1149 | + } |
|
| 1150 | + |
|
| 1151 | + $rubriques = []; |
|
| 1152 | + if ( |
|
| 1153 | + (!isset($GLOBALS['meta']['version_installee']) |
|
| 1154 | + or $GLOBALS['meta']['version_installee'] > 16428) |
|
| 1155 | + and $r = sql_allfetsel( |
|
| 1156 | + 'id_objet', |
|
| 1157 | + 'spip_auteurs_liens', |
|
| 1158 | + 'id_auteur=' . intval($id_auteur) . " AND objet='rubrique' AND id_objet!=0" |
|
| 1159 | + ) |
|
| 1160 | + and is_countable($r) ? count($r) : 0 |
|
| 1161 | + ) { |
|
| 1162 | + $r = array_column($r, 'id_objet'); |
|
| 1163 | + |
|
| 1164 | + // recuperer toute la branche, au format chaine enumeration |
|
| 1165 | + include_spip('inc/rubriques'); |
|
| 1166 | + $r = calcul_branche_in($r); |
|
| 1167 | + $r = explode(',', $r); |
|
| 1168 | + |
|
| 1169 | + // passer les rubriques en index, elimine les doublons |
|
| 1170 | + $r = array_flip($r); |
|
| 1171 | + // recuperer les index seuls |
|
| 1172 | + $r = array_keys($r); |
|
| 1173 | + // combiner pour avoir un tableau id_rubrique=>id_rubrique |
|
| 1174 | + // est-ce vraiment utile ? (on preserve la forme donnee par le code precedent) |
|
| 1175 | + $rubriques = array_combine($r, $r); |
|
| 1176 | + } |
|
| 1177 | + |
|
| 1178 | + // Affecter l'auteur session le cas echeant |
|
| 1179 | + if ( |
|
| 1180 | + isset($GLOBALS['visiteur_session']['id_auteur']) |
|
| 1181 | + and $GLOBALS['visiteur_session']['id_auteur'] == $id_auteur |
|
| 1182 | + ) { |
|
| 1183 | + $GLOBALS['visiteur_session']['restreint'] = $rubriques; |
|
| 1184 | + } |
|
| 1185 | + |
|
| 1186 | + |
|
| 1187 | + return $restreint[$id_auteur] = $rubriques; |
|
| 1188 | 1188 | } |
| 1189 | 1189 | |
| 1190 | 1190 | /** |
@@ -1200,7 +1200,7 @@ discard block |
||
| 1200 | 1200 | * @return bool true s'il a le droit, false sinon |
| 1201 | 1201 | **/ |
| 1202 | 1202 | function autoriser_rubrique_previsualiser_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1203 | - return autoriser('previsualiser'); |
|
| 1203 | + return autoriser('previsualiser'); |
|
| 1204 | 1204 | } |
| 1205 | 1205 | |
| 1206 | 1206 | /** |
@@ -1216,7 +1216,7 @@ discard block |
||
| 1216 | 1216 | * @return bool true s'il a le droit, false sinon |
| 1217 | 1217 | **/ |
| 1218 | 1218 | function autoriser_rubrique_iconifier_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1219 | - return autoriser('publierdans', 'rubrique', $id, $qui, $opt); |
|
| 1219 | + return autoriser('publierdans', 'rubrique', $id, $qui, $opt); |
|
| 1220 | 1220 | } |
| 1221 | 1221 | |
| 1222 | 1222 | /** |
@@ -1232,8 +1232,8 @@ discard block |
||
| 1232 | 1232 | * @return bool true s'il a le droit, false sinon |
| 1233 | 1233 | **/ |
| 1234 | 1234 | function autoriser_auteur_iconifier_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1235 | - return (($id == $qui['id_auteur']) or |
|
| 1236 | - (($qui['statut'] == '0minirezo') and !$qui['restreint'])); |
|
| 1235 | + return (($id == $qui['id_auteur']) or |
|
| 1236 | + (($qui['statut'] == '0minirezo') and !$qui['restreint'])); |
|
| 1237 | 1237 | } |
| 1238 | 1238 | |
| 1239 | 1239 | /** |
@@ -1249,8 +1249,8 @@ discard block |
||
| 1249 | 1249 | * @return bool true s'il a le droit, false sinon |
| 1250 | 1250 | **/ |
| 1251 | 1251 | function autoriser_iconifier_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1252 | - // par defaut, on a le droit d'iconifier si on a le droit de modifier |
|
| 1253 | - return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 1252 | + // par defaut, on a le droit d'iconifier si on a le droit de modifier |
|
| 1253 | + return autoriser('modifier', $type, $id, $qui, $opt); |
|
| 1254 | 1254 | } |
| 1255 | 1255 | |
| 1256 | 1256 | |
@@ -1268,7 +1268,7 @@ discard block |
||
| 1268 | 1268 | * @return bool true |
| 1269 | 1269 | **/ |
| 1270 | 1270 | function autoriser_ok_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1271 | - return true; |
|
| 1271 | + return true; |
|
| 1272 | 1272 | } |
| 1273 | 1273 | |
| 1274 | 1274 | /** |
@@ -1285,7 +1285,7 @@ discard block |
||
| 1285 | 1285 | * @return bool false |
| 1286 | 1286 | **/ |
| 1287 | 1287 | function autoriser_niet_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1288 | - return false; |
|
| 1288 | + return false; |
|
| 1289 | 1289 | } |
| 1290 | 1290 | |
| 1291 | 1291 | /** |
@@ -1301,11 +1301,11 @@ discard block |
||
| 1301 | 1301 | * @return bool false |
| 1302 | 1302 | **/ |
| 1303 | 1303 | function autoriser_base_reparer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1304 | - if (!autoriser('detruire') or _request('reinstall')) { |
|
| 1305 | - return false; |
|
| 1306 | - } |
|
| 1304 | + if (!autoriser('detruire') or _request('reinstall')) { |
|
| 1305 | + return false; |
|
| 1306 | + } |
|
| 1307 | 1307 | |
| 1308 | - return true; |
|
| 1308 | + return true; |
|
| 1309 | 1309 | } |
| 1310 | 1310 | |
| 1311 | 1311 | /** |
@@ -1321,7 +1321,7 @@ discard block |
||
| 1321 | 1321 | * @return bool true s'il a le droit, false sinon |
| 1322 | 1322 | **/ |
| 1323 | 1323 | function autoriser_infosperso_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1324 | - return true; |
|
| 1324 | + return true; |
|
| 1325 | 1325 | } |
| 1326 | 1326 | |
| 1327 | 1327 | /** |
@@ -1337,7 +1337,7 @@ discard block |
||
| 1337 | 1337 | * @return bool true s'il a le droit, false sinon |
| 1338 | 1338 | **/ |
| 1339 | 1339 | function autoriser_langage_configurer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1340 | - return true; |
|
| 1340 | + return true; |
|
| 1341 | 1341 | } |
| 1342 | 1342 | |
| 1343 | 1343 | /** |
@@ -1353,7 +1353,7 @@ discard block |
||
| 1353 | 1353 | * @return bool true s'il a le droit, false sinon |
| 1354 | 1354 | **/ |
| 1355 | 1355 | function autoriser_configurerlangage_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1356 | - return autoriser('configurer', '_langage', $id, $qui, $opt); |
|
| 1356 | + return autoriser('configurer', '_langage', $id, $qui, $opt); |
|
| 1357 | 1357 | } |
| 1358 | 1358 | |
| 1359 | 1359 | /** |
@@ -1369,7 +1369,7 @@ discard block |
||
| 1369 | 1369 | * @return bool true s'il a le droit, false sinon |
| 1370 | 1370 | **/ |
| 1371 | 1371 | function autoriser_preferences_configurer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1372 | - return true; |
|
| 1372 | + return true; |
|
| 1373 | 1373 | } |
| 1374 | 1374 | |
| 1375 | 1375 | /** |
@@ -1385,7 +1385,7 @@ discard block |
||
| 1385 | 1385 | * @return bool true s'il a le droit, false sinon |
| 1386 | 1386 | **/ |
| 1387 | 1387 | function autoriser_configurerpreferences_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1388 | - return autoriser('configurer', '_preferences', $id, $qui, $opt); |
|
| 1388 | + return autoriser('configurer', '_preferences', $id, $qui, $opt); |
|
| 1389 | 1389 | } |
| 1390 | 1390 | |
| 1391 | 1391 | /** |
@@ -1401,8 +1401,8 @@ discard block |
||
| 1401 | 1401 | * @return bool true s'il a le droit, false sinon |
| 1402 | 1402 | **/ |
| 1403 | 1403 | function autoriser_menudeveloppement_menugrandeentree_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1404 | - return (isset($GLOBALS['visiteur_session']['prefs']['activer_menudev']) |
|
| 1405 | - and $GLOBALS['visiteur_session']['prefs']['activer_menudev'] == 'oui'); |
|
| 1404 | + return (isset($GLOBALS['visiteur_session']['prefs']['activer_menudev']) |
|
| 1405 | + and $GLOBALS['visiteur_session']['prefs']['activer_menudev'] == 'oui'); |
|
| 1406 | 1406 | } |
| 1407 | 1407 | |
| 1408 | 1408 | /** |
@@ -1419,7 +1419,7 @@ discard block |
||
| 1419 | 1419 | * @return bool true s'il a le droit, false sinon |
| 1420 | 1420 | **/ |
| 1421 | 1421 | function autoriser_menugrandeentree_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1422 | - return true; |
|
| 1422 | + return true; |
|
| 1423 | 1423 | } |
| 1424 | 1424 | |
| 1425 | 1425 | /** |
@@ -1435,7 +1435,7 @@ discard block |
||
| 1435 | 1435 | * @return bool true s'il a le droit, false sinon |
| 1436 | 1436 | **/ |
| 1437 | 1437 | function autoriser_auteurs_voir_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1438 | - return true; |
|
| 1438 | + return true; |
|
| 1439 | 1439 | } |
| 1440 | 1440 | |
| 1441 | 1441 | /** |
@@ -1451,7 +1451,7 @@ discard block |
||
| 1451 | 1451 | * @return bool true s'il a le droit, false sinon |
| 1452 | 1452 | **/ |
| 1453 | 1453 | function autoriser_auteurs_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1454 | - return autoriser('voir', '_auteurs', $id, $qui, $opt); |
|
| 1454 | + return autoriser('voir', '_auteurs', $id, $qui, $opt); |
|
| 1455 | 1455 | } |
| 1456 | 1456 | |
| 1457 | 1457 | /** |
@@ -1467,7 +1467,7 @@ discard block |
||
| 1467 | 1467 | * @return bool true s'il a le droit, false sinon |
| 1468 | 1468 | **/ |
| 1469 | 1469 | function autoriser_articles_voir_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1470 | - return true; |
|
| 1470 | + return true; |
|
| 1471 | 1471 | } |
| 1472 | 1472 | |
| 1473 | 1473 | /** |
@@ -1483,7 +1483,7 @@ discard block |
||
| 1483 | 1483 | * @return bool true s'il a le droit, false sinon |
| 1484 | 1484 | **/ |
| 1485 | 1485 | function autoriser_articles_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1486 | - return autoriser('voir', '_articles', $id, $qui, $opt); |
|
| 1486 | + return autoriser('voir', '_articles', $id, $qui, $opt); |
|
| 1487 | 1487 | } |
| 1488 | 1488 | |
| 1489 | 1489 | /** |
@@ -1499,7 +1499,7 @@ discard block |
||
| 1499 | 1499 | * @return bool true s'il a le droit, false sinon |
| 1500 | 1500 | **/ |
| 1501 | 1501 | function autoriser_rubriques_voir_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1502 | - return true; |
|
| 1502 | + return true; |
|
| 1503 | 1503 | } |
| 1504 | 1504 | |
| 1505 | 1505 | /** |
@@ -1515,7 +1515,7 @@ discard block |
||
| 1515 | 1515 | * @return bool true s'il a le droit, false sinon |
| 1516 | 1516 | **/ |
| 1517 | 1517 | function autoriser_rubriques_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1518 | - return autoriser('voir', '_rubriques', $id, $qui, $opt); |
|
| 1518 | + return autoriser('voir', '_rubriques', $id, $qui, $opt); |
|
| 1519 | 1519 | } |
| 1520 | 1520 | |
| 1521 | 1521 | /** |
@@ -1531,7 +1531,7 @@ discard block |
||
| 1531 | 1531 | * @return bool true s'il a le droit, false sinon |
| 1532 | 1532 | **/ |
| 1533 | 1533 | function autoriser_articlecreer_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1534 | - return verifier_table_non_vide(); |
|
| 1534 | + return verifier_table_non_vide(); |
|
| 1535 | 1535 | } |
| 1536 | 1536 | |
| 1537 | 1537 | |
@@ -1550,7 +1550,7 @@ discard block |
||
| 1550 | 1550 | * @return bool true s'il a le droit, false sinon |
| 1551 | 1551 | **/ |
| 1552 | 1552 | function autoriser_auteurcreer_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1553 | - return autoriser('creer', 'auteur', $id, $qui, $opt); |
|
| 1553 | + return autoriser('creer', 'auteur', $id, $qui, $opt); |
|
| 1554 | 1554 | } |
| 1555 | 1555 | |
| 1556 | 1556 | /** |
@@ -1566,13 +1566,13 @@ discard block |
||
| 1566 | 1566 | * @return bool true s'il a le droit, false sinon |
| 1567 | 1567 | **/ |
| 1568 | 1568 | function autoriser_visiteurs_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1569 | - include_spip('base/abstract_sql'); |
|
| 1570 | - return |
|
| 1571 | - $qui['statut'] == '0minirezo' and !$qui['restreint'] |
|
| 1572 | - and ( |
|
| 1573 | - $GLOBALS['meta']['accepter_visiteurs'] != 'non' |
|
| 1574 | - or sql_countsel('spip_auteurs', 'statut in ("6forum", "nouveau")') > 0 |
|
| 1575 | - ); |
|
| 1569 | + include_spip('base/abstract_sql'); |
|
| 1570 | + return |
|
| 1571 | + $qui['statut'] == '0minirezo' and !$qui['restreint'] |
|
| 1572 | + and ( |
|
| 1573 | + $GLOBALS['meta']['accepter_visiteurs'] != 'non' |
|
| 1574 | + or sql_countsel('spip_auteurs', 'statut in ("6forum", "nouveau")') > 0 |
|
| 1575 | + ); |
|
| 1576 | 1576 | } |
| 1577 | 1577 | |
| 1578 | 1578 | /** |
@@ -1588,7 +1588,7 @@ discard block |
||
| 1588 | 1588 | * @return bool true s'il a le droit, false sinon |
| 1589 | 1589 | **/ |
| 1590 | 1590 | function autoriser_suiviedito_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1591 | - return $qui['statut'] == '0minirezo'; |
|
| 1591 | + return $qui['statut'] == '0minirezo'; |
|
| 1592 | 1592 | } |
| 1593 | 1593 | |
| 1594 | 1594 | /** |
@@ -1604,7 +1604,7 @@ discard block |
||
| 1604 | 1604 | * @return bool true s'il a le droit, false sinon |
| 1605 | 1605 | **/ |
| 1606 | 1606 | function autoriser_synchro_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1607 | - return $qui['statut'] == '0minirezo'; |
|
| 1607 | + return $qui['statut'] == '0minirezo'; |
|
| 1608 | 1608 | } |
| 1609 | 1609 | |
| 1610 | 1610 | /** |
@@ -1620,7 +1620,7 @@ discard block |
||
| 1620 | 1620 | * @return bool true s'il a le droit, false sinon |
| 1621 | 1621 | **/ |
| 1622 | 1622 | function autoriser_configurerinteractions_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1623 | - return autoriser('configurer', '_interactions', $id, $qui, $opt); |
|
| 1623 | + return autoriser('configurer', '_interactions', $id, $qui, $opt); |
|
| 1624 | 1624 | } |
| 1625 | 1625 | |
| 1626 | 1626 | /** |
@@ -1636,7 +1636,7 @@ discard block |
||
| 1636 | 1636 | * @return bool true s'il a le droit, false sinon |
| 1637 | 1637 | **/ |
| 1638 | 1638 | function autoriser_configurerlangue_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1639 | - return autoriser('configurer', '_langue', $id, $qui, $opt); |
|
| 1639 | + return autoriser('configurer', '_langue', $id, $qui, $opt); |
|
| 1640 | 1640 | } |
| 1641 | 1641 | |
| 1642 | 1642 | /** |
@@ -1652,7 +1652,7 @@ discard block |
||
| 1652 | 1652 | * @return bool true s'il a le droit, false sinon |
| 1653 | 1653 | **/ |
| 1654 | 1654 | function autoriser_configurermultilinguisme_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1655 | - return autoriser('configurer', '_multilinguisme', $id, $qui, $opt); |
|
| 1655 | + return autoriser('configurer', '_multilinguisme', $id, $qui, $opt); |
|
| 1656 | 1656 | } |
| 1657 | 1657 | |
| 1658 | 1658 | /** |
@@ -1668,7 +1668,7 @@ discard block |
||
| 1668 | 1668 | * @return bool true s'il a le droit, false sinon |
| 1669 | 1669 | **/ |
| 1670 | 1670 | function autoriser_configurercontenu_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1671 | - return autoriser('configurer', '_contenu', $id, $qui, $opt); |
|
| 1671 | + return autoriser('configurer', '_contenu', $id, $qui, $opt); |
|
| 1672 | 1672 | } |
| 1673 | 1673 | |
| 1674 | 1674 | /** |
@@ -1684,7 +1684,7 @@ discard block |
||
| 1684 | 1684 | * @return bool true s'il a le droit, false sinon |
| 1685 | 1685 | **/ |
| 1686 | 1686 | function autoriser_configureravancees_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1687 | - return autoriser('configurer', '_avancees', $id, $qui, $opt); |
|
| 1687 | + return autoriser('configurer', '_avancees', $id, $qui, $opt); |
|
| 1688 | 1688 | } |
| 1689 | 1689 | |
| 1690 | 1690 | /** |
@@ -1700,7 +1700,7 @@ discard block |
||
| 1700 | 1700 | * @return bool true s'il a le droit, false sinon |
| 1701 | 1701 | **/ |
| 1702 | 1702 | function autoriser_adminplugin_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1703 | - return autoriser('configurer', '_plugins', $id, $qui, $opt); |
|
| 1703 | + return autoriser('configurer', '_plugins', $id, $qui, $opt); |
|
| 1704 | 1704 | } |
| 1705 | 1705 | |
| 1706 | 1706 | /** |
@@ -1716,7 +1716,7 @@ discard block |
||
| 1716 | 1716 | * @return bool true s'il a le droit, false sinon |
| 1717 | 1717 | **/ |
| 1718 | 1718 | function autoriser_admintech_menu_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1719 | - return autoriser('detruire', $type, $id, $qui, $opt); |
|
| 1719 | + return autoriser('detruire', $type, $id, $qui, $opt); |
|
| 1720 | 1720 | } |
| 1721 | 1721 | |
| 1722 | 1722 | /** |
@@ -1732,7 +1732,7 @@ discard block |
||
| 1732 | 1732 | * @return bool true s'il a le droit, false sinon |
| 1733 | 1733 | **/ |
| 1734 | 1734 | function autoriser_queue_purger_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1735 | - return autoriser('webmestre'); |
|
| 1735 | + return autoriser('webmestre'); |
|
| 1736 | 1736 | } |
| 1737 | 1737 | |
| 1738 | 1738 | |
@@ -1750,11 +1750,11 @@ discard block |
||
| 1750 | 1750 | * @return bool true s'il a le droit, false sinon |
| 1751 | 1751 | **/ |
| 1752 | 1752 | function autoriser_echafauder_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1753 | - if (test_espace_prive()) { |
|
| 1754 | - return intval($qui['id_auteur']) ? true : false; |
|
| 1755 | - } else { |
|
| 1756 | - return autoriser('webmestre', '', $id, $qui, $opt); |
|
| 1757 | - } |
|
| 1753 | + if (test_espace_prive()) { |
|
| 1754 | + return intval($qui['id_auteur']) ? true : false; |
|
| 1755 | + } else { |
|
| 1756 | + return autoriser('webmestre', '', $id, $qui, $opt); |
|
| 1757 | + } |
|
| 1758 | 1758 | } |
| 1759 | 1759 | |
| 1760 | 1760 | |
@@ -1769,27 +1769,27 @@ discard block |
||
| 1769 | 1769 | * Identifiants d'auteurs |
| 1770 | 1770 | */ |
| 1771 | 1771 | function auteurs_objet($objet, $id_objet, $cond = '') { |
| 1772 | - $objet = objet_type($objet); |
|
| 1773 | - $where = [ |
|
| 1774 | - 'objet=' . sql_quote($objet), |
|
| 1775 | - 'id_objet=' . intval($id_objet) |
|
| 1776 | - ]; |
|
| 1777 | - if (!empty($cond)) { |
|
| 1778 | - if (is_array($cond)) { |
|
| 1779 | - $where = array_merge($where, $cond); |
|
| 1780 | - } else { |
|
| 1781 | - $where[] = $cond; |
|
| 1782 | - } |
|
| 1783 | - } |
|
| 1784 | - $auteurs = sql_allfetsel( |
|
| 1785 | - 'id_auteur', |
|
| 1786 | - 'spip_auteurs_liens', |
|
| 1787 | - $where |
|
| 1788 | - ); |
|
| 1789 | - if (is_array($auteurs)) { |
|
| 1790 | - return array_column($auteurs, 'id_auteur'); |
|
| 1791 | - } |
|
| 1792 | - return []; |
|
| 1772 | + $objet = objet_type($objet); |
|
| 1773 | + $where = [ |
|
| 1774 | + 'objet=' . sql_quote($objet), |
|
| 1775 | + 'id_objet=' . intval($id_objet) |
|
| 1776 | + ]; |
|
| 1777 | + if (!empty($cond)) { |
|
| 1778 | + if (is_array($cond)) { |
|
| 1779 | + $where = array_merge($where, $cond); |
|
| 1780 | + } else { |
|
| 1781 | + $where[] = $cond; |
|
| 1782 | + } |
|
| 1783 | + } |
|
| 1784 | + $auteurs = sql_allfetsel( |
|
| 1785 | + 'id_auteur', |
|
| 1786 | + 'spip_auteurs_liens', |
|
| 1787 | + $where |
|
| 1788 | + ); |
|
| 1789 | + if (is_array($auteurs)) { |
|
| 1790 | + return array_column($auteurs, 'id_auteur'); |
|
| 1791 | + } |
|
| 1792 | + return []; |
|
| 1793 | 1793 | } |
| 1794 | 1794 | |
| 1795 | 1795 | /** |
@@ -1804,11 +1804,11 @@ discard block |
||
| 1804 | 1804 | * - false : serveur SQL indisponible |
| 1805 | 1805 | */ |
| 1806 | 1806 | function auteurs_article($id_article, $cond = '') { |
| 1807 | - return sql_allfetsel( |
|
| 1808 | - 'id_auteur', |
|
| 1809 | - 'spip_auteurs_liens', |
|
| 1810 | - "objet='article' AND id_objet=" . intval($id_article) . ($cond ? " AND $cond" : '') |
|
| 1811 | - ); |
|
| 1807 | + return sql_allfetsel( |
|
| 1808 | + 'id_auteur', |
|
| 1809 | + 'spip_auteurs_liens', |
|
| 1810 | + "objet='article' AND id_objet=" . intval($id_article) . ($cond ? " AND $cond" : '') |
|
| 1811 | + ); |
|
| 1812 | 1812 | } |
| 1813 | 1813 | |
| 1814 | 1814 | |
@@ -1822,7 +1822,7 @@ discard block |
||
| 1822 | 1822 | */ |
| 1823 | 1823 | function acces_restreint_rubrique($id_rubrique) { |
| 1824 | 1824 | |
| 1825 | - return (isset($GLOBALS['connect_id_rubrique'][$id_rubrique])); |
|
| 1825 | + return (isset($GLOBALS['connect_id_rubrique'][$id_rubrique])); |
|
| 1826 | 1826 | } |
| 1827 | 1827 | |
| 1828 | 1828 | |
@@ -1835,12 +1835,12 @@ discard block |
||
| 1835 | 1835 | * @return bool true si un parent existe |
| 1836 | 1836 | */ |
| 1837 | 1837 | function verifier_table_non_vide($table = 'spip_rubriques') { |
| 1838 | - static $done = []; |
|
| 1839 | - if (!isset($done[$table])) { |
|
| 1840 | - $done[$table] = sql_countsel($table) > 0; |
|
| 1841 | - } |
|
| 1838 | + static $done = []; |
|
| 1839 | + if (!isset($done[$table])) { |
|
| 1840 | + $done[$table] = sql_countsel($table) > 0; |
|
| 1841 | + } |
|
| 1842 | 1842 | |
| 1843 | - return $done[$table]; |
|
| 1843 | + return $done[$table]; |
|
| 1844 | 1844 | } |
| 1845 | 1845 | |
| 1846 | 1846 | /** |
@@ -1865,15 +1865,15 @@ discard block |
||
| 1865 | 1865 | */ |
| 1866 | 1866 | function autoriser_inscrireauteur_dist($faire, $quoi, $id, $qui, $opt) { |
| 1867 | 1867 | |
| 1868 | - $s = array_search($quoi, $GLOBALS['liste_des_statuts']); |
|
| 1869 | - switch ($s) { |
|
| 1870 | - case 'info_redacteurs': |
|
| 1871 | - return ($GLOBALS['meta']['accepter_inscriptions'] == 'oui'); |
|
| 1872 | - case 'info_visiteurs': |
|
| 1873 | - return ($GLOBALS['meta']['accepter_visiteurs'] == 'oui' or $GLOBALS['meta']['forums_publics'] == 'abo'); |
|
| 1874 | - } |
|
| 1868 | + $s = array_search($quoi, $GLOBALS['liste_des_statuts']); |
|
| 1869 | + switch ($s) { |
|
| 1870 | + case 'info_redacteurs': |
|
| 1871 | + return ($GLOBALS['meta']['accepter_inscriptions'] == 'oui'); |
|
| 1872 | + case 'info_visiteurs': |
|
| 1873 | + return ($GLOBALS['meta']['accepter_visiteurs'] == 'oui' or $GLOBALS['meta']['forums_publics'] == 'abo'); |
|
| 1874 | + } |
|
| 1875 | 1875 | |
| 1876 | - return false; |
|
| 1876 | + return false; |
|
| 1877 | 1877 | } |
| 1878 | 1878 | |
| 1879 | 1879 | /** |
@@ -1889,7 +1889,7 @@ discard block |
||
| 1889 | 1889 | * @return bool false |
| 1890 | 1890 | **/ |
| 1891 | 1891 | function autoriser_inscription_relancer_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1892 | - return $qui['statut'] == '0minirezo' and !$qui['restreint']; |
|
| 1892 | + return $qui['statut'] == '0minirezo' and !$qui['restreint']; |
|
| 1893 | 1893 | } |
| 1894 | 1894 | |
| 1895 | 1895 | /** |
@@ -1905,5 +1905,5 @@ discard block |
||
| 1905 | 1905 | * @return bool true s'il a le droit, false sinon |
| 1906 | 1906 | **/ |
| 1907 | 1907 | function autoriser_phpinfos_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 1908 | - return autoriser('webmestre'); |
|
| 1908 | + return autoriser('webmestre'); |
|
| 1909 | 1909 | } |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | // mais apres la fonction autoriser() |
| 116 | 116 | if ($f = find_in_path('mes_fonctions.php')) { |
| 117 | 117 | global $dossier_squelettes; |
| 118 | - include_once(_ROOT_CWD . $f); |
|
| 118 | + include_once(_ROOT_CWD.$f); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | $qui = $GLOBALS['visiteur_session'] ?: []; |
| 158 | 158 | $qui = array_merge(['statut' => '', 'id_auteur' => 0, 'webmestre' => 'non'], $qui); |
| 159 | 159 | } elseif (is_numeric($qui)) { |
| 160 | - $qui = sql_fetsel('*', 'spip_auteurs', 'id_auteur=' . $qui); |
|
| 160 | + $qui = sql_fetsel('*', 'spip_auteurs', 'id_auteur='.$qui); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | // Admins restreints, on construit ici (pas generique mais...) |
@@ -167,8 +167,8 @@ discard block |
||
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | spip_log( |
| 170 | - "autoriser $faire $type $id (" . ($qui['nom'] ?? '') . ') ?', |
|
| 171 | - 'autoriser' . _LOG_DEBUG |
|
| 170 | + "autoriser $faire $type $id (".($qui['nom'] ?? '').') ?', |
|
| 171 | + 'autoriser'._LOG_DEBUG |
|
| 172 | 172 | ); |
| 173 | 173 | |
| 174 | 174 | // passer par objet_type pour avoir les alias |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | (isset($GLOBALS['autoriser_exception'][$faire][$type][$id]) and autoriser_exception($faire, $type, $id, 'verifier')) |
| 185 | 185 | or (isset($GLOBALS['autoriser_exception'][$faire][$type]['*']) and autoriser_exception($faire, $type, '*', 'verifier')) |
| 186 | 186 | ) { |
| 187 | - spip_log("autoriser ($faire, $type, $id, " . ($qui['nom'] ?? '') . ') : OK Exception', 'autoriser' . _LOG_DEBUG); |
|
| 187 | + spip_log("autoriser ($faire, $type, $id, ".($qui['nom'] ?? '').') : OK Exception', 'autoriser'._LOG_DEBUG); |
|
| 188 | 188 | return true; |
| 189 | 189 | } |
| 190 | 190 | |
@@ -193,18 +193,18 @@ discard block |
||
| 193 | 193 | // autoriser_faire[_dist], autoriser_defaut[_dist] |
| 194 | 194 | $fonctions = $type |
| 195 | 195 | ? [ |
| 196 | - 'autoriser_' . $type . '_' . $faire, |
|
| 197 | - 'autoriser_' . $type . '_' . $faire . '_dist', |
|
| 198 | - 'autoriser_' . $type, |
|
| 199 | - 'autoriser_' . $type . '_dist', |
|
| 200 | - 'autoriser_' . $faire, |
|
| 201 | - 'autoriser_' . $faire . '_dist', |
|
| 196 | + 'autoriser_'.$type.'_'.$faire, |
|
| 197 | + 'autoriser_'.$type.'_'.$faire.'_dist', |
|
| 198 | + 'autoriser_'.$type, |
|
| 199 | + 'autoriser_'.$type.'_dist', |
|
| 200 | + 'autoriser_'.$faire, |
|
| 201 | + 'autoriser_'.$faire.'_dist', |
|
| 202 | 202 | 'autoriser_defaut', |
| 203 | 203 | 'autoriser_defaut_dist' |
| 204 | 204 | ] |
| 205 | 205 | : [ |
| 206 | - 'autoriser_' . $faire, |
|
| 207 | - 'autoriser_' . $faire . '_dist', |
|
| 206 | + 'autoriser_'.$faire, |
|
| 207 | + 'autoriser_'.$faire.'_dist', |
|
| 208 | 208 | 'autoriser_defaut', |
| 209 | 209 | 'autoriser_defaut_dist' |
| 210 | 210 | ]; |
@@ -217,8 +217,8 @@ discard block |
||
| 217 | 217 | } |
| 218 | 218 | |
| 219 | 219 | spip_log( |
| 220 | - "$f($faire, $type, $id, " . ($qui['nom'] ?? '') . ') : ' . ($a ? 'OK' : 'niet'), |
|
| 221 | - 'autoriser' . _LOG_DEBUG |
|
| 220 | + "$f($faire, $type, $id, ".($qui['nom'] ?? '').') : '.($a ? 'OK' : 'niet'), |
|
| 221 | + 'autoriser'._LOG_DEBUG |
|
| 222 | 222 | ); |
| 223 | 223 | |
| 224 | 224 | return $a; |
@@ -353,7 +353,7 @@ discard block |
||
| 353 | 353 | function autoriser_previsualiser_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 354 | 354 | |
| 355 | 355 | // Le visiteur a-t-il un statut prevu par la config ? |
| 356 | - if (strpos($GLOBALS['meta']['preview'], ',' . $qui['statut'] . ',') !== false) { |
|
| 356 | + if (strpos($GLOBALS['meta']['preview'], ','.$qui['statut'].',') !== false) { |
|
| 357 | 357 | return test_previsualiser_objet_champ($type, $id, $qui, $opt); |
| 358 | 358 | } |
| 359 | 359 | |
@@ -410,7 +410,7 @@ discard block |
||
| 410 | 410 | } // pas de champ passe a la demande => NIET |
| 411 | 411 | $previsu = explode(',', $c['previsu']); |
| 412 | 412 | // regarder si ce statut est autorise pour l'auteur |
| 413 | - if (in_array($opt[$champ] . '/auteur', $previsu)) { |
|
| 413 | + if (in_array($opt[$champ].'/auteur', $previsu)) { |
|
| 414 | 414 | // retrouver l’id_auteur qui a filé un lien de prévisu éventuellement, |
| 415 | 415 | // sinon l’auteur en session |
| 416 | 416 | include_spip('inc/securiser_action'); |
@@ -424,12 +424,12 @@ discard block |
||
| 424 | 424 | |
| 425 | 425 | if (!$id_auteur) { |
| 426 | 426 | return false; |
| 427 | - } elseif (autoriser('previsualiser' . $opt[$champ], $type, 0, $id_auteur)) { |
|
| 427 | + } elseif (autoriser('previsualiser'.$opt[$champ], $type, 0, $id_auteur)) { |
|
| 428 | 428 | // dans ce cas (admin en general), pas de filtrage sur ce statut |
| 429 | 429 | } elseif ( |
| 430 | 430 | !sql_countsel( |
| 431 | 431 | 'spip_auteurs_liens', |
| 432 | - 'id_auteur=' . intval($id_auteur) . ' AND objet=' . sql_quote($type) . ' AND id_objet=' . intval($id) |
|
| 432 | + 'id_auteur='.intval($id_auteur).' AND objet='.sql_quote($type).' AND id_objet='.intval($id) |
|
| 433 | 433 | ) |
| 434 | 434 | ) { |
| 435 | 435 | return false; |
@@ -472,16 +472,16 @@ discard block |
||
| 472 | 472 | // multilinguisme par secteur et objet rattaché à une rubrique |
| 473 | 473 | $primary = id_table_objet($type); |
| 474 | 474 | if ($table != 'spip_rubriques') { |
| 475 | - $id_rubrique = sql_getfetsel('id_rubrique', "$table", "$primary=" . intval($id)); |
|
| 475 | + $id_rubrique = sql_getfetsel('id_rubrique', "$table", "$primary=".intval($id)); |
|
| 476 | 476 | } else { |
| 477 | 477 | $id_rubrique = $id; |
| 478 | 478 | } |
| 479 | - $id_secteur = sql_getfetsel('id_secteur', 'spip_rubriques', 'id_rubrique=' . intval($id_rubrique)); |
|
| 479 | + $id_secteur = sql_getfetsel('id_secteur', 'spip_rubriques', 'id_rubrique='.intval($id_rubrique)); |
|
| 480 | 480 | if (!$id_secteur > 0) { |
| 481 | 481 | $id_secteur = $id_rubrique; |
| 482 | 482 | } |
| 483 | - $langue_secteur = sql_getfetsel('lang', 'spip_rubriques', 'id_rubrique=' . intval($id_secteur)); |
|
| 484 | - $langue_objet = sql_getfetsel('lang', "$table", "$primary=" . intval($id)); |
|
| 483 | + $langue_secteur = sql_getfetsel('lang', 'spip_rubriques', 'id_rubrique='.intval($id_secteur)); |
|
| 484 | + $langue_objet = sql_getfetsel('lang', "$table", "$primary=".intval($id)); |
|
| 485 | 485 | if ($langue_secteur != $langue_objet) { |
| 486 | 486 | // configuration incohérente, on laisse l'utilisateur corriger la situation |
| 487 | 487 | return true; |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | if ($table != 'spip_rubriques') { // le choix de la langue se fait seulement sur les rubriques |
| 490 | 490 | return false; |
| 491 | 491 | } else { |
| 492 | - $id_parent = sql_getfetsel('id_parent', 'spip_rubriques', 'id_rubrique=' . intval($id)); |
|
| 492 | + $id_parent = sql_getfetsel('id_parent', 'spip_rubriques', 'id_rubrique='.intval($id)); |
|
| 493 | 493 | if ($id_parent != 0) { |
| 494 | 494 | // sous-rubriques : pas de choix de langue |
| 495 | 495 | return false; |
@@ -537,7 +537,7 @@ discard block |
||
| 537 | 537 | |
| 538 | 538 | if (!isset($opt['statut'])) { |
| 539 | 539 | if (isset($desc['field']['statut'])) { |
| 540 | - $statut = sql_getfetsel('statut', $desc['table'], id_table_objet($type) . '=' . intval($id)); |
|
| 540 | + $statut = sql_getfetsel('statut', $desc['table'], id_table_objet($type).'='.intval($id)); |
|
| 541 | 541 | } else { |
| 542 | 542 | $statut = 'publie'; |
| 543 | 543 | } // pas de statut => publie |
@@ -697,11 +697,11 @@ discard block |
||
| 697 | 697 | return false; |
| 698 | 698 | } |
| 699 | 699 | |
| 700 | - if (sql_countsel('spip_rubriques', 'id_parent=' . intval($id))) { |
|
| 700 | + if (sql_countsel('spip_rubriques', 'id_parent='.intval($id))) { |
|
| 701 | 701 | return false; |
| 702 | 702 | } |
| 703 | 703 | |
| 704 | - if (sql_countsel('spip_articles', 'id_rubrique=' . intval($id) . " AND (statut<>'poubelle')")) { |
|
| 704 | + if (sql_countsel('spip_articles', 'id_rubrique='.intval($id)." AND (statut<>'poubelle')")) { |
|
| 705 | 705 | return false; |
| 706 | 706 | } |
| 707 | 707 | |
@@ -736,7 +736,7 @@ discard block |
||
| 736 | 736 | if (!$id) { |
| 737 | 737 | return false; |
| 738 | 738 | } |
| 739 | - $r = sql_fetsel('id_rubrique,statut', 'spip_articles', 'id_article=' . sql_quote($id)); |
|
| 739 | + $r = sql_fetsel('id_rubrique,statut', 'spip_articles', 'id_article='.sql_quote($id)); |
|
| 740 | 740 | |
| 741 | 741 | return |
| 742 | 742 | $r |
@@ -747,7 +747,7 @@ discard block |
||
| 747 | 747 | (!isset($opt['statut']) or $opt['statut'] !== 'publie') |
| 748 | 748 | and in_array($qui['statut'], ['0minirezo', '1comite']) |
| 749 | 749 | and in_array($r['statut'], ['prop', 'prepa', 'poubelle']) |
| 750 | - and auteurs_objet('article', $id, 'id_auteur=' . $qui['id_auteur']) |
|
| 750 | + and auteurs_objet('article', $id, 'id_auteur='.$qui['id_auteur']) |
|
| 751 | 751 | ) |
| 752 | 752 | ); |
| 753 | 753 | } |
@@ -801,7 +801,7 @@ discard block |
||
| 801 | 801 | if (!$id) { |
| 802 | 802 | return false; |
| 803 | 803 | } |
| 804 | - $statut = sql_getfetsel('statut', 'spip_articles', 'id_article=' . intval($id)); |
|
| 804 | + $statut = sql_getfetsel('statut', 'spip_articles', 'id_article='.intval($id)); |
|
| 805 | 805 | } |
| 806 | 806 | |
| 807 | 807 | return |
@@ -812,7 +812,7 @@ discard block |
||
| 812 | 812 | or |
| 813 | 813 | ($id |
| 814 | 814 | and $qui['id_auteur'] |
| 815 | - and auteurs_objet('article', $id, 'id_auteur=' . $qui['id_auteur'])); |
|
| 815 | + and auteurs_objet('article', $id, 'id_auteur='.$qui['id_auteur'])); |
|
| 816 | 816 | } |
| 817 | 817 | |
| 818 | 818 | |
@@ -831,8 +831,8 @@ discard block |
||
| 831 | 831 | function autoriser_voir_dist(string $faire, string $type, int $id, array $qui, array $opt): bool { |
| 832 | 832 | # securite, mais on aurait pas du arriver ici ! |
| 833 | 833 | if ( |
| 834 | - function_exists($f = 'autoriser_' . $type . '_voir') |
|
| 835 | - or function_exists($f = 'autoriser_' . $type . '_voir_dist') |
|
| 834 | + function_exists($f = 'autoriser_'.$type.'_voir') |
|
| 835 | + or function_exists($f = 'autoriser_'.$type.'_voir_dist') |
|
| 836 | 836 | ) { |
| 837 | 837 | return $f($faire, $type, $id, $qui, $opt); |
| 838 | 838 | } |
@@ -953,7 +953,7 @@ discard block |
||
| 953 | 953 | $n = sql_fetsel( |
| 954 | 954 | 'A.id_article', |
| 955 | 955 | 'spip_auteurs_liens AS L LEFT JOIN spip_articles AS A ON (L.objet=\'article\' AND L.id_objet=A.id_article)', |
| 956 | - "A.statut='publie' AND L.id_auteur=" . sql_quote($id) |
|
| 956 | + "A.statut='publie' AND L.id_auteur=".sql_quote($id) |
|
| 957 | 957 | ); |
| 958 | 958 | |
| 959 | 959 | return $n ? true : false; |
@@ -1155,7 +1155,7 @@ discard block |
||
| 1155 | 1155 | and $r = sql_allfetsel( |
| 1156 | 1156 | 'id_objet', |
| 1157 | 1157 | 'spip_auteurs_liens', |
| 1158 | - 'id_auteur=' . intval($id_auteur) . " AND objet='rubrique' AND id_objet!=0" |
|
| 1158 | + 'id_auteur='.intval($id_auteur)." AND objet='rubrique' AND id_objet!=0" |
|
| 1159 | 1159 | ) |
| 1160 | 1160 | and is_countable($r) ? count($r) : 0 |
| 1161 | 1161 | ) { |
@@ -1771,8 +1771,8 @@ discard block |
||
| 1771 | 1771 | function auteurs_objet($objet, $id_objet, $cond = '') { |
| 1772 | 1772 | $objet = objet_type($objet); |
| 1773 | 1773 | $where = [ |
| 1774 | - 'objet=' . sql_quote($objet), |
|
| 1775 | - 'id_objet=' . intval($id_objet) |
|
| 1774 | + 'objet='.sql_quote($objet), |
|
| 1775 | + 'id_objet='.intval($id_objet) |
|
| 1776 | 1776 | ]; |
| 1777 | 1777 | if (!empty($cond)) { |
| 1778 | 1778 | if (is_array($cond)) { |
@@ -1807,7 +1807,7 @@ discard block |
||
| 1807 | 1807 | return sql_allfetsel( |
| 1808 | 1808 | 'id_auteur', |
| 1809 | 1809 | 'spip_auteurs_liens', |
| 1810 | - "objet='article' AND id_objet=" . intval($id_article) . ($cond ? " AND $cond" : '') |
|
| 1810 | + "objet='article' AND id_objet=".intval($id_article).($cond ? " AND $cond" : '') |
|
| 1811 | 1811 | ); |
| 1812 | 1812 | } |
| 1813 | 1813 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | */ |
| 20 | 20 | |
| 21 | 21 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 22 | - return; |
|
| 22 | + return; |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | |
@@ -40,15 +40,15 @@ discard block |
||
| 40 | 40 | * @return bool|null|void |
| 41 | 41 | */ |
| 42 | 42 | function inc_session_dist($auteur = false) { |
| 43 | - if (is_numeric($auteur)) { |
|
| 44 | - return supprimer_sessions($auteur, $auteur > 0); |
|
| 45 | - } else { |
|
| 46 | - if (is_array($auteur)) { |
|
| 47 | - return ajouter_session($auteur); |
|
| 48 | - } else { |
|
| 49 | - return verifier_session($auteur); |
|
| 50 | - } |
|
| 51 | - } |
|
| 43 | + if (is_numeric($auteur)) { |
|
| 44 | + return supprimer_sessions($auteur, $auteur > 0); |
|
| 45 | + } else { |
|
| 46 | + if (is_array($auteur)) { |
|
| 47 | + return ajouter_session($auteur); |
|
| 48 | + } else { |
|
| 49 | + return verifier_session($auteur); |
|
| 50 | + } |
|
| 51 | + } |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | |
@@ -77,36 +77,36 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | function supprimer_sessions($id_auteur, $toutes = true, $actives = true) { |
| 79 | 79 | |
| 80 | - $nb_files = 0; |
|
| 81 | - $nb_max_files = (defined('_MAX_NB_SESSIONS_OUVERTES') ? _MAX_NB_SESSIONS_OUVERTES : 1000); |
|
| 82 | - spip_log("supprimer sessions auteur $id_auteur", 'session'); |
|
| 83 | - if ($toutes or $id_auteur !== $GLOBALS['visiteur_session']['id_auteur']) { |
|
| 84 | - if ($dir = opendir(_DIR_SESSIONS)) { |
|
| 85 | - $t = $_SERVER['REQUEST_TIME'] - (4 * _RENOUVELLE_ALEA); // 48h par defaut |
|
| 86 | - $t_short = $_SERVER['REQUEST_TIME'] - max(_RENOUVELLE_ALEA / 4, 3 * 3600); // 3h par defaut |
|
| 87 | - $t = time() - (4 * _RENOUVELLE_ALEA); |
|
| 88 | - while (($f = readdir($dir)) !== false) { |
|
| 89 | - $nb_files++; |
|
| 90 | - if (preg_match(',^[^\d-]*(-?\d+)_\w{32}\.php[3]?$,', $f, $regs)) { |
|
| 91 | - $f = _DIR_SESSIONS . $f; |
|
| 92 | - if (($actives and $regs[1] == $id_auteur) or ($t > filemtime($f))) { |
|
| 93 | - spip_unlink($f); |
|
| 94 | - } |
|
| 95 | - // si il y a trop de sessions ouvertes, on purge les sessions anonymes de plus de 3H |
|
| 96 | - // cf http://core.spip.org/issues/3276 |
|
| 97 | - elseif ($nb_files > $nb_max_files and !intval($regs[1]) and ($t_short > filemtime($f))) { |
|
| 98 | - spip_unlink($f); |
|
| 99 | - } |
|
| 100 | - } |
|
| 101 | - } |
|
| 102 | - } |
|
| 103 | - } else { |
|
| 104 | - verifier_session(); |
|
| 105 | - spip_unlink(fichier_session('alea_ephemere', true)); |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - // forcer le recalcul de la session courante |
|
| 109 | - spip_session(true); |
|
| 80 | + $nb_files = 0; |
|
| 81 | + $nb_max_files = (defined('_MAX_NB_SESSIONS_OUVERTES') ? _MAX_NB_SESSIONS_OUVERTES : 1000); |
|
| 82 | + spip_log("supprimer sessions auteur $id_auteur", 'session'); |
|
| 83 | + if ($toutes or $id_auteur !== $GLOBALS['visiteur_session']['id_auteur']) { |
|
| 84 | + if ($dir = opendir(_DIR_SESSIONS)) { |
|
| 85 | + $t = $_SERVER['REQUEST_TIME'] - (4 * _RENOUVELLE_ALEA); // 48h par defaut |
|
| 86 | + $t_short = $_SERVER['REQUEST_TIME'] - max(_RENOUVELLE_ALEA / 4, 3 * 3600); // 3h par defaut |
|
| 87 | + $t = time() - (4 * _RENOUVELLE_ALEA); |
|
| 88 | + while (($f = readdir($dir)) !== false) { |
|
| 89 | + $nb_files++; |
|
| 90 | + if (preg_match(',^[^\d-]*(-?\d+)_\w{32}\.php[3]?$,', $f, $regs)) { |
|
| 91 | + $f = _DIR_SESSIONS . $f; |
|
| 92 | + if (($actives and $regs[1] == $id_auteur) or ($t > filemtime($f))) { |
|
| 93 | + spip_unlink($f); |
|
| 94 | + } |
|
| 95 | + // si il y a trop de sessions ouvertes, on purge les sessions anonymes de plus de 3H |
|
| 96 | + // cf http://core.spip.org/issues/3276 |
|
| 97 | + elseif ($nb_files > $nb_max_files and !intval($regs[1]) and ($t_short > filemtime($f))) { |
|
| 98 | + spip_unlink($f); |
|
| 99 | + } |
|
| 100 | + } |
|
| 101 | + } |
|
| 102 | + } |
|
| 103 | + } else { |
|
| 104 | + verifier_session(); |
|
| 105 | + spip_unlink(fichier_session('alea_ephemere', true)); |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + // forcer le recalcul de la session courante |
|
| 109 | + spip_session(true); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | /** |
@@ -124,125 +124,125 @@ discard block |
||
| 124 | 124 | * @return bool|string |
| 125 | 125 | */ |
| 126 | 126 | function ajouter_session($auteur) { |
| 127 | - // Si le client a deja une session valide pour son id_auteur |
|
| 128 | - // on conserve le meme fichier |
|
| 129 | - |
|
| 130 | - // Attention un visiteur peut avoir une session et un id=0, |
|
| 131 | - // => ne pas melanger les sessions des differents visiteurs |
|
| 132 | - $id_auteur = isset($auteur['id_auteur']) ? intval($auteur['id_auteur']) : 0; |
|
| 133 | - |
|
| 134 | - // Si ce n'est pas un inscrit (les inscrits ont toujours des choses en session) |
|
| 135 | - // on va vérifier s'il y a vraiment des choses à écrire |
|
| 136 | - if (!$id_auteur) { |
|
| 137 | - // On supprime les données de base pour voir le contenu réel de la session |
|
| 138 | - $auteur_verif = $auteur; |
|
| 139 | - if (isset($auteur_verif['id_auteur'])) { |
|
| 140 | - unset($auteur_verif['id_auteur']); |
|
| 141 | - } |
|
| 142 | - if (isset($auteur_verif['hash_env'])) { |
|
| 143 | - unset($auteur_verif['hash_env']); |
|
| 144 | - } |
|
| 145 | - if (isset($auteur_verif['ip_change'])) { |
|
| 146 | - unset($auteur_verif['ip_change']); |
|
| 147 | - } |
|
| 148 | - if (isset($auteur_verif['date_session'])) { |
|
| 149 | - unset($auteur_verif['date_session']); |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - // Les variables vraiment nulle ne sont pas à prendre en compte non plus |
|
| 153 | - foreach ($auteur_verif as $variable => $valeur) { |
|
| 154 | - if ($valeur === null) { |
|
| 155 | - unset($auteur_verif[$variable]); |
|
| 156 | - } |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - // Si après ça la session est vide alors on supprime l'éventuel fichier et on arrête là |
|
| 160 | - if (!$auteur_verif) { |
|
| 161 | - if (isset($_COOKIE['spip_session']) and isset($_SESSION[$_COOKIE['spip_session']])) { |
|
| 162 | - unset($_SESSION[$_COOKIE['spip_session']]); |
|
| 163 | - } |
|
| 164 | - if (isset($_COOKIE['spip_session'])) { |
|
| 165 | - unset($_COOKIE['spip_session']); |
|
| 166 | - } |
|
| 167 | - |
|
| 168 | - return false; |
|
| 169 | - } |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - if ( |
|
| 173 | - !isset($_COOKIE['spip_session']) |
|
| 174 | - or !preg_match(',^' . $id_auteur . '_,', $_COOKIE['spip_session']) |
|
| 175 | - ) { |
|
| 176 | - $_COOKIE['spip_session'] = $id_auteur . '_' . md5(uniqid(random_int(0, mt_getrandmax()), true)); |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - // Maintenant on sait qu'on a des choses à écrire |
|
| 180 | - // On s'assure d'avoir au moins ces valeurs |
|
| 181 | - $auteur['id_auteur'] = $id_auteur; |
|
| 182 | - if (!isset($auteur['hash_env'])) { |
|
| 183 | - $auteur['hash_env'] = hash_env(); |
|
| 184 | - } |
|
| 185 | - if (!isset($auteur['ip_change'])) { |
|
| 186 | - $auteur['ip_change'] = false; |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - if (!isset($auteur['date_session'])) { |
|
| 190 | - $auteur['date_session'] = time(); |
|
| 191 | - } |
|
| 192 | - if ( |
|
| 193 | - isset($auteur['prefs']) |
|
| 194 | - and is_string($auteur['prefs']) |
|
| 195 | - and $prefs = @unserialize($auteur['prefs']) |
|
| 196 | - ) { |
|
| 197 | - $auteur['prefs'] = $prefs; |
|
| 198 | - } |
|
| 199 | - |
|
| 200 | - $fichier_session = ''; |
|
| 201 | - |
|
| 202 | - // les sessions anonymes sont stockees dans $_SESSION |
|
| 203 | - if (!$id_auteur) { |
|
| 204 | - spip_php_session_start(); |
|
| 205 | - $_SESSION[$_COOKIE['spip_session']] = preparer_ecriture_session($auteur); |
|
| 206 | - } else { |
|
| 207 | - $fichier_session = fichier_session('alea_ephemere'); |
|
| 208 | - if (!ecrire_fichier_session($fichier_session, $auteur)) { |
|
| 209 | - spip_log('Echec ecriture fichier session ' . $fichier_session, 'session' . _LOG_HS); |
|
| 210 | - include_spip('inc/minipres'); |
|
| 211 | - echo minipres(); |
|
| 212 | - exit; |
|
| 213 | - } |
|
| 214 | - // verifier et limiter le nombre maxi de sessions |
|
| 215 | - // https://core.spip.net/issues/3807 |
|
| 216 | - lister_sessions_auteur($id_auteur); |
|
| 217 | - } |
|
| 218 | - |
|
| 219 | - // poser le cookie de session SPIP |
|
| 220 | - include_spip('inc/cookie'); |
|
| 221 | - $duree = definir_duree_cookie_session($auteur); |
|
| 222 | - spip_setcookie('spip_session', $_COOKIE['spip_session'], [ |
|
| 223 | - 'expires' => time() + $duree |
|
| 224 | - ]); |
|
| 225 | - spip_log("ajoute session $fichier_session cookie $duree", 'session'); |
|
| 226 | - |
|
| 227 | - // Si on est admin, poser le cookie de correspondance |
|
| 228 | - if (!function_exists('autoriser')) { |
|
| 229 | - include_spip('inc/autoriser'); |
|
| 230 | - } |
|
| 231 | - if (autoriser('ecrire', '', '', $auteur) and _DUREE_COOKIE_ADMIN) { |
|
| 232 | - spip_setcookie('spip_admin', '@' . ($auteur['email'] ?: $auteur['login']), [ |
|
| 233 | - 'expires' => time() + max(_DUREE_COOKIE_ADMIN, $duree) |
|
| 234 | - ]); |
|
| 235 | - } // sinon le supprimer ... |
|
| 236 | - else { |
|
| 237 | - spip_setcookie('spip_admin', '', [ |
|
| 238 | - 'expires' => 1 |
|
| 239 | - ]); |
|
| 240 | - } |
|
| 241 | - |
|
| 242 | - # on en profite pour purger les vieilles sessions anonymes abandonnees |
|
| 243 | - # supprimer_sessions(0, true, false); |
|
| 244 | - |
|
| 245 | - return $_COOKIE['spip_session']; |
|
| 127 | + // Si le client a deja une session valide pour son id_auteur |
|
| 128 | + // on conserve le meme fichier |
|
| 129 | + |
|
| 130 | + // Attention un visiteur peut avoir une session et un id=0, |
|
| 131 | + // => ne pas melanger les sessions des differents visiteurs |
|
| 132 | + $id_auteur = isset($auteur['id_auteur']) ? intval($auteur['id_auteur']) : 0; |
|
| 133 | + |
|
| 134 | + // Si ce n'est pas un inscrit (les inscrits ont toujours des choses en session) |
|
| 135 | + // on va vérifier s'il y a vraiment des choses à écrire |
|
| 136 | + if (!$id_auteur) { |
|
| 137 | + // On supprime les données de base pour voir le contenu réel de la session |
|
| 138 | + $auteur_verif = $auteur; |
|
| 139 | + if (isset($auteur_verif['id_auteur'])) { |
|
| 140 | + unset($auteur_verif['id_auteur']); |
|
| 141 | + } |
|
| 142 | + if (isset($auteur_verif['hash_env'])) { |
|
| 143 | + unset($auteur_verif['hash_env']); |
|
| 144 | + } |
|
| 145 | + if (isset($auteur_verif['ip_change'])) { |
|
| 146 | + unset($auteur_verif['ip_change']); |
|
| 147 | + } |
|
| 148 | + if (isset($auteur_verif['date_session'])) { |
|
| 149 | + unset($auteur_verif['date_session']); |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + // Les variables vraiment nulle ne sont pas à prendre en compte non plus |
|
| 153 | + foreach ($auteur_verif as $variable => $valeur) { |
|
| 154 | + if ($valeur === null) { |
|
| 155 | + unset($auteur_verif[$variable]); |
|
| 156 | + } |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + // Si après ça la session est vide alors on supprime l'éventuel fichier et on arrête là |
|
| 160 | + if (!$auteur_verif) { |
|
| 161 | + if (isset($_COOKIE['spip_session']) and isset($_SESSION[$_COOKIE['spip_session']])) { |
|
| 162 | + unset($_SESSION[$_COOKIE['spip_session']]); |
|
| 163 | + } |
|
| 164 | + if (isset($_COOKIE['spip_session'])) { |
|
| 165 | + unset($_COOKIE['spip_session']); |
|
| 166 | + } |
|
| 167 | + |
|
| 168 | + return false; |
|
| 169 | + } |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + if ( |
|
| 173 | + !isset($_COOKIE['spip_session']) |
|
| 174 | + or !preg_match(',^' . $id_auteur . '_,', $_COOKIE['spip_session']) |
|
| 175 | + ) { |
|
| 176 | + $_COOKIE['spip_session'] = $id_auteur . '_' . md5(uniqid(random_int(0, mt_getrandmax()), true)); |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + // Maintenant on sait qu'on a des choses à écrire |
|
| 180 | + // On s'assure d'avoir au moins ces valeurs |
|
| 181 | + $auteur['id_auteur'] = $id_auteur; |
|
| 182 | + if (!isset($auteur['hash_env'])) { |
|
| 183 | + $auteur['hash_env'] = hash_env(); |
|
| 184 | + } |
|
| 185 | + if (!isset($auteur['ip_change'])) { |
|
| 186 | + $auteur['ip_change'] = false; |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + if (!isset($auteur['date_session'])) { |
|
| 190 | + $auteur['date_session'] = time(); |
|
| 191 | + } |
|
| 192 | + if ( |
|
| 193 | + isset($auteur['prefs']) |
|
| 194 | + and is_string($auteur['prefs']) |
|
| 195 | + and $prefs = @unserialize($auteur['prefs']) |
|
| 196 | + ) { |
|
| 197 | + $auteur['prefs'] = $prefs; |
|
| 198 | + } |
|
| 199 | + |
|
| 200 | + $fichier_session = ''; |
|
| 201 | + |
|
| 202 | + // les sessions anonymes sont stockees dans $_SESSION |
|
| 203 | + if (!$id_auteur) { |
|
| 204 | + spip_php_session_start(); |
|
| 205 | + $_SESSION[$_COOKIE['spip_session']] = preparer_ecriture_session($auteur); |
|
| 206 | + } else { |
|
| 207 | + $fichier_session = fichier_session('alea_ephemere'); |
|
| 208 | + if (!ecrire_fichier_session($fichier_session, $auteur)) { |
|
| 209 | + spip_log('Echec ecriture fichier session ' . $fichier_session, 'session' . _LOG_HS); |
|
| 210 | + include_spip('inc/minipres'); |
|
| 211 | + echo minipres(); |
|
| 212 | + exit; |
|
| 213 | + } |
|
| 214 | + // verifier et limiter le nombre maxi de sessions |
|
| 215 | + // https://core.spip.net/issues/3807 |
|
| 216 | + lister_sessions_auteur($id_auteur); |
|
| 217 | + } |
|
| 218 | + |
|
| 219 | + // poser le cookie de session SPIP |
|
| 220 | + include_spip('inc/cookie'); |
|
| 221 | + $duree = definir_duree_cookie_session($auteur); |
|
| 222 | + spip_setcookie('spip_session', $_COOKIE['spip_session'], [ |
|
| 223 | + 'expires' => time() + $duree |
|
| 224 | + ]); |
|
| 225 | + spip_log("ajoute session $fichier_session cookie $duree", 'session'); |
|
| 226 | + |
|
| 227 | + // Si on est admin, poser le cookie de correspondance |
|
| 228 | + if (!function_exists('autoriser')) { |
|
| 229 | + include_spip('inc/autoriser'); |
|
| 230 | + } |
|
| 231 | + if (autoriser('ecrire', '', '', $auteur) and _DUREE_COOKIE_ADMIN) { |
|
| 232 | + spip_setcookie('spip_admin', '@' . ($auteur['email'] ?: $auteur['login']), [ |
|
| 233 | + 'expires' => time() + max(_DUREE_COOKIE_ADMIN, $duree) |
|
| 234 | + ]); |
|
| 235 | + } // sinon le supprimer ... |
|
| 236 | + else { |
|
| 237 | + spip_setcookie('spip_admin', '', [ |
|
| 238 | + 'expires' => 1 |
|
| 239 | + ]); |
|
| 240 | + } |
|
| 241 | + |
|
| 242 | + # on en profite pour purger les vieilles sessions anonymes abandonnees |
|
| 243 | + # supprimer_sessions(0, true, false); |
|
| 244 | + |
|
| 245 | + return $_COOKIE['spip_session']; |
|
| 246 | 246 | } |
| 247 | 247 | |
| 248 | 248 | /** |
@@ -262,15 +262,15 @@ discard block |
||
| 262 | 262 | * Durée en secondes |
| 263 | 263 | **/ |
| 264 | 264 | function definir_duree_cookie_session($auteur) { |
| 265 | - $coef = 2; |
|
| 266 | - if (isset($auteur['cookie'])) { |
|
| 267 | - if (is_numeric($auteur['cookie'])) { |
|
| 268 | - $coef = $auteur['cookie']; |
|
| 269 | - } else { |
|
| 270 | - $coef = 20; |
|
| 271 | - } |
|
| 272 | - } |
|
| 273 | - return (int)(_RENOUVELLE_ALEA * $coef); |
|
| 265 | + $coef = 2; |
|
| 266 | + if (isset($auteur['cookie'])) { |
|
| 267 | + if (is_numeric($auteur['cookie'])) { |
|
| 268 | + $coef = $auteur['cookie']; |
|
| 269 | + } else { |
|
| 270 | + $coef = 20; |
|
| 271 | + } |
|
| 272 | + } |
|
| 273 | + return (int)(_RENOUVELLE_ALEA * $coef); |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | /** |
@@ -290,91 +290,91 @@ discard block |
||
| 290 | 290 | * @return bool|int|null |
| 291 | 291 | */ |
| 292 | 292 | function verifier_session($change = false) { |
| 293 | - // si pas de cookie, c'est fichu |
|
| 294 | - if (!isset($_COOKIE['spip_session'])) { |
|
| 295 | - return false; |
|
| 296 | - } |
|
| 297 | - |
|
| 298 | - $fichier_session = ''; |
|
| 299 | - |
|
| 300 | - // est-ce une session anonyme ? |
|
| 301 | - if (!intval($_COOKIE['spip_session'])) { |
|
| 302 | - spip_php_session_start(); |
|
| 303 | - if (!isset($_SESSION[$_COOKIE['spip_session']]) or !is_array($_SESSION[$_COOKIE['spip_session']])) { |
|
| 304 | - return false; |
|
| 305 | - } |
|
| 306 | - $GLOBALS['visiteur_session'] = $_SESSION[$_COOKIE['spip_session']]; |
|
| 307 | - } else { |
|
| 308 | - // Tester avec alea courant |
|
| 309 | - $fichier_session = fichier_session('alea_ephemere', true); |
|
| 310 | - if ($fichier_session and @file_exists($fichier_session)) { |
|
| 311 | - include($fichier_session); |
|
| 312 | - } else { |
|
| 313 | - // Sinon, tester avec alea precedent |
|
| 314 | - $fichier_session = fichier_session('alea_ephemere_ancien', true); |
|
| 315 | - if (!$fichier_session or !@file_exists($fichier_session)) { |
|
| 316 | - return false; |
|
| 317 | - } |
|
| 318 | - |
|
| 319 | - // Renouveler la session avec l'alea courant |
|
| 320 | - include($fichier_session); |
|
| 321 | - spip_log('renouvelle session ' . $GLOBALS['visiteur_session']['id_auteur'], 'session'); |
|
| 322 | - spip_unlink($fichier_session); |
|
| 323 | - ajouter_session($GLOBALS['visiteur_session']); |
|
| 324 | - } |
|
| 325 | - } |
|
| 326 | - |
|
| 327 | - // Compatibilite ascendante : auteur_session est visiteur_session si |
|
| 328 | - // c'est un auteur SPIP authentifie (tandis qu'un visiteur_session peut |
|
| 329 | - // n'etre qu'identifie, sans aucune authentification). |
|
| 330 | - |
|
| 331 | - if (isset($GLOBALS['visiteur_session']['id_auteur']) and $GLOBALS['visiteur_session']['id_auteur']) { |
|
| 332 | - $GLOBALS['auteur_session'] = &$GLOBALS['visiteur_session']; |
|
| 333 | - } |
|
| 334 | - |
|
| 335 | - |
|
| 336 | - // Si l'adresse IP change, inc/presentation mettra une balise image |
|
| 337 | - // avec un URL de rappel demandant a changer le nom de la session. |
|
| 338 | - // Seul celui qui a l'IP d'origine est rejoue |
|
| 339 | - // ainsi un eventuel voleur de cookie ne pourrait pas deconnecter |
|
| 340 | - // sa victime, mais se ferait deconnecter par elle. |
|
| 341 | - if (hash_env() != $GLOBALS['visiteur_session']['hash_env']) { |
|
| 342 | - if (!$GLOBALS['visiteur_session']['ip_change']) { |
|
| 343 | - define('_SESSION_REJOUER', true); |
|
| 344 | - $GLOBALS['visiteur_session']['ip_change'] = true; |
|
| 345 | - ajouter_session($GLOBALS['visiteur_session']); |
|
| 346 | - } else { |
|
| 347 | - if ($change) { |
|
| 348 | - spip_log('session non rejouee, vol de cookie ?', 'session'); |
|
| 349 | - } |
|
| 350 | - } |
|
| 351 | - } else { |
|
| 352 | - if ($change) { |
|
| 353 | - spip_log("rejoue session $fichier_session " . $_COOKIE['spip_session'], 'session'); |
|
| 354 | - if ($fichier_session) { |
|
| 355 | - spip_unlink($fichier_session); |
|
| 356 | - } |
|
| 357 | - $GLOBALS['visiteur_session']['ip_change'] = false; |
|
| 358 | - unset($_COOKIE['spip_session']); |
|
| 359 | - ajouter_session($GLOBALS['visiteur_session']); |
|
| 360 | - } |
|
| 361 | - } |
|
| 362 | - |
|
| 363 | - // Si la session a ete initiee il y a trop longtemps, elle est annulee |
|
| 364 | - if ( |
|
| 365 | - isset($GLOBALS['visiteur_session']) |
|
| 366 | - and defined('_AGE_SESSION_MAX') |
|
| 367 | - and _AGE_SESSION_MAX > 0 |
|
| 368 | - and time() - @$GLOBALS['visiteur_session']['date_session'] > _AGE_SESSION_MAX |
|
| 369 | - ) { |
|
| 370 | - unset($GLOBALS['visiteur_session']); |
|
| 371 | - |
|
| 372 | - return false; |
|
| 373 | - } |
|
| 374 | - |
|
| 375 | - return is_numeric($GLOBALS['visiteur_session']['id_auteur']) |
|
| 376 | - ? $GLOBALS['visiteur_session']['id_auteur'] |
|
| 377 | - : null; |
|
| 293 | + // si pas de cookie, c'est fichu |
|
| 294 | + if (!isset($_COOKIE['spip_session'])) { |
|
| 295 | + return false; |
|
| 296 | + } |
|
| 297 | + |
|
| 298 | + $fichier_session = ''; |
|
| 299 | + |
|
| 300 | + // est-ce une session anonyme ? |
|
| 301 | + if (!intval($_COOKIE['spip_session'])) { |
|
| 302 | + spip_php_session_start(); |
|
| 303 | + if (!isset($_SESSION[$_COOKIE['spip_session']]) or !is_array($_SESSION[$_COOKIE['spip_session']])) { |
|
| 304 | + return false; |
|
| 305 | + } |
|
| 306 | + $GLOBALS['visiteur_session'] = $_SESSION[$_COOKIE['spip_session']]; |
|
| 307 | + } else { |
|
| 308 | + // Tester avec alea courant |
|
| 309 | + $fichier_session = fichier_session('alea_ephemere', true); |
|
| 310 | + if ($fichier_session and @file_exists($fichier_session)) { |
|
| 311 | + include($fichier_session); |
|
| 312 | + } else { |
|
| 313 | + // Sinon, tester avec alea precedent |
|
| 314 | + $fichier_session = fichier_session('alea_ephemere_ancien', true); |
|
| 315 | + if (!$fichier_session or !@file_exists($fichier_session)) { |
|
| 316 | + return false; |
|
| 317 | + } |
|
| 318 | + |
|
| 319 | + // Renouveler la session avec l'alea courant |
|
| 320 | + include($fichier_session); |
|
| 321 | + spip_log('renouvelle session ' . $GLOBALS['visiteur_session']['id_auteur'], 'session'); |
|
| 322 | + spip_unlink($fichier_session); |
|
| 323 | + ajouter_session($GLOBALS['visiteur_session']); |
|
| 324 | + } |
|
| 325 | + } |
|
| 326 | + |
|
| 327 | + // Compatibilite ascendante : auteur_session est visiteur_session si |
|
| 328 | + // c'est un auteur SPIP authentifie (tandis qu'un visiteur_session peut |
|
| 329 | + // n'etre qu'identifie, sans aucune authentification). |
|
| 330 | + |
|
| 331 | + if (isset($GLOBALS['visiteur_session']['id_auteur']) and $GLOBALS['visiteur_session']['id_auteur']) { |
|
| 332 | + $GLOBALS['auteur_session'] = &$GLOBALS['visiteur_session']; |
|
| 333 | + } |
|
| 334 | + |
|
| 335 | + |
|
| 336 | + // Si l'adresse IP change, inc/presentation mettra une balise image |
|
| 337 | + // avec un URL de rappel demandant a changer le nom de la session. |
|
| 338 | + // Seul celui qui a l'IP d'origine est rejoue |
|
| 339 | + // ainsi un eventuel voleur de cookie ne pourrait pas deconnecter |
|
| 340 | + // sa victime, mais se ferait deconnecter par elle. |
|
| 341 | + if (hash_env() != $GLOBALS['visiteur_session']['hash_env']) { |
|
| 342 | + if (!$GLOBALS['visiteur_session']['ip_change']) { |
|
| 343 | + define('_SESSION_REJOUER', true); |
|
| 344 | + $GLOBALS['visiteur_session']['ip_change'] = true; |
|
| 345 | + ajouter_session($GLOBALS['visiteur_session']); |
|
| 346 | + } else { |
|
| 347 | + if ($change) { |
|
| 348 | + spip_log('session non rejouee, vol de cookie ?', 'session'); |
|
| 349 | + } |
|
| 350 | + } |
|
| 351 | + } else { |
|
| 352 | + if ($change) { |
|
| 353 | + spip_log("rejoue session $fichier_session " . $_COOKIE['spip_session'], 'session'); |
|
| 354 | + if ($fichier_session) { |
|
| 355 | + spip_unlink($fichier_session); |
|
| 356 | + } |
|
| 357 | + $GLOBALS['visiteur_session']['ip_change'] = false; |
|
| 358 | + unset($_COOKIE['spip_session']); |
|
| 359 | + ajouter_session($GLOBALS['visiteur_session']); |
|
| 360 | + } |
|
| 361 | + } |
|
| 362 | + |
|
| 363 | + // Si la session a ete initiee il y a trop longtemps, elle est annulee |
|
| 364 | + if ( |
|
| 365 | + isset($GLOBALS['visiteur_session']) |
|
| 366 | + and defined('_AGE_SESSION_MAX') |
|
| 367 | + and _AGE_SESSION_MAX > 0 |
|
| 368 | + and time() - @$GLOBALS['visiteur_session']['date_session'] > _AGE_SESSION_MAX |
|
| 369 | + ) { |
|
| 370 | + unset($GLOBALS['visiteur_session']); |
|
| 371 | + |
|
| 372 | + return false; |
|
| 373 | + } |
|
| 374 | + |
|
| 375 | + return is_numeric($GLOBALS['visiteur_session']['id_auteur']) |
|
| 376 | + ? $GLOBALS['visiteur_session']['id_auteur'] |
|
| 377 | + : null; |
|
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | /** |
@@ -389,7 +389,7 @@ discard block |
||
| 389 | 389 | * Valeur, si trouvée, `null` sinon. |
| 390 | 390 | */ |
| 391 | 391 | function session_get($nom) { |
| 392 | - return $GLOBALS['visiteur_session'][$nom] ?? null; |
|
| 392 | + return $GLOBALS['visiteur_session'][$nom] ?? null; |
|
| 393 | 393 | } |
| 394 | 394 | |
| 395 | 395 | |
@@ -405,32 +405,32 @@ discard block |
||
| 405 | 405 | * @return void|array |
| 406 | 406 | */ |
| 407 | 407 | function session_set($nom, $val = null) { |
| 408 | - static $remove = []; |
|
| 409 | - static $actualiser_sessions = false; |
|
| 410 | - if ($nom === false) { |
|
| 411 | - return $remove; |
|
| 412 | - } |
|
| 413 | - if (is_null($val)) { |
|
| 414 | - // rien a faire |
|
| 415 | - if (!isset($GLOBALS['visiteur_session'][$nom])) { |
|
| 416 | - return; |
|
| 417 | - } |
|
| 418 | - unset($GLOBALS['visiteur_session'][$nom]); |
|
| 419 | - $remove[] = $nom; |
|
| 420 | - } else { |
|
| 421 | - // On ajoute la valeur dans la globale |
|
| 422 | - $GLOBALS['visiteur_session'][$nom] = $val; |
|
| 423 | - if ($remove) { |
|
| 424 | - $remove = array_diff($remove, [$nom]); |
|
| 425 | - } |
|
| 426 | - } |
|
| 427 | - if (!$actualiser_sessions) { |
|
| 428 | - // il faut creer la session si on en a pas, la premiere fois |
|
| 429 | - ajouter_session($GLOBALS['visiteur_session']); |
|
| 430 | - // in register la fonction qui mettra a jour toutes les sessions en fin de hit |
|
| 431 | - register_shutdown_function('terminer_actualiser_sessions'); |
|
| 432 | - $actualiser_sessions = true; |
|
| 433 | - } |
|
| 408 | + static $remove = []; |
|
| 409 | + static $actualiser_sessions = false; |
|
| 410 | + if ($nom === false) { |
|
| 411 | + return $remove; |
|
| 412 | + } |
|
| 413 | + if (is_null($val)) { |
|
| 414 | + // rien a faire |
|
| 415 | + if (!isset($GLOBALS['visiteur_session'][$nom])) { |
|
| 416 | + return; |
|
| 417 | + } |
|
| 418 | + unset($GLOBALS['visiteur_session'][$nom]); |
|
| 419 | + $remove[] = $nom; |
|
| 420 | + } else { |
|
| 421 | + // On ajoute la valeur dans la globale |
|
| 422 | + $GLOBALS['visiteur_session'][$nom] = $val; |
|
| 423 | + if ($remove) { |
|
| 424 | + $remove = array_diff($remove, [$nom]); |
|
| 425 | + } |
|
| 426 | + } |
|
| 427 | + if (!$actualiser_sessions) { |
|
| 428 | + // il faut creer la session si on en a pas, la premiere fois |
|
| 429 | + ajouter_session($GLOBALS['visiteur_session']); |
|
| 430 | + // in register la fonction qui mettra a jour toutes les sessions en fin de hit |
|
| 431 | + register_shutdown_function('terminer_actualiser_sessions'); |
|
| 432 | + $actualiser_sessions = true; |
|
| 433 | + } |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | 436 | /** |
@@ -439,12 +439,12 @@ discard block |
||
| 439 | 439 | * @uses actualiser_sessions() |
| 440 | 440 | */ |
| 441 | 441 | function terminer_actualiser_sessions() { |
| 442 | - // se remettre dans le dossier de travail au cas ou Apache a change |
|
| 443 | - chdir(_ROOT_CWD); |
|
| 444 | - // recuperer les variables a effacer |
|
| 445 | - $remove = session_set(false); |
|
| 446 | - // mettre a jour toutes les sessions |
|
| 447 | - actualiser_sessions($GLOBALS['visiteur_session'], $remove); |
|
| 442 | + // se remettre dans le dossier de travail au cas ou Apache a change |
|
| 443 | + chdir(_ROOT_CWD); |
|
| 444 | + // recuperer les variables a effacer |
|
| 445 | + $remove = session_set(false); |
|
| 446 | + // mettre a jour toutes les sessions |
|
| 447 | + actualiser_sessions($GLOBALS['visiteur_session'], $remove); |
|
| 448 | 448 | } |
| 449 | 449 | |
| 450 | 450 | |
@@ -469,83 +469,83 @@ discard block |
||
| 469 | 469 | */ |
| 470 | 470 | function actualiser_sessions($auteur, $supprimer_cles = []) { |
| 471 | 471 | |
| 472 | - $id_auteur = isset($auteur['id_auteur']) ? intval($auteur['id_auteur']) : 0; |
|
| 473 | - $id_auteur_courant = isset($GLOBALS['visiteur_session']['id_auteur']) ? intval($GLOBALS['visiteur_session']['id_auteur']) : 0; |
|
| 474 | - |
|
| 475 | - // si l'auteur est celui de la session courante, verifier/creer la session si besoin |
|
| 476 | - $fichier_session_courante = ''; |
|
| 477 | - if ($id_auteur == $id_auteur_courant) { |
|
| 478 | - $auteur = array_merge($GLOBALS['visiteur_session'], $auteur); |
|
| 479 | - ajouter_session($auteur); |
|
| 480 | - if ($id_auteur) { |
|
| 481 | - $fichier_session_courante = fichier_session('alea_ephemere'); |
|
| 482 | - } |
|
| 483 | - } |
|
| 484 | - |
|
| 485 | - // si session anonyme on ne fait rien d'autre ici : les sessions anonymes sont non partagees |
|
| 486 | - if (!$id_auteur) { |
|
| 487 | - return; |
|
| 488 | - } |
|
| 489 | - |
|
| 490 | - // les préférences sont désérialisées, toujours. |
|
| 491 | - // [fixme] Le champ 'prefs' sert aussi à l’inscription |
|
| 492 | - if (isset($auteur['prefs']) and is_string($auteur['prefs'])) { |
|
| 493 | - $auteur['prefs'] = @unserialize($auteur['prefs']); |
|
| 494 | - if (!is_array($auteur['prefs'])) { |
|
| 495 | - $auteur['prefs'] = []; |
|
| 496 | - } |
|
| 497 | - } |
|
| 498 | - |
|
| 499 | - // memoriser l'auteur courant (celui qui modifie la fiche) |
|
| 500 | - $sauve = $GLOBALS['visiteur_session']; |
|
| 501 | - |
|
| 502 | - // .. mettre a jour les sessions de l'auteur cible |
|
| 503 | - // attention au $ final pour ne pas risquer d'embarquer un .php.jeton temporaire |
|
| 504 | - // cree par une ecriture concurente d'une session (fichier atomique temporaire) |
|
| 505 | - $sessions = lister_sessions_auteur($id_auteur); |
|
| 506 | - |
|
| 507 | - // 1ere passe : lire et fusionner les sessions |
|
| 508 | - foreach ($sessions as $session) { |
|
| 509 | - $GLOBALS['visiteur_session'] = []; |
|
| 510 | - // a pu etre supprime entre le preg initial et le moment ou l'on arrive la (concurrence) |
|
| 511 | - if ( |
|
| 512 | - $session !== $fichier_session_courante |
|
| 513 | - and @file_exists($session) |
|
| 514 | - ) { |
|
| 515 | - include $session; # $GLOBALS['visiteur_session'] est alors l'auteur cible |
|
| 516 | - |
|
| 517 | - $auteur = array_merge($GLOBALS['visiteur_session'], $auteur); |
|
| 518 | - } |
|
| 519 | - } |
|
| 520 | - |
|
| 521 | - // supprimer les eventuelles cles dont on ne veut plus |
|
| 522 | - foreach ($supprimer_cles as $cle) { |
|
| 523 | - unset($auteur[$cle]); |
|
| 524 | - } |
|
| 525 | - |
|
| 526 | - $auteur_session = preparer_ecriture_session($auteur); |
|
| 527 | - |
|
| 528 | - // seconde passe : ecrire les sessions qui ne sont pas a jour |
|
| 529 | - foreach ($sessions as $session) { |
|
| 530 | - $GLOBALS['visiteur_session'] = []; |
|
| 531 | - // a pu etre supprime entre le preg initial et le moment ou l'on arrive la (concurrence) |
|
| 532 | - if (@file_exists($session)) { |
|
| 533 | - include $session; # $GLOBALS['visiteur_session'] est alors l'auteur cible |
|
| 534 | - |
|
| 535 | - // est-ce que cette session est a mettre a jour ? |
|
| 536 | - if ($auteur_session != $GLOBALS['visiteur_session']) { |
|
| 537 | - ecrire_fichier_session($session, $auteur); |
|
| 538 | - } |
|
| 539 | - } |
|
| 540 | - } |
|
| 541 | - |
|
| 542 | - if ($id_auteur == $id_auteur_courant) { |
|
| 543 | - $GLOBALS['visiteur_session'] = $auteur; |
|
| 544 | - $GLOBALS['auteur_session'] = &$GLOBALS['visiteur_session']; |
|
| 545 | - } else { |
|
| 546 | - // restaurer l'auteur courant |
|
| 547 | - $GLOBALS['visiteur_session'] = $sauve; |
|
| 548 | - } |
|
| 472 | + $id_auteur = isset($auteur['id_auteur']) ? intval($auteur['id_auteur']) : 0; |
|
| 473 | + $id_auteur_courant = isset($GLOBALS['visiteur_session']['id_auteur']) ? intval($GLOBALS['visiteur_session']['id_auteur']) : 0; |
|
| 474 | + |
|
| 475 | + // si l'auteur est celui de la session courante, verifier/creer la session si besoin |
|
| 476 | + $fichier_session_courante = ''; |
|
| 477 | + if ($id_auteur == $id_auteur_courant) { |
|
| 478 | + $auteur = array_merge($GLOBALS['visiteur_session'], $auteur); |
|
| 479 | + ajouter_session($auteur); |
|
| 480 | + if ($id_auteur) { |
|
| 481 | + $fichier_session_courante = fichier_session('alea_ephemere'); |
|
| 482 | + } |
|
| 483 | + } |
|
| 484 | + |
|
| 485 | + // si session anonyme on ne fait rien d'autre ici : les sessions anonymes sont non partagees |
|
| 486 | + if (!$id_auteur) { |
|
| 487 | + return; |
|
| 488 | + } |
|
| 489 | + |
|
| 490 | + // les préférences sont désérialisées, toujours. |
|
| 491 | + // [fixme] Le champ 'prefs' sert aussi à l’inscription |
|
| 492 | + if (isset($auteur['prefs']) and is_string($auteur['prefs'])) { |
|
| 493 | + $auteur['prefs'] = @unserialize($auteur['prefs']); |
|
| 494 | + if (!is_array($auteur['prefs'])) { |
|
| 495 | + $auteur['prefs'] = []; |
|
| 496 | + } |
|
| 497 | + } |
|
| 498 | + |
|
| 499 | + // memoriser l'auteur courant (celui qui modifie la fiche) |
|
| 500 | + $sauve = $GLOBALS['visiteur_session']; |
|
| 501 | + |
|
| 502 | + // .. mettre a jour les sessions de l'auteur cible |
|
| 503 | + // attention au $ final pour ne pas risquer d'embarquer un .php.jeton temporaire |
|
| 504 | + // cree par une ecriture concurente d'une session (fichier atomique temporaire) |
|
| 505 | + $sessions = lister_sessions_auteur($id_auteur); |
|
| 506 | + |
|
| 507 | + // 1ere passe : lire et fusionner les sessions |
|
| 508 | + foreach ($sessions as $session) { |
|
| 509 | + $GLOBALS['visiteur_session'] = []; |
|
| 510 | + // a pu etre supprime entre le preg initial et le moment ou l'on arrive la (concurrence) |
|
| 511 | + if ( |
|
| 512 | + $session !== $fichier_session_courante |
|
| 513 | + and @file_exists($session) |
|
| 514 | + ) { |
|
| 515 | + include $session; # $GLOBALS['visiteur_session'] est alors l'auteur cible |
|
| 516 | + |
|
| 517 | + $auteur = array_merge($GLOBALS['visiteur_session'], $auteur); |
|
| 518 | + } |
|
| 519 | + } |
|
| 520 | + |
|
| 521 | + // supprimer les eventuelles cles dont on ne veut plus |
|
| 522 | + foreach ($supprimer_cles as $cle) { |
|
| 523 | + unset($auteur[$cle]); |
|
| 524 | + } |
|
| 525 | + |
|
| 526 | + $auteur_session = preparer_ecriture_session($auteur); |
|
| 527 | + |
|
| 528 | + // seconde passe : ecrire les sessions qui ne sont pas a jour |
|
| 529 | + foreach ($sessions as $session) { |
|
| 530 | + $GLOBALS['visiteur_session'] = []; |
|
| 531 | + // a pu etre supprime entre le preg initial et le moment ou l'on arrive la (concurrence) |
|
| 532 | + if (@file_exists($session)) { |
|
| 533 | + include $session; # $GLOBALS['visiteur_session'] est alors l'auteur cible |
|
| 534 | + |
|
| 535 | + // est-ce que cette session est a mettre a jour ? |
|
| 536 | + if ($auteur_session != $GLOBALS['visiteur_session']) { |
|
| 537 | + ecrire_fichier_session($session, $auteur); |
|
| 538 | + } |
|
| 539 | + } |
|
| 540 | + } |
|
| 541 | + |
|
| 542 | + if ($id_auteur == $id_auteur_courant) { |
|
| 543 | + $GLOBALS['visiteur_session'] = $auteur; |
|
| 544 | + $GLOBALS['auteur_session'] = &$GLOBALS['visiteur_session']; |
|
| 545 | + } else { |
|
| 546 | + // restaurer l'auteur courant |
|
| 547 | + $GLOBALS['visiteur_session'] = $sauve; |
|
| 548 | + } |
|
| 549 | 549 | } |
| 550 | 550 | |
| 551 | 551 | /** |
@@ -559,48 +559,48 @@ discard block |
||
| 559 | 559 | */ |
| 560 | 560 | function lister_sessions_auteur($id_auteur, $nb_max = null) { |
| 561 | 561 | |
| 562 | - if (is_null($nb_max)) { |
|
| 563 | - if (!defined('_NB_SESSIONS_MAX')) { |
|
| 564 | - define('_NB_SESSIONS_MAX', 100); |
|
| 565 | - } |
|
| 566 | - $nb_max = _NB_SESSIONS_MAX; |
|
| 567 | - } |
|
| 568 | - |
|
| 569 | - // liste des sessions |
|
| 570 | - $sessions = preg_files(_DIR_SESSIONS, '/' . $id_auteur . '_.*\.php$'); |
|
| 571 | - |
|
| 572 | - // si on en a plus que la limite, supprimer les plus vieilles |
|
| 573 | - // si ce ne sont pas des sessions anonymes car elles sont alors chacune differentes |
|
| 574 | - if ( |
|
| 575 | - $id_auteur |
|
| 576 | - and count($sessions) > $nb_max |
|
| 577 | - ) { |
|
| 578 | - // limiter le nombre de sessions ouvertes par un auteur |
|
| 579 | - // filemtime sur les sessions |
|
| 580 | - $sessions = array_flip($sessions); |
|
| 581 | - |
|
| 582 | - // 1ere passe : lire les filemtime |
|
| 583 | - foreach ($sessions as $session => $z) { |
|
| 584 | - if ( |
|
| 585 | - $d = @filemtime($session) |
|
| 586 | - ) { |
|
| 587 | - $sessions[$session] = $d; |
|
| 588 | - } else { |
|
| 589 | - $sessions[$session] = 0; |
|
| 590 | - } |
|
| 591 | - } |
|
| 592 | - |
|
| 593 | - // les plus anciennes en premier |
|
| 594 | - asort($sessions); |
|
| 595 | - |
|
| 596 | - $sessions = array_keys($sessions); |
|
| 597 | - while (count($sessions) > $nb_max) { |
|
| 598 | - $session = array_shift($sessions); |
|
| 599 | - @unlink($session); |
|
| 600 | - } |
|
| 601 | - } |
|
| 602 | - |
|
| 603 | - return $sessions; |
|
| 562 | + if (is_null($nb_max)) { |
|
| 563 | + if (!defined('_NB_SESSIONS_MAX')) { |
|
| 564 | + define('_NB_SESSIONS_MAX', 100); |
|
| 565 | + } |
|
| 566 | + $nb_max = _NB_SESSIONS_MAX; |
|
| 567 | + } |
|
| 568 | + |
|
| 569 | + // liste des sessions |
|
| 570 | + $sessions = preg_files(_DIR_SESSIONS, '/' . $id_auteur . '_.*\.php$'); |
|
| 571 | + |
|
| 572 | + // si on en a plus que la limite, supprimer les plus vieilles |
|
| 573 | + // si ce ne sont pas des sessions anonymes car elles sont alors chacune differentes |
|
| 574 | + if ( |
|
| 575 | + $id_auteur |
|
| 576 | + and count($sessions) > $nb_max |
|
| 577 | + ) { |
|
| 578 | + // limiter le nombre de sessions ouvertes par un auteur |
|
| 579 | + // filemtime sur les sessions |
|
| 580 | + $sessions = array_flip($sessions); |
|
| 581 | + |
|
| 582 | + // 1ere passe : lire les filemtime |
|
| 583 | + foreach ($sessions as $session => $z) { |
|
| 584 | + if ( |
|
| 585 | + $d = @filemtime($session) |
|
| 586 | + ) { |
|
| 587 | + $sessions[$session] = $d; |
|
| 588 | + } else { |
|
| 589 | + $sessions[$session] = 0; |
|
| 590 | + } |
|
| 591 | + } |
|
| 592 | + |
|
| 593 | + // les plus anciennes en premier |
|
| 594 | + asort($sessions); |
|
| 595 | + |
|
| 596 | + $sessions = array_keys($sessions); |
|
| 597 | + while (count($sessions) > $nb_max) { |
|
| 598 | + $session = array_shift($sessions); |
|
| 599 | + @unlink($session); |
|
| 600 | + } |
|
| 601 | + } |
|
| 602 | + |
|
| 603 | + return $sessions; |
|
| 604 | 604 | } |
| 605 | 605 | |
| 606 | 606 | |
@@ -614,26 +614,26 @@ discard block |
||
| 614 | 614 | * @return array |
| 615 | 615 | */ |
| 616 | 616 | function preparer_ecriture_session($auteur) { |
| 617 | - $row = $auteur; |
|
| 618 | - |
|
| 619 | - // ne pas enregistrer ces elements de securite |
|
| 620 | - // dans le fichier de session |
|
| 621 | - unset($auteur['pass']); |
|
| 622 | - unset($auteur['htpass']); |
|
| 623 | - unset($auteur['low_sec']); |
|
| 624 | - unset($auteur['alea_actuel']); |
|
| 625 | - unset($auteur['alea_futur']); |
|
| 626 | - |
|
| 627 | - $auteur = pipeline('preparer_fichier_session', ['args' => ['row' => $row], 'data' => $auteur]); |
|
| 628 | - |
|
| 629 | - // ne pas enregistrer les valeurs vraiment nulle dans le fichier |
|
| 630 | - foreach ($auteur as $variable => $valeur) { |
|
| 631 | - if ($valeur === null) { |
|
| 632 | - unset($auteur[$variable]); |
|
| 633 | - } |
|
| 634 | - } |
|
| 635 | - |
|
| 636 | - return $auteur; |
|
| 617 | + $row = $auteur; |
|
| 618 | + |
|
| 619 | + // ne pas enregistrer ces elements de securite |
|
| 620 | + // dans le fichier de session |
|
| 621 | + unset($auteur['pass']); |
|
| 622 | + unset($auteur['htpass']); |
|
| 623 | + unset($auteur['low_sec']); |
|
| 624 | + unset($auteur['alea_actuel']); |
|
| 625 | + unset($auteur['alea_futur']); |
|
| 626 | + |
|
| 627 | + $auteur = pipeline('preparer_fichier_session', ['args' => ['row' => $row], 'data' => $auteur]); |
|
| 628 | + |
|
| 629 | + // ne pas enregistrer les valeurs vraiment nulle dans le fichier |
|
| 630 | + foreach ($auteur as $variable => $valeur) { |
|
| 631 | + if ($valeur === null) { |
|
| 632 | + unset($auteur[$variable]); |
|
| 633 | + } |
|
| 634 | + } |
|
| 635 | + |
|
| 636 | + return $auteur; |
|
| 637 | 637 | } |
| 638 | 638 | |
| 639 | 639 | /** |
@@ -645,17 +645,17 @@ discard block |
||
| 645 | 645 | */ |
| 646 | 646 | function ecrire_fichier_session($fichier, $auteur) { |
| 647 | 647 | |
| 648 | - $auteur = preparer_ecriture_session($auteur); |
|
| 648 | + $auteur = preparer_ecriture_session($auteur); |
|
| 649 | 649 | |
| 650 | - // enregistrer les autres donnees du visiteur |
|
| 651 | - $texte = '<' . "?php\n"; |
|
| 652 | - foreach ($auteur as $var => $val) { |
|
| 653 | - $texte .= '$GLOBALS[\'visiteur_session\'][' . var_export($var, true) . '] = ' |
|
| 654 | - . var_export($val, true) . ";\n"; |
|
| 655 | - } |
|
| 656 | - $texte .= '?' . ">\n"; |
|
| 650 | + // enregistrer les autres donnees du visiteur |
|
| 651 | + $texte = '<' . "?php\n"; |
|
| 652 | + foreach ($auteur as $var => $val) { |
|
| 653 | + $texte .= '$GLOBALS[\'visiteur_session\'][' . var_export($var, true) . '] = ' |
|
| 654 | + . var_export($val, true) . ";\n"; |
|
| 655 | + } |
|
| 656 | + $texte .= '?' . ">\n"; |
|
| 657 | 657 | |
| 658 | - return ecrire_fichier($fichier, $texte); |
|
| 658 | + return ecrire_fichier($fichier, $texte); |
|
| 659 | 659 | } |
| 660 | 660 | |
| 661 | 661 | |
@@ -668,23 +668,23 @@ discard block |
||
| 668 | 668 | */ |
| 669 | 669 | function fichier_session($alea, $tantpis = false) { |
| 670 | 670 | |
| 671 | - include_spip('inc/acces'); |
|
| 672 | - charger_aleas(); |
|
| 671 | + include_spip('inc/acces'); |
|
| 672 | + charger_aleas(); |
|
| 673 | 673 | |
| 674 | - if (empty($GLOBALS['meta'][$alea])) { |
|
| 675 | - if (!$tantpis) { |
|
| 676 | - spip_log("fichier session ($tantpis): $alea indisponible", 'session'); |
|
| 677 | - include_spip('inc/minipres'); |
|
| 678 | - echo minipres(); |
|
| 679 | - } |
|
| 674 | + if (empty($GLOBALS['meta'][$alea])) { |
|
| 675 | + if (!$tantpis) { |
|
| 676 | + spip_log("fichier session ($tantpis): $alea indisponible", 'session'); |
|
| 677 | + include_spip('inc/minipres'); |
|
| 678 | + echo minipres(); |
|
| 679 | + } |
|
| 680 | 680 | |
| 681 | - return ''; // echec mais $tanpis |
|
| 682 | - } else { |
|
| 683 | - $repertoire = sous_repertoire(_DIR_SESSIONS, '', false, $tantpis); |
|
| 684 | - $c = $_COOKIE['spip_session']; |
|
| 681 | + return ''; // echec mais $tanpis |
|
| 682 | + } else { |
|
| 683 | + $repertoire = sous_repertoire(_DIR_SESSIONS, '', false, $tantpis); |
|
| 684 | + $c = $_COOKIE['spip_session']; |
|
| 685 | 685 | |
| 686 | - return $repertoire . intval($c) . '_' . md5($c . ' ' . $GLOBALS['meta'][$alea]) . '.php'; |
|
| 687 | - } |
|
| 686 | + return $repertoire . intval($c) . '_' . md5($c . ' ' . $GLOBALS['meta'][$alea]) . '.php'; |
|
| 687 | + } |
|
| 688 | 688 | } |
| 689 | 689 | |
| 690 | 690 | |
@@ -701,7 +701,7 @@ discard block |
||
| 701 | 701 | * @return string |
| 702 | 702 | */ |
| 703 | 703 | function rejouer_session() { |
| 704 | - return '<img src="' . generer_url_action('cookie', 'change_session=oui', true) . '" width="0" height="0" alt="" />'; |
|
| 704 | + return '<img src="' . generer_url_action('cookie', 'change_session=oui', true) . '" width="0" height="0" alt="" />'; |
|
| 705 | 705 | } |
| 706 | 706 | |
| 707 | 707 | |
@@ -711,12 +711,12 @@ discard block |
||
| 711 | 711 | * @return string |
| 712 | 712 | */ |
| 713 | 713 | function hash_env() { |
| 714 | - static $res = ''; |
|
| 715 | - if ($res) { |
|
| 716 | - return $res; |
|
| 717 | - } |
|
| 714 | + static $res = ''; |
|
| 715 | + if ($res) { |
|
| 716 | + return $res; |
|
| 717 | + } |
|
| 718 | 718 | |
| 719 | - return $res = md5($GLOBALS['ip'] . ($_SERVER['HTTP_USER_AGENT'] ?? '')); |
|
| 719 | + return $res = md5($GLOBALS['ip'] . ($_SERVER['HTTP_USER_AGENT'] ?? '')); |
|
| 720 | 720 | } |
| 721 | 721 | |
| 722 | 722 | |
@@ -728,11 +728,11 @@ discard block |
||
| 728 | 728 | * @return bool True si une session PHP est ouverte. |
| 729 | 729 | **/ |
| 730 | 730 | function spip_php_session_start() { |
| 731 | - if (!is_php_session_started()) { |
|
| 732 | - return session_start(); |
|
| 733 | - } |
|
| 731 | + if (!is_php_session_started()) { |
|
| 732 | + return session_start(); |
|
| 733 | + } |
|
| 734 | 734 | |
| 735 | - return true; |
|
| 735 | + return true; |
|
| 736 | 736 | } |
| 737 | 737 | |
| 738 | 738 | /** |
@@ -742,9 +742,9 @@ discard block |
||
| 742 | 742 | * @return bool true si une session PHP est active |
| 743 | 743 | **/ |
| 744 | 744 | function is_php_session_started() { |
| 745 | - if (php_sapi_name() !== 'cli') { |
|
| 746 | - return session_status() === PHP_SESSION_ACTIVE ? true : false; |
|
| 747 | - } |
|
| 745 | + if (php_sapi_name() !== 'cli') { |
|
| 746 | + return session_status() === PHP_SESSION_ACTIVE ? true : false; |
|
| 747 | + } |
|
| 748 | 748 | |
| 749 | - return false; |
|
| 749 | + return false; |
|
| 750 | 750 | } |
@@ -82,13 +82,13 @@ discard block |
||
| 82 | 82 | spip_log("supprimer sessions auteur $id_auteur", 'session'); |
| 83 | 83 | if ($toutes or $id_auteur !== $GLOBALS['visiteur_session']['id_auteur']) { |
| 84 | 84 | if ($dir = opendir(_DIR_SESSIONS)) { |
| 85 | - $t = $_SERVER['REQUEST_TIME'] - (4 * _RENOUVELLE_ALEA); // 48h par defaut |
|
| 86 | - $t_short = $_SERVER['REQUEST_TIME'] - max(_RENOUVELLE_ALEA / 4, 3 * 3600); // 3h par defaut |
|
| 85 | + $t = $_SERVER['REQUEST_TIME'] - (4 * _RENOUVELLE_ALEA); // 48h par defaut |
|
| 86 | + $t_short = $_SERVER['REQUEST_TIME'] - max(_RENOUVELLE_ALEA / 4, 3 * 3600); // 3h par defaut |
|
| 87 | 87 | $t = time() - (4 * _RENOUVELLE_ALEA); |
| 88 | 88 | while (($f = readdir($dir)) !== false) { |
| 89 | 89 | $nb_files++; |
| 90 | 90 | if (preg_match(',^[^\d-]*(-?\d+)_\w{32}\.php[3]?$,', $f, $regs)) { |
| 91 | - $f = _DIR_SESSIONS . $f; |
|
| 91 | + $f = _DIR_SESSIONS.$f; |
|
| 92 | 92 | if (($actives and $regs[1] == $id_auteur) or ($t > filemtime($f))) { |
| 93 | 93 | spip_unlink($f); |
| 94 | 94 | } |
@@ -171,9 +171,9 @@ discard block |
||
| 171 | 171 | |
| 172 | 172 | if ( |
| 173 | 173 | !isset($_COOKIE['spip_session']) |
| 174 | - or !preg_match(',^' . $id_auteur . '_,', $_COOKIE['spip_session']) |
|
| 174 | + or !preg_match(',^'.$id_auteur.'_,', $_COOKIE['spip_session']) |
|
| 175 | 175 | ) { |
| 176 | - $_COOKIE['spip_session'] = $id_auteur . '_' . md5(uniqid(random_int(0, mt_getrandmax()), true)); |
|
| 176 | + $_COOKIE['spip_session'] = $id_auteur.'_'.md5(uniqid(random_int(0, mt_getrandmax()), true)); |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | // Maintenant on sait qu'on a des choses à écrire |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | } else { |
| 207 | 207 | $fichier_session = fichier_session('alea_ephemere'); |
| 208 | 208 | if (!ecrire_fichier_session($fichier_session, $auteur)) { |
| 209 | - spip_log('Echec ecriture fichier session ' . $fichier_session, 'session' . _LOG_HS); |
|
| 209 | + spip_log('Echec ecriture fichier session '.$fichier_session, 'session'._LOG_HS); |
|
| 210 | 210 | include_spip('inc/minipres'); |
| 211 | 211 | echo minipres(); |
| 212 | 212 | exit; |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | include_spip('inc/autoriser'); |
| 230 | 230 | } |
| 231 | 231 | if (autoriser('ecrire', '', '', $auteur) and _DUREE_COOKIE_ADMIN) { |
| 232 | - spip_setcookie('spip_admin', '@' . ($auteur['email'] ?: $auteur['login']), [ |
|
| 232 | + spip_setcookie('spip_admin', '@'.($auteur['email'] ?: $auteur['login']), [ |
|
| 233 | 233 | 'expires' => time() + max(_DUREE_COOKIE_ADMIN, $duree) |
| 234 | 234 | ]); |
| 235 | 235 | } // sinon le supprimer ... |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | $coef = 20; |
| 271 | 271 | } |
| 272 | 272 | } |
| 273 | - return (int)(_RENOUVELLE_ALEA * $coef); |
|
| 273 | + return (int) (_RENOUVELLE_ALEA * $coef); |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | /** |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | |
| 319 | 319 | // Renouveler la session avec l'alea courant |
| 320 | 320 | include($fichier_session); |
| 321 | - spip_log('renouvelle session ' . $GLOBALS['visiteur_session']['id_auteur'], 'session'); |
|
| 321 | + spip_log('renouvelle session '.$GLOBALS['visiteur_session']['id_auteur'], 'session'); |
|
| 322 | 322 | spip_unlink($fichier_session); |
| 323 | 323 | ajouter_session($GLOBALS['visiteur_session']); |
| 324 | 324 | } |
@@ -350,7 +350,7 @@ discard block |
||
| 350 | 350 | } |
| 351 | 351 | } else { |
| 352 | 352 | if ($change) { |
| 353 | - spip_log("rejoue session $fichier_session " . $_COOKIE['spip_session'], 'session'); |
|
| 353 | + spip_log("rejoue session $fichier_session ".$_COOKIE['spip_session'], 'session'); |
|
| 354 | 354 | if ($fichier_session) { |
| 355 | 355 | spip_unlink($fichier_session); |
| 356 | 356 | } |
@@ -567,7 +567,7 @@ discard block |
||
| 567 | 567 | } |
| 568 | 568 | |
| 569 | 569 | // liste des sessions |
| 570 | - $sessions = preg_files(_DIR_SESSIONS, '/' . $id_auteur . '_.*\.php$'); |
|
| 570 | + $sessions = preg_files(_DIR_SESSIONS, '/'.$id_auteur.'_.*\.php$'); |
|
| 571 | 571 | |
| 572 | 572 | // si on en a plus que la limite, supprimer les plus vieilles |
| 573 | 573 | // si ce ne sont pas des sessions anonymes car elles sont alors chacune differentes |
@@ -648,12 +648,12 @@ discard block |
||
| 648 | 648 | $auteur = preparer_ecriture_session($auteur); |
| 649 | 649 | |
| 650 | 650 | // enregistrer les autres donnees du visiteur |
| 651 | - $texte = '<' . "?php\n"; |
|
| 651 | + $texte = '<'."?php\n"; |
|
| 652 | 652 | foreach ($auteur as $var => $val) { |
| 653 | - $texte .= '$GLOBALS[\'visiteur_session\'][' . var_export($var, true) . '] = ' |
|
| 654 | - . var_export($val, true) . ";\n"; |
|
| 653 | + $texte .= '$GLOBALS[\'visiteur_session\']['.var_export($var, true).'] = ' |
|
| 654 | + . var_export($val, true).";\n"; |
|
| 655 | 655 | } |
| 656 | - $texte .= '?' . ">\n"; |
|
| 656 | + $texte .= '?'.">\n"; |
|
| 657 | 657 | |
| 658 | 658 | return ecrire_fichier($fichier, $texte); |
| 659 | 659 | } |
@@ -683,7 +683,7 @@ discard block |
||
| 683 | 683 | $repertoire = sous_repertoire(_DIR_SESSIONS, '', false, $tantpis); |
| 684 | 684 | $c = $_COOKIE['spip_session']; |
| 685 | 685 | |
| 686 | - return $repertoire . intval($c) . '_' . md5($c . ' ' . $GLOBALS['meta'][$alea]) . '.php'; |
|
| 686 | + return $repertoire.intval($c).'_'.md5($c.' '.$GLOBALS['meta'][$alea]).'.php'; |
|
| 687 | 687 | } |
| 688 | 688 | } |
| 689 | 689 | |
@@ -701,7 +701,7 @@ discard block |
||
| 701 | 701 | * @return string |
| 702 | 702 | */ |
| 703 | 703 | function rejouer_session() { |
| 704 | - return '<img src="' . generer_url_action('cookie', 'change_session=oui', true) . '" width="0" height="0" alt="" />'; |
|
| 704 | + return '<img src="'.generer_url_action('cookie', 'change_session=oui', true).'" width="0" height="0" alt="" />'; |
|
| 705 | 705 | } |
| 706 | 706 | |
| 707 | 707 | |
@@ -716,7 +716,7 @@ discard block |
||
| 716 | 716 | return $res; |
| 717 | 717 | } |
| 718 | 718 | |
| 719 | - return $res = md5($GLOBALS['ip'] . ($_SERVER['HTTP_USER_AGENT'] ?? '')); |
|
| 719 | + return $res = md5($GLOBALS['ip'].($_SERVER['HTTP_USER_AGENT'] ?? '')); |
|
| 720 | 720 | } |
| 721 | 721 | |
| 722 | 722 | |