@@ -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 | |
@@ -48,63 +48,63 @@ discard block |
||
| 48 | 48 | * Nom de la fonction, ou false. |
| 49 | 49 | */ |
| 50 | 50 | function charger_fonction($nom, $dossier = 'exec', $continue = false) { |
| 51 | - static $echecs = array(); |
|
| 52 | - |
|
| 53 | - if (strlen($dossier) and substr($dossier, -1) != '/') { |
|
| 54 | - $dossier .= '/'; |
|
| 55 | - } |
|
| 56 | - $f = str_replace('/', '_', $dossier) . $nom; |
|
| 57 | - |
|
| 58 | - if (function_exists($f)) { |
|
| 59 | - return $f; |
|
| 60 | - } |
|
| 61 | - if (function_exists($g = $f . '_dist')) { |
|
| 62 | - return $g; |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - if (isset($echecs[$f])) { |
|
| 66 | - return $echecs[$f]; |
|
| 67 | - } |
|
| 68 | - // Sinon charger le fichier de declaration si plausible |
|
| 69 | - |
|
| 70 | - if (!preg_match(',^\w+$,', $f)) { |
|
| 71 | - if ($continue) { |
|
| 72 | - return false; |
|
| 73 | - } //appel interne, on passe |
|
| 74 | - include_spip('inc/minipres'); |
|
| 75 | - echo minipres(); |
|
| 76 | - exit; |
|
| 77 | - } |
|
| 78 | - |
|
| 79 | - // passer en minuscules (cf les balises de formulaires) |
|
| 80 | - // et inclure le fichier |
|
| 81 | - if (!$inc = include_spip($dossier . ($d = strtolower($nom))) |
|
| 82 | - // si le fichier truc/machin/nom.php n'existe pas, |
|
| 83 | - // la fonction peut etre definie dans truc/machin.php qui regroupe plusieurs petites fonctions |
|
| 84 | - and strlen(dirname($dossier)) and dirname($dossier) != '.' |
|
| 85 | - ) { |
|
| 86 | - include_spip(substr($dossier, 0, -1)); |
|
| 87 | - } |
|
| 88 | - if (function_exists($f)) { |
|
| 89 | - return $f; |
|
| 90 | - } |
|
| 91 | - if (function_exists($g)) { |
|
| 92 | - return $g; |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - if ($continue) { |
|
| 96 | - return $echecs[$f] = false; |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - // Echec : message d'erreur |
|
| 100 | - spip_log("fonction $nom ($f ou $g) indisponible" . |
|
| 101 | - ($inc ? "" : " (fichier $d absent de $dossier)")); |
|
| 102 | - |
|
| 103 | - include_spip('inc/minipres'); |
|
| 104 | - echo minipres(_T('forum_titre_erreur'), |
|
| 105 | - _T('fichier_introuvable', array('fichier' => '<b>' . spip_htmlentities($d) . '</b>')), |
|
| 106 | - array('all_inline'=>true,'status'=>404)); |
|
| 107 | - exit; |
|
| 51 | + static $echecs = array(); |
|
| 52 | + |
|
| 53 | + if (strlen($dossier) and substr($dossier, -1) != '/') { |
|
| 54 | + $dossier .= '/'; |
|
| 55 | + } |
|
| 56 | + $f = str_replace('/', '_', $dossier) . $nom; |
|
| 57 | + |
|
| 58 | + if (function_exists($f)) { |
|
| 59 | + return $f; |
|
| 60 | + } |
|
| 61 | + if (function_exists($g = $f . '_dist')) { |
|
| 62 | + return $g; |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + if (isset($echecs[$f])) { |
|
| 66 | + return $echecs[$f]; |
|
| 67 | + } |
|
| 68 | + // Sinon charger le fichier de declaration si plausible |
|
| 69 | + |
|
| 70 | + if (!preg_match(',^\w+$,', $f)) { |
|
| 71 | + if ($continue) { |
|
| 72 | + return false; |
|
| 73 | + } //appel interne, on passe |
|
| 74 | + include_spip('inc/minipres'); |
|
| 75 | + echo minipres(); |
|
| 76 | + exit; |
|
| 77 | + } |
|
| 78 | + |
|
| 79 | + // passer en minuscules (cf les balises de formulaires) |
|
| 80 | + // et inclure le fichier |
|
| 81 | + if (!$inc = include_spip($dossier . ($d = strtolower($nom))) |
|
| 82 | + // si le fichier truc/machin/nom.php n'existe pas, |
|
| 83 | + // la fonction peut etre definie dans truc/machin.php qui regroupe plusieurs petites fonctions |
|
| 84 | + and strlen(dirname($dossier)) and dirname($dossier) != '.' |
|
| 85 | + ) { |
|
| 86 | + include_spip(substr($dossier, 0, -1)); |
|
| 87 | + } |
|
| 88 | + if (function_exists($f)) { |
|
| 89 | + return $f; |
|
| 90 | + } |
|
| 91 | + if (function_exists($g)) { |
|
| 92 | + return $g; |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + if ($continue) { |
|
| 96 | + return $echecs[$f] = false; |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + // Echec : message d'erreur |
|
| 100 | + spip_log("fonction $nom ($f ou $g) indisponible" . |
|
| 101 | + ($inc ? "" : " (fichier $d absent de $dossier)")); |
|
| 102 | + |
|
| 103 | + include_spip('inc/minipres'); |
|
| 104 | + echo minipres(_T('forum_titre_erreur'), |
|
| 105 | + _T('fichier_introuvable', array('fichier' => '<b>' . spip_htmlentities($d) . '</b>')), |
|
| 106 | + array('all_inline'=>true,'status'=>404)); |
|
| 107 | + exit; |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | /** |
@@ -114,17 +114,17 @@ discard block |
||
| 114 | 114 | * @return bool |
| 115 | 115 | */ |
| 116 | 116 | function include_once_check($file) { |
| 117 | - if (file_exists($file)) { |
|
| 118 | - include_once $file; |
|
| 117 | + if (file_exists($file)) { |
|
| 118 | + include_once $file; |
|
| 119 | 119 | |
| 120 | - return true; |
|
| 121 | - } |
|
| 122 | - $crash = (isset($GLOBALS['meta']['message_crash_plugins']) ? unserialize($GLOBALS['meta']['message_crash_plugins']) : ''); |
|
| 123 | - $crash = ($crash ? $crash : array()); |
|
| 124 | - $crash[$file] = true; |
|
| 125 | - ecrire_meta('message_crash_plugins', serialize($crash)); |
|
| 120 | + return true; |
|
| 121 | + } |
|
| 122 | + $crash = (isset($GLOBALS['meta']['message_crash_plugins']) ? unserialize($GLOBALS['meta']['message_crash_plugins']) : ''); |
|
| 123 | + $crash = ($crash ? $crash : array()); |
|
| 124 | + $crash[$file] = true; |
|
| 125 | + ecrire_meta('message_crash_plugins', serialize($crash)); |
|
| 126 | 126 | |
| 127 | - return false; |
|
| 127 | + return false; |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | * - string : chemin du fichier trouvé |
| 149 | 149 | **/ |
| 150 | 150 | function include_spip($f, $include = true) { |
| 151 | - return find_in_path($f . '.php', '', $include); |
|
| 151 | + return find_in_path($f . '.php', '', $include); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | * - string : chemin du fichier trouvé |
| 169 | 169 | **/ |
| 170 | 170 | function require_spip($f) { |
| 171 | - return find_in_path($f . '.php', '', 'required'); |
|
| 171 | + return find_in_path($f . '.php', '', 'required'); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | |
@@ -177,27 +177,27 @@ discard block |
||
| 177 | 177 | * quand on a besoin dans le PHP de filtres/fonctions qui y sont definis |
| 178 | 178 | */ |
| 179 | 179 | function include_fichiers_fonctions() { |
| 180 | - static $done = false; |
|
| 181 | - if (!$done) { |
|
| 182 | - include_spip('inc/lang'); |
|
| 183 | - |
|
| 184 | - // NB: mes_fonctions peut initialiser $dossier_squelettes (old-style) |
|
| 185 | - // donc il faut l'inclure "en globals" |
|
| 186 | - if ($f = find_in_path('mes_fonctions.php')) { |
|
| 187 | - global $dossier_squelettes; |
|
| 188 | - include_once(_ROOT_CWD . $f); |
|
| 189 | - } |
|
| 190 | - |
|
| 191 | - if (@is_readable(_CACHE_PLUGINS_FCT)) { |
|
| 192 | - // chargement optimise precompile |
|
| 193 | - include_once(_CACHE_PLUGINS_FCT); |
|
| 194 | - } |
|
| 195 | - if (test_espace_prive()) { |
|
| 196 | - include_spip('inc/filtres_ecrire'); |
|
| 197 | - } |
|
| 198 | - include_spip('public/fonctions'); // charger les fichiers fonctions associes aux criteres, balises.. |
|
| 199 | - $done = true; |
|
| 200 | - } |
|
| 180 | + static $done = false; |
|
| 181 | + if (!$done) { |
|
| 182 | + include_spip('inc/lang'); |
|
| 183 | + |
|
| 184 | + // NB: mes_fonctions peut initialiser $dossier_squelettes (old-style) |
|
| 185 | + // donc il faut l'inclure "en globals" |
|
| 186 | + if ($f = find_in_path('mes_fonctions.php')) { |
|
| 187 | + global $dossier_squelettes; |
|
| 188 | + include_once(_ROOT_CWD . $f); |
|
| 189 | + } |
|
| 190 | + |
|
| 191 | + if (@is_readable(_CACHE_PLUGINS_FCT)) { |
|
| 192 | + // chargement optimise precompile |
|
| 193 | + include_once(_CACHE_PLUGINS_FCT); |
|
| 194 | + } |
|
| 195 | + if (test_espace_prive()) { |
|
| 196 | + include_spip('inc/filtres_ecrire'); |
|
| 197 | + } |
|
| 198 | + include_spip('public/fonctions'); // charger les fichiers fonctions associes aux criteres, balises.. |
|
| 199 | + $done = true; |
|
| 200 | + } |
|
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | /** |
@@ -223,22 +223,22 @@ discard block |
||
| 223 | 223 | * Les paramètres du pipeline modifiés |
| 224 | 224 | **/ |
| 225 | 225 | function minipipe($fonc, &$val) { |
| 226 | - // fonction |
|
| 227 | - if (function_exists($fonc)) { |
|
| 228 | - $val = call_user_func($fonc, $val); |
|
| 229 | - } // Class::Methode |
|
| 230 | - else { |
|
| 231 | - if (preg_match("/^(\w*)::(\w*)$/S", $fonc, $regs) |
|
| 232 | - and $methode = array($regs[1], $regs[2]) |
|
| 233 | - and is_callable($methode) |
|
| 234 | - ) { |
|
| 235 | - $val = call_user_func($methode, $val); |
|
| 236 | - } else { |
|
| 237 | - spip_log("Erreur - '$fonc' non definie !"); |
|
| 238 | - } |
|
| 239 | - } |
|
| 226 | + // fonction |
|
| 227 | + if (function_exists($fonc)) { |
|
| 228 | + $val = call_user_func($fonc, $val); |
|
| 229 | + } // Class::Methode |
|
| 230 | + else { |
|
| 231 | + if (preg_match("/^(\w*)::(\w*)$/S", $fonc, $regs) |
|
| 232 | + and $methode = array($regs[1], $regs[2]) |
|
| 233 | + and is_callable($methode) |
|
| 234 | + ) { |
|
| 235 | + $val = call_user_func($methode, $val); |
|
| 236 | + } else { |
|
| 237 | + spip_log("Erreur - '$fonc' non definie !"); |
|
| 238 | + } |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | - return $val; |
|
| 241 | + return $val; |
|
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | /** |
@@ -269,45 +269,45 @@ discard block |
||
| 269 | 269 | * Résultat |
| 270 | 270 | */ |
| 271 | 271 | function pipeline($action, $val = null) { |
| 272 | - static $charger; |
|
| 273 | - |
|
| 274 | - // chargement initial des fonctions mises en cache, ou generation du cache |
|
| 275 | - if (!$charger) { |
|
| 276 | - if (!($ok = @is_readable($charger = _CACHE_PIPELINES))) { |
|
| 277 | - include_spip('inc/plugin'); |
|
| 278 | - // generer les fichiers php precompiles |
|
| 279 | - // de chargement des plugins et des pipelines |
|
| 280 | - actualise_plugins_actifs(); |
|
| 281 | - if (!($ok = @is_readable($charger))) { |
|
| 282 | - spip_log("fichier $charger pas cree"); |
|
| 283 | - } |
|
| 284 | - } |
|
| 285 | - |
|
| 286 | - if ($ok) { |
|
| 287 | - include_once $charger; |
|
| 288 | - } |
|
| 289 | - } |
|
| 290 | - |
|
| 291 | - // appliquer notre fonction si elle existe |
|
| 292 | - $fonc = 'execute_pipeline_' . strtolower($action); |
|
| 293 | - if (function_exists($fonc)) { |
|
| 294 | - $val = $fonc($val); |
|
| 295 | - } // plantage ? |
|
| 296 | - else { |
|
| 297 | - spip_log("fonction $fonc absente : pipeline desactive", _LOG_ERREUR); |
|
| 298 | - } |
|
| 299 | - |
|
| 300 | - // si le flux est une table avec 2 cle args&data |
|
| 301 | - // on ne ressort du pipe que les donnees dans 'data' |
|
| 302 | - // array_key_exists pour php 4.1.0 |
|
| 303 | - if (is_array($val) |
|
| 304 | - and count($val) == 2 |
|
| 305 | - and (array_key_exists('data', $val)) |
|
| 306 | - ) { |
|
| 307 | - $val = $val['data']; |
|
| 308 | - } |
|
| 309 | - |
|
| 310 | - return $val; |
|
| 272 | + static $charger; |
|
| 273 | + |
|
| 274 | + // chargement initial des fonctions mises en cache, ou generation du cache |
|
| 275 | + if (!$charger) { |
|
| 276 | + if (!($ok = @is_readable($charger = _CACHE_PIPELINES))) { |
|
| 277 | + include_spip('inc/plugin'); |
|
| 278 | + // generer les fichiers php precompiles |
|
| 279 | + // de chargement des plugins et des pipelines |
|
| 280 | + actualise_plugins_actifs(); |
|
| 281 | + if (!($ok = @is_readable($charger))) { |
|
| 282 | + spip_log("fichier $charger pas cree"); |
|
| 283 | + } |
|
| 284 | + } |
|
| 285 | + |
|
| 286 | + if ($ok) { |
|
| 287 | + include_once $charger; |
|
| 288 | + } |
|
| 289 | + } |
|
| 290 | + |
|
| 291 | + // appliquer notre fonction si elle existe |
|
| 292 | + $fonc = 'execute_pipeline_' . strtolower($action); |
|
| 293 | + if (function_exists($fonc)) { |
|
| 294 | + $val = $fonc($val); |
|
| 295 | + } // plantage ? |
|
| 296 | + else { |
|
| 297 | + spip_log("fonction $fonc absente : pipeline desactive", _LOG_ERREUR); |
|
| 298 | + } |
|
| 299 | + |
|
| 300 | + // si le flux est une table avec 2 cle args&data |
|
| 301 | + // on ne ressort du pipe que les donnees dans 'data' |
|
| 302 | + // array_key_exists pour php 4.1.0 |
|
| 303 | + if (is_array($val) |
|
| 304 | + and count($val) == 2 |
|
| 305 | + and (array_key_exists('data', $val)) |
|
| 306 | + ) { |
|
| 307 | + $val = $val['data']; |
|
| 308 | + } |
|
| 309 | + |
|
| 310 | + return $val; |
|
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | /** |
@@ -351,38 +351,38 @@ discard block |
||
| 351 | 351 | * paramètre est planté pour cause de compatibilité ascendante. |
| 352 | 352 | */ |
| 353 | 353 | function spip_log($message = null, $name = null) { |
| 354 | - static $pre = array(); |
|
| 355 | - static $log; |
|
| 356 | - preg_match('/^([a-z_]*)\.?(\d)?$/iS', (string)$name, $regs); |
|
| 357 | - if (!isset($regs[1]) or !$logname = $regs[1]) { |
|
| 358 | - $logname = null; |
|
| 359 | - } |
|
| 360 | - if (!isset($regs[2])) { |
|
| 361 | - $niveau = _LOG_INFO; |
|
| 362 | - } |
|
| 363 | - else { |
|
| 364 | - $niveau = intval($regs[2]); |
|
| 365 | - } |
|
| 366 | - |
|
| 367 | - if ($niveau <= (defined('_LOG_FILTRE_GRAVITE') ? _LOG_FILTRE_GRAVITE : _LOG_INFO_IMPORTANTE)) { |
|
| 368 | - if (!$pre) { |
|
| 369 | - $pre = array( |
|
| 370 | - _LOG_HS => 'HS:', |
|
| 371 | - _LOG_ALERTE_ROUGE => 'ALERTE:', |
|
| 372 | - _LOG_CRITIQUE => 'CRITIQUE:', |
|
| 373 | - _LOG_ERREUR => 'ERREUR:', |
|
| 374 | - _LOG_AVERTISSEMENT => 'WARNING:', |
|
| 375 | - _LOG_INFO_IMPORTANTE => '!INFO:', |
|
| 376 | - _LOG_INFO => 'info:', |
|
| 377 | - _LOG_DEBUG => 'debug:' |
|
| 378 | - ); |
|
| 379 | - $log = charger_fonction('log', 'inc'); |
|
| 380 | - } |
|
| 381 | - if (!is_string($message)) { |
|
| 382 | - $message = print_r($message, true); |
|
| 383 | - } |
|
| 384 | - $log($pre[$niveau] . ' ' . $message, $logname); |
|
| 385 | - } |
|
| 354 | + static $pre = array(); |
|
| 355 | + static $log; |
|
| 356 | + preg_match('/^([a-z_]*)\.?(\d)?$/iS', (string)$name, $regs); |
|
| 357 | + if (!isset($regs[1]) or !$logname = $regs[1]) { |
|
| 358 | + $logname = null; |
|
| 359 | + } |
|
| 360 | + if (!isset($regs[2])) { |
|
| 361 | + $niveau = _LOG_INFO; |
|
| 362 | + } |
|
| 363 | + else { |
|
| 364 | + $niveau = intval($regs[2]); |
|
| 365 | + } |
|
| 366 | + |
|
| 367 | + if ($niveau <= (defined('_LOG_FILTRE_GRAVITE') ? _LOG_FILTRE_GRAVITE : _LOG_INFO_IMPORTANTE)) { |
|
| 368 | + if (!$pre) { |
|
| 369 | + $pre = array( |
|
| 370 | + _LOG_HS => 'HS:', |
|
| 371 | + _LOG_ALERTE_ROUGE => 'ALERTE:', |
|
| 372 | + _LOG_CRITIQUE => 'CRITIQUE:', |
|
| 373 | + _LOG_ERREUR => 'ERREUR:', |
|
| 374 | + _LOG_AVERTISSEMENT => 'WARNING:', |
|
| 375 | + _LOG_INFO_IMPORTANTE => '!INFO:', |
|
| 376 | + _LOG_INFO => 'info:', |
|
| 377 | + _LOG_DEBUG => 'debug:' |
|
| 378 | + ); |
|
| 379 | + $log = charger_fonction('log', 'inc'); |
|
| 380 | + } |
|
| 381 | + if (!is_string($message)) { |
|
| 382 | + $message = print_r($message, true); |
|
| 383 | + } |
|
| 384 | + $log($pre[$niveau] . ' ' . $message, $logname); |
|
| 385 | + } |
|
| 386 | 386 | } |
| 387 | 387 | |
| 388 | 388 | /** |
@@ -393,8 +393,8 @@ discard block |
||
| 393 | 393 | * @param array $opt Tableau d'options |
| 394 | 394 | **/ |
| 395 | 395 | function journal($phrase, $opt = array()) { |
| 396 | - $journal = charger_fonction('journal', 'inc'); |
|
| 397 | - $journal($phrase, $opt); |
|
| 396 | + $journal = charger_fonction('journal', 'inc'); |
|
| 397 | + $journal($phrase, $opt); |
|
| 398 | 398 | } |
| 399 | 399 | |
| 400 | 400 | |
@@ -413,36 +413,36 @@ discard block |
||
| 413 | 413 | **/ |
| 414 | 414 | function _request($var, $c = false) { |
| 415 | 415 | |
| 416 | - if (is_array($c)) { |
|
| 417 | - return isset($c[$var]) ? $c[$var] : null; |
|
| 418 | - } |
|
| 416 | + if (is_array($c)) { |
|
| 417 | + return isset($c[$var]) ? $c[$var] : null; |
|
| 418 | + } |
|
| 419 | 419 | |
| 420 | - if (isset($_GET[$var])) { |
|
| 421 | - $a = $_GET[$var]; |
|
| 422 | - } elseif (isset($_POST[$var])) { |
|
| 423 | - $a = $_POST[$var]; |
|
| 424 | - } else { |
|
| 425 | - return null; |
|
| 426 | - } |
|
| 420 | + if (isset($_GET[$var])) { |
|
| 421 | + $a = $_GET[$var]; |
|
| 422 | + } elseif (isset($_POST[$var])) { |
|
| 423 | + $a = $_POST[$var]; |
|
| 424 | + } else { |
|
| 425 | + return null; |
|
| 426 | + } |
|
| 427 | 427 | |
| 428 | - // Si on est en ajax et en POST tout a ete encode |
|
| 429 | - // via encodeURIComponent, il faut donc repasser |
|
| 430 | - // dans le charset local... |
|
| 431 | - if (defined('_AJAX') |
|
| 432 | - and _AJAX |
|
| 433 | - and isset($GLOBALS['meta']['charset']) |
|
| 434 | - and $GLOBALS['meta']['charset'] != 'utf-8' |
|
| 435 | - and is_string($a) |
|
| 436 | - // check rapide mais pas fiable |
|
| 437 | - and preg_match(',[\x80-\xFF],', $a) |
|
| 438 | - // check fiable |
|
| 439 | - and include_spip('inc/charsets') |
|
| 440 | - and is_utf8($a) |
|
| 441 | - ) { |
|
| 442 | - return importer_charset($a, 'utf-8'); |
|
| 443 | - } |
|
| 428 | + // Si on est en ajax et en POST tout a ete encode |
|
| 429 | + // via encodeURIComponent, il faut donc repasser |
|
| 430 | + // dans le charset local... |
|
| 431 | + if (defined('_AJAX') |
|
| 432 | + and _AJAX |
|
| 433 | + and isset($GLOBALS['meta']['charset']) |
|
| 434 | + and $GLOBALS['meta']['charset'] != 'utf-8' |
|
| 435 | + and is_string($a) |
|
| 436 | + // check rapide mais pas fiable |
|
| 437 | + and preg_match(',[\x80-\xFF],', $a) |
|
| 438 | + // check fiable |
|
| 439 | + and include_spip('inc/charsets') |
|
| 440 | + and is_utf8($a) |
|
| 441 | + ) { |
|
| 442 | + return importer_charset($a, 'utf-8'); |
|
| 443 | + } |
|
| 444 | 444 | |
| 445 | - return $a; |
|
| 445 | + return $a; |
|
| 446 | 446 | } |
| 447 | 447 | |
| 448 | 448 | |
@@ -460,22 +460,22 @@ discard block |
||
| 460 | 460 | * - false sinon |
| 461 | 461 | **/ |
| 462 | 462 | function set_request($var, $val = null, $c = false) { |
| 463 | - if (is_array($c)) { |
|
| 464 | - unset($c[$var]); |
|
| 465 | - if ($val !== null) { |
|
| 466 | - $c[$var] = $val; |
|
| 467 | - } |
|
| 463 | + if (is_array($c)) { |
|
| 464 | + unset($c[$var]); |
|
| 465 | + if ($val !== null) { |
|
| 466 | + $c[$var] = $val; |
|
| 467 | + } |
|
| 468 | 468 | |
| 469 | - return $c; |
|
| 470 | - } |
|
| 469 | + return $c; |
|
| 470 | + } |
|
| 471 | 471 | |
| 472 | - unset($_GET[$var]); |
|
| 473 | - unset($_POST[$var]); |
|
| 474 | - if ($val !== null) { |
|
| 475 | - $_GET[$var] = $val; |
|
| 476 | - } |
|
| 472 | + unset($_GET[$var]); |
|
| 473 | + unset($_POST[$var]); |
|
| 474 | + if ($val !== null) { |
|
| 475 | + $_GET[$var] = $val; |
|
| 476 | + } |
|
| 477 | 477 | |
| 478 | - return false; # n'affecte pas $c |
|
| 478 | + return false; # n'affecte pas $c |
|
| 479 | 479 | } |
| 480 | 480 | |
| 481 | 481 | /** |
@@ -495,25 +495,25 @@ discard block |
||
| 495 | 495 | * @return array|mixed|string |
| 496 | 496 | */ |
| 497 | 497 | function spip_sanitize_from_request($value, $key, $sanitize_function='entites_html') { |
| 498 | - if (is_array($value)) { |
|
| 499 | - if ($key=='*') { |
|
| 500 | - $key = array_keys($value); |
|
| 501 | - } |
|
| 502 | - if (!is_array($key)) { |
|
| 503 | - $key = [$key]; |
|
| 504 | - } |
|
| 505 | - foreach ($key as $k) { |
|
| 506 | - if (!empty($value[$k])) { |
|
| 507 | - $value[$k] = spip_sanitize_from_request($value[$k], $k, $sanitize_function); |
|
| 508 | - } |
|
| 509 | - } |
|
| 510 | - return $value; |
|
| 511 | - } |
|
| 512 | - // si la valeur vient des GET ou POST on la sanitize |
|
| 513 | - if (!empty($value) and $value == _request($key)) { |
|
| 514 | - $value = $sanitize_function($value); |
|
| 515 | - } |
|
| 516 | - return $value; |
|
| 498 | + if (is_array($value)) { |
|
| 499 | + if ($key=='*') { |
|
| 500 | + $key = array_keys($value); |
|
| 501 | + } |
|
| 502 | + if (!is_array($key)) { |
|
| 503 | + $key = [$key]; |
|
| 504 | + } |
|
| 505 | + foreach ($key as $k) { |
|
| 506 | + if (!empty($value[$k])) { |
|
| 507 | + $value[$k] = spip_sanitize_from_request($value[$k], $k, $sanitize_function); |
|
| 508 | + } |
|
| 509 | + } |
|
| 510 | + return $value; |
|
| 511 | + } |
|
| 512 | + // si la valeur vient des GET ou POST on la sanitize |
|
| 513 | + if (!empty($value) and $value == _request($key)) { |
|
| 514 | + $value = $sanitize_function($value); |
|
| 515 | + } |
|
| 516 | + return $value; |
|
| 517 | 517 | } |
| 518 | 518 | |
| 519 | 519 | /** |
@@ -521,23 +521,22 @@ discard block |
||
| 521 | 521 | * |
| 522 | 522 | * On est sur le web, on exclut certains protocoles, |
| 523 | 523 | * notamment 'file://', 'php://' et d'autres… |
| 524 | - |
|
| 525 | 524 | * @param string $url |
| 526 | 525 | * @return bool |
| 527 | 526 | */ |
| 528 | 527 | function tester_url_absolue($url) { |
| 529 | - $url = trim($url); |
|
| 530 | - if (preg_match(";^([a-z]{3,7}:)?//;Uims", $url, $m)) { |
|
| 531 | - if ( |
|
| 532 | - isset($m[1]) |
|
| 533 | - and $p = strtolower(rtrim($m[1], ':')) |
|
| 534 | - and in_array($p, array('file', 'php', 'zlib', 'glob', 'phar', 'ssh2', 'rar', 'ogg', 'expect', 'zip')) |
|
| 535 | - ) { |
|
| 536 | - return false; |
|
| 537 | - } |
|
| 538 | - return true; |
|
| 539 | - } |
|
| 540 | - return false; |
|
| 528 | + $url = trim($url); |
|
| 529 | + if (preg_match(";^([a-z]{3,7}:)?//;Uims", $url, $m)) { |
|
| 530 | + if ( |
|
| 531 | + isset($m[1]) |
|
| 532 | + and $p = strtolower(rtrim($m[1], ':')) |
|
| 533 | + and in_array($p, array('file', 'php', 'zlib', 'glob', 'phar', 'ssh2', 'rar', 'ogg', 'expect', 'zip')) |
|
| 534 | + ) { |
|
| 535 | + return false; |
|
| 536 | + } |
|
| 537 | + return true; |
|
| 538 | + } |
|
| 539 | + return false; |
|
| 541 | 540 | } |
| 542 | 541 | |
| 543 | 542 | /** |
@@ -559,94 +558,94 @@ discard block |
||
| 559 | 558 | * @return string URL |
| 560 | 559 | */ |
| 561 | 560 | function parametre_url($url, $c, $v = null, $sep = '&') { |
| 562 | - // requete erronnee : plusieurs variable dans $c et aucun $v |
|
| 563 | - if (strpos($c, "|") !== false and is_null($v)) { |
|
| 564 | - return null; |
|
| 565 | - } |
|
| 566 | - |
|
| 567 | - // lever l'#ancre |
|
| 568 | - if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) { |
|
| 569 | - $url = $r[1]; |
|
| 570 | - $ancre = $r[2]; |
|
| 571 | - } else { |
|
| 572 | - $ancre = ''; |
|
| 573 | - } |
|
| 574 | - |
|
| 575 | - // eclater |
|
| 576 | - $url = preg_split(',[?]|&|&,', $url); |
|
| 577 | - |
|
| 578 | - // recuperer la base |
|
| 579 | - $a = array_shift($url); |
|
| 580 | - if (!$a) { |
|
| 581 | - $a = './'; |
|
| 582 | - } |
|
| 583 | - |
|
| 584 | - $regexp = ',^(' . str_replace('[]', '\[\]', $c) . '[[]?[]]?)(=.*)?$,'; |
|
| 585 | - $ajouts = array_flip(explode('|', $c)); |
|
| 586 | - $u = is_array($v) ? $v : rawurlencode($v); |
|
| 587 | - $testv = (is_array($v) ? count($v) : strlen($v)); |
|
| 588 | - $v_read = null; |
|
| 589 | - // lire les variables et agir |
|
| 590 | - foreach ($url as $n => $val) { |
|
| 591 | - if (preg_match($regexp, urldecode($val), $r)) { |
|
| 592 | - $r = array_pad($r, 3, null); |
|
| 593 | - if ($v === null) { |
|
| 594 | - // c'est un tableau, on memorise les valeurs |
|
| 595 | - if (substr($r[1], -2) == "[]") { |
|
| 596 | - if (!$v_read) { |
|
| 597 | - $v_read = array(); |
|
| 598 | - } |
|
| 599 | - $v_read[] = $r[2] ? substr($r[2], 1) : ''; |
|
| 600 | - } // c'est un scalaire, on retourne direct |
|
| 601 | - else { |
|
| 602 | - return $r[2] ? substr($r[2], 1) : ''; |
|
| 603 | - } |
|
| 604 | - } // suppression |
|
| 605 | - elseif (!$testv) { |
|
| 606 | - unset($url[$n]); |
|
| 607 | - } |
|
| 608 | - // Ajout. Pour une variable, remplacer au meme endroit, |
|
| 609 | - // pour un tableau ce sera fait dans la prochaine boucle |
|
| 610 | - elseif (substr($r[1], -2) != '[]') { |
|
| 611 | - $url[$n] = $r[1] . '=' . $u; |
|
| 612 | - unset($ajouts[$r[1]]); |
|
| 613 | - } |
|
| 614 | - // Pour les tableaux on laisse tomber les valeurs de |
|
| 615 | - // départ, on remplira à l'étape suivante |
|
| 616 | - else { |
|
| 617 | - unset($url[$n]); |
|
| 618 | - } |
|
| 619 | - } |
|
| 620 | - } |
|
| 621 | - |
|
| 622 | - // traiter les parametres pas encore trouves |
|
| 623 | - if ($v === null |
|
| 624 | - and $args = func_get_args() |
|
| 625 | - and count($args) == 2 |
|
| 626 | - ) { |
|
| 627 | - return $v_read; // rien trouve ou un tableau |
|
| 628 | - } elseif ($testv) { |
|
| 629 | - foreach ($ajouts as $k => $n) { |
|
| 630 | - if (!is_array($v)) { |
|
| 631 | - $url[] = $k . '=' . $u; |
|
| 632 | - } else { |
|
| 633 | - $id = (substr($k, -2) == '[]') ? $k : ($k . "[]"); |
|
| 634 | - foreach ($v as $w) { |
|
| 635 | - $url[] = $id . '=' . (is_array($w) ? 'Array' : $w); |
|
| 636 | - } |
|
| 637 | - } |
|
| 638 | - } |
|
| 639 | - } |
|
| 640 | - |
|
| 641 | - // eliminer les vides |
|
| 642 | - $url = array_filter($url); |
|
| 643 | - |
|
| 644 | - // recomposer l'adresse |
|
| 645 | - if ($url) { |
|
| 646 | - $a .= '?' . join($sep, $url); |
|
| 647 | - } |
|
| 648 | - |
|
| 649 | - return $a . $ancre; |
|
| 561 | + // requete erronnee : plusieurs variable dans $c et aucun $v |
|
| 562 | + if (strpos($c, "|") !== false and is_null($v)) { |
|
| 563 | + return null; |
|
| 564 | + } |
|
| 565 | + |
|
| 566 | + // lever l'#ancre |
|
| 567 | + if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) { |
|
| 568 | + $url = $r[1]; |
|
| 569 | + $ancre = $r[2]; |
|
| 570 | + } else { |
|
| 571 | + $ancre = ''; |
|
| 572 | + } |
|
| 573 | + |
|
| 574 | + // eclater |
|
| 575 | + $url = preg_split(',[?]|&|&,', $url); |
|
| 576 | + |
|
| 577 | + // recuperer la base |
|
| 578 | + $a = array_shift($url); |
|
| 579 | + if (!$a) { |
|
| 580 | + $a = './'; |
|
| 581 | + } |
|
| 582 | + |
|
| 583 | + $regexp = ',^(' . str_replace('[]', '\[\]', $c) . '[[]?[]]?)(=.*)?$,'; |
|
| 584 | + $ajouts = array_flip(explode('|', $c)); |
|
| 585 | + $u = is_array($v) ? $v : rawurlencode($v); |
|
| 586 | + $testv = (is_array($v) ? count($v) : strlen($v)); |
|
| 587 | + $v_read = null; |
|
| 588 | + // lire les variables et agir |
|
| 589 | + foreach ($url as $n => $val) { |
|
| 590 | + if (preg_match($regexp, urldecode($val), $r)) { |
|
| 591 | + $r = array_pad($r, 3, null); |
|
| 592 | + if ($v === null) { |
|
| 593 | + // c'est un tableau, on memorise les valeurs |
|
| 594 | + if (substr($r[1], -2) == "[]") { |
|
| 595 | + if (!$v_read) { |
|
| 596 | + $v_read = array(); |
|
| 597 | + } |
|
| 598 | + $v_read[] = $r[2] ? substr($r[2], 1) : ''; |
|
| 599 | + } // c'est un scalaire, on retourne direct |
|
| 600 | + else { |
|
| 601 | + return $r[2] ? substr($r[2], 1) : ''; |
|
| 602 | + } |
|
| 603 | + } // suppression |
|
| 604 | + elseif (!$testv) { |
|
| 605 | + unset($url[$n]); |
|
| 606 | + } |
|
| 607 | + // Ajout. Pour une variable, remplacer au meme endroit, |
|
| 608 | + // pour un tableau ce sera fait dans la prochaine boucle |
|
| 609 | + elseif (substr($r[1], -2) != '[]') { |
|
| 610 | + $url[$n] = $r[1] . '=' . $u; |
|
| 611 | + unset($ajouts[$r[1]]); |
|
| 612 | + } |
|
| 613 | + // Pour les tableaux on laisse tomber les valeurs de |
|
| 614 | + // départ, on remplira à l'étape suivante |
|
| 615 | + else { |
|
| 616 | + unset($url[$n]); |
|
| 617 | + } |
|
| 618 | + } |
|
| 619 | + } |
|
| 620 | + |
|
| 621 | + // traiter les parametres pas encore trouves |
|
| 622 | + if ($v === null |
|
| 623 | + and $args = func_get_args() |
|
| 624 | + and count($args) == 2 |
|
| 625 | + ) { |
|
| 626 | + return $v_read; // rien trouve ou un tableau |
|
| 627 | + } elseif ($testv) { |
|
| 628 | + foreach ($ajouts as $k => $n) { |
|
| 629 | + if (!is_array($v)) { |
|
| 630 | + $url[] = $k . '=' . $u; |
|
| 631 | + } else { |
|
| 632 | + $id = (substr($k, -2) == '[]') ? $k : ($k . "[]"); |
|
| 633 | + foreach ($v as $w) { |
|
| 634 | + $url[] = $id . '=' . (is_array($w) ? 'Array' : $w); |
|
| 635 | + } |
|
| 636 | + } |
|
| 637 | + } |
|
| 638 | + } |
|
| 639 | + |
|
| 640 | + // eliminer les vides |
|
| 641 | + $url = array_filter($url); |
|
| 642 | + |
|
| 643 | + // recomposer l'adresse |
|
| 644 | + if ($url) { |
|
| 645 | + $a .= '?' . join($sep, $url); |
|
| 646 | + } |
|
| 647 | + |
|
| 648 | + return $a . $ancre; |
|
| 650 | 649 | } |
| 651 | 650 | |
| 652 | 651 | /** |
@@ -664,21 +663,21 @@ discard block |
||
| 664 | 663 | * @return string |
| 665 | 664 | */ |
| 666 | 665 | function ancre_url($url, $ancre) { |
| 667 | - // lever l'#ancre |
|
| 668 | - if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) { |
|
| 669 | - $url = $r[1]; |
|
| 670 | - } |
|
| 671 | - if (preg_match('/[^-_a-zA-Z0-9]+/S', $ancre)) { |
|
| 672 | - if (!function_exists('translitteration')) { |
|
| 673 | - include_spip('inc/charsets'); |
|
| 674 | - } |
|
| 675 | - $ancre = preg_replace( |
|
| 676 | - array('/^[^-_a-zA-Z0-9]+/', '/[^-_a-zA-Z0-9]/'), |
|
| 677 | - array('', '-'), |
|
| 678 | - translitteration($ancre) |
|
| 679 | - ); |
|
| 680 | - } |
|
| 681 | - return $url . (strlen($ancre) ? '#' . $ancre : ''); |
|
| 666 | + // lever l'#ancre |
|
| 667 | + if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) { |
|
| 668 | + $url = $r[1]; |
|
| 669 | + } |
|
| 670 | + if (preg_match('/[^-_a-zA-Z0-9]+/S', $ancre)) { |
|
| 671 | + if (!function_exists('translitteration')) { |
|
| 672 | + include_spip('inc/charsets'); |
|
| 673 | + } |
|
| 674 | + $ancre = preg_replace( |
|
| 675 | + array('/^[^-_a-zA-Z0-9]+/', '/[^-_a-zA-Z0-9]/'), |
|
| 676 | + array('', '-'), |
|
| 677 | + translitteration($ancre) |
|
| 678 | + ); |
|
| 679 | + } |
|
| 680 | + return $url . (strlen($ancre) ? '#' . $ancre : ''); |
|
| 682 | 681 | } |
| 683 | 682 | |
| 684 | 683 | /** |
@@ -688,16 +687,16 @@ discard block |
||
| 688 | 687 | * @return string |
| 689 | 688 | */ |
| 690 | 689 | function nettoyer_uri($reset = null) { |
| 691 | - static $done = false; |
|
| 692 | - static $propre = ''; |
|
| 693 | - if (!is_null($reset)) { |
|
| 694 | - return $propre = $reset; |
|
| 695 | - } |
|
| 696 | - if ($done) { |
|
| 697 | - return $propre; |
|
| 698 | - } |
|
| 699 | - $done = true; |
|
| 700 | - return $propre = nettoyer_uri_var($GLOBALS['REQUEST_URI']); |
|
| 690 | + static $done = false; |
|
| 691 | + static $propre = ''; |
|
| 692 | + if (!is_null($reset)) { |
|
| 693 | + return $propre = $reset; |
|
| 694 | + } |
|
| 695 | + if ($done) { |
|
| 696 | + return $propre; |
|
| 697 | + } |
|
| 698 | + $done = true; |
|
| 699 | + return $propre = nettoyer_uri_var($GLOBALS['REQUEST_URI']); |
|
| 701 | 700 | } |
| 702 | 701 | |
| 703 | 702 | /** |
@@ -709,13 +708,13 @@ discard block |
||
| 709 | 708 | * @return string |
| 710 | 709 | */ |
| 711 | 710 | function nettoyer_uri_var($request_uri) { |
| 712 | - $uri1 = $request_uri; |
|
| 713 | - do { |
|
| 714 | - $uri = $uri1; |
|
| 715 | - $uri1 = preg_replace(',([?&])(var_[^=&]*|PHPSESSID|fbclid|utm_[^=&]*)=[^&]*(&|$),i', |
|
| 716 | - '\1', $uri); |
|
| 717 | - } while ($uri <> $uri1); |
|
| 718 | - return preg_replace(',[?&]$,', '', $uri1); |
|
| 711 | + $uri1 = $request_uri; |
|
| 712 | + do { |
|
| 713 | + $uri = $uri1; |
|
| 714 | + $uri1 = preg_replace(',([?&])(var_[^=&]*|PHPSESSID|fbclid|utm_[^=&]*)=[^&]*(&|$),i', |
|
| 715 | + '\1', $uri); |
|
| 716 | + } while ($uri <> $uri1); |
|
| 717 | + return preg_replace(',[?&]$,', '', $uri1); |
|
| 719 | 718 | } |
| 720 | 719 | |
| 721 | 720 | |
@@ -729,47 +728,47 @@ discard block |
||
| 729 | 728 | * URL vers soi-même |
| 730 | 729 | **/ |
| 731 | 730 | function self($amp = '&', $root = false) { |
| 732 | - $url = nettoyer_uri(); |
|
| 733 | - if (!$root |
|
| 734 | - and ( |
|
| 735 | - // si pas de profondeur on peut tronquer |
|
| 736 | - $GLOBALS['profondeur_url'] < (_DIR_RESTREINT ? 1 : 2) |
|
| 737 | - // sinon c'est OK si _SET_HTML_BASE a ete force a false |
|
| 738 | - or (defined('_SET_HTML_BASE') and !_SET_HTML_BASE)) |
|
| 739 | - ) { |
|
| 740 | - $url = preg_replace(',^[^?]*/,', '', $url); |
|
| 741 | - } |
|
| 742 | - // ajouter le cas echeant les variables _POST['id_...'] |
|
| 743 | - foreach ($_POST as $v => $c) { |
|
| 744 | - if (substr($v, 0, 3) == 'id_') { |
|
| 745 | - $url = parametre_url($url, $v, $c, '&'); |
|
| 746 | - } |
|
| 747 | - } |
|
| 748 | - |
|
| 749 | - // supprimer les variables sans interet |
|
| 750 | - if (test_espace_prive()) { |
|
| 751 | - $url = preg_replace(',([?&])(' |
|
| 752 | - . 'lang|show_docs|' |
|
| 753 | - . 'changer_lang|var_lang|action)=[^&]*,i', '\1', $url); |
|
| 754 | - $url = preg_replace(',([?&])[&]+,', '\1', $url); |
|
| 755 | - $url = preg_replace(',[&]$,', '\1', $url); |
|
| 756 | - } |
|
| 757 | - |
|
| 758 | - // eviter les hacks |
|
| 759 | - include_spip('inc/filtres_mini'); |
|
| 760 | - $url = spip_htmlspecialchars($url); |
|
| 731 | + $url = nettoyer_uri(); |
|
| 732 | + if (!$root |
|
| 733 | + and ( |
|
| 734 | + // si pas de profondeur on peut tronquer |
|
| 735 | + $GLOBALS['profondeur_url'] < (_DIR_RESTREINT ? 1 : 2) |
|
| 736 | + // sinon c'est OK si _SET_HTML_BASE a ete force a false |
|
| 737 | + or (defined('_SET_HTML_BASE') and !_SET_HTML_BASE)) |
|
| 738 | + ) { |
|
| 739 | + $url = preg_replace(',^[^?]*/,', '', $url); |
|
| 740 | + } |
|
| 741 | + // ajouter le cas echeant les variables _POST['id_...'] |
|
| 742 | + foreach ($_POST as $v => $c) { |
|
| 743 | + if (substr($v, 0, 3) == 'id_') { |
|
| 744 | + $url = parametre_url($url, $v, $c, '&'); |
|
| 745 | + } |
|
| 746 | + } |
|
| 747 | + |
|
| 748 | + // supprimer les variables sans interet |
|
| 749 | + if (test_espace_prive()) { |
|
| 750 | + $url = preg_replace(',([?&])(' |
|
| 751 | + . 'lang|show_docs|' |
|
| 752 | + . 'changer_lang|var_lang|action)=[^&]*,i', '\1', $url); |
|
| 753 | + $url = preg_replace(',([?&])[&]+,', '\1', $url); |
|
| 754 | + $url = preg_replace(',[&]$,', '\1', $url); |
|
| 755 | + } |
|
| 756 | + |
|
| 757 | + // eviter les hacks |
|
| 758 | + include_spip('inc/filtres_mini'); |
|
| 759 | + $url = spip_htmlspecialchars($url); |
|
| 761 | 760 | |
| 762 | - $url = str_replace(array("'", '"', '<', '[', ']', ':'), array('%27', '%22', '%3C', '%5B', '%5D', '%3A'), $url); |
|
| 761 | + $url = str_replace(array("'", '"', '<', '[', ']', ':'), array('%27', '%22', '%3C', '%5B', '%5D', '%3A'), $url); |
|
| 763 | 762 | |
| 764 | - // & ? |
|
| 765 | - if ($amp != '&') { |
|
| 766 | - $url = str_replace('&', $amp, $url); |
|
| 767 | - } |
|
| 763 | + // & ? |
|
| 764 | + if ($amp != '&') { |
|
| 765 | + $url = str_replace('&', $amp, $url); |
|
| 766 | + } |
|
| 768 | 767 | |
| 769 | - // Si ca demarre par ? ou vide, donner './' |
|
| 770 | - $url = preg_replace(',^([?].*)?$,', './\1', $url); |
|
| 768 | + // Si ca demarre par ? ou vide, donner './' |
|
| 769 | + $url = preg_replace(',^([?].*)?$,', './\1', $url); |
|
| 771 | 770 | |
| 772 | - return $url; |
|
| 771 | + return $url; |
|
| 773 | 772 | } |
| 774 | 773 | |
| 775 | 774 | |
@@ -780,7 +779,7 @@ discard block |
||
| 780 | 779 | * true si c'est le cas, false sinon. |
| 781 | 780 | */ |
| 782 | 781 | function test_espace_prive() { |
| 783 | - return defined('_ESPACE_PRIVE') ? _ESPACE_PRIVE : false; |
|
| 782 | + return defined('_ESPACE_PRIVE') ? _ESPACE_PRIVE : false; |
|
| 784 | 783 | } |
| 785 | 784 | |
| 786 | 785 | /** |
@@ -790,7 +789,7 @@ discard block |
||
| 790 | 789 | * @return bool |
| 791 | 790 | */ |
| 792 | 791 | function test_plugin_actif($plugin) { |
| 793 | - return ($plugin and defined('_DIR_PLUGIN_' . strtoupper($plugin))) ? true : false; |
|
| 792 | + return ($plugin and defined('_DIR_PLUGIN_' . strtoupper($plugin))) ? true : false; |
|
| 794 | 793 | } |
| 795 | 794 | |
| 796 | 795 | /** |
@@ -821,51 +820,51 @@ discard block |
||
| 821 | 820 | * Texte |
| 822 | 821 | */ |
| 823 | 822 | function _T($texte, $args = array(), $options = array()) { |
| 824 | - static $traduire = false; |
|
| 825 | - $o = array('class' => '', 'force' => true, 'sanitize' => true); |
|
| 826 | - if ($options) { |
|
| 827 | - // support de l'ancien argument $class |
|
| 828 | - if (is_string($options)) { |
|
| 829 | - $options = array('class' => $options); |
|
| 830 | - } |
|
| 831 | - $o = array_merge($o, $options); |
|
| 832 | - } |
|
| 823 | + static $traduire = false; |
|
| 824 | + $o = array('class' => '', 'force' => true, 'sanitize' => true); |
|
| 825 | + if ($options) { |
|
| 826 | + // support de l'ancien argument $class |
|
| 827 | + if (is_string($options)) { |
|
| 828 | + $options = array('class' => $options); |
|
| 829 | + } |
|
| 830 | + $o = array_merge($o, $options); |
|
| 831 | + } |
|
| 833 | 832 | |
| 834 | - if (!$traduire) { |
|
| 835 | - $traduire = charger_fonction('traduire', 'inc'); |
|
| 836 | - include_spip('inc/lang'); |
|
| 837 | - } |
|
| 833 | + if (!$traduire) { |
|
| 834 | + $traduire = charger_fonction('traduire', 'inc'); |
|
| 835 | + include_spip('inc/lang'); |
|
| 836 | + } |
|
| 838 | 837 | |
| 839 | - // On peut passer explicitement la langue dans le tableau |
|
| 840 | - // On utilise le même nom de variable que la globale |
|
| 841 | - if (isset($args['spip_lang'])) { |
|
| 842 | - $lang = $args['spip_lang']; |
|
| 843 | - // On l'enleve pour ne pas le passer au remplacement |
|
| 844 | - unset($args['spip_lang']); |
|
| 845 | - } // Sinon on prend la langue du contexte |
|
| 846 | - else { |
|
| 847 | - $lang = $GLOBALS['spip_lang']; |
|
| 848 | - } |
|
| 849 | - $text = $traduire($texte, $lang); |
|
| 838 | + // On peut passer explicitement la langue dans le tableau |
|
| 839 | + // On utilise le même nom de variable que la globale |
|
| 840 | + if (isset($args['spip_lang'])) { |
|
| 841 | + $lang = $args['spip_lang']; |
|
| 842 | + // On l'enleve pour ne pas le passer au remplacement |
|
| 843 | + unset($args['spip_lang']); |
|
| 844 | + } // Sinon on prend la langue du contexte |
|
| 845 | + else { |
|
| 846 | + $lang = $GLOBALS['spip_lang']; |
|
| 847 | + } |
|
| 848 | + $text = $traduire($texte, $lang); |
|
| 850 | 849 | |
| 851 | - if (!strlen($text)) { |
|
| 852 | - if (!$o['force']) { |
|
| 853 | - return ''; |
|
| 854 | - } |
|
| 850 | + if (!strlen($text)) { |
|
| 851 | + if (!$o['force']) { |
|
| 852 | + return ''; |
|
| 853 | + } |
|
| 855 | 854 | |
| 856 | - $text = $texte; |
|
| 855 | + $text = $texte; |
|
| 857 | 856 | |
| 858 | - // pour les chaines non traduites, assurer un service minimum |
|
| 859 | - if (!$GLOBALS['test_i18n'] and (_request('var_mode') != 'traduction')) { |
|
| 860 | - $text = str_replace('_', ' ', |
|
| 861 | - (($n = strpos($text, ':')) === false ? $texte : |
|
| 862 | - substr($texte, $n + 1))); |
|
| 863 | - } |
|
| 864 | - $o['class'] = null; |
|
| 857 | + // pour les chaines non traduites, assurer un service minimum |
|
| 858 | + if (!$GLOBALS['test_i18n'] and (_request('var_mode') != 'traduction')) { |
|
| 859 | + $text = str_replace('_', ' ', |
|
| 860 | + (($n = strpos($text, ':')) === false ? $texte : |
|
| 861 | + substr($texte, $n + 1))); |
|
| 862 | + } |
|
| 863 | + $o['class'] = null; |
|
| 865 | 864 | |
| 866 | - } |
|
| 865 | + } |
|
| 867 | 866 | |
| 868 | - return _L($text, $args, $o); |
|
| 867 | + return _L($text, $args, $o); |
|
| 869 | 868 | |
| 870 | 869 | } |
| 871 | 870 | |
@@ -893,53 +892,53 @@ discard block |
||
| 893 | 892 | * Texte |
| 894 | 893 | */ |
| 895 | 894 | function _L($text, $args = array(), $options = array()) { |
| 896 | - $f = $text; |
|
| 897 | - $defaut_options = array( |
|
| 898 | - 'class' => null, |
|
| 899 | - 'sanitize' => true, |
|
| 900 | - ); |
|
| 901 | - // support de l'ancien argument $class |
|
| 902 | - if ($options and is_string($options)) { |
|
| 903 | - $options = array('class' => $options); |
|
| 904 | - } |
|
| 905 | - if (is_array($options)) { |
|
| 906 | - $options += $defaut_options; |
|
| 907 | - } else { |
|
| 908 | - $options = $defaut_options; |
|
| 909 | - } |
|
| 910 | - |
|
| 911 | - if (is_array($args) and count($args)) { |
|
| 912 | - if (!function_exists('interdire_scripts')) { |
|
| 913 | - include_spip('inc/texte'); |
|
| 914 | - } |
|
| 915 | - if (!function_exists('echapper_html_suspect')) { |
|
| 916 | - include_spip('inc/texte_mini'); |
|
| 917 | - } |
|
| 918 | - foreach ($args as $name => $value) { |
|
| 919 | - if (strpos($text, "@$name@") !== false) { |
|
| 920 | - if ($options['sanitize']) { |
|
| 921 | - $value = echapper_html_suspect($value); |
|
| 922 | - $value = interdire_scripts($value, -1); |
|
| 923 | - } |
|
| 924 | - if (!empty($options['class'])) { |
|
| 925 | - $value = "<span class='".$options['class']."'>$value</span>"; |
|
| 926 | - } |
|
| 927 | - $text = str_replace("@$name@", $value, $text); |
|
| 928 | - unset($args[$name]); |
|
| 929 | - } |
|
| 930 | - } |
|
| 931 | - // Si des variables n'ont pas ete inserees, le signaler |
|
| 932 | - // (chaines de langues pas a jour) |
|
| 933 | - if ($args) { |
|
| 934 | - spip_log("$f: variables inutilisees " . join(', ', array_keys($args)), _LOG_DEBUG); |
|
| 935 | - } |
|
| 936 | - } |
|
| 937 | - |
|
| 938 | - if (($GLOBALS['test_i18n'] or (_request('var_mode') == 'traduction')) and is_null($options['class'])) { |
|
| 939 | - return "<span class='debug-traduction-erreur'>$text</span>"; |
|
| 940 | - } else { |
|
| 941 | - return $text; |
|
| 942 | - } |
|
| 895 | + $f = $text; |
|
| 896 | + $defaut_options = array( |
|
| 897 | + 'class' => null, |
|
| 898 | + 'sanitize' => true, |
|
| 899 | + ); |
|
| 900 | + // support de l'ancien argument $class |
|
| 901 | + if ($options and is_string($options)) { |
|
| 902 | + $options = array('class' => $options); |
|
| 903 | + } |
|
| 904 | + if (is_array($options)) { |
|
| 905 | + $options += $defaut_options; |
|
| 906 | + } else { |
|
| 907 | + $options = $defaut_options; |
|
| 908 | + } |
|
| 909 | + |
|
| 910 | + if (is_array($args) and count($args)) { |
|
| 911 | + if (!function_exists('interdire_scripts')) { |
|
| 912 | + include_spip('inc/texte'); |
|
| 913 | + } |
|
| 914 | + if (!function_exists('echapper_html_suspect')) { |
|
| 915 | + include_spip('inc/texte_mini'); |
|
| 916 | + } |
|
| 917 | + foreach ($args as $name => $value) { |
|
| 918 | + if (strpos($text, "@$name@") !== false) { |
|
| 919 | + if ($options['sanitize']) { |
|
| 920 | + $value = echapper_html_suspect($value); |
|
| 921 | + $value = interdire_scripts($value, -1); |
|
| 922 | + } |
|
| 923 | + if (!empty($options['class'])) { |
|
| 924 | + $value = "<span class='".$options['class']."'>$value</span>"; |
|
| 925 | + } |
|
| 926 | + $text = str_replace("@$name@", $value, $text); |
|
| 927 | + unset($args[$name]); |
|
| 928 | + } |
|
| 929 | + } |
|
| 930 | + // Si des variables n'ont pas ete inserees, le signaler |
|
| 931 | + // (chaines de langues pas a jour) |
|
| 932 | + if ($args) { |
|
| 933 | + spip_log("$f: variables inutilisees " . join(', ', array_keys($args)), _LOG_DEBUG); |
|
| 934 | + } |
|
| 935 | + } |
|
| 936 | + |
|
| 937 | + if (($GLOBALS['test_i18n'] or (_request('var_mode') == 'traduction')) and is_null($options['class'])) { |
|
| 938 | + return "<span class='debug-traduction-erreur'>$text</span>"; |
|
| 939 | + } else { |
|
| 940 | + return $text; |
|
| 941 | + } |
|
| 943 | 942 | } |
| 944 | 943 | |
| 945 | 944 | |
@@ -953,13 +952,13 @@ discard block |
||
| 953 | 952 | * @return string |
| 954 | 953 | */ |
| 955 | 954 | function joli_repertoire($rep) { |
| 956 | - $a = substr($rep, 0, 1); |
|
| 957 | - if ($a <> '.' and $a <> '/') { |
|
| 958 | - $rep = (_DIR_RESTREINT ? '' : _DIR_RESTREINT_ABS) . $rep; |
|
| 959 | - } |
|
| 960 | - $rep = preg_replace(',(^\.\.\/),', '', $rep); |
|
| 955 | + $a = substr($rep, 0, 1); |
|
| 956 | + if ($a <> '.' and $a <> '/') { |
|
| 957 | + $rep = (_DIR_RESTREINT ? '' : _DIR_RESTREINT_ABS) . $rep; |
|
| 958 | + } |
|
| 959 | + $rep = preg_replace(',(^\.\.\/),', '', $rep); |
|
| 961 | 960 | |
| 962 | - return $rep; |
|
| 961 | + return $rep; |
|
| 963 | 962 | } |
| 964 | 963 | |
| 965 | 964 | |
@@ -984,33 +983,33 @@ discard block |
||
| 984 | 983 | * @return float|int|string|void |
| 985 | 984 | */ |
| 986 | 985 | function spip_timer($t = 'rien', $raw = false) { |
| 987 | - static $time; |
|
| 988 | - $a = time(); |
|
| 989 | - $b = microtime(); |
|
| 990 | - // microtime peut contenir les microsecondes et le temps |
|
| 991 | - $b = explode(' ', $b); |
|
| 992 | - if (count($b) == 2) { |
|
| 993 | - $a = end($b); |
|
| 994 | - } // plus precis ! |
|
| 995 | - $b = reset($b); |
|
| 996 | - if (!isset($time[$t])) { |
|
| 997 | - $time[$t] = $a + $b; |
|
| 998 | - } else { |
|
| 999 | - $p = ($a + $b - $time[$t]) * 1000; |
|
| 1000 | - unset($time[$t]); |
|
| 986 | + static $time; |
|
| 987 | + $a = time(); |
|
| 988 | + $b = microtime(); |
|
| 989 | + // microtime peut contenir les microsecondes et le temps |
|
| 990 | + $b = explode(' ', $b); |
|
| 991 | + if (count($b) == 2) { |
|
| 992 | + $a = end($b); |
|
| 993 | + } // plus precis ! |
|
| 994 | + $b = reset($b); |
|
| 995 | + if (!isset($time[$t])) { |
|
| 996 | + $time[$t] = $a + $b; |
|
| 997 | + } else { |
|
| 998 | + $p = ($a + $b - $time[$t]) * 1000; |
|
| 999 | + unset($time[$t]); |
|
| 1001 | 1000 | # echo "'$p'";exit; |
| 1002 | - if ($raw) { |
|
| 1003 | - return $p; |
|
| 1004 | - } |
|
| 1005 | - if ($p < 1000) { |
|
| 1006 | - $s = ''; |
|
| 1007 | - } else { |
|
| 1008 | - $s = sprintf("%d ", $x = floor($p / 1000)); |
|
| 1009 | - $p -= ($x * 1000); |
|
| 1010 | - } |
|
| 1001 | + if ($raw) { |
|
| 1002 | + return $p; |
|
| 1003 | + } |
|
| 1004 | + if ($p < 1000) { |
|
| 1005 | + $s = ''; |
|
| 1006 | + } else { |
|
| 1007 | + $s = sprintf("%d ", $x = floor($p / 1000)); |
|
| 1008 | + $p -= ($x * 1000); |
|
| 1009 | + } |
|
| 1011 | 1010 | |
| 1012 | - return $s . sprintf($s ? "%07.3f ms" : "%.3f ms", $p); |
|
| 1013 | - } |
|
| 1011 | + return $s . sprintf($s ? "%07.3f ms" : "%.3f ms", $p); |
|
| 1012 | + } |
|
| 1014 | 1013 | } |
| 1015 | 1014 | |
| 1016 | 1015 | |
@@ -1018,21 +1017,21 @@ discard block |
||
| 1018 | 1017 | // sinon renvoie True et le date sauf si ca n'est pas souhaite |
| 1019 | 1018 | // https://code.spip.net/@spip_touch |
| 1020 | 1019 | function spip_touch($fichier, $duree = 0, $touch = true) { |
| 1021 | - if ($duree) { |
|
| 1022 | - clearstatcache(); |
|
| 1023 | - if ((@$f = filemtime($fichier)) and ($f >= time() - $duree)) { |
|
| 1024 | - return false; |
|
| 1025 | - } |
|
| 1026 | - } |
|
| 1027 | - if ($touch !== false) { |
|
| 1028 | - if (!@touch($fichier)) { |
|
| 1029 | - spip_unlink($fichier); |
|
| 1030 | - @touch($fichier); |
|
| 1031 | - }; |
|
| 1032 | - @chmod($fichier, _SPIP_CHMOD & ~0111); |
|
| 1033 | - } |
|
| 1020 | + if ($duree) { |
|
| 1021 | + clearstatcache(); |
|
| 1022 | + if ((@$f = filemtime($fichier)) and ($f >= time() - $duree)) { |
|
| 1023 | + return false; |
|
| 1024 | + } |
|
| 1025 | + } |
|
| 1026 | + if ($touch !== false) { |
|
| 1027 | + if (!@touch($fichier)) { |
|
| 1028 | + spip_unlink($fichier); |
|
| 1029 | + @touch($fichier); |
|
| 1030 | + }; |
|
| 1031 | + @chmod($fichier, _SPIP_CHMOD & ~0111); |
|
| 1032 | + } |
|
| 1034 | 1033 | |
| 1035 | - return true; |
|
| 1034 | + return true; |
|
| 1036 | 1035 | } |
| 1037 | 1036 | |
| 1038 | 1037 | |
@@ -1043,11 +1042,11 @@ discard block |
||
| 1043 | 1042 | * @uses cron() |
| 1044 | 1043 | **/ |
| 1045 | 1044 | function action_cron() { |
| 1046 | - include_spip('inc/headers'); |
|
| 1047 | - http_status(204); // No Content |
|
| 1048 | - header("Connection: close"); |
|
| 1049 | - define('_DIRECT_CRON_FORCE', true); |
|
| 1050 | - cron(); |
|
| 1045 | + include_spip('inc/headers'); |
|
| 1046 | + http_status(204); // No Content |
|
| 1047 | + header("Connection: close"); |
|
| 1048 | + define('_DIRECT_CRON_FORCE', true); |
|
| 1049 | + cron(); |
|
| 1051 | 1050 | } |
| 1052 | 1051 | |
| 1053 | 1052 | /** |
@@ -1063,26 +1062,26 @@ discard block |
||
| 1063 | 1062 | * True si la tache a pu être effectuée |
| 1064 | 1063 | */ |
| 1065 | 1064 | function cron($taches = array(), $taches_old = array()) { |
| 1066 | - // si pas en mode cron force, laisser tomber. |
|
| 1067 | - if (!defined('_DIRECT_CRON_FORCE')) { |
|
| 1068 | - return false; |
|
| 1069 | - } |
|
| 1070 | - if (!is_array($taches)) { |
|
| 1071 | - $taches = $taches_old; |
|
| 1072 | - } // compat anciens appels |
|
| 1073 | - // si taches a inserer en base et base inaccessible, laisser tomber |
|
| 1074 | - // sinon on ne verifie pas la connexion tout de suite, car si ca se trouve |
|
| 1075 | - // queue_sleep_time_to_next_job() dira qu'il n'y a rien a faire |
|
| 1076 | - // et on evite d'ouvrir une connexion pour rien (utilisation de _DIRECT_CRON_FORCE dans mes_options.php) |
|
| 1077 | - if ($taches and count($taches) and !spip_connect()) { |
|
| 1078 | - return false; |
|
| 1079 | - } |
|
| 1080 | - spip_log("cron !", 'jq' . _LOG_DEBUG); |
|
| 1081 | - if ($genie = charger_fonction('genie', 'inc', true)) { |
|
| 1082 | - return $genie($taches); |
|
| 1083 | - } |
|
| 1084 | - |
|
| 1085 | - return false; |
|
| 1065 | + // si pas en mode cron force, laisser tomber. |
|
| 1066 | + if (!defined('_DIRECT_CRON_FORCE')) { |
|
| 1067 | + return false; |
|
| 1068 | + } |
|
| 1069 | + if (!is_array($taches)) { |
|
| 1070 | + $taches = $taches_old; |
|
| 1071 | + } // compat anciens appels |
|
| 1072 | + // si taches a inserer en base et base inaccessible, laisser tomber |
|
| 1073 | + // sinon on ne verifie pas la connexion tout de suite, car si ca se trouve |
|
| 1074 | + // queue_sleep_time_to_next_job() dira qu'il n'y a rien a faire |
|
| 1075 | + // et on evite d'ouvrir une connexion pour rien (utilisation de _DIRECT_CRON_FORCE dans mes_options.php) |
|
| 1076 | + if ($taches and count($taches) and !spip_connect()) { |
|
| 1077 | + return false; |
|
| 1078 | + } |
|
| 1079 | + spip_log("cron !", 'jq' . _LOG_DEBUG); |
|
| 1080 | + if ($genie = charger_fonction('genie', 'inc', true)) { |
|
| 1081 | + return $genie($taches); |
|
| 1082 | + } |
|
| 1083 | + |
|
| 1084 | + return false; |
|
| 1086 | 1085 | } |
| 1087 | 1086 | |
| 1088 | 1087 | /** |
@@ -1114,17 +1113,17 @@ discard block |
||
| 1114 | 1113 | * Le numéro de travail ajouté ou `0` si aucun travail n’a été ajouté. |
| 1115 | 1114 | */ |
| 1116 | 1115 | function job_queue_add( |
| 1117 | - $function, |
|
| 1118 | - $description, |
|
| 1119 | - $arguments = array(), |
|
| 1120 | - $file = '', |
|
| 1121 | - $no_duplicate = false, |
|
| 1122 | - $time = 0, |
|
| 1123 | - $priority = 0 |
|
| 1116 | + $function, |
|
| 1117 | + $description, |
|
| 1118 | + $arguments = array(), |
|
| 1119 | + $file = '', |
|
| 1120 | + $no_duplicate = false, |
|
| 1121 | + $time = 0, |
|
| 1122 | + $priority = 0 |
|
| 1124 | 1123 | ) { |
| 1125 | - include_spip('inc/queue'); |
|
| 1124 | + include_spip('inc/queue'); |
|
| 1126 | 1125 | |
| 1127 | - return queue_add_job($function, $description, $arguments, $file, $no_duplicate, $time, $priority); |
|
| 1126 | + return queue_add_job($function, $description, $arguments, $file, $no_duplicate, $time, $priority); |
|
| 1128 | 1127 | } |
| 1129 | 1128 | |
| 1130 | 1129 | /** |
@@ -1135,9 +1134,9 @@ discard block |
||
| 1135 | 1134 | * @return bool |
| 1136 | 1135 | */ |
| 1137 | 1136 | function job_queue_remove($id_job) { |
| 1138 | - include_spip('inc/queue'); |
|
| 1137 | + include_spip('inc/queue'); |
|
| 1139 | 1138 | |
| 1140 | - return queue_remove_job($id_job); |
|
| 1139 | + return queue_remove_job($id_job); |
|
| 1141 | 1140 | } |
| 1142 | 1141 | |
| 1143 | 1142 | /** |
@@ -1150,9 +1149,9 @@ discard block |
||
| 1150 | 1149 | * or an array of simple array to link multiples objet in one time |
| 1151 | 1150 | */ |
| 1152 | 1151 | function job_queue_link($id_job, $objets) { |
| 1153 | - include_spip('inc/queue'); |
|
| 1152 | + include_spip('inc/queue'); |
|
| 1154 | 1153 | |
| 1155 | - return queue_link_job($id_job, $objets); |
|
| 1154 | + return queue_link_job($id_job, $objets); |
|
| 1156 | 1155 | } |
| 1157 | 1156 | |
| 1158 | 1157 | |
@@ -1172,36 +1171,36 @@ discard block |
||
| 1172 | 1171 | * - `null` si la queue n'est pas encore initialisée |
| 1173 | 1172 | */ |
| 1174 | 1173 | function queue_sleep_time_to_next_job($force = null) { |
| 1175 | - static $queue_next_job_time = -1; |
|
| 1176 | - if ($force === true) { |
|
| 1177 | - $queue_next_job_time = -1; |
|
| 1178 | - } elseif ($force) { |
|
| 1179 | - $queue_next_job_time = $force; |
|
| 1180 | - } |
|
| 1181 | - |
|
| 1182 | - if ($queue_next_job_time == -1) { |
|
| 1183 | - if (!defined('_JQ_NEXT_JOB_TIME_FILENAME')) { |
|
| 1184 | - define('_JQ_NEXT_JOB_TIME_FILENAME', _DIR_TMP . "job_queue_next.txt"); |
|
| 1185 | - } |
|
| 1186 | - // utiliser un cache memoire si dispo |
|
| 1187 | - if (function_exists("cache_get") and defined('_MEMOIZE_MEMORY') and _MEMOIZE_MEMORY) { |
|
| 1188 | - $queue_next_job_time = cache_get(_JQ_NEXT_JOB_TIME_FILENAME); |
|
| 1189 | - } else { |
|
| 1190 | - $queue_next_job_time = null; |
|
| 1191 | - if (lire_fichier(_JQ_NEXT_JOB_TIME_FILENAME, $contenu)) { |
|
| 1192 | - $queue_next_job_time = intval($contenu); |
|
| 1193 | - } |
|
| 1194 | - } |
|
| 1195 | - } |
|
| 1196 | - |
|
| 1197 | - if (is_null($queue_next_job_time)) { |
|
| 1198 | - return null; |
|
| 1199 | - } |
|
| 1200 | - if (!$_SERVER['REQUEST_TIME']) { |
|
| 1201 | - $_SERVER['REQUEST_TIME'] = time(); |
|
| 1202 | - } |
|
| 1203 | - |
|
| 1204 | - return $queue_next_job_time - $_SERVER['REQUEST_TIME']; |
|
| 1174 | + static $queue_next_job_time = -1; |
|
| 1175 | + if ($force === true) { |
|
| 1176 | + $queue_next_job_time = -1; |
|
| 1177 | + } elseif ($force) { |
|
| 1178 | + $queue_next_job_time = $force; |
|
| 1179 | + } |
|
| 1180 | + |
|
| 1181 | + if ($queue_next_job_time == -1) { |
|
| 1182 | + if (!defined('_JQ_NEXT_JOB_TIME_FILENAME')) { |
|
| 1183 | + define('_JQ_NEXT_JOB_TIME_FILENAME', _DIR_TMP . "job_queue_next.txt"); |
|
| 1184 | + } |
|
| 1185 | + // utiliser un cache memoire si dispo |
|
| 1186 | + if (function_exists("cache_get") and defined('_MEMOIZE_MEMORY') and _MEMOIZE_MEMORY) { |
|
| 1187 | + $queue_next_job_time = cache_get(_JQ_NEXT_JOB_TIME_FILENAME); |
|
| 1188 | + } else { |
|
| 1189 | + $queue_next_job_time = null; |
|
| 1190 | + if (lire_fichier(_JQ_NEXT_JOB_TIME_FILENAME, $contenu)) { |
|
| 1191 | + $queue_next_job_time = intval($contenu); |
|
| 1192 | + } |
|
| 1193 | + } |
|
| 1194 | + } |
|
| 1195 | + |
|
| 1196 | + if (is_null($queue_next_job_time)) { |
|
| 1197 | + return null; |
|
| 1198 | + } |
|
| 1199 | + if (!$_SERVER['REQUEST_TIME']) { |
|
| 1200 | + $_SERVER['REQUEST_TIME'] = time(); |
|
| 1201 | + } |
|
| 1202 | + |
|
| 1203 | + return $queue_next_job_time - $_SERVER['REQUEST_TIME']; |
|
| 1205 | 1204 | } |
| 1206 | 1205 | |
| 1207 | 1206 | |
@@ -1213,9 +1212,9 @@ discard block |
||
| 1213 | 1212 | * @return string |
| 1214 | 1213 | */ |
| 1215 | 1214 | function quote_amp($u) { |
| 1216 | - return preg_replace( |
|
| 1217 | - "/&(?![a-z]{0,4}\w{2,3};|#x?[0-9a-f]{2,6};)/i", |
|
| 1218 | - "&", $u); |
|
| 1215 | + return preg_replace( |
|
| 1216 | + "/&(?![a-z]{0,4}\w{2,3};|#x?[0-9a-f]{2,6};)/i", |
|
| 1217 | + "&", $u); |
|
| 1219 | 1218 | } |
| 1220 | 1219 | |
| 1221 | 1220 | |
@@ -1238,27 +1237,27 @@ discard block |
||
| 1238 | 1237 | * Balise HTML `<script>` et son contenu |
| 1239 | 1238 | **/ |
| 1240 | 1239 | function http_script($script, $src = '', $noscript = '') { |
| 1241 | - static $done = array(); |
|
| 1240 | + static $done = array(); |
|
| 1242 | 1241 | |
| 1243 | - if ($src && !isset($done[$src])) { |
|
| 1244 | - $done[$src] = true; |
|
| 1245 | - $src = find_in_path($src, _JAVASCRIPT); |
|
| 1246 | - $src = " src='$src'"; |
|
| 1247 | - } else { |
|
| 1248 | - $src = ''; |
|
| 1249 | - } |
|
| 1250 | - if ($script) { |
|
| 1251 | - $script = ("/*<![CDATA[*/\n" . |
|
| 1252 | - preg_replace(',</([^>]*)>,', '<\/\1>', $script) . |
|
| 1253 | - "/*]]>*/"); |
|
| 1254 | - } |
|
| 1255 | - if ($noscript) { |
|
| 1256 | - $noscript = "<noscript>\n\t$noscript\n</noscript>\n"; |
|
| 1257 | - } |
|
| 1242 | + if ($src && !isset($done[$src])) { |
|
| 1243 | + $done[$src] = true; |
|
| 1244 | + $src = find_in_path($src, _JAVASCRIPT); |
|
| 1245 | + $src = " src='$src'"; |
|
| 1246 | + } else { |
|
| 1247 | + $src = ''; |
|
| 1248 | + } |
|
| 1249 | + if ($script) { |
|
| 1250 | + $script = ("/*<![CDATA[*/\n" . |
|
| 1251 | + preg_replace(',</([^>]*)>,', '<\/\1>', $script) . |
|
| 1252 | + "/*]]>*/"); |
|
| 1253 | + } |
|
| 1254 | + if ($noscript) { |
|
| 1255 | + $noscript = "<noscript>\n\t$noscript\n</noscript>\n"; |
|
| 1256 | + } |
|
| 1258 | 1257 | |
| 1259 | - return ($src or $script or $noscript) |
|
| 1260 | - ? "<script type='text/javascript'$src>$script</script>$noscript" |
|
| 1261 | - : ''; |
|
| 1258 | + return ($src or $script or $noscript) |
|
| 1259 | + ? "<script type='text/javascript'$src>$script</script>$noscript" |
|
| 1260 | + : ''; |
|
| 1262 | 1261 | } |
| 1263 | 1262 | |
| 1264 | 1263 | |
@@ -1293,7 +1292,7 @@ discard block |
||
| 1293 | 1292 | * Texte échappé |
| 1294 | 1293 | **/ |
| 1295 | 1294 | function texte_script($texte) { |
| 1296 | - return str_replace('\'', '\\\'', str_replace('\\', '\\\\', $texte)); |
|
| 1295 | + return str_replace('\'', '\\\'', str_replace('\\', '\\\\', $texte)); |
|
| 1297 | 1296 | } |
| 1298 | 1297 | |
| 1299 | 1298 | |
@@ -1330,68 +1329,68 @@ discard block |
||
| 1330 | 1329 | * Liste des chemins, par ordre de priorité. |
| 1331 | 1330 | **/ |
| 1332 | 1331 | function _chemin($dir_path = null) { |
| 1333 | - static $path_base = null; |
|
| 1334 | - static $path_full = null; |
|
| 1335 | - if ($path_base == null) { |
|
| 1336 | - // Chemin standard depuis l'espace public |
|
| 1337 | - $path = defined('_SPIP_PATH') ? _SPIP_PATH : |
|
| 1338 | - _DIR_RACINE . ':' . |
|
| 1339 | - _DIR_RACINE . 'squelettes-dist/:' . |
|
| 1340 | - _DIR_RACINE . 'prive/:' . |
|
| 1341 | - _DIR_RESTREINT; |
|
| 1342 | - // Ajouter squelettes/ |
|
| 1343 | - if (@is_dir(_DIR_RACINE . 'squelettes')) { |
|
| 1344 | - $path = _DIR_RACINE . 'squelettes/:' . $path; |
|
| 1345 | - } |
|
| 1346 | - foreach (explode(':', $path) as $dir) { |
|
| 1347 | - if (strlen($dir) and substr($dir, -1) != '/') { |
|
| 1348 | - $dir .= "/"; |
|
| 1349 | - } |
|
| 1350 | - $path_base[] = $dir; |
|
| 1351 | - } |
|
| 1352 | - $path_full = $path_base; |
|
| 1353 | - // Et le(s) dossier(s) des squelettes nommes |
|
| 1354 | - if (strlen($GLOBALS['dossier_squelettes'])) { |
|
| 1355 | - foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) { |
|
| 1356 | - array_unshift($path_full, ($d[0] == '/' ? '' : _DIR_RACINE) . $d . '/'); |
|
| 1357 | - } |
|
| 1358 | - } |
|
| 1359 | - $GLOBALS['path_sig'] = md5(serialize($path_full)); |
|
| 1360 | - } |
|
| 1361 | - if ($dir_path === null) { |
|
| 1362 | - return $path_full; |
|
| 1363 | - } |
|
| 1364 | - |
|
| 1365 | - if (is_array($dir_path) or strlen($dir_path)) { |
|
| 1366 | - $tete = ""; |
|
| 1367 | - if (reset($path_base) == _DIR_RACINE . 'squelettes/') { |
|
| 1368 | - $tete = array_shift($path_base); |
|
| 1369 | - } |
|
| 1370 | - $dirs = (is_array($dir_path) ? $dir_path : explode(':', $dir_path)); |
|
| 1371 | - $dirs = array_reverse($dirs); |
|
| 1372 | - foreach ($dirs as $dir_path) { |
|
| 1373 | - if (substr($dir_path, -1) != '/') { |
|
| 1374 | - $dir_path .= "/"; |
|
| 1375 | - } |
|
| 1376 | - if (!in_array($dir_path, $path_base)) { |
|
| 1377 | - array_unshift($path_base, $dir_path); |
|
| 1378 | - } |
|
| 1379 | - } |
|
| 1380 | - if (strlen($tete)) { |
|
| 1381 | - array_unshift($path_base, $tete); |
|
| 1382 | - } |
|
| 1383 | - } |
|
| 1384 | - $path_full = $path_base; |
|
| 1385 | - // Et le(s) dossier(s) des squelettes nommes |
|
| 1386 | - if (strlen($GLOBALS['dossier_squelettes'])) { |
|
| 1387 | - foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) { |
|
| 1388 | - array_unshift($path_full, ((isset($d[0]) and $d[0] == '/') ? '' : _DIR_RACINE) . $d . '/'); |
|
| 1389 | - } |
|
| 1390 | - } |
|
| 1391 | - |
|
| 1392 | - $GLOBALS['path_sig'] = md5(serialize($path_full)); |
|
| 1393 | - |
|
| 1394 | - return $path_full; |
|
| 1332 | + static $path_base = null; |
|
| 1333 | + static $path_full = null; |
|
| 1334 | + if ($path_base == null) { |
|
| 1335 | + // Chemin standard depuis l'espace public |
|
| 1336 | + $path = defined('_SPIP_PATH') ? _SPIP_PATH : |
|
| 1337 | + _DIR_RACINE . ':' . |
|
| 1338 | + _DIR_RACINE . 'squelettes-dist/:' . |
|
| 1339 | + _DIR_RACINE . 'prive/:' . |
|
| 1340 | + _DIR_RESTREINT; |
|
| 1341 | + // Ajouter squelettes/ |
|
| 1342 | + if (@is_dir(_DIR_RACINE . 'squelettes')) { |
|
| 1343 | + $path = _DIR_RACINE . 'squelettes/:' . $path; |
|
| 1344 | + } |
|
| 1345 | + foreach (explode(':', $path) as $dir) { |
|
| 1346 | + if (strlen($dir) and substr($dir, -1) != '/') { |
|
| 1347 | + $dir .= "/"; |
|
| 1348 | + } |
|
| 1349 | + $path_base[] = $dir; |
|
| 1350 | + } |
|
| 1351 | + $path_full = $path_base; |
|
| 1352 | + // Et le(s) dossier(s) des squelettes nommes |
|
| 1353 | + if (strlen($GLOBALS['dossier_squelettes'])) { |
|
| 1354 | + foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) { |
|
| 1355 | + array_unshift($path_full, ($d[0] == '/' ? '' : _DIR_RACINE) . $d . '/'); |
|
| 1356 | + } |
|
| 1357 | + } |
|
| 1358 | + $GLOBALS['path_sig'] = md5(serialize($path_full)); |
|
| 1359 | + } |
|
| 1360 | + if ($dir_path === null) { |
|
| 1361 | + return $path_full; |
|
| 1362 | + } |
|
| 1363 | + |
|
| 1364 | + if (is_array($dir_path) or strlen($dir_path)) { |
|
| 1365 | + $tete = ""; |
|
| 1366 | + if (reset($path_base) == _DIR_RACINE . 'squelettes/') { |
|
| 1367 | + $tete = array_shift($path_base); |
|
| 1368 | + } |
|
| 1369 | + $dirs = (is_array($dir_path) ? $dir_path : explode(':', $dir_path)); |
|
| 1370 | + $dirs = array_reverse($dirs); |
|
| 1371 | + foreach ($dirs as $dir_path) { |
|
| 1372 | + if (substr($dir_path, -1) != '/') { |
|
| 1373 | + $dir_path .= "/"; |
|
| 1374 | + } |
|
| 1375 | + if (!in_array($dir_path, $path_base)) { |
|
| 1376 | + array_unshift($path_base, $dir_path); |
|
| 1377 | + } |
|
| 1378 | + } |
|
| 1379 | + if (strlen($tete)) { |
|
| 1380 | + array_unshift($path_base, $tete); |
|
| 1381 | + } |
|
| 1382 | + } |
|
| 1383 | + $path_full = $path_base; |
|
| 1384 | + // Et le(s) dossier(s) des squelettes nommes |
|
| 1385 | + if (strlen($GLOBALS['dossier_squelettes'])) { |
|
| 1386 | + foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) { |
|
| 1387 | + array_unshift($path_full, ((isset($d[0]) and $d[0] == '/') ? '' : _DIR_RACINE) . $d . '/'); |
|
| 1388 | + } |
|
| 1389 | + } |
|
| 1390 | + |
|
| 1391 | + $GLOBALS['path_sig'] = md5(serialize($path_full)); |
|
| 1392 | + |
|
| 1393 | + return $path_full; |
|
| 1395 | 1394 | } |
| 1396 | 1395 | |
| 1397 | 1396 | /** |
@@ -1404,76 +1403,76 @@ discard block |
||
| 1404 | 1403 | * @return array Liste de chemins |
| 1405 | 1404 | **/ |
| 1406 | 1405 | function creer_chemin() { |
| 1407 | - $path_a = _chemin(); |
|
| 1408 | - static $c = ''; |
|
| 1406 | + $path_a = _chemin(); |
|
| 1407 | + static $c = ''; |
|
| 1409 | 1408 | |
| 1410 | - // on calcule le chemin si le dossier skel a change |
|
| 1411 | - if ($c != $GLOBALS['dossier_squelettes']) { |
|
| 1412 | - // assurer le non plantage lors de la montee de version : |
|
| 1413 | - $c = $GLOBALS['dossier_squelettes']; |
|
| 1414 | - $path_a = _chemin(''); // forcer un recalcul du chemin |
|
| 1415 | - } |
|
| 1409 | + // on calcule le chemin si le dossier skel a change |
|
| 1410 | + if ($c != $GLOBALS['dossier_squelettes']) { |
|
| 1411 | + // assurer le non plantage lors de la montee de version : |
|
| 1412 | + $c = $GLOBALS['dossier_squelettes']; |
|
| 1413 | + $path_a = _chemin(''); // forcer un recalcul du chemin |
|
| 1414 | + } |
|
| 1416 | 1415 | |
| 1417 | - return $path_a; |
|
| 1416 | + return $path_a; |
|
| 1418 | 1417 | } |
| 1419 | 1418 | |
| 1420 | 1419 | |
| 1421 | 1420 | function lister_themes_prives() { |
| 1422 | - static $themes = null; |
|
| 1423 | - if (is_null($themes)) { |
|
| 1424 | - // si pas encore definie |
|
| 1425 | - if (!defined('_SPIP_THEME_PRIVE')) { |
|
| 1426 | - define('_SPIP_THEME_PRIVE', 'spip'); |
|
| 1427 | - } |
|
| 1428 | - $themes = array(_SPIP_THEME_PRIVE); |
|
| 1429 | - // lors d'une installation neuve, prefs n'est pas definie. |
|
| 1430 | - if (isset($GLOBALS['visiteur_session']['prefs'])) { |
|
| 1431 | - $prefs = $GLOBALS['visiteur_session']['prefs']; |
|
| 1432 | - } else { |
|
| 1433 | - $prefs = array(); |
|
| 1434 | - } |
|
| 1435 | - if (is_string($prefs)) { |
|
| 1436 | - $prefs = unserialize($GLOBALS['visiteur_session']['prefs']); |
|
| 1437 | - } |
|
| 1438 | - if ( |
|
| 1439 | - ((isset($prefs['theme']) and $theme = $prefs['theme']) |
|
| 1440 | - or (isset($GLOBALS['theme_prive_defaut']) and $theme = $GLOBALS['theme_prive_defaut'])) |
|
| 1441 | - and $theme != _SPIP_THEME_PRIVE |
|
| 1442 | - ) { |
|
| 1443 | - array_unshift($themes, $theme); |
|
| 1444 | - } // placer le theme choisi en tete |
|
| 1445 | - } |
|
| 1446 | - |
|
| 1447 | - return $themes; |
|
| 1421 | + static $themes = null; |
|
| 1422 | + if (is_null($themes)) { |
|
| 1423 | + // si pas encore definie |
|
| 1424 | + if (!defined('_SPIP_THEME_PRIVE')) { |
|
| 1425 | + define('_SPIP_THEME_PRIVE', 'spip'); |
|
| 1426 | + } |
|
| 1427 | + $themes = array(_SPIP_THEME_PRIVE); |
|
| 1428 | + // lors d'une installation neuve, prefs n'est pas definie. |
|
| 1429 | + if (isset($GLOBALS['visiteur_session']['prefs'])) { |
|
| 1430 | + $prefs = $GLOBALS['visiteur_session']['prefs']; |
|
| 1431 | + } else { |
|
| 1432 | + $prefs = array(); |
|
| 1433 | + } |
|
| 1434 | + if (is_string($prefs)) { |
|
| 1435 | + $prefs = unserialize($GLOBALS['visiteur_session']['prefs']); |
|
| 1436 | + } |
|
| 1437 | + if ( |
|
| 1438 | + ((isset($prefs['theme']) and $theme = $prefs['theme']) |
|
| 1439 | + or (isset($GLOBALS['theme_prive_defaut']) and $theme = $GLOBALS['theme_prive_defaut'])) |
|
| 1440 | + and $theme != _SPIP_THEME_PRIVE |
|
| 1441 | + ) { |
|
| 1442 | + array_unshift($themes, $theme); |
|
| 1443 | + } // placer le theme choisi en tete |
|
| 1444 | + } |
|
| 1445 | + |
|
| 1446 | + return $themes; |
|
| 1448 | 1447 | } |
| 1449 | 1448 | |
| 1450 | 1449 | function find_in_theme($file, $subdir = '', $include = false) { |
| 1451 | - static $themefiles = array(); |
|
| 1452 | - if (isset($themefiles["$subdir$file"])) { |
|
| 1453 | - return $themefiles["$subdir$file"]; |
|
| 1454 | - } |
|
| 1455 | - // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
|
| 1456 | - // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
|
| 1457 | - if (preg_match(',-(\d+)[.](png|gif|svg)$,', $file, $m) |
|
| 1458 | - and $file_svg_generique = substr($file,0, -strlen($m[0])) . "-xx.svg" |
|
| 1459 | - and $f = find_in_theme("$file_svg_generique")) { |
|
| 1460 | - if ($fsize = substr($f,0,-6) . $m[1] . ".svg" and file_exists($fsize)) { |
|
| 1461 | - return $themefiles["$subdir$file"] = $fsize; |
|
| 1462 | - } |
|
| 1463 | - else { |
|
| 1464 | - return $themefiles["$subdir$file"] = "$f?".$m[1]."px"; |
|
| 1465 | - } |
|
| 1466 | - } |
|
| 1467 | - |
|
| 1468 | - $themes = lister_themes_prives(); |
|
| 1469 | - foreach ($themes as $theme) { |
|
| 1470 | - if ($f = find_in_path($file, "prive/themes/$theme/$subdir", $include)) { |
|
| 1471 | - return $themefiles["$subdir$file"] = $f; |
|
| 1472 | - } |
|
| 1473 | - } |
|
| 1474 | - spip_log("$file introuvable dans le theme prive " . reset($themes), 'theme'); |
|
| 1475 | - |
|
| 1476 | - return $themefiles["$subdir$file"] = ""; |
|
| 1450 | + static $themefiles = array(); |
|
| 1451 | + if (isset($themefiles["$subdir$file"])) { |
|
| 1452 | + return $themefiles["$subdir$file"]; |
|
| 1453 | + } |
|
| 1454 | + // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
|
| 1455 | + // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
|
| 1456 | + if (preg_match(',-(\d+)[.](png|gif|svg)$,', $file, $m) |
|
| 1457 | + and $file_svg_generique = substr($file,0, -strlen($m[0])) . "-xx.svg" |
|
| 1458 | + and $f = find_in_theme("$file_svg_generique")) { |
|
| 1459 | + if ($fsize = substr($f,0,-6) . $m[1] . ".svg" and file_exists($fsize)) { |
|
| 1460 | + return $themefiles["$subdir$file"] = $fsize; |
|
| 1461 | + } |
|
| 1462 | + else { |
|
| 1463 | + return $themefiles["$subdir$file"] = "$f?".$m[1]."px"; |
|
| 1464 | + } |
|
| 1465 | + } |
|
| 1466 | + |
|
| 1467 | + $themes = lister_themes_prives(); |
|
| 1468 | + foreach ($themes as $theme) { |
|
| 1469 | + if ($f = find_in_path($file, "prive/themes/$theme/$subdir", $include)) { |
|
| 1470 | + return $themefiles["$subdir$file"] = $f; |
|
| 1471 | + } |
|
| 1472 | + } |
|
| 1473 | + spip_log("$file introuvable dans le theme prive " . reset($themes), 'theme'); |
|
| 1474 | + |
|
| 1475 | + return $themefiles["$subdir$file"] = ""; |
|
| 1477 | 1476 | } |
| 1478 | 1477 | |
| 1479 | 1478 | |
@@ -1497,31 +1496,31 @@ discard block |
||
| 1497 | 1496 | * sinon chaîne vide. |
| 1498 | 1497 | **/ |
| 1499 | 1498 | function chemin_image($icone) { |
| 1500 | - static $icone_renommer; |
|
| 1501 | - if ($p = strpos($icone, '?')) { |
|
| 1502 | - $icone = substr($icone,0, $p); |
|
| 1503 | - } |
|
| 1504 | - // gerer le cas d'un double appel en evitant de refaire le travail inutilement |
|
| 1505 | - if (strpos($icone, "/") !== false and file_exists($icone)) { |
|
| 1506 | - return $icone; |
|
| 1507 | - } |
|
| 1508 | - |
|
| 1509 | - // si c'est un nom d'image complet (article-24.png) essayer de le renvoyer direct |
|
| 1510 | - if (preg_match(',[.](png|gif|jpg|webp|svg)$,', $icone) and $f = find_in_theme("images/$icone")) { |
|
| 1511 | - return $f; |
|
| 1512 | - } |
|
| 1513 | - // sinon passer par le module de renommage |
|
| 1514 | - if (is_null($icone_renommer)) { |
|
| 1515 | - $icone_renommer = charger_fonction('icone_renommer', 'inc', true); |
|
| 1516 | - } |
|
| 1517 | - if ($icone_renommer) { |
|
| 1518 | - list($icone, $fonction) = $icone_renommer($icone, ""); |
|
| 1519 | - if (file_exists($icone)) { |
|
| 1520 | - return $icone; |
|
| 1521 | - } |
|
| 1522 | - } |
|
| 1523 | - |
|
| 1524 | - return find_in_path($icone, _NOM_IMG_PACK); |
|
| 1499 | + static $icone_renommer; |
|
| 1500 | + if ($p = strpos($icone, '?')) { |
|
| 1501 | + $icone = substr($icone,0, $p); |
|
| 1502 | + } |
|
| 1503 | + // gerer le cas d'un double appel en evitant de refaire le travail inutilement |
|
| 1504 | + if (strpos($icone, "/") !== false and file_exists($icone)) { |
|
| 1505 | + return $icone; |
|
| 1506 | + } |
|
| 1507 | + |
|
| 1508 | + // si c'est un nom d'image complet (article-24.png) essayer de le renvoyer direct |
|
| 1509 | + if (preg_match(',[.](png|gif|jpg|webp|svg)$,', $icone) and $f = find_in_theme("images/$icone")) { |
|
| 1510 | + return $f; |
|
| 1511 | + } |
|
| 1512 | + // sinon passer par le module de renommage |
|
| 1513 | + if (is_null($icone_renommer)) { |
|
| 1514 | + $icone_renommer = charger_fonction('icone_renommer', 'inc', true); |
|
| 1515 | + } |
|
| 1516 | + if ($icone_renommer) { |
|
| 1517 | + list($icone, $fonction) = $icone_renommer($icone, ""); |
|
| 1518 | + if (file_exists($icone)) { |
|
| 1519 | + return $icone; |
|
| 1520 | + } |
|
| 1521 | + } |
|
| 1522 | + |
|
| 1523 | + return find_in_path($icone, _NOM_IMG_PACK); |
|
| 1525 | 1524 | } |
| 1526 | 1525 | |
| 1527 | 1526 | // |
@@ -1559,127 +1558,127 @@ discard block |
||
| 1559 | 1558 | * - false : fichier introuvable |
| 1560 | 1559 | **/ |
| 1561 | 1560 | function find_in_path($file, $dirname = '', $include = false) { |
| 1562 | - static $dirs = array(); |
|
| 1563 | - static $inc = array(); # cf https://git.spip.net/spip/spip/commit/42e4e028e38c839121efaee84308d08aee307eec |
|
| 1564 | - static $c = ''; |
|
| 1565 | - |
|
| 1566 | - if (!$file and !strlen($file)) { |
|
| 1567 | - return false; |
|
| 1568 | - } |
|
| 1569 | - |
|
| 1570 | - // on calcule le chemin si le dossier skel a change |
|
| 1571 | - if ($c != $GLOBALS['dossier_squelettes']) { |
|
| 1572 | - // assurer le non plantage lors de la montee de version : |
|
| 1573 | - $c = $GLOBALS['dossier_squelettes']; |
|
| 1574 | - creer_chemin(); // forcer un recalcul du chemin et la mise a jour de path_sig |
|
| 1575 | - } |
|
| 1576 | - |
|
| 1577 | - if (isset($GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file])) { |
|
| 1578 | - if (!$GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]) { |
|
| 1579 | - return false; |
|
| 1580 | - } |
|
| 1581 | - if ($include and !isset($inc[$dirname][$file])) { |
|
| 1582 | - include_once _ROOT_CWD . $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]; |
|
| 1583 | - $inc[$dirname][$file] = $inc[''][$dirname . $file] = true; |
|
| 1584 | - } |
|
| 1585 | - |
|
| 1586 | - return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]; |
|
| 1587 | - } |
|
| 1588 | - |
|
| 1589 | - $a = strrpos($file, '/'); |
|
| 1590 | - if ($a !== false) { |
|
| 1591 | - $dirname .= substr($file, 0, ++$a); |
|
| 1592 | - $file = substr($file, $a); |
|
| 1593 | - } |
|
| 1594 | - |
|
| 1595 | - foreach (creer_chemin() as $dir) { |
|
| 1596 | - if (!isset($dirs[$a = $dir . $dirname])) { |
|
| 1597 | - $dirs[$a] = (is_dir(_ROOT_CWD . $a) || !$a); |
|
| 1598 | - } |
|
| 1599 | - if ($dirs[$a]) { |
|
| 1600 | - if (file_exists(_ROOT_CWD . ($a .= $file))) { |
|
| 1601 | - if ($include and !isset($inc[$dirname][$file])) { |
|
| 1602 | - include_once _ROOT_CWD . $a; |
|
| 1603 | - $inc[$dirname][$file] = $inc[''][$dirname . $file] = true; |
|
| 1604 | - } |
|
| 1605 | - if (!defined('_SAUVER_CHEMIN')) { |
|
| 1606 | - // si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher |
|
| 1607 | - if (is_null($GLOBALS['path_files'])) { |
|
| 1608 | - return $a; |
|
| 1609 | - } |
|
| 1610 | - define('_SAUVER_CHEMIN', true); |
|
| 1611 | - } |
|
| 1612 | - |
|
| 1613 | - return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = $a; |
|
| 1614 | - } |
|
| 1615 | - } |
|
| 1616 | - } |
|
| 1617 | - |
|
| 1618 | - if ($include) { |
|
| 1619 | - spip_log("include_spip $dirname$file non trouve"); |
|
| 1620 | - if ($include === 'required') { |
|
| 1621 | - echo '<pre>', |
|
| 1622 | - "<strong>Erreur Fatale</strong><br />"; |
|
| 1623 | - if (function_exists('debug_print_backtrace')) { |
|
| 1624 | - echo debug_print_backtrace(); |
|
| 1625 | - } |
|
| 1626 | - echo '</pre>'; |
|
| 1627 | - die("Erreur interne: ne peut inclure $dirname$file"); |
|
| 1628 | - } |
|
| 1629 | - } |
|
| 1630 | - |
|
| 1631 | - if (!defined('_SAUVER_CHEMIN')) { |
|
| 1632 | - // si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher |
|
| 1633 | - if (is_null($GLOBALS['path_files'])) { |
|
| 1634 | - return false; |
|
| 1635 | - } |
|
| 1636 | - define('_SAUVER_CHEMIN', true); |
|
| 1637 | - } |
|
| 1638 | - |
|
| 1639 | - return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = false; |
|
| 1561 | + static $dirs = array(); |
|
| 1562 | + static $inc = array(); # cf https://git.spip.net/spip/spip/commit/42e4e028e38c839121efaee84308d08aee307eec |
|
| 1563 | + static $c = ''; |
|
| 1564 | + |
|
| 1565 | + if (!$file and !strlen($file)) { |
|
| 1566 | + return false; |
|
| 1567 | + } |
|
| 1568 | + |
|
| 1569 | + // on calcule le chemin si le dossier skel a change |
|
| 1570 | + if ($c != $GLOBALS['dossier_squelettes']) { |
|
| 1571 | + // assurer le non plantage lors de la montee de version : |
|
| 1572 | + $c = $GLOBALS['dossier_squelettes']; |
|
| 1573 | + creer_chemin(); // forcer un recalcul du chemin et la mise a jour de path_sig |
|
| 1574 | + } |
|
| 1575 | + |
|
| 1576 | + if (isset($GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file])) { |
|
| 1577 | + if (!$GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]) { |
|
| 1578 | + return false; |
|
| 1579 | + } |
|
| 1580 | + if ($include and !isset($inc[$dirname][$file])) { |
|
| 1581 | + include_once _ROOT_CWD . $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]; |
|
| 1582 | + $inc[$dirname][$file] = $inc[''][$dirname . $file] = true; |
|
| 1583 | + } |
|
| 1584 | + |
|
| 1585 | + return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]; |
|
| 1586 | + } |
|
| 1587 | + |
|
| 1588 | + $a = strrpos($file, '/'); |
|
| 1589 | + if ($a !== false) { |
|
| 1590 | + $dirname .= substr($file, 0, ++$a); |
|
| 1591 | + $file = substr($file, $a); |
|
| 1592 | + } |
|
| 1593 | + |
|
| 1594 | + foreach (creer_chemin() as $dir) { |
|
| 1595 | + if (!isset($dirs[$a = $dir . $dirname])) { |
|
| 1596 | + $dirs[$a] = (is_dir(_ROOT_CWD . $a) || !$a); |
|
| 1597 | + } |
|
| 1598 | + if ($dirs[$a]) { |
|
| 1599 | + if (file_exists(_ROOT_CWD . ($a .= $file))) { |
|
| 1600 | + if ($include and !isset($inc[$dirname][$file])) { |
|
| 1601 | + include_once _ROOT_CWD . $a; |
|
| 1602 | + $inc[$dirname][$file] = $inc[''][$dirname . $file] = true; |
|
| 1603 | + } |
|
| 1604 | + if (!defined('_SAUVER_CHEMIN')) { |
|
| 1605 | + // si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher |
|
| 1606 | + if (is_null($GLOBALS['path_files'])) { |
|
| 1607 | + return $a; |
|
| 1608 | + } |
|
| 1609 | + define('_SAUVER_CHEMIN', true); |
|
| 1610 | + } |
|
| 1611 | + |
|
| 1612 | + return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = $a; |
|
| 1613 | + } |
|
| 1614 | + } |
|
| 1615 | + } |
|
| 1616 | + |
|
| 1617 | + if ($include) { |
|
| 1618 | + spip_log("include_spip $dirname$file non trouve"); |
|
| 1619 | + if ($include === 'required') { |
|
| 1620 | + echo '<pre>', |
|
| 1621 | + "<strong>Erreur Fatale</strong><br />"; |
|
| 1622 | + if (function_exists('debug_print_backtrace')) { |
|
| 1623 | + echo debug_print_backtrace(); |
|
| 1624 | + } |
|
| 1625 | + echo '</pre>'; |
|
| 1626 | + die("Erreur interne: ne peut inclure $dirname$file"); |
|
| 1627 | + } |
|
| 1628 | + } |
|
| 1629 | + |
|
| 1630 | + if (!defined('_SAUVER_CHEMIN')) { |
|
| 1631 | + // si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher |
|
| 1632 | + if (is_null($GLOBALS['path_files'])) { |
|
| 1633 | + return false; |
|
| 1634 | + } |
|
| 1635 | + define('_SAUVER_CHEMIN', true); |
|
| 1636 | + } |
|
| 1637 | + |
|
| 1638 | + return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = false; |
|
| 1640 | 1639 | } |
| 1641 | 1640 | |
| 1642 | 1641 | function clear_path_cache() { |
| 1643 | - $GLOBALS['path_files'] = array(); |
|
| 1644 | - spip_unlink(_CACHE_CHEMIN); |
|
| 1642 | + $GLOBALS['path_files'] = array(); |
|
| 1643 | + spip_unlink(_CACHE_CHEMIN); |
|
| 1645 | 1644 | } |
| 1646 | 1645 | |
| 1647 | 1646 | function load_path_cache() { |
| 1648 | - // charger le path des plugins |
|
| 1649 | - if (@is_readable(_CACHE_PLUGINS_PATH)) { |
|
| 1650 | - include_once(_CACHE_PLUGINS_PATH); |
|
| 1651 | - } |
|
| 1652 | - $GLOBALS['path_files'] = array(); |
|
| 1653 | - // si le visiteur est admin, |
|
| 1654 | - // on ne recharge pas le cache pour forcer sa mise a jour |
|
| 1655 | - if ( |
|
| 1656 | - // la session n'est pas encore chargee a ce moment, on ne peut donc pas s'y fier |
|
| 1657 | - //AND (!isset($GLOBALS['visiteur_session']['statut']) OR $GLOBALS['visiteur_session']['statut']!='0minirezo') |
|
| 1658 | - // utiliser le cookie est un pis aller qui marche 'en general' |
|
| 1659 | - // on blinde par un second test au moment de la lecture de la session |
|
| 1660 | - // !isset($_COOKIE[$GLOBALS['cookie_prefix'].'_admin']) |
|
| 1661 | - // et en ignorant ce cache en cas de recalcul explicite |
|
| 1662 | - !_request('var_mode') |
|
| 1663 | - ) { |
|
| 1664 | - // on essaye de lire directement sans verrou pour aller plus vite |
|
| 1665 | - if ($contenu = spip_file_get_contents(_CACHE_CHEMIN)) { |
|
| 1666 | - // mais si semble corrompu on relit avec un verrou |
|
| 1667 | - if (!$GLOBALS['path_files'] = unserialize($contenu)) { |
|
| 1668 | - lire_fichier(_CACHE_CHEMIN, $contenu); |
|
| 1669 | - if (!$GLOBALS['path_files'] = unserialize($contenu)) { |
|
| 1670 | - $GLOBALS['path_files'] = array(); |
|
| 1671 | - } |
|
| 1672 | - } |
|
| 1673 | - } |
|
| 1674 | - } |
|
| 1647 | + // charger le path des plugins |
|
| 1648 | + if (@is_readable(_CACHE_PLUGINS_PATH)) { |
|
| 1649 | + include_once(_CACHE_PLUGINS_PATH); |
|
| 1650 | + } |
|
| 1651 | + $GLOBALS['path_files'] = array(); |
|
| 1652 | + // si le visiteur est admin, |
|
| 1653 | + // on ne recharge pas le cache pour forcer sa mise a jour |
|
| 1654 | + if ( |
|
| 1655 | + // la session n'est pas encore chargee a ce moment, on ne peut donc pas s'y fier |
|
| 1656 | + //AND (!isset($GLOBALS['visiteur_session']['statut']) OR $GLOBALS['visiteur_session']['statut']!='0minirezo') |
|
| 1657 | + // utiliser le cookie est un pis aller qui marche 'en general' |
|
| 1658 | + // on blinde par un second test au moment de la lecture de la session |
|
| 1659 | + // !isset($_COOKIE[$GLOBALS['cookie_prefix'].'_admin']) |
|
| 1660 | + // et en ignorant ce cache en cas de recalcul explicite |
|
| 1661 | + !_request('var_mode') |
|
| 1662 | + ) { |
|
| 1663 | + // on essaye de lire directement sans verrou pour aller plus vite |
|
| 1664 | + if ($contenu = spip_file_get_contents(_CACHE_CHEMIN)) { |
|
| 1665 | + // mais si semble corrompu on relit avec un verrou |
|
| 1666 | + if (!$GLOBALS['path_files'] = unserialize($contenu)) { |
|
| 1667 | + lire_fichier(_CACHE_CHEMIN, $contenu); |
|
| 1668 | + if (!$GLOBALS['path_files'] = unserialize($contenu)) { |
|
| 1669 | + $GLOBALS['path_files'] = array(); |
|
| 1670 | + } |
|
| 1671 | + } |
|
| 1672 | + } |
|
| 1673 | + } |
|
| 1675 | 1674 | } |
| 1676 | 1675 | |
| 1677 | 1676 | function save_path_cache() { |
| 1678 | - if (defined('_SAUVER_CHEMIN') |
|
| 1679 | - and _SAUVER_CHEMIN |
|
| 1680 | - ) { |
|
| 1681 | - ecrire_fichier(_CACHE_CHEMIN, serialize($GLOBALS['path_files'])); |
|
| 1682 | - } |
|
| 1677 | + if (defined('_SAUVER_CHEMIN') |
|
| 1678 | + and _SAUVER_CHEMIN |
|
| 1679 | + ) { |
|
| 1680 | + ecrire_fichier(_CACHE_CHEMIN, serialize($GLOBALS['path_files'])); |
|
| 1681 | + } |
|
| 1683 | 1682 | } |
| 1684 | 1683 | |
| 1685 | 1684 | |
@@ -1699,33 +1698,33 @@ discard block |
||
| 1699 | 1698 | * @return array |
| 1700 | 1699 | */ |
| 1701 | 1700 | function find_all_in_path($dir, $pattern, $recurs = false) { |
| 1702 | - $liste_fichiers = array(); |
|
| 1703 | - $maxfiles = 10000; |
|
| 1704 | - |
|
| 1705 | - // cas borderline si dans mes_options on appelle redirige_par_entete qui utilise _T et charge un fichier de langue |
|
| 1706 | - // on a pas encore inclus flock.php |
|
| 1707 | - if (!function_exists('preg_files')) { |
|
| 1708 | - include_once _ROOT_RESTREINT . 'inc/flock.php'; |
|
| 1709 | - } |
|
| 1710 | - |
|
| 1711 | - // Parcourir le chemin |
|
| 1712 | - foreach (creer_chemin() as $d) { |
|
| 1713 | - $f = $d . $dir; |
|
| 1714 | - if (@is_dir($f)) { |
|
| 1715 | - $liste = preg_files($f, $pattern, $maxfiles - count($liste_fichiers), $recurs === true ? array() : $recurs); |
|
| 1716 | - foreach ($liste as $chemin) { |
|
| 1717 | - $nom = basename($chemin); |
|
| 1718 | - // ne prendre que les fichiers pas deja trouves |
|
| 1719 | - // car find_in_path prend le premier qu'il trouve, |
|
| 1720 | - // les autres sont donc masques |
|
| 1721 | - if (!isset($liste_fichiers[$nom])) { |
|
| 1722 | - $liste_fichiers[$nom] = $chemin; |
|
| 1723 | - } |
|
| 1724 | - } |
|
| 1725 | - } |
|
| 1726 | - } |
|
| 1727 | - |
|
| 1728 | - return $liste_fichiers; |
|
| 1701 | + $liste_fichiers = array(); |
|
| 1702 | + $maxfiles = 10000; |
|
| 1703 | + |
|
| 1704 | + // cas borderline si dans mes_options on appelle redirige_par_entete qui utilise _T et charge un fichier de langue |
|
| 1705 | + // on a pas encore inclus flock.php |
|
| 1706 | + if (!function_exists('preg_files')) { |
|
| 1707 | + include_once _ROOT_RESTREINT . 'inc/flock.php'; |
|
| 1708 | + } |
|
| 1709 | + |
|
| 1710 | + // Parcourir le chemin |
|
| 1711 | + foreach (creer_chemin() as $d) { |
|
| 1712 | + $f = $d . $dir; |
|
| 1713 | + if (@is_dir($f)) { |
|
| 1714 | + $liste = preg_files($f, $pattern, $maxfiles - count($liste_fichiers), $recurs === true ? array() : $recurs); |
|
| 1715 | + foreach ($liste as $chemin) { |
|
| 1716 | + $nom = basename($chemin); |
|
| 1717 | + // ne prendre que les fichiers pas deja trouves |
|
| 1718 | + // car find_in_path prend le premier qu'il trouve, |
|
| 1719 | + // les autres sont donc masques |
|
| 1720 | + if (!isset($liste_fichiers[$nom])) { |
|
| 1721 | + $liste_fichiers[$nom] = $chemin; |
|
| 1722 | + } |
|
| 1723 | + } |
|
| 1724 | + } |
|
| 1725 | + } |
|
| 1726 | + |
|
| 1727 | + return $liste_fichiers; |
|
| 1729 | 1728 | } |
| 1730 | 1729 | |
| 1731 | 1730 | /** |
@@ -1737,17 +1736,17 @@ discard block |
||
| 1737 | 1736 | * @return bool |
| 1738 | 1737 | */ |
| 1739 | 1738 | function autoriser_sans_cookie($nom, $strict = false) { |
| 1740 | - static $autsanscookie = array('install', 'base_repair'); |
|
| 1739 | + static $autsanscookie = array('install', 'base_repair'); |
|
| 1741 | 1740 | |
| 1742 | - if (in_array($nom, $autsanscookie)) { |
|
| 1743 | - if (test_espace_prive()){ |
|
| 1744 | - include_spip('base/connect_sql'); |
|
| 1745 | - if (!$strict or !spip_connect()){ |
|
| 1746 | - return true; |
|
| 1747 | - } |
|
| 1748 | - } |
|
| 1749 | - } |
|
| 1750 | - return false; |
|
| 1741 | + if (in_array($nom, $autsanscookie)) { |
|
| 1742 | + if (test_espace_prive()){ |
|
| 1743 | + include_spip('base/connect_sql'); |
|
| 1744 | + if (!$strict or !spip_connect()){ |
|
| 1745 | + return true; |
|
| 1746 | + } |
|
| 1747 | + } |
|
| 1748 | + } |
|
| 1749 | + return false; |
|
| 1751 | 1750 | } |
| 1752 | 1751 | |
| 1753 | 1752 | /** |
@@ -1773,99 +1772,99 @@ discard block |
||
| 1773 | 1772 | * (cas des raccourcis personalises [->spip20] : il faut implementer une fonction generer_url_spip et une fonction generer_url_ecrire_spip) |
| 1774 | 1773 | */ |
| 1775 | 1774 | function generer_url_entite($id = '', $entite = '', $args = '', $ancre = '', $public = null, $type = null) { |
| 1776 | - if ($public === null) { |
|
| 1777 | - $public = !test_espace_prive(); |
|
| 1778 | - } |
|
| 1779 | - $entite = objet_type($entite); // cas particulier d'appels sur objet/id_objet... |
|
| 1780 | - |
|
| 1781 | - if (!$public) { |
|
| 1782 | - if (!$entite) { |
|
| 1783 | - return ''; |
|
| 1784 | - } |
|
| 1785 | - if (!function_exists('generer_url_ecrire_objet')) { |
|
| 1786 | - include_spip('inc/urls'); |
|
| 1787 | - } |
|
| 1788 | - $res = generer_url_ecrire_objet($entite, $id, $args, $ancre, false); |
|
| 1789 | - } else { |
|
| 1790 | - if ($type === null) { |
|
| 1791 | - $type = (isset($GLOBALS['type_urls'])) |
|
| 1792 | - ? $GLOBALS['type_urls'] // pour surcharge via fichier d'options |
|
| 1793 | - : ((isset($GLOBALS['meta']['type_urls'])) // sinon la config url_etendues |
|
| 1794 | - ? ($GLOBALS['meta']['type_urls']) : "page"); // sinon type "page" par défaut |
|
| 1795 | - } |
|
| 1796 | - |
|
| 1797 | - $f = charger_fonction($type, 'urls', true); |
|
| 1798 | - // se rabattre sur les urls page si les urls perso non dispo |
|
| 1799 | - if (!$f) { |
|
| 1800 | - $f = charger_fonction('page', 'urls', true); |
|
| 1801 | - } |
|
| 1802 | - |
|
| 1803 | - // si $entite='', on veut la fonction de passage URL ==> id |
|
| 1804 | - // sinon on veut effectuer le passage id ==> URL |
|
| 1805 | - if (!$entite) { |
|
| 1806 | - return $f; |
|
| 1807 | - } |
|
| 1808 | - |
|
| 1809 | - // mais d'abord il faut tester le cas des urls sur une |
|
| 1810 | - // base distante |
|
| 1811 | - if (is_string($public) |
|
| 1812 | - and $g = charger_fonction('connect', 'urls', true) |
|
| 1813 | - ) { |
|
| 1814 | - $f = $g; |
|
| 1815 | - } |
|
| 1816 | - |
|
| 1817 | - $res = $f(intval($id), $entite, $args, $ancre, $public); |
|
| 1818 | - |
|
| 1819 | - } |
|
| 1820 | - if ($res) { |
|
| 1821 | - return $res; |
|
| 1822 | - } |
|
| 1823 | - // Sinon c'est un raccourci ou compat SPIP < 2 |
|
| 1824 | - if (!function_exists($f = 'generer_url_' . $entite)) { |
|
| 1825 | - if (!function_exists($f .= '_dist')) { |
|
| 1826 | - $f = ''; |
|
| 1827 | - } |
|
| 1828 | - } |
|
| 1829 | - if ($f) { |
|
| 1830 | - $url = $f($id, $args, $ancre); |
|
| 1831 | - if (strlen($args)) { |
|
| 1832 | - $url .= strstr($url, '?') |
|
| 1833 | - ? '&' . $args |
|
| 1834 | - : '?' . $args; |
|
| 1835 | - } |
|
| 1836 | - |
|
| 1837 | - return $url; |
|
| 1838 | - } |
|
| 1839 | - // On a ete gentil mais la .... |
|
| 1840 | - spip_log("generer_url_entite: entite $entite ($f) inconnue $type $public"); |
|
| 1841 | - |
|
| 1842 | - return ''; |
|
| 1775 | + if ($public === null) { |
|
| 1776 | + $public = !test_espace_prive(); |
|
| 1777 | + } |
|
| 1778 | + $entite = objet_type($entite); // cas particulier d'appels sur objet/id_objet... |
|
| 1779 | + |
|
| 1780 | + if (!$public) { |
|
| 1781 | + if (!$entite) { |
|
| 1782 | + return ''; |
|
| 1783 | + } |
|
| 1784 | + if (!function_exists('generer_url_ecrire_objet')) { |
|
| 1785 | + include_spip('inc/urls'); |
|
| 1786 | + } |
|
| 1787 | + $res = generer_url_ecrire_objet($entite, $id, $args, $ancre, false); |
|
| 1788 | + } else { |
|
| 1789 | + if ($type === null) { |
|
| 1790 | + $type = (isset($GLOBALS['type_urls'])) |
|
| 1791 | + ? $GLOBALS['type_urls'] // pour surcharge via fichier d'options |
|
| 1792 | + : ((isset($GLOBALS['meta']['type_urls'])) // sinon la config url_etendues |
|
| 1793 | + ? ($GLOBALS['meta']['type_urls']) : "page"); // sinon type "page" par défaut |
|
| 1794 | + } |
|
| 1795 | + |
|
| 1796 | + $f = charger_fonction($type, 'urls', true); |
|
| 1797 | + // se rabattre sur les urls page si les urls perso non dispo |
|
| 1798 | + if (!$f) { |
|
| 1799 | + $f = charger_fonction('page', 'urls', true); |
|
| 1800 | + } |
|
| 1801 | + |
|
| 1802 | + // si $entite='', on veut la fonction de passage URL ==> id |
|
| 1803 | + // sinon on veut effectuer le passage id ==> URL |
|
| 1804 | + if (!$entite) { |
|
| 1805 | + return $f; |
|
| 1806 | + } |
|
| 1807 | + |
|
| 1808 | + // mais d'abord il faut tester le cas des urls sur une |
|
| 1809 | + // base distante |
|
| 1810 | + if (is_string($public) |
|
| 1811 | + and $g = charger_fonction('connect', 'urls', true) |
|
| 1812 | + ) { |
|
| 1813 | + $f = $g; |
|
| 1814 | + } |
|
| 1815 | + |
|
| 1816 | + $res = $f(intval($id), $entite, $args, $ancre, $public); |
|
| 1817 | + |
|
| 1818 | + } |
|
| 1819 | + if ($res) { |
|
| 1820 | + return $res; |
|
| 1821 | + } |
|
| 1822 | + // Sinon c'est un raccourci ou compat SPIP < 2 |
|
| 1823 | + if (!function_exists($f = 'generer_url_' . $entite)) { |
|
| 1824 | + if (!function_exists($f .= '_dist')) { |
|
| 1825 | + $f = ''; |
|
| 1826 | + } |
|
| 1827 | + } |
|
| 1828 | + if ($f) { |
|
| 1829 | + $url = $f($id, $args, $ancre); |
|
| 1830 | + if (strlen($args)) { |
|
| 1831 | + $url .= strstr($url, '?') |
|
| 1832 | + ? '&' . $args |
|
| 1833 | + : '?' . $args; |
|
| 1834 | + } |
|
| 1835 | + |
|
| 1836 | + return $url; |
|
| 1837 | + } |
|
| 1838 | + // On a ete gentil mais la .... |
|
| 1839 | + spip_log("generer_url_entite: entite $entite ($f) inconnue $type $public"); |
|
| 1840 | + |
|
| 1841 | + return ''; |
|
| 1843 | 1842 | } |
| 1844 | 1843 | |
| 1845 | 1844 | function generer_url_ecrire_entite_edit($id, $entite, $args = '', $ancre = '') { |
| 1846 | - $exec = objet_info($entite, 'url_edit'); |
|
| 1847 | - $url = generer_url_ecrire($exec, $args); |
|
| 1848 | - if (intval($id)) { |
|
| 1849 | - $url = parametre_url($url, id_table_objet($entite), $id); |
|
| 1850 | - } else { |
|
| 1851 | - $url = parametre_url($url, 'new', 'oui'); |
|
| 1852 | - } |
|
| 1853 | - if ($ancre) { |
|
| 1854 | - $url = ancre_url($url, $ancre); |
|
| 1855 | - } |
|
| 1845 | + $exec = objet_info($entite, 'url_edit'); |
|
| 1846 | + $url = generer_url_ecrire($exec, $args); |
|
| 1847 | + if (intval($id)) { |
|
| 1848 | + $url = parametre_url($url, id_table_objet($entite), $id); |
|
| 1849 | + } else { |
|
| 1850 | + $url = parametre_url($url, 'new', 'oui'); |
|
| 1851 | + } |
|
| 1852 | + if ($ancre) { |
|
| 1853 | + $url = ancre_url($url, $ancre); |
|
| 1854 | + } |
|
| 1856 | 1855 | |
| 1857 | - return $url; |
|
| 1856 | + return $url; |
|
| 1858 | 1857 | } |
| 1859 | 1858 | |
| 1860 | 1859 | // https://code.spip.net/@urls_connect_dist |
| 1861 | 1860 | function urls_connect_dist($i, &$entite, $args = '', $ancre = '', $public = null) { |
| 1862 | - include_spip('base/connect_sql'); |
|
| 1863 | - $id_type = id_table_objet($entite, $public); |
|
| 1861 | + include_spip('base/connect_sql'); |
|
| 1862 | + $id_type = id_table_objet($entite, $public); |
|
| 1864 | 1863 | |
| 1865 | - return _DIR_RACINE . get_spip_script('./') |
|
| 1866 | - . "?" . _SPIP_PAGE . "=$entite&$id_type=$i&connect=$public" |
|
| 1867 | - . (!$args ? '' : "&$args") |
|
| 1868 | - . (!$ancre ? '' : "#$ancre"); |
|
| 1864 | + return _DIR_RACINE . get_spip_script('./') |
|
| 1865 | + . "?" . _SPIP_PAGE . "=$entite&$id_type=$i&connect=$public" |
|
| 1866 | + . (!$args ? '' : "&$args") |
|
| 1867 | + . (!$ancre ? '' : "#$ancre"); |
|
| 1869 | 1868 | } |
| 1870 | 1869 | |
| 1871 | 1870 | |
@@ -1876,32 +1875,32 @@ discard block |
||
| 1876 | 1875 | * @return string |
| 1877 | 1876 | */ |
| 1878 | 1877 | function urlencode_1738($url) { |
| 1879 | - if (preg_match(',[^\x00-\x7E],sS', $url)) { |
|
| 1880 | - $uri = ''; |
|
| 1881 | - for ($i = 0; $i < strlen($url); $i++) { |
|
| 1882 | - if (ord($a = $url[$i]) > 127) { |
|
| 1883 | - $a = rawurlencode($a); |
|
| 1884 | - } |
|
| 1885 | - $uri .= $a; |
|
| 1886 | - } |
|
| 1887 | - $url = $uri; |
|
| 1888 | - } |
|
| 1878 | + if (preg_match(',[^\x00-\x7E],sS', $url)) { |
|
| 1879 | + $uri = ''; |
|
| 1880 | + for ($i = 0; $i < strlen($url); $i++) { |
|
| 1881 | + if (ord($a = $url[$i]) > 127) { |
|
| 1882 | + $a = rawurlencode($a); |
|
| 1883 | + } |
|
| 1884 | + $uri .= $a; |
|
| 1885 | + } |
|
| 1886 | + $url = $uri; |
|
| 1887 | + } |
|
| 1889 | 1888 | |
| 1890 | - return quote_amp($url); |
|
| 1889 | + return quote_amp($url); |
|
| 1891 | 1890 | } |
| 1892 | 1891 | |
| 1893 | 1892 | // https://code.spip.net/@generer_url_entite_absolue |
| 1894 | 1893 | function generer_url_entite_absolue($id = '', $entite = '', $args = '', $ancre = '', $connect = null) { |
| 1895 | - if (!$connect) { |
|
| 1896 | - $connect = true; |
|
| 1897 | - } |
|
| 1898 | - $h = generer_url_entite($id, $entite, $args, $ancre, $connect); |
|
| 1899 | - if (!preg_match(',^\w+:,', $h)) { |
|
| 1900 | - include_spip('inc/filtres_mini'); |
|
| 1901 | - $h = url_absolue($h); |
|
| 1902 | - } |
|
| 1894 | + if (!$connect) { |
|
| 1895 | + $connect = true; |
|
| 1896 | + } |
|
| 1897 | + $h = generer_url_entite($id, $entite, $args, $ancre, $connect); |
|
| 1898 | + if (!preg_match(',^\w+:,', $h)) { |
|
| 1899 | + include_spip('inc/filtres_mini'); |
|
| 1900 | + $h = url_absolue($h); |
|
| 1901 | + } |
|
| 1903 | 1902 | |
| 1904 | - return $h; |
|
| 1903 | + return $h; |
|
| 1905 | 1904 | } |
| 1906 | 1905 | |
| 1907 | 1906 | |
@@ -1917,11 +1916,11 @@ discard block |
||
| 1917 | 1916 | * true si la valeur est considérée active ; false sinon. |
| 1918 | 1917 | **/ |
| 1919 | 1918 | function test_valeur_serveur($truc) { |
| 1920 | - if (!$truc) { |
|
| 1921 | - return false; |
|
| 1922 | - } |
|
| 1919 | + if (!$truc) { |
|
| 1920 | + return false; |
|
| 1921 | + } |
|
| 1923 | 1922 | |
| 1924 | - return (strtolower($truc) !== 'off'); |
|
| 1923 | + return (strtolower($truc) !== 'off'); |
|
| 1925 | 1924 | } |
| 1926 | 1925 | |
| 1927 | 1926 | // |
@@ -1949,80 +1948,80 @@ discard block |
||
| 1949 | 1948 | */ |
| 1950 | 1949 | function url_de_base($profondeur = null) { |
| 1951 | 1950 | |
| 1952 | - static $url = array(); |
|
| 1953 | - if (is_array($profondeur)) { |
|
| 1954 | - return $url = $profondeur; |
|
| 1955 | - } |
|
| 1956 | - if ($profondeur === false) { |
|
| 1957 | - return $url; |
|
| 1958 | - } |
|
| 1959 | - |
|
| 1960 | - if (is_null($profondeur)) { |
|
| 1961 | - $profondeur = $GLOBALS['profondeur_url']; |
|
| 1962 | - } |
|
| 1963 | - |
|
| 1964 | - if (isset($url[$profondeur])) { |
|
| 1965 | - return $url[$profondeur]; |
|
| 1966 | - } |
|
| 1967 | - |
|
| 1968 | - $http = 'http'; |
|
| 1969 | - |
|
| 1970 | - if ( |
|
| 1971 | - isset($_SERVER["SCRIPT_URI"]) |
|
| 1972 | - and substr($_SERVER["SCRIPT_URI"], 0, 5) == 'https' |
|
| 1973 | - ) { |
|
| 1974 | - $http = 'https'; |
|
| 1975 | - } elseif ( |
|
| 1976 | - isset($_SERVER['HTTPS']) |
|
| 1977 | - and test_valeur_serveur($_SERVER['HTTPS']) |
|
| 1978 | - ) { |
|
| 1979 | - $http = 'https'; |
|
| 1980 | - } |
|
| 1981 | - |
|
| 1982 | - // note : HTTP_HOST contient le :port si necessaire |
|
| 1983 | - $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : null; |
|
| 1984 | - // si on n'a pas trouvé d'hôte du tout, en dernier recours on utilise adresse_site comme fallback |
|
| 1985 | - if (is_null($host) and isset($GLOBALS['meta']['adresse_site'])) { |
|
| 1986 | - $host = $GLOBALS['meta']['adresse_site']; |
|
| 1987 | - if ($scheme = parse_url($host, PHP_URL_SCHEME)) { |
|
| 1988 | - $http = $scheme; |
|
| 1989 | - $host = str_replace("{$scheme}://", '', $host); |
|
| 1990 | - } |
|
| 1991 | - } |
|
| 1992 | - if (isset($_SERVER['SERVER_PORT']) |
|
| 1993 | - and $port = $_SERVER['SERVER_PORT'] |
|
| 1994 | - and strpos($host, ":") == false |
|
| 1995 | - ) { |
|
| 1996 | - if (!defined('_PORT_HTTP_STANDARD')) { |
|
| 1997 | - define('_PORT_HTTP_STANDARD', '80'); |
|
| 1998 | - } |
|
| 1999 | - if (!defined('_PORT_HTTPS_STANDARD')) { |
|
| 2000 | - define('_PORT_HTTPS_STANDARD', '443'); |
|
| 2001 | - } |
|
| 2002 | - if ($http == "http" and !in_array($port, explode(',', _PORT_HTTP_STANDARD))) { |
|
| 2003 | - $host .= ":$port"; |
|
| 2004 | - } |
|
| 2005 | - if ($http == "https" and !in_array($port, explode(',', _PORT_HTTPS_STANDARD))) { |
|
| 2006 | - $host .= ":$port"; |
|
| 2007 | - } |
|
| 2008 | - } |
|
| 2009 | - |
|
| 2010 | - if (!$GLOBALS['REQUEST_URI']) { |
|
| 2011 | - if (isset($_SERVER['REQUEST_URI'])) { |
|
| 2012 | - $GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI']; |
|
| 2013 | - } else { |
|
| 2014 | - $GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : ''; |
|
| 2015 | - if (!empty($_SERVER['QUERY_STRING']) |
|
| 2016 | - and !strpos($_SERVER['REQUEST_URI'], '?') |
|
| 2017 | - ) { |
|
| 2018 | - $GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING']; |
|
| 2019 | - } |
|
| 2020 | - } |
|
| 2021 | - } |
|
| 2022 | - |
|
| 2023 | - $url[$profondeur] = url_de_($http, $host, $GLOBALS['REQUEST_URI'], $profondeur); |
|
| 2024 | - |
|
| 2025 | - return $url[$profondeur]; |
|
| 1951 | + static $url = array(); |
|
| 1952 | + if (is_array($profondeur)) { |
|
| 1953 | + return $url = $profondeur; |
|
| 1954 | + } |
|
| 1955 | + if ($profondeur === false) { |
|
| 1956 | + return $url; |
|
| 1957 | + } |
|
| 1958 | + |
|
| 1959 | + if (is_null($profondeur)) { |
|
| 1960 | + $profondeur = $GLOBALS['profondeur_url']; |
|
| 1961 | + } |
|
| 1962 | + |
|
| 1963 | + if (isset($url[$profondeur])) { |
|
| 1964 | + return $url[$profondeur]; |
|
| 1965 | + } |
|
| 1966 | + |
|
| 1967 | + $http = 'http'; |
|
| 1968 | + |
|
| 1969 | + if ( |
|
| 1970 | + isset($_SERVER["SCRIPT_URI"]) |
|
| 1971 | + and substr($_SERVER["SCRIPT_URI"], 0, 5) == 'https' |
|
| 1972 | + ) { |
|
| 1973 | + $http = 'https'; |
|
| 1974 | + } elseif ( |
|
| 1975 | + isset($_SERVER['HTTPS']) |
|
| 1976 | + and test_valeur_serveur($_SERVER['HTTPS']) |
|
| 1977 | + ) { |
|
| 1978 | + $http = 'https'; |
|
| 1979 | + } |
|
| 1980 | + |
|
| 1981 | + // note : HTTP_HOST contient le :port si necessaire |
|
| 1982 | + $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : null; |
|
| 1983 | + // si on n'a pas trouvé d'hôte du tout, en dernier recours on utilise adresse_site comme fallback |
|
| 1984 | + if (is_null($host) and isset($GLOBALS['meta']['adresse_site'])) { |
|
| 1985 | + $host = $GLOBALS['meta']['adresse_site']; |
|
| 1986 | + if ($scheme = parse_url($host, PHP_URL_SCHEME)) { |
|
| 1987 | + $http = $scheme; |
|
| 1988 | + $host = str_replace("{$scheme}://", '', $host); |
|
| 1989 | + } |
|
| 1990 | + } |
|
| 1991 | + if (isset($_SERVER['SERVER_PORT']) |
|
| 1992 | + and $port = $_SERVER['SERVER_PORT'] |
|
| 1993 | + and strpos($host, ":") == false |
|
| 1994 | + ) { |
|
| 1995 | + if (!defined('_PORT_HTTP_STANDARD')) { |
|
| 1996 | + define('_PORT_HTTP_STANDARD', '80'); |
|
| 1997 | + } |
|
| 1998 | + if (!defined('_PORT_HTTPS_STANDARD')) { |
|
| 1999 | + define('_PORT_HTTPS_STANDARD', '443'); |
|
| 2000 | + } |
|
| 2001 | + if ($http == "http" and !in_array($port, explode(',', _PORT_HTTP_STANDARD))) { |
|
| 2002 | + $host .= ":$port"; |
|
| 2003 | + } |
|
| 2004 | + if ($http == "https" and !in_array($port, explode(',', _PORT_HTTPS_STANDARD))) { |
|
| 2005 | + $host .= ":$port"; |
|
| 2006 | + } |
|
| 2007 | + } |
|
| 2008 | + |
|
| 2009 | + if (!$GLOBALS['REQUEST_URI']) { |
|
| 2010 | + if (isset($_SERVER['REQUEST_URI'])) { |
|
| 2011 | + $GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI']; |
|
| 2012 | + } else { |
|
| 2013 | + $GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : ''; |
|
| 2014 | + if (!empty($_SERVER['QUERY_STRING']) |
|
| 2015 | + and !strpos($_SERVER['REQUEST_URI'], '?') |
|
| 2016 | + ) { |
|
| 2017 | + $GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING']; |
|
| 2018 | + } |
|
| 2019 | + } |
|
| 2020 | + } |
|
| 2021 | + |
|
| 2022 | + $url[$profondeur] = url_de_($http, $host, $GLOBALS['REQUEST_URI'], $profondeur); |
|
| 2023 | + |
|
| 2024 | + return $url[$profondeur]; |
|
| 2026 | 2025 | } |
| 2027 | 2026 | |
| 2028 | 2027 | /** |
@@ -2035,26 +2034,26 @@ discard block |
||
| 2035 | 2034 | * @return string |
| 2036 | 2035 | */ |
| 2037 | 2036 | function url_de_($http, $host, $request, $prof = 0) { |
| 2038 | - $prof = max($prof, 0); |
|
| 2037 | + $prof = max($prof, 0); |
|
| 2039 | 2038 | |
| 2040 | - $myself = ltrim($request, '/'); |
|
| 2041 | - # supprimer la chaine de GET |
|
| 2042 | - list($myself) = explode('?', $myself); |
|
| 2043 | - // vieux mode HTTP qui envoie après le nom de la methode l'URL compléte |
|
| 2044 | - // protocole, "://", nom du serveur avant le path dans _SERVER["REQUEST_URI"] |
|
| 2045 | - if (strpos($myself,'://') !== false) { |
|
| 2046 | - $myself = explode('://',$myself); |
|
| 2047 | - array_shift($myself); |
|
| 2048 | - $myself = implode('://',$myself); |
|
| 2049 | - $myself = explode('/',$myself); |
|
| 2050 | - array_shift($myself); |
|
| 2051 | - $myself = implode('/',$myself); |
|
| 2052 | - } |
|
| 2053 | - $url = join('/', array_slice(explode('/', $myself), 0, -1 - $prof)) . '/'; |
|
| 2039 | + $myself = ltrim($request, '/'); |
|
| 2040 | + # supprimer la chaine de GET |
|
| 2041 | + list($myself) = explode('?', $myself); |
|
| 2042 | + // vieux mode HTTP qui envoie après le nom de la methode l'URL compléte |
|
| 2043 | + // protocole, "://", nom du serveur avant le path dans _SERVER["REQUEST_URI"] |
|
| 2044 | + if (strpos($myself,'://') !== false) { |
|
| 2045 | + $myself = explode('://',$myself); |
|
| 2046 | + array_shift($myself); |
|
| 2047 | + $myself = implode('://',$myself); |
|
| 2048 | + $myself = explode('/',$myself); |
|
| 2049 | + array_shift($myself); |
|
| 2050 | + $myself = implode('/',$myself); |
|
| 2051 | + } |
|
| 2052 | + $url = join('/', array_slice(explode('/', $myself), 0, -1 - $prof)) . '/'; |
|
| 2054 | 2053 | |
| 2055 | - $url = $http . '://' . rtrim($host, '/') . '/' . ltrim($url, '/'); |
|
| 2054 | + $url = $http . '://' . rtrim($host, '/') . '/' . ltrim($url, '/'); |
|
| 2056 | 2055 | |
| 2057 | - return $url; |
|
| 2056 | + return $url; |
|
| 2058 | 2057 | } |
| 2059 | 2058 | |
| 2060 | 2059 | |
@@ -2089,26 +2088,26 @@ discard block |
||
| 2089 | 2088 | * @return string URL |
| 2090 | 2089 | **/ |
| 2091 | 2090 | function generer_url_ecrire($script = '', $args = "", $no_entities = false, $rel = false) { |
| 2092 | - if (!$rel) { |
|
| 2093 | - $rel = url_de_base() . _DIR_RESTREINT_ABS . _SPIP_ECRIRE_SCRIPT; |
|
| 2094 | - } else { |
|
| 2095 | - if (!is_string($rel)) { |
|
| 2096 | - $rel = _DIR_RESTREINT ? _DIR_RESTREINT : |
|
| 2097 | - ('./' . _SPIP_ECRIRE_SCRIPT); |
|
| 2098 | - } |
|
| 2099 | - } |
|
| 2100 | - |
|
| 2101 | - list($script, $ancre) = array_pad(explode('#', $script), 2, null); |
|
| 2102 | - if ($script and ($script <> 'accueil' or $rel)) { |
|
| 2103 | - $args = "?exec=$script" . (!$args ? '' : "&$args"); |
|
| 2104 | - } elseif ($args) { |
|
| 2105 | - $args = "?$args"; |
|
| 2106 | - } |
|
| 2107 | - if ($ancre) { |
|
| 2108 | - $args .= "#$ancre"; |
|
| 2109 | - } |
|
| 2110 | - |
|
| 2111 | - return $rel . ($no_entities ? $args : str_replace('&', '&', $args)); |
|
| 2091 | + if (!$rel) { |
|
| 2092 | + $rel = url_de_base() . _DIR_RESTREINT_ABS . _SPIP_ECRIRE_SCRIPT; |
|
| 2093 | + } else { |
|
| 2094 | + if (!is_string($rel)) { |
|
| 2095 | + $rel = _DIR_RESTREINT ? _DIR_RESTREINT : |
|
| 2096 | + ('./' . _SPIP_ECRIRE_SCRIPT); |
|
| 2097 | + } |
|
| 2098 | + } |
|
| 2099 | + |
|
| 2100 | + list($script, $ancre) = array_pad(explode('#', $script), 2, null); |
|
| 2101 | + if ($script and ($script <> 'accueil' or $rel)) { |
|
| 2102 | + $args = "?exec=$script" . (!$args ? '' : "&$args"); |
|
| 2103 | + } elseif ($args) { |
|
| 2104 | + $args = "?$args"; |
|
| 2105 | + } |
|
| 2106 | + if ($ancre) { |
|
| 2107 | + $args .= "#$ancre"; |
|
| 2108 | + } |
|
| 2109 | + |
|
| 2110 | + return $rel . ($no_entities ? $args : str_replace('&', '&', $args)); |
|
| 2112 | 2111 | } |
| 2113 | 2112 | |
| 2114 | 2113 | // |
@@ -2130,12 +2129,12 @@ discard block |
||
| 2130 | 2129 | * Nom du fichier (constante _SPIP_SCRIPT), sinon nom par défaut |
| 2131 | 2130 | **/ |
| 2132 | 2131 | function get_spip_script($default = '') { |
| 2133 | - # cas define('_SPIP_SCRIPT', ''); |
|
| 2134 | - if (_SPIP_SCRIPT) { |
|
| 2135 | - return _SPIP_SCRIPT; |
|
| 2136 | - } else { |
|
| 2137 | - return $default; |
|
| 2138 | - } |
|
| 2132 | + # cas define('_SPIP_SCRIPT', ''); |
|
| 2133 | + if (_SPIP_SCRIPT) { |
|
| 2134 | + return _SPIP_SCRIPT; |
|
| 2135 | + } else { |
|
| 2136 | + return $default; |
|
| 2137 | + } |
|
| 2139 | 2138 | } |
| 2140 | 2139 | |
| 2141 | 2140 | /** |
@@ -2164,39 +2163,39 @@ discard block |
||
| 2164 | 2163 | * @return string URL |
| 2165 | 2164 | **/ |
| 2166 | 2165 | function generer_url_public($script = '', $args = "", $no_entities = false, $rel = true, $action = '') { |
| 2167 | - // si le script est une action (spip_pass, spip_inscription), |
|
| 2168 | - // standardiser vers la nouvelle API |
|
| 2169 | - |
|
| 2170 | - if (!$action) { |
|
| 2171 | - $action = get_spip_script(); |
|
| 2172 | - } |
|
| 2173 | - if ($script) { |
|
| 2174 | - $action = parametre_url($action, _SPIP_PAGE, $script, '&'); |
|
| 2175 | - } |
|
| 2176 | - |
|
| 2177 | - if ($args) { |
|
| 2178 | - if (is_array($args)) { |
|
| 2179 | - $r = ''; |
|
| 2180 | - foreach ($args as $k => $v) { |
|
| 2181 | - $r .= '&' . $k . '=' . $v; |
|
| 2182 | - } |
|
| 2183 | - $args = substr($r, 1); |
|
| 2184 | - } |
|
| 2185 | - $action .= |
|
| 2186 | - (strpos($action, '?') !== false ? '&' : '?') . $args; |
|
| 2187 | - } |
|
| 2188 | - if (!$no_entities) { |
|
| 2189 | - $action = quote_amp($action); |
|
| 2190 | - } |
|
| 2191 | - |
|
| 2192 | - // ne pas generer une url avec /./?page= en cas d'url absolue et de _SPIP_SCRIPT vide |
|
| 2193 | - return ($rel ? _DIR_RACINE . $action : rtrim(url_de_base(), '/') . preg_replace(",^/[.]/,", "/", "/$action")); |
|
| 2166 | + // si le script est une action (spip_pass, spip_inscription), |
|
| 2167 | + // standardiser vers la nouvelle API |
|
| 2168 | + |
|
| 2169 | + if (!$action) { |
|
| 2170 | + $action = get_spip_script(); |
|
| 2171 | + } |
|
| 2172 | + if ($script) { |
|
| 2173 | + $action = parametre_url($action, _SPIP_PAGE, $script, '&'); |
|
| 2174 | + } |
|
| 2175 | + |
|
| 2176 | + if ($args) { |
|
| 2177 | + if (is_array($args)) { |
|
| 2178 | + $r = ''; |
|
| 2179 | + foreach ($args as $k => $v) { |
|
| 2180 | + $r .= '&' . $k . '=' . $v; |
|
| 2181 | + } |
|
| 2182 | + $args = substr($r, 1); |
|
| 2183 | + } |
|
| 2184 | + $action .= |
|
| 2185 | + (strpos($action, '?') !== false ? '&' : '?') . $args; |
|
| 2186 | + } |
|
| 2187 | + if (!$no_entities) { |
|
| 2188 | + $action = quote_amp($action); |
|
| 2189 | + } |
|
| 2190 | + |
|
| 2191 | + // ne pas generer une url avec /./?page= en cas d'url absolue et de _SPIP_SCRIPT vide |
|
| 2192 | + return ($rel ? _DIR_RACINE . $action : rtrim(url_de_base(), '/') . preg_replace(",^/[.]/,", "/", "/$action")); |
|
| 2194 | 2193 | } |
| 2195 | 2194 | |
| 2196 | 2195 | // https://code.spip.net/@generer_url_prive |
| 2197 | 2196 | function generer_url_prive($script, $args = "", $no_entities = false) { |
| 2198 | 2197 | |
| 2199 | - return generer_url_public($script, $args, $no_entities, false, _DIR_RESTREINT_ABS . 'prive.php'); |
|
| 2198 | + return generer_url_public($script, $args, $no_entities, false, _DIR_RESTREINT_ABS . 'prive.php'); |
|
| 2200 | 2199 | } |
| 2201 | 2200 | |
| 2202 | 2201 | // Pour les formulaires en methode POST, |
@@ -2221,19 +2220,19 @@ discard block |
||
| 2221 | 2220 | **/ |
| 2222 | 2221 | function generer_form_ecrire($script, $corps, $atts = '', $submit = '') { |
| 2223 | 2222 | |
| 2224 | - $script1 = explode('&', $script); |
|
| 2225 | - $script1 = reset($script1); |
|
| 2223 | + $script1 = explode('&', $script); |
|
| 2224 | + $script1 = reset($script1); |
|
| 2226 | 2225 | |
| 2227 | - return "<form action='" |
|
| 2228 | - . ($script ? generer_url_ecrire($script) : '') |
|
| 2229 | - . "' " |
|
| 2230 | - . ($atts ? $atts : " method='post'") |
|
| 2231 | - . "><div>\n" |
|
| 2232 | - . "<input type='hidden' name='exec' value='$script1' />" |
|
| 2233 | - . $corps |
|
| 2234 | - . (!$submit ? '' : |
|
| 2235 | - ("<div style='text-align: " . $GLOBALS['spip_lang_right'] . "'><input class='fondo submit btn' type='submit' value=\"" . entites_html($submit) . "\" /></div>")) |
|
| 2236 | - . "</div></form>\n"; |
|
| 2226 | + return "<form action='" |
|
| 2227 | + . ($script ? generer_url_ecrire($script) : '') |
|
| 2228 | + . "' " |
|
| 2229 | + . ($atts ? $atts : " method='post'") |
|
| 2230 | + . "><div>\n" |
|
| 2231 | + . "<input type='hidden' name='exec' value='$script1' />" |
|
| 2232 | + . $corps |
|
| 2233 | + . (!$submit ? '' : |
|
| 2234 | + ("<div style='text-align: " . $GLOBALS['spip_lang_right'] . "'><input class='fondo submit btn' type='submit' value=\"" . entites_html($submit) . "\" /></div>")) |
|
| 2235 | + . "</div></form>\n"; |
|
| 2237 | 2236 | } |
| 2238 | 2237 | |
| 2239 | 2238 | /** |
@@ -2250,22 +2249,22 @@ discard block |
||
| 2250 | 2249 | * @return string |
| 2251 | 2250 | */ |
| 2252 | 2251 | function generer_form_action($script, $corps, $atts = '', $public = false) { |
| 2253 | - // si l'on est dans l'espace prive, on garde dans l'url |
|
| 2254 | - // l'exec a l'origine de l'action, qui permet de savoir si il est necessaire |
|
| 2255 | - // ou non de proceder a l'authentification (cas typique de l'install par exemple) |
|
| 2256 | - $h = (_DIR_RACINE and !$public) |
|
| 2257 | - ? generer_url_ecrire(_request('exec')) |
|
| 2258 | - : generer_url_public(); |
|
| 2252 | + // si l'on est dans l'espace prive, on garde dans l'url |
|
| 2253 | + // l'exec a l'origine de l'action, qui permet de savoir si il est necessaire |
|
| 2254 | + // ou non de proceder a l'authentification (cas typique de l'install par exemple) |
|
| 2255 | + $h = (_DIR_RACINE and !$public) |
|
| 2256 | + ? generer_url_ecrire(_request('exec')) |
|
| 2257 | + : generer_url_public(); |
|
| 2259 | 2258 | |
| 2260 | - return "\n<form action='" . |
|
| 2261 | - $h . |
|
| 2262 | - "'" . |
|
| 2263 | - $atts . |
|
| 2264 | - ">\n" . |
|
| 2265 | - "<div>" . |
|
| 2266 | - "\n<input type='hidden' name='action' value='$script' />" . |
|
| 2267 | - $corps . |
|
| 2268 | - "</div></form>"; |
|
| 2259 | + return "\n<form action='" . |
|
| 2260 | + $h . |
|
| 2261 | + "'" . |
|
| 2262 | + $atts . |
|
| 2263 | + ">\n" . |
|
| 2264 | + "<div>" . |
|
| 2265 | + "\n<input type='hidden' name='action' value='$script' />" . |
|
| 2266 | + $corps . |
|
| 2267 | + "</div></form>"; |
|
| 2269 | 2268 | } |
| 2270 | 2269 | |
| 2271 | 2270 | /** |
@@ -2284,22 +2283,22 @@ discard block |
||
| 2284 | 2283 | * URL |
| 2285 | 2284 | */ |
| 2286 | 2285 | function generer_url_action($script, $args = "", $no_entities = false, $public = false) { |
| 2287 | - // si l'on est dans l'espace prive, on garde dans l'url |
|
| 2288 | - // l'exec a l'origine de l'action, qui permet de savoir si il est necessaire |
|
| 2289 | - // ou non de proceder a l'authentification (cas typique de l'install par exemple) |
|
| 2290 | - $url = (_DIR_RACINE and !$public) |
|
| 2291 | - ? generer_url_ecrire(_request('exec')) |
|
| 2292 | - : generer_url_public('', '', false, false); |
|
| 2293 | - $url = parametre_url($url, 'action', $script); |
|
| 2294 | - if ($args) { |
|
| 2295 | - $url .= quote_amp('&' . $args); |
|
| 2296 | - } |
|
| 2286 | + // si l'on est dans l'espace prive, on garde dans l'url |
|
| 2287 | + // l'exec a l'origine de l'action, qui permet de savoir si il est necessaire |
|
| 2288 | + // ou non de proceder a l'authentification (cas typique de l'install par exemple) |
|
| 2289 | + $url = (_DIR_RACINE and !$public) |
|
| 2290 | + ? generer_url_ecrire(_request('exec')) |
|
| 2291 | + : generer_url_public('', '', false, false); |
|
| 2292 | + $url = parametre_url($url, 'action', $script); |
|
| 2293 | + if ($args) { |
|
| 2294 | + $url .= quote_amp('&' . $args); |
|
| 2295 | + } |
|
| 2297 | 2296 | |
| 2298 | - if ($no_entities) { |
|
| 2299 | - $url = str_replace('&', '&', $url); |
|
| 2300 | - } |
|
| 2297 | + if ($no_entities) { |
|
| 2298 | + $url = str_replace('&', '&', $url); |
|
| 2299 | + } |
|
| 2301 | 2300 | |
| 2302 | - return $url; |
|
| 2301 | + return $url; |
|
| 2303 | 2302 | } |
| 2304 | 2303 | |
| 2305 | 2304 | |
@@ -2312,8 +2311,8 @@ discard block |
||
| 2312 | 2311 | * @param string $ta Répertoire temporaire accessible |
| 2313 | 2312 | */ |
| 2314 | 2313 | function spip_initialisation($pi = null, $pa = null, $ti = null, $ta = null) { |
| 2315 | - spip_initialisation_core($pi, $pa, $ti, $ta); |
|
| 2316 | - spip_initialisation_suite(); |
|
| 2314 | + spip_initialisation_core($pi, $pa, $ti, $ta); |
|
| 2315 | + spip_initialisation_suite(); |
|
| 2317 | 2316 | } |
| 2318 | 2317 | |
| 2319 | 2318 | /** |
@@ -2333,315 +2332,315 @@ discard block |
||
| 2333 | 2332 | * @param string $ta Répertoire temporaire accessible |
| 2334 | 2333 | */ |
| 2335 | 2334 | function spip_initialisation_core($pi = null, $pa = null, $ti = null, $ta = null) { |
| 2336 | - static $too_late = 0; |
|
| 2337 | - if ($too_late++) { |
|
| 2338 | - return; |
|
| 2339 | - } |
|
| 2340 | - |
|
| 2341 | - // Declaration des repertoires |
|
| 2342 | - |
|
| 2343 | - // le nom du repertoire plugins/ activables/desactivables |
|
| 2344 | - if (!defined('_DIR_PLUGINS')) { |
|
| 2345 | - define('_DIR_PLUGINS', _DIR_RACINE . "plugins/"); |
|
| 2346 | - } |
|
| 2347 | - |
|
| 2348 | - // le nom du repertoire des extensions/ permanentes du core, toujours actives |
|
| 2349 | - if (!defined('_DIR_PLUGINS_DIST')) { |
|
| 2350 | - define('_DIR_PLUGINS_DIST', _DIR_RACINE . "plugins-dist/"); |
|
| 2351 | - } |
|
| 2352 | - |
|
| 2353 | - // le nom du repertoire des librairies |
|
| 2354 | - if (!defined('_DIR_LIB')) { |
|
| 2355 | - define('_DIR_LIB', _DIR_RACINE . "lib/"); |
|
| 2356 | - } |
|
| 2357 | - |
|
| 2358 | - if (!defined('_DIR_IMG')) { |
|
| 2359 | - define('_DIR_IMG', $pa); |
|
| 2360 | - } |
|
| 2361 | - if (!defined('_DIR_LOGOS')) { |
|
| 2362 | - define('_DIR_LOGOS', $pa); |
|
| 2363 | - } |
|
| 2364 | - if (!defined('_DIR_IMG_ICONES')) { |
|
| 2365 | - define('_DIR_IMG_ICONES', _DIR_LOGOS . "icones/"); |
|
| 2366 | - } |
|
| 2367 | - |
|
| 2368 | - if (!defined('_DIR_DUMP')) { |
|
| 2369 | - define('_DIR_DUMP', $ti . "dump/"); |
|
| 2370 | - } |
|
| 2371 | - if (!defined('_DIR_SESSIONS')) { |
|
| 2372 | - define('_DIR_SESSIONS', $ti . "sessions/"); |
|
| 2373 | - } |
|
| 2374 | - if (!defined('_DIR_TRANSFERT')) { |
|
| 2375 | - define('_DIR_TRANSFERT', $ti . "upload/"); |
|
| 2376 | - } |
|
| 2377 | - if (!defined('_DIR_CACHE')) { |
|
| 2378 | - define('_DIR_CACHE', $ti . "cache/"); |
|
| 2379 | - } |
|
| 2380 | - if (!defined('_DIR_CACHE_XML')) { |
|
| 2381 | - define('_DIR_CACHE_XML', _DIR_CACHE . "xml/"); |
|
| 2382 | - } |
|
| 2383 | - if (!defined('_DIR_SKELS')) { |
|
| 2384 | - define('_DIR_SKELS', _DIR_CACHE . "skel/"); |
|
| 2385 | - } |
|
| 2386 | - if (!defined('_DIR_AIDE')) { |
|
| 2387 | - define('_DIR_AIDE', _DIR_CACHE . "aide/"); |
|
| 2388 | - } |
|
| 2389 | - if (!defined('_DIR_TMP')) { |
|
| 2390 | - define('_DIR_TMP', $ti); |
|
| 2391 | - } |
|
| 2392 | - |
|
| 2393 | - if (!defined('_DIR_VAR')) { |
|
| 2394 | - define('_DIR_VAR', $ta); |
|
| 2395 | - } |
|
| 2396 | - |
|
| 2397 | - if (!defined('_DIR_ETC')) { |
|
| 2398 | - define('_DIR_ETC', $pi); |
|
| 2399 | - } |
|
| 2400 | - if (!defined('_DIR_CONNECT')) { |
|
| 2401 | - define('_DIR_CONNECT', $pi); |
|
| 2402 | - } |
|
| 2403 | - if (!defined('_DIR_CHMOD')) { |
|
| 2404 | - define('_DIR_CHMOD', $pi); |
|
| 2405 | - } |
|
| 2406 | - |
|
| 2407 | - if (!isset($GLOBALS['test_dirs'])) |
|
| 2408 | - // Pas $pi car il est bon de le mettre hors ecriture apres intstall |
|
| 2409 | - // il sera rajoute automatiquement si besoin a l'etape 2 de l'install |
|
| 2410 | - { |
|
| 2411 | - $GLOBALS['test_dirs'] = array($pa, $ti, $ta); |
|
| 2412 | - } |
|
| 2413 | - |
|
| 2414 | - // Declaration des fichiers |
|
| 2415 | - |
|
| 2416 | - if (!defined('_CACHE_PLUGINS_PATH')) { |
|
| 2417 | - define('_CACHE_PLUGINS_PATH', _DIR_CACHE . "charger_plugins_chemins.php"); |
|
| 2418 | - } |
|
| 2419 | - if (!defined('_CACHE_PLUGINS_OPT')) { |
|
| 2420 | - define('_CACHE_PLUGINS_OPT', _DIR_CACHE . "charger_plugins_options.php"); |
|
| 2421 | - } |
|
| 2422 | - if (!defined('_CACHE_PLUGINS_FCT')) { |
|
| 2423 | - define('_CACHE_PLUGINS_FCT', _DIR_CACHE . "charger_plugins_fonctions.php"); |
|
| 2424 | - } |
|
| 2425 | - if (!defined('_CACHE_PIPELINES')) { |
|
| 2426 | - define('_CACHE_PIPELINES', _DIR_CACHE . "charger_pipelines.php"); |
|
| 2427 | - } |
|
| 2428 | - if (!defined('_CACHE_CHEMIN')) { |
|
| 2429 | - define('_CACHE_CHEMIN', _DIR_CACHE . "chemin.txt"); |
|
| 2430 | - } |
|
| 2431 | - |
|
| 2432 | - # attention .php obligatoire pour ecrire_fichier_securise |
|
| 2433 | - if (!defined('_FILE_META')) { |
|
| 2434 | - define('_FILE_META', $ti . 'meta_cache.php'); |
|
| 2435 | - } |
|
| 2436 | - if (!defined('_DIR_LOG')) { |
|
| 2437 | - define('_DIR_LOG', _DIR_TMP . 'log/'); |
|
| 2438 | - } |
|
| 2439 | - if (!defined('_FILE_LOG')) { |
|
| 2440 | - define('_FILE_LOG', 'spip'); |
|
| 2441 | - } |
|
| 2442 | - if (!defined('_FILE_LOG_SUFFIX')) { |
|
| 2443 | - define('_FILE_LOG_SUFFIX', '.log'); |
|
| 2444 | - } |
|
| 2445 | - |
|
| 2446 | - // Le fichier de connexion a la base de donnees |
|
| 2447 | - // tient compte des anciennes versions (inc_connect...) |
|
| 2448 | - if (!defined('_FILE_CONNECT_INS')) { |
|
| 2449 | - define('_FILE_CONNECT_INS', 'connect'); |
|
| 2450 | - } |
|
| 2451 | - if (!defined('_FILE_CONNECT')) { |
|
| 2452 | - define('_FILE_CONNECT', |
|
| 2453 | - (@is_readable($f = _DIR_CONNECT . _FILE_CONNECT_INS . '.php') ? $f |
|
| 2454 | - : (@is_readable($f = _DIR_RESTREINT . 'inc_connect.php') ? $f |
|
| 2455 | - : false))); |
|
| 2456 | - } |
|
| 2457 | - |
|
| 2458 | - // Le fichier de reglages des droits |
|
| 2459 | - if (!defined('_FILE_CHMOD_INS')) { |
|
| 2460 | - define('_FILE_CHMOD_INS', 'chmod'); |
|
| 2461 | - } |
|
| 2462 | - if (!defined('_FILE_CHMOD')) { |
|
| 2463 | - define('_FILE_CHMOD', |
|
| 2464 | - (@is_readable($f = _DIR_CHMOD . _FILE_CHMOD_INS . '.php') ? $f |
|
| 2465 | - : false)); |
|
| 2466 | - } |
|
| 2467 | - |
|
| 2468 | - if (!defined('_FILE_LDAP')) { |
|
| 2469 | - define('_FILE_LDAP', 'ldap.php'); |
|
| 2470 | - } |
|
| 2471 | - |
|
| 2472 | - if (!defined('_FILE_TMP_SUFFIX')) { |
|
| 2473 | - define('_FILE_TMP_SUFFIX', '.tmp.php'); |
|
| 2474 | - } |
|
| 2475 | - if (!defined('_FILE_CONNECT_TMP')) { |
|
| 2476 | - define('_FILE_CONNECT_TMP', _DIR_CONNECT . _FILE_CONNECT_INS . _FILE_TMP_SUFFIX); |
|
| 2477 | - } |
|
| 2478 | - if (!defined('_FILE_CHMOD_TMP')) { |
|
| 2479 | - define('_FILE_CHMOD_TMP', _DIR_CHMOD . _FILE_CHMOD_INS . _FILE_TMP_SUFFIX); |
|
| 2480 | - } |
|
| 2481 | - |
|
| 2482 | - // Definition des droits d'acces en ecriture |
|
| 2483 | - if (!defined('_SPIP_CHMOD') and _FILE_CHMOD) { |
|
| 2484 | - include_once _FILE_CHMOD; |
|
| 2485 | - } |
|
| 2486 | - |
|
| 2487 | - // Se mefier des fichiers mal remplis! |
|
| 2488 | - if (!defined('_SPIP_CHMOD')) { |
|
| 2489 | - define('_SPIP_CHMOD', 0777); |
|
| 2490 | - } |
|
| 2491 | - |
|
| 2492 | - if (!defined('_DEFAULT_CHARSET')) { |
|
| 2493 | - /** Le charset par défaut lors de l'installation */ |
|
| 2494 | - define('_DEFAULT_CHARSET', 'utf-8'); |
|
| 2495 | - } |
|
| 2496 | - if (!defined('_ROOT_PLUGINS')) { |
|
| 2497 | - define('_ROOT_PLUGINS', _ROOT_RACINE . "plugins/"); |
|
| 2498 | - } |
|
| 2499 | - if (!defined('_ROOT_PLUGINS_DIST')) { |
|
| 2500 | - define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . "plugins-dist/"); |
|
| 2501 | - } |
|
| 2502 | - if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) { |
|
| 2503 | - define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE, '', _DIR_PLUGINS_SUPPL)); |
|
| 2504 | - } |
|
| 2505 | - |
|
| 2506 | - // La taille des Log |
|
| 2507 | - if (!defined('_MAX_LOG')) { |
|
| 2508 | - define('_MAX_LOG', 100); |
|
| 2509 | - } |
|
| 2510 | - |
|
| 2511 | - // Sommes-nous dans l'empire du Mal ? |
|
| 2512 | - // (ou sous le signe du Pingouin, ascendant GNU ?) |
|
| 2513 | - if (isset($_SERVER['SERVER_SOFTWARE']) and strpos($_SERVER['SERVER_SOFTWARE'], '(Win') !== false) { |
|
| 2514 | - if (!defined('_OS_SERVEUR')) { |
|
| 2515 | - define('_OS_SERVEUR', 'windows'); |
|
| 2516 | - } |
|
| 2517 | - if (!defined('_SPIP_LOCK_MODE')) { |
|
| 2518 | - define('_SPIP_LOCK_MODE', 1); |
|
| 2519 | - } // utiliser le flock php |
|
| 2520 | - } else { |
|
| 2521 | - if (!defined('_OS_SERVEUR')) { |
|
| 2522 | - define('_OS_SERVEUR', ''); |
|
| 2523 | - } |
|
| 2524 | - if (!defined('_SPIP_LOCK_MODE')) { |
|
| 2525 | - define('_SPIP_LOCK_MODE', 1); |
|
| 2526 | - } // utiliser le flock php |
|
| 2527 | - #if (!defined('_SPIP_LOCK_MODE')) define('_SPIP_LOCK_MODE',2); // utiliser le nfslock de spip mais link() est tres souvent interdite |
|
| 2528 | - } |
|
| 2529 | - |
|
| 2530 | - // Langue par defaut |
|
| 2531 | - if (!defined('_LANGUE_PAR_DEFAUT')) { |
|
| 2532 | - define('_LANGUE_PAR_DEFAUT', 'fr'); |
|
| 2533 | - } |
|
| 2534 | - |
|
| 2535 | - // |
|
| 2536 | - // Module de lecture/ecriture/suppression de fichiers utilisant flock() |
|
| 2537 | - // (non surchargeable en l'etat ; attention si on utilise include_spip() |
|
| 2538 | - // pour le rendre surchargeable, on va provoquer un reecriture |
|
| 2539 | - // systematique du noyau ou une baisse de perfs => a etudier) |
|
| 2540 | - include_once _ROOT_RESTREINT . 'inc/flock.php'; |
|
| 2541 | - |
|
| 2542 | - // charger tout de suite le path et son cache |
|
| 2543 | - load_path_cache(); |
|
| 2544 | - |
|
| 2545 | - // *********** traiter les variables ************ |
|
| 2546 | - |
|
| 2547 | - // |
|
| 2548 | - // Securite |
|
| 2549 | - // |
|
| 2550 | - |
|
| 2551 | - // Ne pas se faire manger par un bug php qui accepte ?GLOBALS[truc]=toto |
|
| 2552 | - if (isset($_REQUEST['GLOBALS'])) { |
|
| 2553 | - die(); |
|
| 2554 | - } |
|
| 2555 | - // nettoyer les magic quotes \' et les caracteres nuls %00 |
|
| 2556 | - spip_desinfecte($_GET); |
|
| 2557 | - spip_desinfecte($_POST); |
|
| 2558 | - spip_desinfecte($_COOKIE); |
|
| 2559 | - spip_desinfecte($_REQUEST); |
|
| 2560 | - |
|
| 2561 | - // appliquer le cookie_prefix |
|
| 2562 | - if ($GLOBALS['cookie_prefix'] != 'spip') { |
|
| 2563 | - include_spip('inc/cookie'); |
|
| 2564 | - recuperer_cookies_spip($GLOBALS['cookie_prefix']); |
|
| 2565 | - } |
|
| 2566 | - |
|
| 2567 | - // |
|
| 2568 | - // Capacites php (en fonction de la version) |
|
| 2569 | - // |
|
| 2570 | - $GLOBALS['flag_ob'] = (function_exists("ob_start") |
|
| 2571 | - && function_exists("ini_get") |
|
| 2572 | - && !strstr(@ini_get('disable_functions'), 'ob_')); |
|
| 2573 | - $GLOBALS['flag_sapi_name'] = function_exists("php_sapi_name"); |
|
| 2574 | - $GLOBALS['flag_get_cfg_var'] = (@get_cfg_var('error_reporting') != ""); |
|
| 2575 | - $GLOBALS['flag_upload'] = (!$GLOBALS['flag_get_cfg_var'] || |
|
| 2576 | - (get_cfg_var('upload_max_filesize') > 0)); |
|
| 2577 | - |
|
| 2578 | - |
|
| 2579 | - // Compatibilite avec serveurs ne fournissant pas $REQUEST_URI |
|
| 2580 | - if (isset($_SERVER['REQUEST_URI'])) { |
|
| 2581 | - $GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI']; |
|
| 2582 | - } else { |
|
| 2583 | - $GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : ''; |
|
| 2584 | - if (!empty($_SERVER['QUERY_STRING']) |
|
| 2585 | - and !strpos($_SERVER['REQUEST_URI'], '?') |
|
| 2586 | - ) { |
|
| 2587 | - $GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING']; |
|
| 2588 | - } |
|
| 2589 | - } |
|
| 2590 | - |
|
| 2591 | - // Duree de validite de l'alea pour les cookies et ce qui s'ensuit. |
|
| 2592 | - if (!defined('_RENOUVELLE_ALEA')) { |
|
| 2593 | - define('_RENOUVELLE_ALEA', 12 * 3600); |
|
| 2594 | - } |
|
| 2595 | - if (!defined('_DUREE_COOKIE_ADMIN')) { |
|
| 2596 | - define('_DUREE_COOKIE_ADMIN', 14 * 24 * 3600); |
|
| 2597 | - } |
|
| 2598 | - |
|
| 2599 | - // charger les meta si possible et renouveller l'alea au besoin |
|
| 2600 | - // charge aussi effacer_meta et ecrire_meta |
|
| 2601 | - $inc_meta = charger_fonction('meta', 'inc'); |
|
| 2602 | - $inc_meta(); |
|
| 2603 | - |
|
| 2604 | - // nombre de repertoires depuis la racine |
|
| 2605 | - // on compare a l'adresse de spip.php : $_SERVER["SCRIPT_NAME"] |
|
| 2606 | - // ou a defaut celle donnee en meta ; (mais si celle-ci est fausse |
|
| 2607 | - // le calcul est faux) |
|
| 2608 | - if (!_DIR_RESTREINT) { |
|
| 2609 | - $GLOBALS['profondeur_url'] = 1; |
|
| 2610 | - } else { |
|
| 2611 | - $uri = isset($_SERVER['REQUEST_URI']) ? explode('?', $_SERVER['REQUEST_URI']) : ''; |
|
| 2612 | - $uri_ref = $_SERVER["SCRIPT_NAME"]; |
|
| 2613 | - if (!$uri_ref |
|
| 2614 | - // si on est appele avec un autre ti, on est sans doute en mutu |
|
| 2615 | - // si jamais c'est de la mutu avec sous rep, on est perdu si on se fie |
|
| 2616 | - // a spip.php qui est a la racine du spip, et vue qu'on sait pas se reperer |
|
| 2617 | - // s'en remettre a l'adresse du site. alea jacta est. |
|
| 2618 | - or $ti !== _NOM_TEMPORAIRES_INACCESSIBLES |
|
| 2619 | - ) { |
|
| 2620 | - |
|
| 2621 | - if (isset($GLOBALS['meta']['adresse_site'])) { |
|
| 2622 | - $uri_ref = parse_url($GLOBALS['meta']['adresse_site']); |
|
| 2623 | - $uri_ref = (isset($uri_ref['path']) ? $uri_ref['path'] : '') . '/'; |
|
| 2624 | - } else { |
|
| 2625 | - $uri_ref = ""; |
|
| 2626 | - } |
|
| 2627 | - } |
|
| 2628 | - if (!$uri or !$uri_ref) { |
|
| 2629 | - $GLOBALS['profondeur_url'] = 0; |
|
| 2630 | - } else { |
|
| 2631 | - $GLOBALS['profondeur_url'] = max(0, |
|
| 2632 | - substr_count($uri[0], '/') |
|
| 2633 | - - substr_count($uri_ref, '/')); |
|
| 2634 | - } |
|
| 2635 | - } |
|
| 2636 | - // s'il y a un cookie ou PHP_AUTH, initialiser visiteur_session |
|
| 2637 | - if (_FILE_CONNECT) { |
|
| 2638 | - if (verifier_visiteur() == '0minirezo' |
|
| 2639 | - // si c'est un admin sans cookie admin, il faut ignorer le cache chemin ! |
|
| 2640 | - and !isset($_COOKIE['spip_admin']) |
|
| 2641 | - ) { |
|
| 2642 | - clear_path_cache(); |
|
| 2643 | - } |
|
| 2644 | - } |
|
| 2335 | + static $too_late = 0; |
|
| 2336 | + if ($too_late++) { |
|
| 2337 | + return; |
|
| 2338 | + } |
|
| 2339 | + |
|
| 2340 | + // Declaration des repertoires |
|
| 2341 | + |
|
| 2342 | + // le nom du repertoire plugins/ activables/desactivables |
|
| 2343 | + if (!defined('_DIR_PLUGINS')) { |
|
| 2344 | + define('_DIR_PLUGINS', _DIR_RACINE . "plugins/"); |
|
| 2345 | + } |
|
| 2346 | + |
|
| 2347 | + // le nom du repertoire des extensions/ permanentes du core, toujours actives |
|
| 2348 | + if (!defined('_DIR_PLUGINS_DIST')) { |
|
| 2349 | + define('_DIR_PLUGINS_DIST', _DIR_RACINE . "plugins-dist/"); |
|
| 2350 | + } |
|
| 2351 | + |
|
| 2352 | + // le nom du repertoire des librairies |
|
| 2353 | + if (!defined('_DIR_LIB')) { |
|
| 2354 | + define('_DIR_LIB', _DIR_RACINE . "lib/"); |
|
| 2355 | + } |
|
| 2356 | + |
|
| 2357 | + if (!defined('_DIR_IMG')) { |
|
| 2358 | + define('_DIR_IMG', $pa); |
|
| 2359 | + } |
|
| 2360 | + if (!defined('_DIR_LOGOS')) { |
|
| 2361 | + define('_DIR_LOGOS', $pa); |
|
| 2362 | + } |
|
| 2363 | + if (!defined('_DIR_IMG_ICONES')) { |
|
| 2364 | + define('_DIR_IMG_ICONES', _DIR_LOGOS . "icones/"); |
|
| 2365 | + } |
|
| 2366 | + |
|
| 2367 | + if (!defined('_DIR_DUMP')) { |
|
| 2368 | + define('_DIR_DUMP', $ti . "dump/"); |
|
| 2369 | + } |
|
| 2370 | + if (!defined('_DIR_SESSIONS')) { |
|
| 2371 | + define('_DIR_SESSIONS', $ti . "sessions/"); |
|
| 2372 | + } |
|
| 2373 | + if (!defined('_DIR_TRANSFERT')) { |
|
| 2374 | + define('_DIR_TRANSFERT', $ti . "upload/"); |
|
| 2375 | + } |
|
| 2376 | + if (!defined('_DIR_CACHE')) { |
|
| 2377 | + define('_DIR_CACHE', $ti . "cache/"); |
|
| 2378 | + } |
|
| 2379 | + if (!defined('_DIR_CACHE_XML')) { |
|
| 2380 | + define('_DIR_CACHE_XML', _DIR_CACHE . "xml/"); |
|
| 2381 | + } |
|
| 2382 | + if (!defined('_DIR_SKELS')) { |
|
| 2383 | + define('_DIR_SKELS', _DIR_CACHE . "skel/"); |
|
| 2384 | + } |
|
| 2385 | + if (!defined('_DIR_AIDE')) { |
|
| 2386 | + define('_DIR_AIDE', _DIR_CACHE . "aide/"); |
|
| 2387 | + } |
|
| 2388 | + if (!defined('_DIR_TMP')) { |
|
| 2389 | + define('_DIR_TMP', $ti); |
|
| 2390 | + } |
|
| 2391 | + |
|
| 2392 | + if (!defined('_DIR_VAR')) { |
|
| 2393 | + define('_DIR_VAR', $ta); |
|
| 2394 | + } |
|
| 2395 | + |
|
| 2396 | + if (!defined('_DIR_ETC')) { |
|
| 2397 | + define('_DIR_ETC', $pi); |
|
| 2398 | + } |
|
| 2399 | + if (!defined('_DIR_CONNECT')) { |
|
| 2400 | + define('_DIR_CONNECT', $pi); |
|
| 2401 | + } |
|
| 2402 | + if (!defined('_DIR_CHMOD')) { |
|
| 2403 | + define('_DIR_CHMOD', $pi); |
|
| 2404 | + } |
|
| 2405 | + |
|
| 2406 | + if (!isset($GLOBALS['test_dirs'])) |
|
| 2407 | + // Pas $pi car il est bon de le mettre hors ecriture apres intstall |
|
| 2408 | + // il sera rajoute automatiquement si besoin a l'etape 2 de l'install |
|
| 2409 | + { |
|
| 2410 | + $GLOBALS['test_dirs'] = array($pa, $ti, $ta); |
|
| 2411 | + } |
|
| 2412 | + |
|
| 2413 | + // Declaration des fichiers |
|
| 2414 | + |
|
| 2415 | + if (!defined('_CACHE_PLUGINS_PATH')) { |
|
| 2416 | + define('_CACHE_PLUGINS_PATH', _DIR_CACHE . "charger_plugins_chemins.php"); |
|
| 2417 | + } |
|
| 2418 | + if (!defined('_CACHE_PLUGINS_OPT')) { |
|
| 2419 | + define('_CACHE_PLUGINS_OPT', _DIR_CACHE . "charger_plugins_options.php"); |
|
| 2420 | + } |
|
| 2421 | + if (!defined('_CACHE_PLUGINS_FCT')) { |
|
| 2422 | + define('_CACHE_PLUGINS_FCT', _DIR_CACHE . "charger_plugins_fonctions.php"); |
|
| 2423 | + } |
|
| 2424 | + if (!defined('_CACHE_PIPELINES')) { |
|
| 2425 | + define('_CACHE_PIPELINES', _DIR_CACHE . "charger_pipelines.php"); |
|
| 2426 | + } |
|
| 2427 | + if (!defined('_CACHE_CHEMIN')) { |
|
| 2428 | + define('_CACHE_CHEMIN', _DIR_CACHE . "chemin.txt"); |
|
| 2429 | + } |
|
| 2430 | + |
|
| 2431 | + # attention .php obligatoire pour ecrire_fichier_securise |
|
| 2432 | + if (!defined('_FILE_META')) { |
|
| 2433 | + define('_FILE_META', $ti . 'meta_cache.php'); |
|
| 2434 | + } |
|
| 2435 | + if (!defined('_DIR_LOG')) { |
|
| 2436 | + define('_DIR_LOG', _DIR_TMP . 'log/'); |
|
| 2437 | + } |
|
| 2438 | + if (!defined('_FILE_LOG')) { |
|
| 2439 | + define('_FILE_LOG', 'spip'); |
|
| 2440 | + } |
|
| 2441 | + if (!defined('_FILE_LOG_SUFFIX')) { |
|
| 2442 | + define('_FILE_LOG_SUFFIX', '.log'); |
|
| 2443 | + } |
|
| 2444 | + |
|
| 2445 | + // Le fichier de connexion a la base de donnees |
|
| 2446 | + // tient compte des anciennes versions (inc_connect...) |
|
| 2447 | + if (!defined('_FILE_CONNECT_INS')) { |
|
| 2448 | + define('_FILE_CONNECT_INS', 'connect'); |
|
| 2449 | + } |
|
| 2450 | + if (!defined('_FILE_CONNECT')) { |
|
| 2451 | + define('_FILE_CONNECT', |
|
| 2452 | + (@is_readable($f = _DIR_CONNECT . _FILE_CONNECT_INS . '.php') ? $f |
|
| 2453 | + : (@is_readable($f = _DIR_RESTREINT . 'inc_connect.php') ? $f |
|
| 2454 | + : false))); |
|
| 2455 | + } |
|
| 2456 | + |
|
| 2457 | + // Le fichier de reglages des droits |
|
| 2458 | + if (!defined('_FILE_CHMOD_INS')) { |
|
| 2459 | + define('_FILE_CHMOD_INS', 'chmod'); |
|
| 2460 | + } |
|
| 2461 | + if (!defined('_FILE_CHMOD')) { |
|
| 2462 | + define('_FILE_CHMOD', |
|
| 2463 | + (@is_readable($f = _DIR_CHMOD . _FILE_CHMOD_INS . '.php') ? $f |
|
| 2464 | + : false)); |
|
| 2465 | + } |
|
| 2466 | + |
|
| 2467 | + if (!defined('_FILE_LDAP')) { |
|
| 2468 | + define('_FILE_LDAP', 'ldap.php'); |
|
| 2469 | + } |
|
| 2470 | + |
|
| 2471 | + if (!defined('_FILE_TMP_SUFFIX')) { |
|
| 2472 | + define('_FILE_TMP_SUFFIX', '.tmp.php'); |
|
| 2473 | + } |
|
| 2474 | + if (!defined('_FILE_CONNECT_TMP')) { |
|
| 2475 | + define('_FILE_CONNECT_TMP', _DIR_CONNECT . _FILE_CONNECT_INS . _FILE_TMP_SUFFIX); |
|
| 2476 | + } |
|
| 2477 | + if (!defined('_FILE_CHMOD_TMP')) { |
|
| 2478 | + define('_FILE_CHMOD_TMP', _DIR_CHMOD . _FILE_CHMOD_INS . _FILE_TMP_SUFFIX); |
|
| 2479 | + } |
|
| 2480 | + |
|
| 2481 | + // Definition des droits d'acces en ecriture |
|
| 2482 | + if (!defined('_SPIP_CHMOD') and _FILE_CHMOD) { |
|
| 2483 | + include_once _FILE_CHMOD; |
|
| 2484 | + } |
|
| 2485 | + |
|
| 2486 | + // Se mefier des fichiers mal remplis! |
|
| 2487 | + if (!defined('_SPIP_CHMOD')) { |
|
| 2488 | + define('_SPIP_CHMOD', 0777); |
|
| 2489 | + } |
|
| 2490 | + |
|
| 2491 | + if (!defined('_DEFAULT_CHARSET')) { |
|
| 2492 | + /** Le charset par défaut lors de l'installation */ |
|
| 2493 | + define('_DEFAULT_CHARSET', 'utf-8'); |
|
| 2494 | + } |
|
| 2495 | + if (!defined('_ROOT_PLUGINS')) { |
|
| 2496 | + define('_ROOT_PLUGINS', _ROOT_RACINE . "plugins/"); |
|
| 2497 | + } |
|
| 2498 | + if (!defined('_ROOT_PLUGINS_DIST')) { |
|
| 2499 | + define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . "plugins-dist/"); |
|
| 2500 | + } |
|
| 2501 | + if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) { |
|
| 2502 | + define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE, '', _DIR_PLUGINS_SUPPL)); |
|
| 2503 | + } |
|
| 2504 | + |
|
| 2505 | + // La taille des Log |
|
| 2506 | + if (!defined('_MAX_LOG')) { |
|
| 2507 | + define('_MAX_LOG', 100); |
|
| 2508 | + } |
|
| 2509 | + |
|
| 2510 | + // Sommes-nous dans l'empire du Mal ? |
|
| 2511 | + // (ou sous le signe du Pingouin, ascendant GNU ?) |
|
| 2512 | + if (isset($_SERVER['SERVER_SOFTWARE']) and strpos($_SERVER['SERVER_SOFTWARE'], '(Win') !== false) { |
|
| 2513 | + if (!defined('_OS_SERVEUR')) { |
|
| 2514 | + define('_OS_SERVEUR', 'windows'); |
|
| 2515 | + } |
|
| 2516 | + if (!defined('_SPIP_LOCK_MODE')) { |
|
| 2517 | + define('_SPIP_LOCK_MODE', 1); |
|
| 2518 | + } // utiliser le flock php |
|
| 2519 | + } else { |
|
| 2520 | + if (!defined('_OS_SERVEUR')) { |
|
| 2521 | + define('_OS_SERVEUR', ''); |
|
| 2522 | + } |
|
| 2523 | + if (!defined('_SPIP_LOCK_MODE')) { |
|
| 2524 | + define('_SPIP_LOCK_MODE', 1); |
|
| 2525 | + } // utiliser le flock php |
|
| 2526 | + #if (!defined('_SPIP_LOCK_MODE')) define('_SPIP_LOCK_MODE',2); // utiliser le nfslock de spip mais link() est tres souvent interdite |
|
| 2527 | + } |
|
| 2528 | + |
|
| 2529 | + // Langue par defaut |
|
| 2530 | + if (!defined('_LANGUE_PAR_DEFAUT')) { |
|
| 2531 | + define('_LANGUE_PAR_DEFAUT', 'fr'); |
|
| 2532 | + } |
|
| 2533 | + |
|
| 2534 | + // |
|
| 2535 | + // Module de lecture/ecriture/suppression de fichiers utilisant flock() |
|
| 2536 | + // (non surchargeable en l'etat ; attention si on utilise include_spip() |
|
| 2537 | + // pour le rendre surchargeable, on va provoquer un reecriture |
|
| 2538 | + // systematique du noyau ou une baisse de perfs => a etudier) |
|
| 2539 | + include_once _ROOT_RESTREINT . 'inc/flock.php'; |
|
| 2540 | + |
|
| 2541 | + // charger tout de suite le path et son cache |
|
| 2542 | + load_path_cache(); |
|
| 2543 | + |
|
| 2544 | + // *********** traiter les variables ************ |
|
| 2545 | + |
|
| 2546 | + // |
|
| 2547 | + // Securite |
|
| 2548 | + // |
|
| 2549 | + |
|
| 2550 | + // Ne pas se faire manger par un bug php qui accepte ?GLOBALS[truc]=toto |
|
| 2551 | + if (isset($_REQUEST['GLOBALS'])) { |
|
| 2552 | + die(); |
|
| 2553 | + } |
|
| 2554 | + // nettoyer les magic quotes \' et les caracteres nuls %00 |
|
| 2555 | + spip_desinfecte($_GET); |
|
| 2556 | + spip_desinfecte($_POST); |
|
| 2557 | + spip_desinfecte($_COOKIE); |
|
| 2558 | + spip_desinfecte($_REQUEST); |
|
| 2559 | + |
|
| 2560 | + // appliquer le cookie_prefix |
|
| 2561 | + if ($GLOBALS['cookie_prefix'] != 'spip') { |
|
| 2562 | + include_spip('inc/cookie'); |
|
| 2563 | + recuperer_cookies_spip($GLOBALS['cookie_prefix']); |
|
| 2564 | + } |
|
| 2565 | + |
|
| 2566 | + // |
|
| 2567 | + // Capacites php (en fonction de la version) |
|
| 2568 | + // |
|
| 2569 | + $GLOBALS['flag_ob'] = (function_exists("ob_start") |
|
| 2570 | + && function_exists("ini_get") |
|
| 2571 | + && !strstr(@ini_get('disable_functions'), 'ob_')); |
|
| 2572 | + $GLOBALS['flag_sapi_name'] = function_exists("php_sapi_name"); |
|
| 2573 | + $GLOBALS['flag_get_cfg_var'] = (@get_cfg_var('error_reporting') != ""); |
|
| 2574 | + $GLOBALS['flag_upload'] = (!$GLOBALS['flag_get_cfg_var'] || |
|
| 2575 | + (get_cfg_var('upload_max_filesize') > 0)); |
|
| 2576 | + |
|
| 2577 | + |
|
| 2578 | + // Compatibilite avec serveurs ne fournissant pas $REQUEST_URI |
|
| 2579 | + if (isset($_SERVER['REQUEST_URI'])) { |
|
| 2580 | + $GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI']; |
|
| 2581 | + } else { |
|
| 2582 | + $GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : ''; |
|
| 2583 | + if (!empty($_SERVER['QUERY_STRING']) |
|
| 2584 | + and !strpos($_SERVER['REQUEST_URI'], '?') |
|
| 2585 | + ) { |
|
| 2586 | + $GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING']; |
|
| 2587 | + } |
|
| 2588 | + } |
|
| 2589 | + |
|
| 2590 | + // Duree de validite de l'alea pour les cookies et ce qui s'ensuit. |
|
| 2591 | + if (!defined('_RENOUVELLE_ALEA')) { |
|
| 2592 | + define('_RENOUVELLE_ALEA', 12 * 3600); |
|
| 2593 | + } |
|
| 2594 | + if (!defined('_DUREE_COOKIE_ADMIN')) { |
|
| 2595 | + define('_DUREE_COOKIE_ADMIN', 14 * 24 * 3600); |
|
| 2596 | + } |
|
| 2597 | + |
|
| 2598 | + // charger les meta si possible et renouveller l'alea au besoin |
|
| 2599 | + // charge aussi effacer_meta et ecrire_meta |
|
| 2600 | + $inc_meta = charger_fonction('meta', 'inc'); |
|
| 2601 | + $inc_meta(); |
|
| 2602 | + |
|
| 2603 | + // nombre de repertoires depuis la racine |
|
| 2604 | + // on compare a l'adresse de spip.php : $_SERVER["SCRIPT_NAME"] |
|
| 2605 | + // ou a defaut celle donnee en meta ; (mais si celle-ci est fausse |
|
| 2606 | + // le calcul est faux) |
|
| 2607 | + if (!_DIR_RESTREINT) { |
|
| 2608 | + $GLOBALS['profondeur_url'] = 1; |
|
| 2609 | + } else { |
|
| 2610 | + $uri = isset($_SERVER['REQUEST_URI']) ? explode('?', $_SERVER['REQUEST_URI']) : ''; |
|
| 2611 | + $uri_ref = $_SERVER["SCRIPT_NAME"]; |
|
| 2612 | + if (!$uri_ref |
|
| 2613 | + // si on est appele avec un autre ti, on est sans doute en mutu |
|
| 2614 | + // si jamais c'est de la mutu avec sous rep, on est perdu si on se fie |
|
| 2615 | + // a spip.php qui est a la racine du spip, et vue qu'on sait pas se reperer |
|
| 2616 | + // s'en remettre a l'adresse du site. alea jacta est. |
|
| 2617 | + or $ti !== _NOM_TEMPORAIRES_INACCESSIBLES |
|
| 2618 | + ) { |
|
| 2619 | + |
|
| 2620 | + if (isset($GLOBALS['meta']['adresse_site'])) { |
|
| 2621 | + $uri_ref = parse_url($GLOBALS['meta']['adresse_site']); |
|
| 2622 | + $uri_ref = (isset($uri_ref['path']) ? $uri_ref['path'] : '') . '/'; |
|
| 2623 | + } else { |
|
| 2624 | + $uri_ref = ""; |
|
| 2625 | + } |
|
| 2626 | + } |
|
| 2627 | + if (!$uri or !$uri_ref) { |
|
| 2628 | + $GLOBALS['profondeur_url'] = 0; |
|
| 2629 | + } else { |
|
| 2630 | + $GLOBALS['profondeur_url'] = max(0, |
|
| 2631 | + substr_count($uri[0], '/') |
|
| 2632 | + - substr_count($uri_ref, '/')); |
|
| 2633 | + } |
|
| 2634 | + } |
|
| 2635 | + // s'il y a un cookie ou PHP_AUTH, initialiser visiteur_session |
|
| 2636 | + if (_FILE_CONNECT) { |
|
| 2637 | + if (verifier_visiteur() == '0minirezo' |
|
| 2638 | + // si c'est un admin sans cookie admin, il faut ignorer le cache chemin ! |
|
| 2639 | + and !isset($_COOKIE['spip_admin']) |
|
| 2640 | + ) { |
|
| 2641 | + clear_path_cache(); |
|
| 2642 | + } |
|
| 2643 | + } |
|
| 2645 | 2644 | |
| 2646 | 2645 | } |
| 2647 | 2646 | |
@@ -2651,181 +2650,181 @@ discard block |
||
| 2651 | 2650 | * |
| 2652 | 2651 | */ |
| 2653 | 2652 | function spip_initialisation_suite() { |
| 2654 | - static $too_late = 0; |
|
| 2655 | - if ($too_late++) { |
|
| 2656 | - return; |
|
| 2657 | - } |
|
| 2658 | - |
|
| 2659 | - // taille mini des login |
|
| 2660 | - if (!defined('_LOGIN_TROP_COURT')) { |
|
| 2661 | - define('_LOGIN_TROP_COURT', 4); |
|
| 2662 | - } |
|
| 2663 | - |
|
| 2664 | - // la taille maxi des logos (0 : pas de limite) (pas de define par defaut, ce n'est pas utile) |
|
| 2665 | - #if (!defined('_LOGO_MAX_SIZE')) define('_LOGO_MAX_SIZE', 0); # poids en ko |
|
| 2666 | - #if (!defined('_LOGO_MAX_WIDTH')) define('_LOGO_MAX_WIDTH', 0); # largeur en pixels |
|
| 2667 | - #if (!defined('_LOGO_MAX_HEIGHT')) define('_LOGO_MAX_HEIGHT', 0); # hauteur en pixels |
|
| 2668 | - |
|
| 2669 | - // la taille maxi des images (0 : pas de limite) (pas de define par defaut, ce n'est pas utile) |
|
| 2670 | - #if (!defined('_DOC_MAX_SIZE')) define('_DOC_MAX_SIZE', 0); # poids en ko |
|
| 2671 | - #if (!defined('_IMG_MAX_SIZE')) define('_IMG_MAX_SIZE', 0); # poids en ko |
|
| 2672 | - #if (!defined('_IMG_MAX_WIDTH')) define('_IMG_MAX_WIDTH', 0); # largeur en pixels |
|
| 2673 | - #if (!defined('_IMG_MAX_HEIGHT')) define('_IMG_MAX_HEIGHT', 0); # hauteur en pixels |
|
| 2674 | - |
|
| 2675 | - if (!defined('_PASS_LONGUEUR_MINI')) { |
|
| 2676 | - define('_PASS_LONGUEUR_MINI', 6); |
|
| 2677 | - } |
|
| 2678 | - |
|
| 2679 | - |
|
| 2680 | - // Qualite des images calculees automatiquement. C'est un nombre entre 0 et 100, meme pour imagick (on ramene a 0..1 par la suite) |
|
| 2681 | - if (!defined('_IMG_QUALITE')) { |
|
| 2682 | - define('_IMG_QUALITE', 85); |
|
| 2683 | - } # valeur par defaut |
|
| 2684 | - if (!defined('_IMG_GD_QUALITE')) { |
|
| 2685 | - define('_IMG_GD_QUALITE', _IMG_QUALITE); |
|
| 2686 | - } # surcharge pour la lib GD |
|
| 2687 | - if (!defined('_IMG_CONVERT_QUALITE')) { |
|
| 2688 | - define('_IMG_CONVERT_QUALITE', _IMG_QUALITE); |
|
| 2689 | - } # surcharge pour imagick en ligne de commande |
|
| 2690 | - // Historiquement la valeur pour imagick semble differente. Si ca n'est pas necessaire, il serait preferable de garder _IMG_QUALITE |
|
| 2691 | - if (!defined('_IMG_IMAGICK_QUALITE')) { |
|
| 2692 | - define('_IMG_IMAGICK_QUALITE', 75); |
|
| 2693 | - } # surcharge pour imagick en PHP |
|
| 2694 | - |
|
| 2695 | - if (!defined('_COPIE_LOCALE_MAX_SIZE')) { |
|
| 2696 | - define('_COPIE_LOCALE_MAX_SIZE', 33554432); |
|
| 2697 | - } // poids en octet |
|
| 2698 | - |
|
| 2699 | - // qq chaines standard |
|
| 2700 | - if (!defined('_ACCESS_FILE_NAME')) { |
|
| 2701 | - define('_ACCESS_FILE_NAME', '.htaccess'); |
|
| 2702 | - } |
|
| 2703 | - if (!defined('_AUTH_USER_FILE')) { |
|
| 2704 | - define('_AUTH_USER_FILE', '.htpasswd'); |
|
| 2705 | - } |
|
| 2706 | - if (!defined('_SPIP_DUMP')) { |
|
| 2707 | - define('_SPIP_DUMP', 'dump@nom_site@@[email protected]'); |
|
| 2708 | - } |
|
| 2709 | - if (!defined('_CACHE_RUBRIQUES')) { |
|
| 2710 | - /** Fichier cache pour le navigateur de rubrique du bandeau */ |
|
| 2711 | - define('_CACHE_RUBRIQUES', _DIR_TMP . 'menu-rubriques-cache.txt'); |
|
| 2712 | - } |
|
| 2713 | - if (!defined('_CACHE_RUBRIQUES_MAX')) { |
|
| 2714 | - /** Nombre maxi de rubriques enfants affichées pour chaque rubrique du navigateur de rubrique du bandeau */ |
|
| 2715 | - define('_CACHE_RUBRIQUES_MAX', 500); |
|
| 2716 | - } |
|
| 2717 | - |
|
| 2718 | - if (!defined('_CACHE_CONTEXTES_AJAX_SUR_LONGUEUR')) { |
|
| 2719 | - /** |
|
| 2720 | - * Basculer les contextes ajax en fichier si la longueur d’url est trop grande |
|
| 2721 | - * @var int Nombre de caractères */ |
|
| 2722 | - define('_CACHE_CONTEXTES_AJAX_SUR_LONGUEUR', 2000); |
|
| 2723 | - } |
|
| 2724 | - |
|
| 2725 | - if (!defined('_EXTENSION_SQUELETTES')) { |
|
| 2726 | - define('_EXTENSION_SQUELETTES', 'html'); |
|
| 2727 | - } |
|
| 2728 | - |
|
| 2729 | - if (!defined('_DOCTYPE_ECRIRE')) { |
|
| 2730 | - /** Définit le doctype de l’espace privé */ |
|
| 2731 | - define('_DOCTYPE_ECRIRE', "<!DOCTYPE html>\n"); |
|
| 2732 | - } |
|
| 2733 | - if (!defined('_DOCTYPE_AIDE')) { |
|
| 2734 | - /** Définit le doctype de l’aide en ligne */ |
|
| 2735 | - define('_DOCTYPE_AIDE', |
|
| 2736 | - "<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Frameset//EN' 'http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd'>"); |
|
| 2737 | - } |
|
| 2738 | - |
|
| 2739 | - if (!defined('_SPIP_SCRIPT')) { |
|
| 2740 | - /** L'adresse de base du site ; on peut mettre '' si la racine est gerée par |
|
| 2741 | - * le script de l'espace public, alias index.php */ |
|
| 2742 | - define('_SPIP_SCRIPT', 'spip.php'); |
|
| 2743 | - } |
|
| 2744 | - if (!defined('_SPIP_PAGE')) { |
|
| 2745 | - /** Argument page, personalisable en cas de conflit avec un autre script */ |
|
| 2746 | - define('_SPIP_PAGE', 'page'); |
|
| 2747 | - } |
|
| 2748 | - |
|
| 2749 | - // le script de l'espace prive |
|
| 2750 | - // Mettre a "index.php" si DirectoryIndex ne le fait pas ou pb connexes: |
|
| 2751 | - // les anciens IIS n'acceptent pas les POST sur ecrire/ (#419) |
|
| 2752 | - // meme pb sur thttpd cf. https://forum.spip.net/fr_184153.html |
|
| 2753 | - if (!defined('_SPIP_ECRIRE_SCRIPT')) { |
|
| 2754 | - if (!empty($_SERVER['SERVER_SOFTWARE']) and preg_match(',IIS|thttpd,', $_SERVER['SERVER_SOFTWARE'])) { |
|
| 2755 | - define('_SPIP_ECRIRE_SCRIPT', 'index.php'); |
|
| 2756 | - } else { |
|
| 2757 | - define('_SPIP_ECRIRE_SCRIPT', ''); |
|
| 2758 | - } |
|
| 2759 | - } |
|
| 2760 | - |
|
| 2761 | - |
|
| 2762 | - if (!defined('_SPIP_AJAX')) { |
|
| 2763 | - define('_SPIP_AJAX', ((!isset($_COOKIE['spip_accepte_ajax'])) |
|
| 2764 | - ? 1 |
|
| 2765 | - : (($_COOKIE['spip_accepte_ajax'] != -1) ? 1 : 0))); |
|
| 2766 | - } |
|
| 2767 | - |
|
| 2768 | - // La requete est-elle en ajax ? |
|
| 2769 | - if (!defined('_AJAX')) { |
|
| 2770 | - define('_AJAX', |
|
| 2771 | - (isset($_SERVER['HTTP_X_REQUESTED_WITH']) # ajax jQuery |
|
| 2772 | - or !empty($_REQUEST['var_ajax_redir']) # redirection 302 apres ajax jQuery |
|
| 2773 | - or !empty($_REQUEST['var_ajaxcharset']) # compat ascendante pour plugins |
|
| 2774 | - or !empty($_REQUEST['var_ajax']) # forms ajax & inclure ajax de spip |
|
| 2775 | - ) |
|
| 2776 | - and empty($_REQUEST['var_noajax']) # horrible exception, car c'est pas parce que la requete est ajax jquery qu'il faut tuer tous les formulaires ajax qu'elle contient |
|
| 2777 | - ); |
|
| 2778 | - } |
|
| 2779 | - |
|
| 2780 | - # nombre de pixels maxi pour calcul de la vignette avec gd |
|
| 2781 | - # au dela de 5500000 on considere que php n'est pas limite en memoire pour cette operation |
|
| 2782 | - # les configurations limitees en memoire ont un seuil plutot vers 1MPixel |
|
| 2783 | - if (!defined('_IMG_GD_MAX_PIXELS')) { |
|
| 2784 | - define('_IMG_GD_MAX_PIXELS', |
|
| 2785 | - (isset($GLOBALS['meta']['max_taille_vignettes']) and $GLOBALS['meta']['max_taille_vignettes']) |
|
| 2786 | - ? $GLOBALS['meta']['max_taille_vignettes'] |
|
| 2787 | - : 0); |
|
| 2788 | - } |
|
| 2789 | - |
|
| 2790 | - if (!defined('_MEMORY_LIMIT_MIN')) { |
|
| 2791 | - define('_MEMORY_LIMIT_MIN', 16); |
|
| 2792 | - } // en Mo |
|
| 2793 | - // si on est dans l'espace prive et si le besoin est superieur a 8Mo (qui est vraiment le standard) |
|
| 2794 | - // on verifie que la memoire est suffisante pour le compactage css+js pour eviter la page blanche |
|
| 2795 | - // il y aura d'autres problemes et l'utilisateur n'ira pas tres loin, mais ce sera plus comprehensible qu'une page blanche |
|
| 2796 | - if (test_espace_prive() and _MEMORY_LIMIT_MIN > 8) { |
|
| 2797 | - if ($memory = trim(ini_get('memory_limit')) and $memory != -1) { |
|
| 2798 | - $unit = strtolower(substr($memory, -1)); |
|
| 2799 | - $memory = substr($memory, 0, -1); |
|
| 2800 | - switch ($unit) { |
|
| 2801 | - // Le modifieur 'G' est disponible depuis PHP 5.1.0 |
|
| 2802 | - case 'g': |
|
| 2803 | - $memory *= 1024; |
|
| 2804 | - case 'm': |
|
| 2805 | - $memory *= 1024; |
|
| 2806 | - case 'k': |
|
| 2807 | - $memory *= 1024; |
|
| 2808 | - } |
|
| 2809 | - if ($memory < _MEMORY_LIMIT_MIN * 1024 * 1024) { |
|
| 2810 | - @ini_set('memory_limit', $m = _MEMORY_LIMIT_MIN . 'M'); |
|
| 2811 | - if (trim(ini_get('memory_limit')) != $m) { |
|
| 2812 | - if (!defined('_INTERDIRE_COMPACTE_HEAD_ECRIRE')) { |
|
| 2813 | - define('_INTERDIRE_COMPACTE_HEAD_ECRIRE', true); |
|
| 2814 | - } // evite une page blanche car on ne saura pas calculer la css dans ce hit |
|
| 2815 | - } |
|
| 2816 | - } |
|
| 2817 | - } else { |
|
| 2818 | - if (!defined('_INTERDIRE_COMPACTE_HEAD_ECRIRE')) { |
|
| 2819 | - define('_INTERDIRE_COMPACTE_HEAD_ECRIRE', true); |
|
| 2820 | - } |
|
| 2821 | - } // evite une page blanche car on ne saura pas calculer la css dans ce hit |
|
| 2822 | - } |
|
| 2823 | - // Protocoles a normaliser dans les chaines de langues |
|
| 2824 | - if (!defined('_PROTOCOLES_STD')) { |
|
| 2825 | - define('_PROTOCOLES_STD', 'http|https|ftp|mailto|webcal'); |
|
| 2826 | - } |
|
| 2827 | - |
|
| 2828 | - init_var_mode(); |
|
| 2653 | + static $too_late = 0; |
|
| 2654 | + if ($too_late++) { |
|
| 2655 | + return; |
|
| 2656 | + } |
|
| 2657 | + |
|
| 2658 | + // taille mini des login |
|
| 2659 | + if (!defined('_LOGIN_TROP_COURT')) { |
|
| 2660 | + define('_LOGIN_TROP_COURT', 4); |
|
| 2661 | + } |
|
| 2662 | + |
|
| 2663 | + // la taille maxi des logos (0 : pas de limite) (pas de define par defaut, ce n'est pas utile) |
|
| 2664 | + #if (!defined('_LOGO_MAX_SIZE')) define('_LOGO_MAX_SIZE', 0); # poids en ko |
|
| 2665 | + #if (!defined('_LOGO_MAX_WIDTH')) define('_LOGO_MAX_WIDTH', 0); # largeur en pixels |
|
| 2666 | + #if (!defined('_LOGO_MAX_HEIGHT')) define('_LOGO_MAX_HEIGHT', 0); # hauteur en pixels |
|
| 2667 | + |
|
| 2668 | + // la taille maxi des images (0 : pas de limite) (pas de define par defaut, ce n'est pas utile) |
|
| 2669 | + #if (!defined('_DOC_MAX_SIZE')) define('_DOC_MAX_SIZE', 0); # poids en ko |
|
| 2670 | + #if (!defined('_IMG_MAX_SIZE')) define('_IMG_MAX_SIZE', 0); # poids en ko |
|
| 2671 | + #if (!defined('_IMG_MAX_WIDTH')) define('_IMG_MAX_WIDTH', 0); # largeur en pixels |
|
| 2672 | + #if (!defined('_IMG_MAX_HEIGHT')) define('_IMG_MAX_HEIGHT', 0); # hauteur en pixels |
|
| 2673 | + |
|
| 2674 | + if (!defined('_PASS_LONGUEUR_MINI')) { |
|
| 2675 | + define('_PASS_LONGUEUR_MINI', 6); |
|
| 2676 | + } |
|
| 2677 | + |
|
| 2678 | + |
|
| 2679 | + // Qualite des images calculees automatiquement. C'est un nombre entre 0 et 100, meme pour imagick (on ramene a 0..1 par la suite) |
|
| 2680 | + if (!defined('_IMG_QUALITE')) { |
|
| 2681 | + define('_IMG_QUALITE', 85); |
|
| 2682 | + } # valeur par defaut |
|
| 2683 | + if (!defined('_IMG_GD_QUALITE')) { |
|
| 2684 | + define('_IMG_GD_QUALITE', _IMG_QUALITE); |
|
| 2685 | + } # surcharge pour la lib GD |
|
| 2686 | + if (!defined('_IMG_CONVERT_QUALITE')) { |
|
| 2687 | + define('_IMG_CONVERT_QUALITE', _IMG_QUALITE); |
|
| 2688 | + } # surcharge pour imagick en ligne de commande |
|
| 2689 | + // Historiquement la valeur pour imagick semble differente. Si ca n'est pas necessaire, il serait preferable de garder _IMG_QUALITE |
|
| 2690 | + if (!defined('_IMG_IMAGICK_QUALITE')) { |
|
| 2691 | + define('_IMG_IMAGICK_QUALITE', 75); |
|
| 2692 | + } # surcharge pour imagick en PHP |
|
| 2693 | + |
|
| 2694 | + if (!defined('_COPIE_LOCALE_MAX_SIZE')) { |
|
| 2695 | + define('_COPIE_LOCALE_MAX_SIZE', 33554432); |
|
| 2696 | + } // poids en octet |
|
| 2697 | + |
|
| 2698 | + // qq chaines standard |
|
| 2699 | + if (!defined('_ACCESS_FILE_NAME')) { |
|
| 2700 | + define('_ACCESS_FILE_NAME', '.htaccess'); |
|
| 2701 | + } |
|
| 2702 | + if (!defined('_AUTH_USER_FILE')) { |
|
| 2703 | + define('_AUTH_USER_FILE', '.htpasswd'); |
|
| 2704 | + } |
|
| 2705 | + if (!defined('_SPIP_DUMP')) { |
|
| 2706 | + define('_SPIP_DUMP', 'dump@nom_site@@[email protected]'); |
|
| 2707 | + } |
|
| 2708 | + if (!defined('_CACHE_RUBRIQUES')) { |
|
| 2709 | + /** Fichier cache pour le navigateur de rubrique du bandeau */ |
|
| 2710 | + define('_CACHE_RUBRIQUES', _DIR_TMP . 'menu-rubriques-cache.txt'); |
|
| 2711 | + } |
|
| 2712 | + if (!defined('_CACHE_RUBRIQUES_MAX')) { |
|
| 2713 | + /** Nombre maxi de rubriques enfants affichées pour chaque rubrique du navigateur de rubrique du bandeau */ |
|
| 2714 | + define('_CACHE_RUBRIQUES_MAX', 500); |
|
| 2715 | + } |
|
| 2716 | + |
|
| 2717 | + if (!defined('_CACHE_CONTEXTES_AJAX_SUR_LONGUEUR')) { |
|
| 2718 | + /** |
|
| 2719 | + * Basculer les contextes ajax en fichier si la longueur d’url est trop grande |
|
| 2720 | + * @var int Nombre de caractères */ |
|
| 2721 | + define('_CACHE_CONTEXTES_AJAX_SUR_LONGUEUR', 2000); |
|
| 2722 | + } |
|
| 2723 | + |
|
| 2724 | + if (!defined('_EXTENSION_SQUELETTES')) { |
|
| 2725 | + define('_EXTENSION_SQUELETTES', 'html'); |
|
| 2726 | + } |
|
| 2727 | + |
|
| 2728 | + if (!defined('_DOCTYPE_ECRIRE')) { |
|
| 2729 | + /** Définit le doctype de l’espace privé */ |
|
| 2730 | + define('_DOCTYPE_ECRIRE', "<!DOCTYPE html>\n"); |
|
| 2731 | + } |
|
| 2732 | + if (!defined('_DOCTYPE_AIDE')) { |
|
| 2733 | + /** Définit le doctype de l’aide en ligne */ |
|
| 2734 | + define('_DOCTYPE_AIDE', |
|
| 2735 | + "<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Frameset//EN' 'http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd'>"); |
|
| 2736 | + } |
|
| 2737 | + |
|
| 2738 | + if (!defined('_SPIP_SCRIPT')) { |
|
| 2739 | + /** L'adresse de base du site ; on peut mettre '' si la racine est gerée par |
|
| 2740 | + * le script de l'espace public, alias index.php */ |
|
| 2741 | + define('_SPIP_SCRIPT', 'spip.php'); |
|
| 2742 | + } |
|
| 2743 | + if (!defined('_SPIP_PAGE')) { |
|
| 2744 | + /** Argument page, personalisable en cas de conflit avec un autre script */ |
|
| 2745 | + define('_SPIP_PAGE', 'page'); |
|
| 2746 | + } |
|
| 2747 | + |
|
| 2748 | + // le script de l'espace prive |
|
| 2749 | + // Mettre a "index.php" si DirectoryIndex ne le fait pas ou pb connexes: |
|
| 2750 | + // les anciens IIS n'acceptent pas les POST sur ecrire/ (#419) |
|
| 2751 | + // meme pb sur thttpd cf. https://forum.spip.net/fr_184153.html |
|
| 2752 | + if (!defined('_SPIP_ECRIRE_SCRIPT')) { |
|
| 2753 | + if (!empty($_SERVER['SERVER_SOFTWARE']) and preg_match(',IIS|thttpd,', $_SERVER['SERVER_SOFTWARE'])) { |
|
| 2754 | + define('_SPIP_ECRIRE_SCRIPT', 'index.php'); |
|
| 2755 | + } else { |
|
| 2756 | + define('_SPIP_ECRIRE_SCRIPT', ''); |
|
| 2757 | + } |
|
| 2758 | + } |
|
| 2759 | + |
|
| 2760 | + |
|
| 2761 | + if (!defined('_SPIP_AJAX')) { |
|
| 2762 | + define('_SPIP_AJAX', ((!isset($_COOKIE['spip_accepte_ajax'])) |
|
| 2763 | + ? 1 |
|
| 2764 | + : (($_COOKIE['spip_accepte_ajax'] != -1) ? 1 : 0))); |
|
| 2765 | + } |
|
| 2766 | + |
|
| 2767 | + // La requete est-elle en ajax ? |
|
| 2768 | + if (!defined('_AJAX')) { |
|
| 2769 | + define('_AJAX', |
|
| 2770 | + (isset($_SERVER['HTTP_X_REQUESTED_WITH']) # ajax jQuery |
|
| 2771 | + or !empty($_REQUEST['var_ajax_redir']) # redirection 302 apres ajax jQuery |
|
| 2772 | + or !empty($_REQUEST['var_ajaxcharset']) # compat ascendante pour plugins |
|
| 2773 | + or !empty($_REQUEST['var_ajax']) # forms ajax & inclure ajax de spip |
|
| 2774 | + ) |
|
| 2775 | + and empty($_REQUEST['var_noajax']) # horrible exception, car c'est pas parce que la requete est ajax jquery qu'il faut tuer tous les formulaires ajax qu'elle contient |
|
| 2776 | + ); |
|
| 2777 | + } |
|
| 2778 | + |
|
| 2779 | + # nombre de pixels maxi pour calcul de la vignette avec gd |
|
| 2780 | + # au dela de 5500000 on considere que php n'est pas limite en memoire pour cette operation |
|
| 2781 | + # les configurations limitees en memoire ont un seuil plutot vers 1MPixel |
|
| 2782 | + if (!defined('_IMG_GD_MAX_PIXELS')) { |
|
| 2783 | + define('_IMG_GD_MAX_PIXELS', |
|
| 2784 | + (isset($GLOBALS['meta']['max_taille_vignettes']) and $GLOBALS['meta']['max_taille_vignettes']) |
|
| 2785 | + ? $GLOBALS['meta']['max_taille_vignettes'] |
|
| 2786 | + : 0); |
|
| 2787 | + } |
|
| 2788 | + |
|
| 2789 | + if (!defined('_MEMORY_LIMIT_MIN')) { |
|
| 2790 | + define('_MEMORY_LIMIT_MIN', 16); |
|
| 2791 | + } // en Mo |
|
| 2792 | + // si on est dans l'espace prive et si le besoin est superieur a 8Mo (qui est vraiment le standard) |
|
| 2793 | + // on verifie que la memoire est suffisante pour le compactage css+js pour eviter la page blanche |
|
| 2794 | + // il y aura d'autres problemes et l'utilisateur n'ira pas tres loin, mais ce sera plus comprehensible qu'une page blanche |
|
| 2795 | + if (test_espace_prive() and _MEMORY_LIMIT_MIN > 8) { |
|
| 2796 | + if ($memory = trim(ini_get('memory_limit')) and $memory != -1) { |
|
| 2797 | + $unit = strtolower(substr($memory, -1)); |
|
| 2798 | + $memory = substr($memory, 0, -1); |
|
| 2799 | + switch ($unit) { |
|
| 2800 | + // Le modifieur 'G' est disponible depuis PHP 5.1.0 |
|
| 2801 | + case 'g': |
|
| 2802 | + $memory *= 1024; |
|
| 2803 | + case 'm': |
|
| 2804 | + $memory *= 1024; |
|
| 2805 | + case 'k': |
|
| 2806 | + $memory *= 1024; |
|
| 2807 | + } |
|
| 2808 | + if ($memory < _MEMORY_LIMIT_MIN * 1024 * 1024) { |
|
| 2809 | + @ini_set('memory_limit', $m = _MEMORY_LIMIT_MIN . 'M'); |
|
| 2810 | + if (trim(ini_get('memory_limit')) != $m) { |
|
| 2811 | + if (!defined('_INTERDIRE_COMPACTE_HEAD_ECRIRE')) { |
|
| 2812 | + define('_INTERDIRE_COMPACTE_HEAD_ECRIRE', true); |
|
| 2813 | + } // evite une page blanche car on ne saura pas calculer la css dans ce hit |
|
| 2814 | + } |
|
| 2815 | + } |
|
| 2816 | + } else { |
|
| 2817 | + if (!defined('_INTERDIRE_COMPACTE_HEAD_ECRIRE')) { |
|
| 2818 | + define('_INTERDIRE_COMPACTE_HEAD_ECRIRE', true); |
|
| 2819 | + } |
|
| 2820 | + } // evite une page blanche car on ne saura pas calculer la css dans ce hit |
|
| 2821 | + } |
|
| 2822 | + // Protocoles a normaliser dans les chaines de langues |
|
| 2823 | + if (!defined('_PROTOCOLES_STD')) { |
|
| 2824 | + define('_PROTOCOLES_STD', 'http|https|ftp|mailto|webcal'); |
|
| 2825 | + } |
|
| 2826 | + |
|
| 2827 | + init_var_mode(); |
|
| 2829 | 2828 | } |
| 2830 | 2829 | |
| 2831 | 2830 | /** |
@@ -2859,133 +2858,133 @@ discard block |
||
| 2859 | 2858 | * ` var_mode` (calcul ou recalcul). |
| 2860 | 2859 | */ |
| 2861 | 2860 | function init_var_mode() { |
| 2862 | - static $done = false; |
|
| 2863 | - if (!$done) { |
|
| 2864 | - |
|
| 2865 | - if (isset($_GET['var_mode'])) { |
|
| 2866 | - $var_mode = explode(',', $_GET['var_mode']); |
|
| 2867 | - // tout le monde peut calcul/recalcul |
|
| 2868 | - if (!defined('_VAR_MODE')) { |
|
| 2869 | - if (in_array('recalcul', $var_mode)) { |
|
| 2870 | - define('_VAR_MODE', 'recalcul'); |
|
| 2871 | - } elseif (in_array('calcul', $var_mode)) { |
|
| 2872 | - define('_VAR_MODE', 'calcul'); |
|
| 2873 | - } |
|
| 2874 | - } |
|
| 2875 | - $var_mode = array_diff($var_mode, array('calcul', 'recalcul')); |
|
| 2876 | - if ($var_mode) { |
|
| 2877 | - include_spip('inc/autoriser'); |
|
| 2878 | - // autoriser preview si preview seulement, et sinon autoriser debug |
|
| 2879 | - if (autoriser( |
|
| 2880 | - ($_GET['var_mode'] == 'preview') |
|
| 2881 | - ? 'previsualiser' |
|
| 2882 | - : 'debug' |
|
| 2883 | - )) { |
|
| 2884 | - if (in_array('traduction', $var_mode)) { |
|
| 2885 | - // forcer le calcul pour passer dans traduire |
|
| 2886 | - if (!defined('_VAR_MODE')) { |
|
| 2887 | - define('_VAR_MODE', 'calcul'); |
|
| 2888 | - } |
|
| 2889 | - // et ne pas enregistrer de cache pour ne pas trainer les surlignages sur d'autres pages |
|
| 2890 | - if (!defined('_VAR_NOCACHE')) { |
|
| 2891 | - define('_VAR_NOCACHE', true); |
|
| 2892 | - } |
|
| 2893 | - $var_mode = array_diff($var_mode, array('traduction')); |
|
| 2894 | - } |
|
| 2895 | - if (in_array('preview', $var_mode)) { |
|
| 2896 | - // basculer sur les criteres de preview dans les boucles |
|
| 2897 | - if (!defined('_VAR_PREVIEW')) { |
|
| 2898 | - define('_VAR_PREVIEW', true); |
|
| 2899 | - } |
|
| 2900 | - // forcer le calcul |
|
| 2901 | - if (!defined('_VAR_MODE')) { |
|
| 2902 | - define('_VAR_MODE', 'calcul'); |
|
| 2903 | - } |
|
| 2904 | - // et ne pas enregistrer de cache |
|
| 2905 | - if (!defined('_VAR_NOCACHE')) { |
|
| 2906 | - define('_VAR_NOCACHE', true); |
|
| 2907 | - } |
|
| 2908 | - $var_mode = array_diff($var_mode, array('preview')); |
|
| 2909 | - } |
|
| 2910 | - if (in_array('inclure', $var_mode)) { |
|
| 2911 | - // forcer le compilo et ignorer les caches existants |
|
| 2912 | - if (!defined('_VAR_MODE')) { |
|
| 2913 | - define('_VAR_MODE', 'calcul'); |
|
| 2914 | - } |
|
| 2915 | - if (!defined('_VAR_INCLURE')) { |
|
| 2916 | - define('_VAR_INCLURE', true); |
|
| 2917 | - } |
|
| 2918 | - // et ne pas enregistrer de cache |
|
| 2919 | - if (!defined('_VAR_NOCACHE')) { |
|
| 2920 | - define('_VAR_NOCACHE', true); |
|
| 2921 | - } |
|
| 2922 | - $var_mode = array_diff($var_mode, array('inclure')); |
|
| 2923 | - } |
|
| 2924 | - if (in_array('urls', $var_mode)) { |
|
| 2925 | - // forcer le compilo et ignorer les caches existants |
|
| 2926 | - if (!defined('_VAR_MODE')) { |
|
| 2927 | - define('_VAR_MODE', 'calcul'); |
|
| 2928 | - } |
|
| 2929 | - if (!defined('_VAR_URLS')) { |
|
| 2930 | - define('_VAR_URLS', true); |
|
| 2931 | - } |
|
| 2932 | - $var_mode = array_diff($var_mode, array('urls')); |
|
| 2933 | - } |
|
| 2934 | - if (in_array('images', $var_mode)) { |
|
| 2935 | - // forcer le compilo et ignorer les caches existants |
|
| 2936 | - if (!defined('_VAR_MODE')) { |
|
| 2937 | - define('_VAR_MODE', 'calcul'); |
|
| 2938 | - } |
|
| 2939 | - // indiquer qu'on doit recalculer les images |
|
| 2940 | - if (!defined('_VAR_IMAGES')) { |
|
| 2941 | - define('_VAR_IMAGES', true); |
|
| 2942 | - } |
|
| 2943 | - $var_mode = array_diff($var_mode, array('images')); |
|
| 2944 | - } |
|
| 2945 | - if (in_array('debug', $var_mode)) { |
|
| 2946 | - if (!defined('_VAR_MODE')) { |
|
| 2947 | - define('_VAR_MODE', 'debug'); |
|
| 2948 | - } |
|
| 2949 | - // et ne pas enregistrer de cache |
|
| 2950 | - if (!defined('_VAR_NOCACHE')) { |
|
| 2951 | - define('_VAR_NOCACHE', true); |
|
| 2952 | - } |
|
| 2953 | - $var_mode = array_diff($var_mode, array('debug')); |
|
| 2954 | - } |
|
| 2955 | - if (count($var_mode) and !defined('_VAR_MODE')) { |
|
| 2956 | - define('_VAR_MODE', reset($var_mode)); |
|
| 2957 | - } |
|
| 2958 | - if (isset($GLOBALS['visiteur_session']['nom'])) { |
|
| 2959 | - spip_log($GLOBALS['visiteur_session']['nom'] |
|
| 2960 | - . " " . _VAR_MODE); |
|
| 2961 | - } |
|
| 2962 | - } // pas autorise ? |
|
| 2963 | - else { |
|
| 2964 | - // si on n'est pas connecte on se redirige, si on est pas en cli et pas deja en train de se loger |
|
| 2965 | - if (!$GLOBALS['visiteur_session'] |
|
| 2966 | - and !empty($_SERVER['HTTP_HOST']) |
|
| 2967 | - and !empty($_SERVER['REQUEST_METHOD']) |
|
| 2968 | - and $_SERVER['REQUEST_METHOD'] === 'GET') { |
|
| 2969 | - $self = self('&', true); |
|
| 2970 | - if (strpos($self, 'page=login') === false) { |
|
| 2971 | - include_spip('inc/headers'); |
|
| 2972 | - $redirect = parametre_url(self('&', true), 'var_mode', $_GET['var_mode'], '&'); |
|
| 2973 | - redirige_par_entete(generer_url_public('login','url=' . rawurlencode($redirect), true)); |
|
| 2974 | - } |
|
| 2975 | - } |
|
| 2976 | - // sinon tant pis |
|
| 2977 | - } |
|
| 2978 | - } |
|
| 2979 | - } |
|
| 2980 | - if (!defined('_VAR_MODE')) { |
|
| 2981 | - /** |
|
| 2982 | - * Indique le mode de calcul ou d'affichage de la page. |
|
| 2983 | - * @see init_var_mode() |
|
| 2984 | - */ |
|
| 2985 | - define('_VAR_MODE', false); |
|
| 2986 | - } |
|
| 2987 | - $done = true; |
|
| 2988 | - } |
|
| 2861 | + static $done = false; |
|
| 2862 | + if (!$done) { |
|
| 2863 | + |
|
| 2864 | + if (isset($_GET['var_mode'])) { |
|
| 2865 | + $var_mode = explode(',', $_GET['var_mode']); |
|
| 2866 | + // tout le monde peut calcul/recalcul |
|
| 2867 | + if (!defined('_VAR_MODE')) { |
|
| 2868 | + if (in_array('recalcul', $var_mode)) { |
|
| 2869 | + define('_VAR_MODE', 'recalcul'); |
|
| 2870 | + } elseif (in_array('calcul', $var_mode)) { |
|
| 2871 | + define('_VAR_MODE', 'calcul'); |
|
| 2872 | + } |
|
| 2873 | + } |
|
| 2874 | + $var_mode = array_diff($var_mode, array('calcul', 'recalcul')); |
|
| 2875 | + if ($var_mode) { |
|
| 2876 | + include_spip('inc/autoriser'); |
|
| 2877 | + // autoriser preview si preview seulement, et sinon autoriser debug |
|
| 2878 | + if (autoriser( |
|
| 2879 | + ($_GET['var_mode'] == 'preview') |
|
| 2880 | + ? 'previsualiser' |
|
| 2881 | + : 'debug' |
|
| 2882 | + )) { |
|
| 2883 | + if (in_array('traduction', $var_mode)) { |
|
| 2884 | + // forcer le calcul pour passer dans traduire |
|
| 2885 | + if (!defined('_VAR_MODE')) { |
|
| 2886 | + define('_VAR_MODE', 'calcul'); |
|
| 2887 | + } |
|
| 2888 | + // et ne pas enregistrer de cache pour ne pas trainer les surlignages sur d'autres pages |
|
| 2889 | + if (!defined('_VAR_NOCACHE')) { |
|
| 2890 | + define('_VAR_NOCACHE', true); |
|
| 2891 | + } |
|
| 2892 | + $var_mode = array_diff($var_mode, array('traduction')); |
|
| 2893 | + } |
|
| 2894 | + if (in_array('preview', $var_mode)) { |
|
| 2895 | + // basculer sur les criteres de preview dans les boucles |
|
| 2896 | + if (!defined('_VAR_PREVIEW')) { |
|
| 2897 | + define('_VAR_PREVIEW', true); |
|
| 2898 | + } |
|
| 2899 | + // forcer le calcul |
|
| 2900 | + if (!defined('_VAR_MODE')) { |
|
| 2901 | + define('_VAR_MODE', 'calcul'); |
|
| 2902 | + } |
|
| 2903 | + // et ne pas enregistrer de cache |
|
| 2904 | + if (!defined('_VAR_NOCACHE')) { |
|
| 2905 | + define('_VAR_NOCACHE', true); |
|
| 2906 | + } |
|
| 2907 | + $var_mode = array_diff($var_mode, array('preview')); |
|
| 2908 | + } |
|
| 2909 | + if (in_array('inclure', $var_mode)) { |
|
| 2910 | + // forcer le compilo et ignorer les caches existants |
|
| 2911 | + if (!defined('_VAR_MODE')) { |
|
| 2912 | + define('_VAR_MODE', 'calcul'); |
|
| 2913 | + } |
|
| 2914 | + if (!defined('_VAR_INCLURE')) { |
|
| 2915 | + define('_VAR_INCLURE', true); |
|
| 2916 | + } |
|
| 2917 | + // et ne pas enregistrer de cache |
|
| 2918 | + if (!defined('_VAR_NOCACHE')) { |
|
| 2919 | + define('_VAR_NOCACHE', true); |
|
| 2920 | + } |
|
| 2921 | + $var_mode = array_diff($var_mode, array('inclure')); |
|
| 2922 | + } |
|
| 2923 | + if (in_array('urls', $var_mode)) { |
|
| 2924 | + // forcer le compilo et ignorer les caches existants |
|
| 2925 | + if (!defined('_VAR_MODE')) { |
|
| 2926 | + define('_VAR_MODE', 'calcul'); |
|
| 2927 | + } |
|
| 2928 | + if (!defined('_VAR_URLS')) { |
|
| 2929 | + define('_VAR_URLS', true); |
|
| 2930 | + } |
|
| 2931 | + $var_mode = array_diff($var_mode, array('urls')); |
|
| 2932 | + } |
|
| 2933 | + if (in_array('images', $var_mode)) { |
|
| 2934 | + // forcer le compilo et ignorer les caches existants |
|
| 2935 | + if (!defined('_VAR_MODE')) { |
|
| 2936 | + define('_VAR_MODE', 'calcul'); |
|
| 2937 | + } |
|
| 2938 | + // indiquer qu'on doit recalculer les images |
|
| 2939 | + if (!defined('_VAR_IMAGES')) { |
|
| 2940 | + define('_VAR_IMAGES', true); |
|
| 2941 | + } |
|
| 2942 | + $var_mode = array_diff($var_mode, array('images')); |
|
| 2943 | + } |
|
| 2944 | + if (in_array('debug', $var_mode)) { |
|
| 2945 | + if (!defined('_VAR_MODE')) { |
|
| 2946 | + define('_VAR_MODE', 'debug'); |
|
| 2947 | + } |
|
| 2948 | + // et ne pas enregistrer de cache |
|
| 2949 | + if (!defined('_VAR_NOCACHE')) { |
|
| 2950 | + define('_VAR_NOCACHE', true); |
|
| 2951 | + } |
|
| 2952 | + $var_mode = array_diff($var_mode, array('debug')); |
|
| 2953 | + } |
|
| 2954 | + if (count($var_mode) and !defined('_VAR_MODE')) { |
|
| 2955 | + define('_VAR_MODE', reset($var_mode)); |
|
| 2956 | + } |
|
| 2957 | + if (isset($GLOBALS['visiteur_session']['nom'])) { |
|
| 2958 | + spip_log($GLOBALS['visiteur_session']['nom'] |
|
| 2959 | + . " " . _VAR_MODE); |
|
| 2960 | + } |
|
| 2961 | + } // pas autorise ? |
|
| 2962 | + else { |
|
| 2963 | + // si on n'est pas connecte on se redirige, si on est pas en cli et pas deja en train de se loger |
|
| 2964 | + if (!$GLOBALS['visiteur_session'] |
|
| 2965 | + and !empty($_SERVER['HTTP_HOST']) |
|
| 2966 | + and !empty($_SERVER['REQUEST_METHOD']) |
|
| 2967 | + and $_SERVER['REQUEST_METHOD'] === 'GET') { |
|
| 2968 | + $self = self('&', true); |
|
| 2969 | + if (strpos($self, 'page=login') === false) { |
|
| 2970 | + include_spip('inc/headers'); |
|
| 2971 | + $redirect = parametre_url(self('&', true), 'var_mode', $_GET['var_mode'], '&'); |
|
| 2972 | + redirige_par_entete(generer_url_public('login','url=' . rawurlencode($redirect), true)); |
|
| 2973 | + } |
|
| 2974 | + } |
|
| 2975 | + // sinon tant pis |
|
| 2976 | + } |
|
| 2977 | + } |
|
| 2978 | + } |
|
| 2979 | + if (!defined('_VAR_MODE')) { |
|
| 2980 | + /** |
|
| 2981 | + * Indique le mode de calcul ou d'affichage de la page. |
|
| 2982 | + * @see init_var_mode() |
|
| 2983 | + */ |
|
| 2984 | + define('_VAR_MODE', false); |
|
| 2985 | + } |
|
| 2986 | + $done = true; |
|
| 2987 | + } |
|
| 2989 | 2988 | } |
| 2990 | 2989 | |
| 2991 | 2990 | // Annuler les magic quotes \' sur GET POST COOKIE et GLOBALS ; |
@@ -2993,85 +2992,85 @@ discard block |
||
| 2993 | 2992 | // la commande is_readable('chemin/vers/fichier/interdit%00truc_normal') |
| 2994 | 2993 | // https://code.spip.net/@spip_desinfecte |
| 2995 | 2994 | function spip_desinfecte(&$t, $deep = true) { |
| 2996 | - foreach ($t as $key => $val) { |
|
| 2997 | - if (is_string($t[$key])) { |
|
| 2998 | - $t[$key] = str_replace(chr(0), '-', $t[$key]); |
|
| 2999 | - } // traiter aussi les "texte_plus" de article_edit |
|
| 3000 | - else { |
|
| 3001 | - if ($deep and is_array($t[$key]) and $key !== 'GLOBALS') { |
|
| 3002 | - spip_desinfecte($t[$key], $deep); |
|
| 3003 | - } |
|
| 3004 | - } |
|
| 3005 | - } |
|
| 2995 | + foreach ($t as $key => $val) { |
|
| 2996 | + if (is_string($t[$key])) { |
|
| 2997 | + $t[$key] = str_replace(chr(0), '-', $t[$key]); |
|
| 2998 | + } // traiter aussi les "texte_plus" de article_edit |
|
| 2999 | + else { |
|
| 3000 | + if ($deep and is_array($t[$key]) and $key !== 'GLOBALS') { |
|
| 3001 | + spip_desinfecte($t[$key], $deep); |
|
| 3002 | + } |
|
| 3003 | + } |
|
| 3004 | + } |
|
| 3006 | 3005 | } |
| 3007 | 3006 | |
| 3008 | 3007 | // retourne le statut du visiteur s'il s'annonce |
| 3009 | 3008 | |
| 3010 | 3009 | // https://code.spip.net/@verifier_visiteur |
| 3011 | 3010 | function verifier_visiteur() { |
| 3012 | - // Rq: pour que cette fonction marche depuis mes_options |
|
| 3013 | - // il faut forcer l'init si ce n'est fait |
|
| 3014 | - // mais on risque de perturber des plugins en initialisant trop tot |
|
| 3015 | - // certaines constantes |
|
| 3016 | - @spip_initialisation_core( |
|
| 3017 | - (_DIR_RACINE . _NOM_PERMANENTS_INACCESSIBLES), |
|
| 3018 | - (_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES), |
|
| 3019 | - (_DIR_RACINE . _NOM_TEMPORAIRES_INACCESSIBLES), |
|
| 3020 | - (_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES) |
|
| 3021 | - ); |
|
| 3022 | - |
|
| 3023 | - // Demarrer une session NON AUTHENTIFIEE si on donne son nom |
|
| 3024 | - // dans un formulaire sans login (ex: #FORMULAIRE_FORUM) |
|
| 3025 | - // Attention on separe bien session_nom et nom, pour eviter |
|
| 3026 | - // les melanges entre donnees SQL et variables plus aleatoires |
|
| 3027 | - $variables_session = array('session_nom', 'session_email'); |
|
| 3028 | - foreach ($variables_session as $var) { |
|
| 3029 | - if (_request($var) !== null) { |
|
| 3030 | - $init = true; |
|
| 3031 | - break; |
|
| 3032 | - } |
|
| 3033 | - } |
|
| 3034 | - if (isset($init)) { |
|
| 3035 | - #@spip_initialisation_suite(); |
|
| 3036 | - $session = charger_fonction('session', 'inc'); |
|
| 3037 | - $session(); |
|
| 3038 | - include_spip('inc/texte'); |
|
| 3039 | - foreach ($variables_session as $var) { |
|
| 3040 | - if (($a = _request($var)) !== null) { |
|
| 3041 | - $GLOBALS['visiteur_session'][$var] = safehtml($a); |
|
| 3042 | - } |
|
| 3043 | - } |
|
| 3044 | - if (!isset($GLOBALS['visiteur_session']['id_auteur'])) { |
|
| 3045 | - $GLOBALS['visiteur_session']['id_auteur'] = 0; |
|
| 3046 | - } |
|
| 3047 | - $session($GLOBALS['visiteur_session']); |
|
| 3048 | - |
|
| 3049 | - return 0; |
|
| 3050 | - } |
|
| 3051 | - |
|
| 3052 | - $h = (isset($_SERVER['PHP_AUTH_USER']) and !$GLOBALS['ignore_auth_http']); |
|
| 3053 | - if ($h or isset($_COOKIE['spip_session']) or isset($_COOKIE[$GLOBALS['cookie_prefix'] . '_session'])) { |
|
| 3054 | - |
|
| 3055 | - $session = charger_fonction('session', 'inc'); |
|
| 3056 | - if ($session()) { |
|
| 3057 | - return $GLOBALS['visiteur_session']['statut']; |
|
| 3058 | - } |
|
| 3059 | - if ($h and isset($_SERVER['PHP_AUTH_PW'])) { |
|
| 3060 | - include_spip('inc/auth'); |
|
| 3061 | - $h = lire_php_auth($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']); |
|
| 3062 | - } |
|
| 3063 | - if ($h) { |
|
| 3064 | - $GLOBALS['visiteur_session'] = $h; |
|
| 3065 | - |
|
| 3066 | - return $GLOBALS['visiteur_session']['statut']; |
|
| 3067 | - } |
|
| 3068 | - } |
|
| 3069 | - |
|
| 3070 | - // au moins son navigateur nous dit la langue preferee de cet inconnu |
|
| 3071 | - include_spip('inc/lang'); |
|
| 3072 | - utiliser_langue_visiteur(); |
|
| 3073 | - |
|
| 3074 | - return false; |
|
| 3011 | + // Rq: pour que cette fonction marche depuis mes_options |
|
| 3012 | + // il faut forcer l'init si ce n'est fait |
|
| 3013 | + // mais on risque de perturber des plugins en initialisant trop tot |
|
| 3014 | + // certaines constantes |
|
| 3015 | + @spip_initialisation_core( |
|
| 3016 | + (_DIR_RACINE . _NOM_PERMANENTS_INACCESSIBLES), |
|
| 3017 | + (_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES), |
|
| 3018 | + (_DIR_RACINE . _NOM_TEMPORAIRES_INACCESSIBLES), |
|
| 3019 | + (_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES) |
|
| 3020 | + ); |
|
| 3021 | + |
|
| 3022 | + // Demarrer une session NON AUTHENTIFIEE si on donne son nom |
|
| 3023 | + // dans un formulaire sans login (ex: #FORMULAIRE_FORUM) |
|
| 3024 | + // Attention on separe bien session_nom et nom, pour eviter |
|
| 3025 | + // les melanges entre donnees SQL et variables plus aleatoires |
|
| 3026 | + $variables_session = array('session_nom', 'session_email'); |
|
| 3027 | + foreach ($variables_session as $var) { |
|
| 3028 | + if (_request($var) !== null) { |
|
| 3029 | + $init = true; |
|
| 3030 | + break; |
|
| 3031 | + } |
|
| 3032 | + } |
|
| 3033 | + if (isset($init)) { |
|
| 3034 | + #@spip_initialisation_suite(); |
|
| 3035 | + $session = charger_fonction('session', 'inc'); |
|
| 3036 | + $session(); |
|
| 3037 | + include_spip('inc/texte'); |
|
| 3038 | + foreach ($variables_session as $var) { |
|
| 3039 | + if (($a = _request($var)) !== null) { |
|
| 3040 | + $GLOBALS['visiteur_session'][$var] = safehtml($a); |
|
| 3041 | + } |
|
| 3042 | + } |
|
| 3043 | + if (!isset($GLOBALS['visiteur_session']['id_auteur'])) { |
|
| 3044 | + $GLOBALS['visiteur_session']['id_auteur'] = 0; |
|
| 3045 | + } |
|
| 3046 | + $session($GLOBALS['visiteur_session']); |
|
| 3047 | + |
|
| 3048 | + return 0; |
|
| 3049 | + } |
|
| 3050 | + |
|
| 3051 | + $h = (isset($_SERVER['PHP_AUTH_USER']) and !$GLOBALS['ignore_auth_http']); |
|
| 3052 | + if ($h or isset($_COOKIE['spip_session']) or isset($_COOKIE[$GLOBALS['cookie_prefix'] . '_session'])) { |
|
| 3053 | + |
|
| 3054 | + $session = charger_fonction('session', 'inc'); |
|
| 3055 | + if ($session()) { |
|
| 3056 | + return $GLOBALS['visiteur_session']['statut']; |
|
| 3057 | + } |
|
| 3058 | + if ($h and isset($_SERVER['PHP_AUTH_PW'])) { |
|
| 3059 | + include_spip('inc/auth'); |
|
| 3060 | + $h = lire_php_auth($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']); |
|
| 3061 | + } |
|
| 3062 | + if ($h) { |
|
| 3063 | + $GLOBALS['visiteur_session'] = $h; |
|
| 3064 | + |
|
| 3065 | + return $GLOBALS['visiteur_session']['statut']; |
|
| 3066 | + } |
|
| 3067 | + } |
|
| 3068 | + |
|
| 3069 | + // au moins son navigateur nous dit la langue preferee de cet inconnu |
|
| 3070 | + include_spip('inc/lang'); |
|
| 3071 | + utiliser_langue_visiteur(); |
|
| 3072 | + |
|
| 3073 | + return false; |
|
| 3075 | 3074 | } |
| 3076 | 3075 | |
| 3077 | 3076 | |
@@ -3094,21 +3093,21 @@ discard block |
||
| 3094 | 3093 | * - string Langue utilisée. |
| 3095 | 3094 | **/ |
| 3096 | 3095 | function lang_select($lang = null) { |
| 3097 | - static $pile_langues = array(); |
|
| 3098 | - if (!function_exists('changer_langue')) { |
|
| 3099 | - include_spip('inc/lang'); |
|
| 3100 | - } |
|
| 3101 | - if ($lang === null) { |
|
| 3102 | - $lang = array_pop($pile_langues); |
|
| 3103 | - } else { |
|
| 3104 | - array_push($pile_langues, $GLOBALS['spip_lang']); |
|
| 3105 | - } |
|
| 3106 | - if (isset($GLOBALS['spip_lang']) and $lang == $GLOBALS['spip_lang']) { |
|
| 3107 | - return $lang; |
|
| 3108 | - } |
|
| 3109 | - changer_langue($lang); |
|
| 3096 | + static $pile_langues = array(); |
|
| 3097 | + if (!function_exists('changer_langue')) { |
|
| 3098 | + include_spip('inc/lang'); |
|
| 3099 | + } |
|
| 3100 | + if ($lang === null) { |
|
| 3101 | + $lang = array_pop($pile_langues); |
|
| 3102 | + } else { |
|
| 3103 | + array_push($pile_langues, $GLOBALS['spip_lang']); |
|
| 3104 | + } |
|
| 3105 | + if (isset($GLOBALS['spip_lang']) and $lang == $GLOBALS['spip_lang']) { |
|
| 3106 | + return $lang; |
|
| 3107 | + } |
|
| 3108 | + changer_langue($lang); |
|
| 3110 | 3109 | |
| 3111 | - return $lang; |
|
| 3110 | + return $lang; |
|
| 3112 | 3111 | } |
| 3113 | 3112 | |
| 3114 | 3113 | /** |
@@ -3125,19 +3124,19 @@ discard block |
||
| 3125 | 3124 | * Identifiant de la session |
| 3126 | 3125 | **/ |
| 3127 | 3126 | function spip_session($force = false) { |
| 3128 | - static $session; |
|
| 3129 | - if ($force or !isset($session)) { |
|
| 3130 | - $s = pipeline('definir_session', |
|
| 3131 | - $GLOBALS['visiteur_session'] |
|
| 3132 | - ? serialize($GLOBALS['visiteur_session']) |
|
| 3133 | - . '_' . @$_COOKIE['spip_session'] |
|
| 3134 | - : '' |
|
| 3135 | - ); |
|
| 3136 | - $session = $s ? substr(md5($s), 0, 8) : ''; |
|
| 3137 | - } |
|
| 3127 | + static $session; |
|
| 3128 | + if ($force or !isset($session)) { |
|
| 3129 | + $s = pipeline('definir_session', |
|
| 3130 | + $GLOBALS['visiteur_session'] |
|
| 3131 | + ? serialize($GLOBALS['visiteur_session']) |
|
| 3132 | + . '_' . @$_COOKIE['spip_session'] |
|
| 3133 | + : '' |
|
| 3134 | + ); |
|
| 3135 | + $session = $s ? substr(md5($s), 0, 8) : ''; |
|
| 3136 | + } |
|
| 3138 | 3137 | |
| 3139 | - #spip_log('session: '.$session); |
|
| 3140 | - return $session; |
|
| 3138 | + #spip_log('session: '.$session); |
|
| 3139 | + return $session; |
|
| 3141 | 3140 | } |
| 3142 | 3141 | |
| 3143 | 3142 | |
@@ -3156,9 +3155,9 @@ discard block |
||
| 3156 | 3155 | * Lien sur une icone d'aide |
| 3157 | 3156 | **/ |
| 3158 | 3157 | function aider($aide = '', $distante = false) { |
| 3159 | - $aider = charger_fonction('aide', 'inc', true); |
|
| 3158 | + $aider = charger_fonction('aide', 'inc', true); |
|
| 3160 | 3159 | |
| 3161 | - return $aider ? $aider($aide, '', array(), $distante) : ''; |
|
| 3160 | + return $aider ? $aider($aide, '', array(), $distante) : ''; |
|
| 3162 | 3161 | } |
| 3163 | 3162 | |
| 3164 | 3163 | /** |
@@ -3168,24 +3167,24 @@ discard block |
||
| 3168 | 3167 | */ |
| 3169 | 3168 | function exec_info_dist() { |
| 3170 | 3169 | |
| 3171 | - include_spip('inc/autoriser'); |
|
| 3172 | - if (autoriser('phpinfos')) { |
|
| 3173 | - $cookies_masques = ['spip_session', 'PHPSESSID']; |
|
| 3174 | - $cookies_backup = []; |
|
| 3175 | - foreach ($cookies_masques as $k) { |
|
| 3176 | - if (!empty($_COOKIE[$k])) { |
|
| 3177 | - $cookies_backup[$k] = $_COOKIE[$k]; |
|
| 3178 | - $_COOKIE[$k] = '******************************'; |
|
| 3179 | - } |
|
| 3180 | - } |
|
| 3181 | - phpinfo(); |
|
| 3182 | - foreach ($cookies_backup as $k => $v) { |
|
| 3183 | - $_COOKIE[$k] = $v; |
|
| 3184 | - } |
|
| 3185 | - } else { |
|
| 3186 | - include_spip('inc/filtres'); |
|
| 3187 | - sinon_interdire_acces(); |
|
| 3188 | - } |
|
| 3170 | + include_spip('inc/autoriser'); |
|
| 3171 | + if (autoriser('phpinfos')) { |
|
| 3172 | + $cookies_masques = ['spip_session', 'PHPSESSID']; |
|
| 3173 | + $cookies_backup = []; |
|
| 3174 | + foreach ($cookies_masques as $k) { |
|
| 3175 | + if (!empty($_COOKIE[$k])) { |
|
| 3176 | + $cookies_backup[$k] = $_COOKIE[$k]; |
|
| 3177 | + $_COOKIE[$k] = '******************************'; |
|
| 3178 | + } |
|
| 3179 | + } |
|
| 3180 | + phpinfo(); |
|
| 3181 | + foreach ($cookies_backup as $k => $v) { |
|
| 3182 | + $_COOKIE[$k] = $v; |
|
| 3183 | + } |
|
| 3184 | + } else { |
|
| 3185 | + include_spip('inc/filtres'); |
|
| 3186 | + sinon_interdire_acces(); |
|
| 3187 | + } |
|
| 3189 | 3188 | } |
| 3190 | 3189 | |
| 3191 | 3190 | /** |
@@ -3205,13 +3204,13 @@ discard block |
||
| 3205 | 3204 | * - string si $message à false. |
| 3206 | 3205 | **/ |
| 3207 | 3206 | function erreur_squelette($message = '', $lieu = '') { |
| 3208 | - $debusquer = charger_fonction('debusquer', 'public'); |
|
| 3209 | - if (is_array($lieu)) { |
|
| 3210 | - include_spip('public/compiler'); |
|
| 3211 | - $lieu = reconstruire_contexte_compil($lieu); |
|
| 3212 | - } |
|
| 3207 | + $debusquer = charger_fonction('debusquer', 'public'); |
|
| 3208 | + if (is_array($lieu)) { |
|
| 3209 | + include_spip('public/compiler'); |
|
| 3210 | + $lieu = reconstruire_contexte_compil($lieu); |
|
| 3211 | + } |
|
| 3213 | 3212 | |
| 3214 | - return $debusquer($message, $lieu); |
|
| 3213 | + return $debusquer($message, $lieu); |
|
| 3215 | 3214 | } |
| 3216 | 3215 | |
| 3217 | 3216 | /** |
@@ -3248,109 +3247,109 @@ discard block |
||
| 3248 | 3247 | * - ou tableau d'information sur le squelette. |
| 3249 | 3248 | */ |
| 3250 | 3249 | function recuperer_fond($fond, $contexte = array(), $options = array(), $connect = '') { |
| 3251 | - if (!function_exists('evaluer_fond')) { |
|
| 3252 | - include_spip('public/assembler'); |
|
| 3253 | - } |
|
| 3254 | - // assurer la compat avec l'ancienne syntaxe |
|
| 3255 | - // (trim etait le 3eme argument, par defaut a true) |
|
| 3256 | - if (!is_array($options)) { |
|
| 3257 | - $options = array('trim' => $options); |
|
| 3258 | - } |
|
| 3259 | - if (!isset($options['trim'])) { |
|
| 3260 | - $options['trim'] = true; |
|
| 3261 | - } |
|
| 3262 | - |
|
| 3263 | - if (isset($contexte['connect'])) { |
|
| 3264 | - $connect = $contexte['connect']; |
|
| 3265 | - unset($contexte['connect']); |
|
| 3266 | - } |
|
| 3267 | - |
|
| 3268 | - $texte = ""; |
|
| 3269 | - $pages = array(); |
|
| 3270 | - $lang_select = ''; |
|
| 3271 | - if (!isset($options['etoile']) or !$options['etoile']) { |
|
| 3272 | - // Si on a inclus sans fixer le critere de lang, on prend la langue courante |
|
| 3273 | - if (!isset($contexte['lang'])) { |
|
| 3274 | - $contexte['lang'] = $GLOBALS['spip_lang']; |
|
| 3275 | - } |
|
| 3276 | - |
|
| 3277 | - if ($contexte['lang'] != $GLOBALS['meta']['langue_site']) { |
|
| 3278 | - $lang_select = lang_select($contexte['lang']); |
|
| 3279 | - } |
|
| 3280 | - } |
|
| 3281 | - |
|
| 3282 | - if (!isset($GLOBALS['_INC_PUBLIC'])) { |
|
| 3283 | - $GLOBALS['_INC_PUBLIC'] = 0; |
|
| 3284 | - } |
|
| 3285 | - |
|
| 3286 | - $GLOBALS['_INC_PUBLIC']++; |
|
| 3287 | - |
|
| 3288 | - // fix #4235 |
|
| 3289 | - $cache_utilise_session_appelant = (isset($GLOBALS['cache_utilise_session']) ? $GLOBALS['cache_utilise_session'] : null); |
|
| 3290 | - |
|
| 3291 | - |
|
| 3292 | - foreach (is_array($fond) ? $fond : array($fond) as $f) { |
|
| 3250 | + if (!function_exists('evaluer_fond')) { |
|
| 3251 | + include_spip('public/assembler'); |
|
| 3252 | + } |
|
| 3253 | + // assurer la compat avec l'ancienne syntaxe |
|
| 3254 | + // (trim etait le 3eme argument, par defaut a true) |
|
| 3255 | + if (!is_array($options)) { |
|
| 3256 | + $options = array('trim' => $options); |
|
| 3257 | + } |
|
| 3258 | + if (!isset($options['trim'])) { |
|
| 3259 | + $options['trim'] = true; |
|
| 3260 | + } |
|
| 3261 | + |
|
| 3262 | + if (isset($contexte['connect'])) { |
|
| 3263 | + $connect = $contexte['connect']; |
|
| 3264 | + unset($contexte['connect']); |
|
| 3265 | + } |
|
| 3266 | + |
|
| 3267 | + $texte = ""; |
|
| 3268 | + $pages = array(); |
|
| 3269 | + $lang_select = ''; |
|
| 3270 | + if (!isset($options['etoile']) or !$options['etoile']) { |
|
| 3271 | + // Si on a inclus sans fixer le critere de lang, on prend la langue courante |
|
| 3272 | + if (!isset($contexte['lang'])) { |
|
| 3273 | + $contexte['lang'] = $GLOBALS['spip_lang']; |
|
| 3274 | + } |
|
| 3275 | + |
|
| 3276 | + if ($contexte['lang'] != $GLOBALS['meta']['langue_site']) { |
|
| 3277 | + $lang_select = lang_select($contexte['lang']); |
|
| 3278 | + } |
|
| 3279 | + } |
|
| 3280 | + |
|
| 3281 | + if (!isset($GLOBALS['_INC_PUBLIC'])) { |
|
| 3282 | + $GLOBALS['_INC_PUBLIC'] = 0; |
|
| 3283 | + } |
|
| 3284 | + |
|
| 3285 | + $GLOBALS['_INC_PUBLIC']++; |
|
| 3286 | + |
|
| 3287 | + // fix #4235 |
|
| 3288 | + $cache_utilise_session_appelant = (isset($GLOBALS['cache_utilise_session']) ? $GLOBALS['cache_utilise_session'] : null); |
|
| 3289 | + |
|
| 3290 | + |
|
| 3291 | + foreach (is_array($fond) ? $fond : array($fond) as $f) { |
|
| 3293 | 3292 | |
| 3294 | - unset($GLOBALS['cache_utilise_session']); // fix #4235 |
|
| 3295 | - |
|
| 3296 | - $page = evaluer_fond($f, $contexte, $connect); |
|
| 3297 | - if ($page === '') { |
|
| 3298 | - $c = isset($options['compil']) ? $options['compil'] : ''; |
|
| 3299 | - $a = array('fichier' => $f); |
|
| 3300 | - $erreur = _T('info_erreur_squelette2', $a); // squelette introuvable |
|
| 3301 | - erreur_squelette($erreur, $c); |
|
| 3302 | - // eviter des erreurs strictes ensuite sur $page['cle'] en PHP >= 5.4 |
|
| 3303 | - $page = array('texte' => '', 'erreur' => $erreur); |
|
| 3304 | - } |
|
| 3305 | - |
|
| 3306 | - $page = pipeline('recuperer_fond', array( |
|
| 3307 | - 'args' => array('fond' => $f, 'contexte' => $contexte, 'options' => $options, 'connect' => $connect), |
|
| 3308 | - 'data' => $page |
|
| 3309 | - )); |
|
| 3310 | - if (isset($options['ajax']) and $options['ajax']) { |
|
| 3311 | - if (!function_exists('encoder_contexte_ajax')) { |
|
| 3312 | - include_spip('inc/filtres'); |
|
| 3313 | - } |
|
| 3314 | - $page['texte'] = encoder_contexte_ajax( |
|
| 3315 | - array_merge( |
|
| 3316 | - $contexte, |
|
| 3317 | - array('fond' => $f), |
|
| 3318 | - ($connect ? array('connect' => $connect) : array()) |
|
| 3319 | - ), |
|
| 3320 | - '', |
|
| 3321 | - $page['texte'], |
|
| 3322 | - $options['ajax'] |
|
| 3323 | - ); |
|
| 3324 | - } |
|
| 3325 | - |
|
| 3326 | - if (isset($options['raw']) and $options['raw']) { |
|
| 3327 | - $pages[] = $page; |
|
| 3328 | - } else { |
|
| 3329 | - $texte .= $options['trim'] ? rtrim($page['texte']) : $page['texte']; |
|
| 3330 | - } |
|
| 3293 | + unset($GLOBALS['cache_utilise_session']); // fix #4235 |
|
| 3294 | + |
|
| 3295 | + $page = evaluer_fond($f, $contexte, $connect); |
|
| 3296 | + if ($page === '') { |
|
| 3297 | + $c = isset($options['compil']) ? $options['compil'] : ''; |
|
| 3298 | + $a = array('fichier' => $f); |
|
| 3299 | + $erreur = _T('info_erreur_squelette2', $a); // squelette introuvable |
|
| 3300 | + erreur_squelette($erreur, $c); |
|
| 3301 | + // eviter des erreurs strictes ensuite sur $page['cle'] en PHP >= 5.4 |
|
| 3302 | + $page = array('texte' => '', 'erreur' => $erreur); |
|
| 3303 | + } |
|
| 3304 | + |
|
| 3305 | + $page = pipeline('recuperer_fond', array( |
|
| 3306 | + 'args' => array('fond' => $f, 'contexte' => $contexte, 'options' => $options, 'connect' => $connect), |
|
| 3307 | + 'data' => $page |
|
| 3308 | + )); |
|
| 3309 | + if (isset($options['ajax']) and $options['ajax']) { |
|
| 3310 | + if (!function_exists('encoder_contexte_ajax')) { |
|
| 3311 | + include_spip('inc/filtres'); |
|
| 3312 | + } |
|
| 3313 | + $page['texte'] = encoder_contexte_ajax( |
|
| 3314 | + array_merge( |
|
| 3315 | + $contexte, |
|
| 3316 | + array('fond' => $f), |
|
| 3317 | + ($connect ? array('connect' => $connect) : array()) |
|
| 3318 | + ), |
|
| 3319 | + '', |
|
| 3320 | + $page['texte'], |
|
| 3321 | + $options['ajax'] |
|
| 3322 | + ); |
|
| 3323 | + } |
|
| 3324 | + |
|
| 3325 | + if (isset($options['raw']) and $options['raw']) { |
|
| 3326 | + $pages[] = $page; |
|
| 3327 | + } else { |
|
| 3328 | + $texte .= $options['trim'] ? rtrim($page['texte']) : $page['texte']; |
|
| 3329 | + } |
|
| 3331 | 3330 | |
| 3332 | - // contamination de la session appelante, pour les inclusions statiques |
|
| 3333 | - if (isset($page['invalideurs']['session'])){ |
|
| 3334 | - $cache_utilise_session_appelant = $page['invalideurs']['session']; |
|
| 3335 | - } |
|
| 3336 | - } |
|
| 3331 | + // contamination de la session appelante, pour les inclusions statiques |
|
| 3332 | + if (isset($page['invalideurs']['session'])){ |
|
| 3333 | + $cache_utilise_session_appelant = $page['invalideurs']['session']; |
|
| 3334 | + } |
|
| 3335 | + } |
|
| 3337 | 3336 | |
| 3338 | - // restaurer le sessionnement du contexte appelant, |
|
| 3339 | - // éventuellement contaminé si on vient de récupérer une inclusion statique sessionnée |
|
| 3340 | - if (isset($cache_utilise_session_appelant)) { |
|
| 3341 | - $GLOBALS['cache_utilise_session'] = $cache_utilise_session_appelant; |
|
| 3342 | - } |
|
| 3337 | + // restaurer le sessionnement du contexte appelant, |
|
| 3338 | + // éventuellement contaminé si on vient de récupérer une inclusion statique sessionnée |
|
| 3339 | + if (isset($cache_utilise_session_appelant)) { |
|
| 3340 | + $GLOBALS['cache_utilise_session'] = $cache_utilise_session_appelant; |
|
| 3341 | + } |
|
| 3343 | 3342 | |
| 3344 | - $GLOBALS['_INC_PUBLIC']--; |
|
| 3343 | + $GLOBALS['_INC_PUBLIC']--; |
|
| 3345 | 3344 | |
| 3346 | - if ($lang_select) { |
|
| 3347 | - lang_select(); |
|
| 3348 | - } |
|
| 3349 | - if (isset($options['raw']) and $options['raw']) { |
|
| 3350 | - return is_array($fond) ? $pages : reset($pages); |
|
| 3351 | - } else { |
|
| 3352 | - return $options['trim'] ? ltrim($texte) : $texte; |
|
| 3353 | - } |
|
| 3345 | + if ($lang_select) { |
|
| 3346 | + lang_select(); |
|
| 3347 | + } |
|
| 3348 | + if (isset($options['raw']) and $options['raw']) { |
|
| 3349 | + return is_array($fond) ? $pages : reset($pages); |
|
| 3350 | + } else { |
|
| 3351 | + return $options['trim'] ? ltrim($texte) : $texte; |
|
| 3352 | + } |
|
| 3354 | 3353 | } |
| 3355 | 3354 | |
| 3356 | 3355 | /** |
@@ -3360,7 +3359,7 @@ discard block |
||
| 3360 | 3359 | * @return string |
| 3361 | 3360 | */ |
| 3362 | 3361 | function trouve_modele($nom) { |
| 3363 | - return trouver_fond($nom, 'modeles/'); |
|
| 3362 | + return trouver_fond($nom, 'modeles/'); |
|
| 3364 | 3363 | } |
| 3365 | 3364 | |
| 3366 | 3365 | /** |
@@ -3376,21 +3375,21 @@ discard block |
||
| 3376 | 3375 | * @return array|string |
| 3377 | 3376 | */ |
| 3378 | 3377 | function trouver_fond($nom, $dir = '', $pathinfo = false) { |
| 3379 | - $f = find_in_path($nom . '.' . _EXTENSION_SQUELETTES, $dir ? rtrim($dir, '/') . '/' : ''); |
|
| 3380 | - if (!$pathinfo) { |
|
| 3381 | - return $f; |
|
| 3382 | - } |
|
| 3383 | - // renvoyer un tableau detaille si $pathinfo==true |
|
| 3384 | - $p = pathinfo($f); |
|
| 3385 | - if (!isset($p['extension']) or !$p['extension']) { |
|
| 3386 | - $p['extension'] = _EXTENSION_SQUELETTES; |
|
| 3387 | - } |
|
| 3388 | - if (!isset($p['extension']) or !$p['filename']) { |
|
| 3389 | - $p['filename'] = ($p['basename'] ? substr($p['basename'], 0, -strlen($p['extension']) - 1) : ''); |
|
| 3390 | - } |
|
| 3391 | - $p['fond'] = ($f ? substr($f, 0, -strlen($p['extension']) - 1) : ''); |
|
| 3378 | + $f = find_in_path($nom . '.' . _EXTENSION_SQUELETTES, $dir ? rtrim($dir, '/') . '/' : ''); |
|
| 3379 | + if (!$pathinfo) { |
|
| 3380 | + return $f; |
|
| 3381 | + } |
|
| 3382 | + // renvoyer un tableau detaille si $pathinfo==true |
|
| 3383 | + $p = pathinfo($f); |
|
| 3384 | + if (!isset($p['extension']) or !$p['extension']) { |
|
| 3385 | + $p['extension'] = _EXTENSION_SQUELETTES; |
|
| 3386 | + } |
|
| 3387 | + if (!isset($p['extension']) or !$p['filename']) { |
|
| 3388 | + $p['filename'] = ($p['basename'] ? substr($p['basename'], 0, -strlen($p['extension']) - 1) : ''); |
|
| 3389 | + } |
|
| 3390 | + $p['fond'] = ($f ? substr($f, 0, -strlen($p['extension']) - 1) : ''); |
|
| 3392 | 3391 | |
| 3393 | - return $p; |
|
| 3392 | + return $p; |
|
| 3394 | 3393 | } |
| 3395 | 3394 | |
| 3396 | 3395 | /** |
@@ -3410,21 +3409,21 @@ discard block |
||
| 3410 | 3409 | * Nom de l'exec, sinon chaîne vide. |
| 3411 | 3410 | **/ |
| 3412 | 3411 | function tester_url_ecrire($nom) { |
| 3413 | - static $exec = array(); |
|
| 3414 | - if (isset($exec[$nom])) { |
|
| 3415 | - return $exec[$nom]; |
|
| 3416 | - } |
|
| 3417 | - // tester si c'est une page en squelette |
|
| 3418 | - if (trouver_fond($nom, 'prive/squelettes/contenu/')) { |
|
| 3419 | - return $exec[$nom] = 'fond'; |
|
| 3420 | - } // echafaudage d'un fond ! |
|
| 3421 | - elseif (include_spip('public/styliser_par_z') and z_echafaudable($nom)) { |
|
| 3422 | - return $exec[$nom] = 'fond'; |
|
| 3423 | - } |
|
| 3424 | - // attention, il ne faut pas inclure l'exec ici |
|
| 3425 | - // car sinon #URL_ECRIRE provoque des inclusions |
|
| 3426 | - // et des define intrusifs potentiels |
|
| 3427 | - return $exec[$nom] = ((find_in_path("{$nom}.php", 'exec/') or charger_fonction($nom, 'exec', true)) ? $nom : ''); |
|
| 3412 | + static $exec = array(); |
|
| 3413 | + if (isset($exec[$nom])) { |
|
| 3414 | + return $exec[$nom]; |
|
| 3415 | + } |
|
| 3416 | + // tester si c'est une page en squelette |
|
| 3417 | + if (trouver_fond($nom, 'prive/squelettes/contenu/')) { |
|
| 3418 | + return $exec[$nom] = 'fond'; |
|
| 3419 | + } // echafaudage d'un fond ! |
|
| 3420 | + elseif (include_spip('public/styliser_par_z') and z_echafaudable($nom)) { |
|
| 3421 | + return $exec[$nom] = 'fond'; |
|
| 3422 | + } |
|
| 3423 | + // attention, il ne faut pas inclure l'exec ici |
|
| 3424 | + // car sinon #URL_ECRIRE provoque des inclusions |
|
| 3425 | + // et des define intrusifs potentiels |
|
| 3426 | + return $exec[$nom] = ((find_in_path("{$nom}.php", 'exec/') or charger_fonction($nom, 'exec', true)) ? $nom : ''); |
|
| 3428 | 3427 | } |
| 3429 | 3428 | |
| 3430 | 3429 | /** |
@@ -3434,8 +3433,8 @@ discard block |
||
| 3434 | 3433 | * true si la constante _VERSION_HTML n'est pas définie ou égale à html5 |
| 3435 | 3434 | **/ |
| 3436 | 3435 | function html5_permis() { |
| 3437 | - return (!defined('_VERSION_HTML') |
|
| 3438 | - or _VERSION_HTML !== 'html4'); |
|
| 3436 | + return (!defined('_VERSION_HTML') |
|
| 3437 | + or _VERSION_HTML !== 'html4'); |
|
| 3439 | 3438 | } |
| 3440 | 3439 | |
| 3441 | 3440 | /** |
@@ -3445,30 +3444,30 @@ discard block |
||
| 3445 | 3444 | * @return array |
| 3446 | 3445 | */ |
| 3447 | 3446 | function formats_image_acceptables($gd = null, $svg_allowed = true) { |
| 3448 | - $formats = null; |
|
| 3449 | - if (!is_null($gd)) { |
|
| 3450 | - $config = ($gd ? "gd_formats" : "formats_graphiques"); |
|
| 3451 | - if (isset($GLOBALS['meta'][$config])) { |
|
| 3452 | - $formats = $GLOBALS['meta'][$config]; |
|
| 3453 | - $formats = explode(',', $formats); |
|
| 3454 | - $formats = array_filter($formats); |
|
| 3455 | - $formats = array_map('trim', $formats); |
|
| 3456 | - } |
|
| 3457 | - } |
|
| 3458 | - if (is_null($formats)) { |
|
| 3459 | - include_spip('inc/filtres_images_lib_mini'); |
|
| 3460 | - $formats = _image_extensions_acceptees_en_entree(); |
|
| 3461 | - } |
|
| 3462 | - |
|
| 3463 | - if ($svg_allowed) { |
|
| 3464 | - if (!in_array('svg', $formats)) { |
|
| 3465 | - $formats[] = 'svg'; |
|
| 3466 | - } |
|
| 3467 | - } |
|
| 3468 | - else { |
|
| 3469 | - $formats = array_diff($formats, ['svg']); |
|
| 3470 | - } |
|
| 3471 | - return $formats; |
|
| 3447 | + $formats = null; |
|
| 3448 | + if (!is_null($gd)) { |
|
| 3449 | + $config = ($gd ? "gd_formats" : "formats_graphiques"); |
|
| 3450 | + if (isset($GLOBALS['meta'][$config])) { |
|
| 3451 | + $formats = $GLOBALS['meta'][$config]; |
|
| 3452 | + $formats = explode(',', $formats); |
|
| 3453 | + $formats = array_filter($formats); |
|
| 3454 | + $formats = array_map('trim', $formats); |
|
| 3455 | + } |
|
| 3456 | + } |
|
| 3457 | + if (is_null($formats)) { |
|
| 3458 | + include_spip('inc/filtres_images_lib_mini'); |
|
| 3459 | + $formats = _image_extensions_acceptees_en_entree(); |
|
| 3460 | + } |
|
| 3461 | + |
|
| 3462 | + if ($svg_allowed) { |
|
| 3463 | + if (!in_array('svg', $formats)) { |
|
| 3464 | + $formats[] = 'svg'; |
|
| 3465 | + } |
|
| 3466 | + } |
|
| 3467 | + else { |
|
| 3468 | + $formats = array_diff($formats, ['svg']); |
|
| 3469 | + } |
|
| 3470 | + return $formats; |
|
| 3472 | 3471 | } |
| 3473 | 3472 | |
| 3474 | 3473 | /** |
@@ -3477,21 +3476,21 @@ discard block |
||
| 3477 | 3476 | * @return array|bool |
| 3478 | 3477 | */ |
| 3479 | 3478 | function spip_getimagesize($fichier) { |
| 3480 | - if (!$imagesize = @getimagesize($fichier)) { |
|
| 3479 | + if (!$imagesize = @getimagesize($fichier)) { |
|
| 3481 | 3480 | |
| 3482 | - include_spip("inc/svg"); |
|
| 3483 | - if ($attrs = svg_lire_attributs($fichier)) { |
|
| 3484 | - list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs); |
|
| 3485 | - $imagesize = [ |
|
| 3486 | - $width, |
|
| 3487 | - $height, |
|
| 3488 | - IMAGETYPE_SVG, |
|
| 3489 | - "width=\"{$width}\" height=\"{$height}\"", |
|
| 3490 | - "mime" => "image/svg+xml" |
|
| 3491 | - ]; |
|
| 3492 | - } |
|
| 3493 | - } |
|
| 3494 | - return $imagesize; |
|
| 3481 | + include_spip("inc/svg"); |
|
| 3482 | + if ($attrs = svg_lire_attributs($fichier)) { |
|
| 3483 | + list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs); |
|
| 3484 | + $imagesize = [ |
|
| 3485 | + $width, |
|
| 3486 | + $height, |
|
| 3487 | + IMAGETYPE_SVG, |
|
| 3488 | + "width=\"{$width}\" height=\"{$height}\"", |
|
| 3489 | + "mime" => "image/svg+xml" |
|
| 3490 | + ]; |
|
| 3491 | + } |
|
| 3492 | + } |
|
| 3493 | + return $imagesize; |
|
| 3495 | 3494 | } |
| 3496 | 3495 | |
| 3497 | 3496 | /** |
@@ -3505,18 +3504,18 @@ discard block |
||
| 3505 | 3504 | * @param string $statut |
| 3506 | 3505 | */ |
| 3507 | 3506 | function avertir_auteurs($nom, $message, $statut = '') { |
| 3508 | - $alertes = $GLOBALS['meta']['message_alertes_auteurs']; |
|
| 3509 | - if (!$alertes |
|
| 3510 | - or !is_array($alertes = unserialize($alertes)) |
|
| 3511 | - ) { |
|
| 3512 | - $alertes = array(); |
|
| 3513 | - } |
|
| 3507 | + $alertes = $GLOBALS['meta']['message_alertes_auteurs']; |
|
| 3508 | + if (!$alertes |
|
| 3509 | + or !is_array($alertes = unserialize($alertes)) |
|
| 3510 | + ) { |
|
| 3511 | + $alertes = array(); |
|
| 3512 | + } |
|
| 3514 | 3513 | |
| 3515 | - if (!isset($alertes[$statut])) { |
|
| 3516 | - $alertes[$statut] = array(); |
|
| 3517 | - } |
|
| 3518 | - $alertes[$statut][$nom] = $message; |
|
| 3519 | - ecrire_meta("message_alertes_auteurs", serialize($alertes)); |
|
| 3514 | + if (!isset($alertes[$statut])) { |
|
| 3515 | + $alertes[$statut] = array(); |
|
| 3516 | + } |
|
| 3517 | + $alertes[$statut][$nom] = $message; |
|
| 3518 | + ecrire_meta("message_alertes_auteurs", serialize($alertes)); |
|
| 3520 | 3519 | } |
| 3521 | 3520 | |
| 3522 | 3521 | /** |
@@ -3530,10 +3529,10 @@ discard block |
||
| 3530 | 3529 | * @return string|string[] |
| 3531 | 3530 | */ |
| 3532 | 3531 | function spip_sanitize_classname($classes) { |
| 3533 | - if (is_array($classes)) { |
|
| 3534 | - return array_map('spip_sanitize_classname', $classes); |
|
| 3535 | - } |
|
| 3536 | - return preg_replace("/[^ 0-9a-z_\-+@]/i", "", $classes); |
|
| 3532 | + if (is_array($classes)) { |
|
| 3533 | + return array_map('spip_sanitize_classname', $classes); |
|
| 3534 | + } |
|
| 3535 | + return preg_replace("/[^ 0-9a-z_\-+@]/i", "", $classes); |
|
| 3537 | 3536 | } |
| 3538 | 3537 | |
| 3539 | 3538 | |
@@ -3558,32 +3557,32 @@ discard block |
||
| 3558 | 3557 | * Avec operateur : bool. |
| 3559 | 3558 | **/ |
| 3560 | 3559 | function spip_version_compare($v1, $v2, $op = null) { |
| 3561 | - $v1 = strtolower(preg_replace(',([0-9])[\s.-]?(dev|alpha|a|beta|b|rc|pl|p),i', '\\1.\\2', $v1)); |
|
| 3562 | - $v2 = strtolower(preg_replace(',([0-9])[\s.-]?(dev|alpha|a|beta|b|rc|pl|p),i', '\\1.\\2', $v2)); |
|
| 3563 | - $v1 = str_replace('rc', 'RC', $v1); // certaines versions de PHP ne comprennent RC qu'en majuscule |
|
| 3564 | - $v2 = str_replace('rc', 'RC', $v2); // certaines versions de PHP ne comprennent RC qu'en majuscule |
|
| 3565 | - |
|
| 3566 | - $v1 = explode('.', $v1); |
|
| 3567 | - $v2 = explode('.', $v2); |
|
| 3568 | - // $v1 est toujours une version, donc sans etoile |
|
| 3569 | - while (count($v1) < count($v2)) { |
|
| 3570 | - $v1[] = '0'; |
|
| 3571 | - } |
|
| 3572 | - |
|
| 3573 | - // $v2 peut etre une borne, donc accepte l'etoile |
|
| 3574 | - $etoile = false; |
|
| 3575 | - foreach ($v1 as $k => $v) { |
|
| 3576 | - if (!isset($v2[$k])) { |
|
| 3577 | - $v2[] = ($etoile and (is_numeric($v) or $v == 'pl' or $v == 'p')) ? $v : '0'; |
|
| 3578 | - } else { |
|
| 3579 | - if ($v2[$k] == '*') { |
|
| 3580 | - $etoile = true; |
|
| 3581 | - $v2[$k] = $v; |
|
| 3582 | - } |
|
| 3583 | - } |
|
| 3584 | - } |
|
| 3585 | - $v1 = implode('.', $v1); |
|
| 3586 | - $v2 = implode('.', $v2); |
|
| 3587 | - |
|
| 3588 | - return $op ? version_compare($v1, $v2, $op) : version_compare($v1, $v2); |
|
| 3560 | + $v1 = strtolower(preg_replace(',([0-9])[\s.-]?(dev|alpha|a|beta|b|rc|pl|p),i', '\\1.\\2', $v1)); |
|
| 3561 | + $v2 = strtolower(preg_replace(',([0-9])[\s.-]?(dev|alpha|a|beta|b|rc|pl|p),i', '\\1.\\2', $v2)); |
|
| 3562 | + $v1 = str_replace('rc', 'RC', $v1); // certaines versions de PHP ne comprennent RC qu'en majuscule |
|
| 3563 | + $v2 = str_replace('rc', 'RC', $v2); // certaines versions de PHP ne comprennent RC qu'en majuscule |
|
| 3564 | + |
|
| 3565 | + $v1 = explode('.', $v1); |
|
| 3566 | + $v2 = explode('.', $v2); |
|
| 3567 | + // $v1 est toujours une version, donc sans etoile |
|
| 3568 | + while (count($v1) < count($v2)) { |
|
| 3569 | + $v1[] = '0'; |
|
| 3570 | + } |
|
| 3571 | + |
|
| 3572 | + // $v2 peut etre une borne, donc accepte l'etoile |
|
| 3573 | + $etoile = false; |
|
| 3574 | + foreach ($v1 as $k => $v) { |
|
| 3575 | + if (!isset($v2[$k])) { |
|
| 3576 | + $v2[] = ($etoile and (is_numeric($v) or $v == 'pl' or $v == 'p')) ? $v : '0'; |
|
| 3577 | + } else { |
|
| 3578 | + if ($v2[$k] == '*') { |
|
| 3579 | + $etoile = true; |
|
| 3580 | + $v2[$k] = $v; |
|
| 3581 | + } |
|
| 3582 | + } |
|
| 3583 | + } |
|
| 3584 | + $v1 = implode('.', $v1); |
|
| 3585 | + $v2 = implode('.', $v2); |
|
| 3586 | + |
|
| 3587 | + return $op ? version_compare($v1, $v2, $op) : version_compare($v1, $v2); |
|
| 3589 | 3588 | } |