@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * @package SPIP\Core\Compilateur\References |
| 17 | 17 | **/ |
| 18 | 18 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 19 | - return; |
|
| 19 | + return; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -41,14 +41,14 @@ discard block |
||
| 41 | 41 | * - '' si une référence explicite incorrecte est envoyée |
| 42 | 42 | */ |
| 43 | 43 | function index_boucle($p) { |
| 44 | - if (strlen($p->nom_boucle)) { |
|
| 45 | - // retourne l’index explicite demandé s’il existe |
|
| 46 | - if (!empty($p->boucles[$p->nom_boucle])) { |
|
| 47 | - return $p->nom_boucle; |
|
| 48 | - } |
|
| 49 | - return ''; |
|
| 50 | - } |
|
| 51 | - return $p->id_boucle; |
|
| 44 | + if (strlen($p->nom_boucle)) { |
|
| 45 | + // retourne l’index explicite demandé s’il existe |
|
| 46 | + if (!empty($p->boucles[$p->nom_boucle])) { |
|
| 47 | + return $p->nom_boucle; |
|
| 48 | + } |
|
| 49 | + return ''; |
|
| 50 | + } |
|
| 51 | + return $p->id_boucle; |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | |
@@ -71,17 +71,17 @@ discard block |
||
| 71 | 71 | * - '' si une référence explicite incorrecte est envoyée |
| 72 | 72 | */ |
| 73 | 73 | function index_boucle_mere($p) { |
| 74 | - if (strlen($p->nom_boucle)) { |
|
| 75 | - // retourne l’index explicite demandé s’il existe |
|
| 76 | - if (!empty($p->boucles[$p->nom_boucle])) { |
|
| 77 | - return $p->nom_boucle; |
|
| 78 | - } |
|
| 79 | - return ''; |
|
| 80 | - } |
|
| 81 | - if (!empty($p->descr['id_mere'])) { |
|
| 82 | - return $p->descr['id_mere']; |
|
| 83 | - } |
|
| 84 | - return ''; |
|
| 74 | + if (strlen($p->nom_boucle)) { |
|
| 75 | + // retourne l’index explicite demandé s’il existe |
|
| 76 | + if (!empty($p->boucles[$p->nom_boucle])) { |
|
| 77 | + return $p->nom_boucle; |
|
| 78 | + } |
|
| 79 | + return ''; |
|
| 80 | + } |
|
| 81 | + if (!empty($p->descr['id_mere'])) { |
|
| 82 | + return $p->descr['id_mere']; |
|
| 83 | + } |
|
| 84 | + return ''; |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | /** |
@@ -115,74 +115,74 @@ discard block |
||
| 115 | 115 | * Code PHP pour obtenir le champ SQL |
| 116 | 116 | */ |
| 117 | 117 | function index_pile( |
| 118 | - $idb, |
|
| 119 | - $nom_champ, |
|
| 120 | - &$boucles, |
|
| 121 | - $explicite = '', |
|
| 122 | - $defaut = null, |
|
| 123 | - $remonte_pile = true, |
|
| 124 | - $select = true |
|
| 118 | + $idb, |
|
| 119 | + $nom_champ, |
|
| 120 | + &$boucles, |
|
| 121 | + $explicite = '', |
|
| 122 | + $defaut = null, |
|
| 123 | + $remonte_pile = true, |
|
| 124 | + $select = true |
|
| 125 | 125 | ) { |
| 126 | - if (!is_string($defaut)) { |
|
| 127 | - $defaut = '@$Pile[0][\'' . strtolower($nom_champ) . '\']'; |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - $idb_origine = $idb; |
|
| 131 | - $nom_champ_origine = $nom_champ; |
|
| 132 | - |
|
| 133 | - $i = 0; |
|
| 134 | - if (strlen($explicite)) { |
|
| 135 | - // Recherche d'un champ dans un etage superieur |
|
| 136 | - while (($idb !== $explicite) && ($idb !== '')) { |
|
| 137 | - # spip_log("Cherchexpl: $nom_champ '$explicite' '$idb' '$i'"); |
|
| 138 | - $i++; |
|
| 139 | - $idb = $boucles[$idb]->id_parent; |
|
| 140 | - } |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - # spip_log("Cherche: $nom_champ a partir de '$idb'"); |
|
| 144 | - $nom_champ = strtolower($nom_champ); |
|
| 145 | - $conditionnel = array(); |
|
| 146 | - // attention: entre la boucle nommee 0, "" et le tableau vide, |
|
| 147 | - // il y a incoherences qu'il vaut mieux eviter |
|
| 148 | - while (isset($boucles[$idb])) { |
|
| 149 | - $joker = true; |
|
| 150 | - // modifie $joker si tous les champs sont autorisés. |
|
| 151 | - // $t = le select pour le champ, si on l'a trouvé (ou si joker) |
|
| 152 | - // $c = le nom du champ demandé |
|
| 153 | - list($t, $c) = index_tables_en_pile($idb, $nom_champ, $boucles, $joker); |
|
| 154 | - if ($t) { |
|
| 155 | - if ($select and !in_array($t, $boucles[$idb]->select)) { |
|
| 156 | - $boucles[$idb]->select[] = $t; |
|
| 157 | - } |
|
| 158 | - // renseigner la boucle source de ce champ pour les traitements |
|
| 159 | - $boucles[$idb_origine]->source_champ[$nom_champ_origine] = $idb; |
|
| 160 | - $champ = '$Pile[$SP' . ($i ? "-$i" : "") . '][\'' . $c . '\']'; |
|
| 161 | - if (!$joker) { |
|
| 162 | - return index_compose($conditionnel, $champ); |
|
| 163 | - } |
|
| 164 | - |
|
| 165 | - // tant que l'on trouve des tables avec joker, on continue |
|
| 166 | - // avec la boucle parente et on conditionne à l'exécution |
|
| 167 | - // la présence du champ. Si le champ existe à l'exécution |
|
| 168 | - // dans une boucle, il est pris, sinon on le cherche dans le parent... |
|
| 169 | - $conditionnel[] = "isset($champ)?$champ"; |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - if ($remonte_pile) { |
|
| 173 | - # spip_log("On remonte vers $i"); |
|
| 174 | - // Sinon on remonte d'un cran |
|
| 175 | - $idb = $boucles[$idb]->id_parent; |
|
| 176 | - $i++; |
|
| 177 | - } else { |
|
| 178 | - $idb = null; |
|
| 179 | - } |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - # spip_log("Pas vu $nom_champ"); |
|
| 183 | - // esperons qu'il y sera |
|
| 184 | - // ou qu'on a fourni une valeur par "defaut" plus pertinent |
|
| 185 | - return index_compose($conditionnel, $defaut); |
|
| 126 | + if (!is_string($defaut)) { |
|
| 127 | + $defaut = '@$Pile[0][\'' . strtolower($nom_champ) . '\']'; |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + $idb_origine = $idb; |
|
| 131 | + $nom_champ_origine = $nom_champ; |
|
| 132 | + |
|
| 133 | + $i = 0; |
|
| 134 | + if (strlen($explicite)) { |
|
| 135 | + // Recherche d'un champ dans un etage superieur |
|
| 136 | + while (($idb !== $explicite) && ($idb !== '')) { |
|
| 137 | + # spip_log("Cherchexpl: $nom_champ '$explicite' '$idb' '$i'"); |
|
| 138 | + $i++; |
|
| 139 | + $idb = $boucles[$idb]->id_parent; |
|
| 140 | + } |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + # spip_log("Cherche: $nom_champ a partir de '$idb'"); |
|
| 144 | + $nom_champ = strtolower($nom_champ); |
|
| 145 | + $conditionnel = array(); |
|
| 146 | + // attention: entre la boucle nommee 0, "" et le tableau vide, |
|
| 147 | + // il y a incoherences qu'il vaut mieux eviter |
|
| 148 | + while (isset($boucles[$idb])) { |
|
| 149 | + $joker = true; |
|
| 150 | + // modifie $joker si tous les champs sont autorisés. |
|
| 151 | + // $t = le select pour le champ, si on l'a trouvé (ou si joker) |
|
| 152 | + // $c = le nom du champ demandé |
|
| 153 | + list($t, $c) = index_tables_en_pile($idb, $nom_champ, $boucles, $joker); |
|
| 154 | + if ($t) { |
|
| 155 | + if ($select and !in_array($t, $boucles[$idb]->select)) { |
|
| 156 | + $boucles[$idb]->select[] = $t; |
|
| 157 | + } |
|
| 158 | + // renseigner la boucle source de ce champ pour les traitements |
|
| 159 | + $boucles[$idb_origine]->source_champ[$nom_champ_origine] = $idb; |
|
| 160 | + $champ = '$Pile[$SP' . ($i ? "-$i" : "") . '][\'' . $c . '\']'; |
|
| 161 | + if (!$joker) { |
|
| 162 | + return index_compose($conditionnel, $champ); |
|
| 163 | + } |
|
| 164 | + |
|
| 165 | + // tant que l'on trouve des tables avec joker, on continue |
|
| 166 | + // avec la boucle parente et on conditionne à l'exécution |
|
| 167 | + // la présence du champ. Si le champ existe à l'exécution |
|
| 168 | + // dans une boucle, il est pris, sinon on le cherche dans le parent... |
|
| 169 | + $conditionnel[] = "isset($champ)?$champ"; |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + if ($remonte_pile) { |
|
| 173 | + # spip_log("On remonte vers $i"); |
|
| 174 | + // Sinon on remonte d'un cran |
|
| 175 | + $idb = $boucles[$idb]->id_parent; |
|
| 176 | + $i++; |
|
| 177 | + } else { |
|
| 178 | + $idb = null; |
|
| 179 | + } |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + # spip_log("Pas vu $nom_champ"); |
|
| 183 | + // esperons qu'il y sera |
|
| 184 | + // ou qu'on a fourni une valeur par "defaut" plus pertinent |
|
| 185 | + return index_compose($conditionnel, $defaut); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | /** |
@@ -196,12 +196,12 @@ discard block |
||
| 196 | 196 | * @return string Code PHP complet de recherche d'un champ |
| 197 | 197 | */ |
| 198 | 198 | function index_compose($conditionnel, $defaut) { |
| 199 | - while ($c = array_pop($conditionnel)) { |
|
| 200 | - // si on passe defaut = '', ne pas générer d'erreur de compilation. |
|
| 201 | - $defaut = "($c:(" . ($defaut ? $defaut : "''") . "))"; |
|
| 202 | - } |
|
| 199 | + while ($c = array_pop($conditionnel)) { |
|
| 200 | + // si on passe defaut = '', ne pas générer d'erreur de compilation. |
|
| 201 | + $defaut = "($c:(" . ($defaut ? $defaut : "''") . "))"; |
|
| 202 | + } |
|
| 203 | 203 | |
| 204 | - return $defaut; |
|
| 204 | + return $defaut; |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | /** |
@@ -237,74 +237,74 @@ discard block |
||
| 237 | 237 | **/ |
| 238 | 238 | function index_tables_en_pile($idb, $nom_champ, &$boucles, &$joker) { |
| 239 | 239 | |
| 240 | - $r = $boucles[$idb]->type_requete; |
|
| 241 | - // boucle recursive, c'est foutu... |
|
| 242 | - if ($r == TYPE_RECURSIF) { |
|
| 243 | - return array(); |
|
| 244 | - } |
|
| 245 | - if (!$r) { |
|
| 246 | - $joker = false; // indiquer a l'appelant |
|
| 247 | - # continuer pour chercher l'erreur suivante |
|
| 248 | - return array("'#" . $r . ':' . $nom_champ . "'", ''); |
|
| 249 | - } |
|
| 250 | - |
|
| 251 | - $desc = $boucles[$idb]->show; |
|
| 252 | - // le nom du champ est il une exception de la table ? un alias ? |
|
| 253 | - $excep = isset($GLOBALS['exceptions_des_tables'][$r]) ? $GLOBALS['exceptions_des_tables'][$r] : ''; |
|
| 254 | - if ($excep) { |
|
| 255 | - $excep = isset($excep[$nom_champ]) ? $excep[$nom_champ] : ''; |
|
| 256 | - } |
|
| 257 | - if ($excep) { |
|
| 258 | - $joker = false; // indiquer a l'appelant |
|
| 259 | - return index_exception($boucles[$idb], $desc, $nom_champ, $excep); |
|
| 260 | - } // pas d'alias. Le champ existe t'il ? |
|
| 261 | - else { |
|
| 262 | - // le champ est réellement présent, on le prend. |
|
| 263 | - if (isset($desc['field'][$nom_champ])) { |
|
| 264 | - $t = $boucles[$idb]->id_table; |
|
| 265 | - $joker = false; // indiquer a l'appelant |
|
| 266 | - return array("$t.$nom_champ", $nom_champ); |
|
| 267 | - } |
|
| 268 | - // Tous les champs sont-ils acceptés ? |
|
| 269 | - // Si oui, on retourne le champ, et on lève le flag joker |
|
| 270 | - // C'est le cas des itérateurs DATA qui acceptent tout |
|
| 271 | - // et testent la présence du champ à l'exécution et non à la compilation |
|
| 272 | - // car ils ne connaissent pas ici leurs contenus. |
|
| 273 | - elseif (/*$joker AND */ |
|
| 274 | - isset($desc['field']['*']) |
|
| 275 | - ) { |
|
| 276 | - $joker = true; // indiquer a l'appelant |
|
| 277 | - return array($nom_champ, $nom_champ); |
|
| 278 | - } |
|
| 279 | - // pas d'alias, pas de champ, pas de joker... |
|
| 280 | - // tenter via une jointure... |
|
| 281 | - else { |
|
| 282 | - $joker = false; // indiquer a l'appelant |
|
| 283 | - // regarder si le champ est deja dans une jointure existante |
|
| 284 | - // sinon, si il y a des joitures explicites, la construire |
|
| 285 | - if (!$t = trouver_champ_exterieur($nom_champ, $boucles[$idb]->from, $boucles[$idb])) { |
|
| 286 | - if ($boucles[$idb]->jointures_explicites) { |
|
| 287 | - // [todo] Ne pas lancer que lorsque il y a des jointures explicites !!!! |
|
| 288 | - // fonctionnel, il suffit d'utiliser $boucles[$idb]->jointures au lieu de jointures_explicites |
|
| 289 | - // mais est-ce ce qu'on veut ? |
|
| 290 | - $jointures = preg_split("/\s+/", $boucles[$idb]->jointures_explicites); |
|
| 291 | - if ($cle = trouver_jointure_champ($nom_champ, $boucles[$idb], $jointures)) { |
|
| 292 | - $t = trouver_champ_exterieur($nom_champ, $boucles[$idb]->from, $boucles[$idb]); |
|
| 293 | - } |
|
| 294 | - } |
|
| 295 | - } |
|
| 296 | - if ($t) { |
|
| 297 | - // si on a trouvé une jointure possible, on fait comme |
|
| 298 | - // si c'était une exception pour le champ demandé |
|
| 299 | - return index_exception($boucles[$idb], |
|
| 300 | - $desc, |
|
| 301 | - $nom_champ, |
|
| 302 | - array($t[1]['id_table'], reset($t[2]))); |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - return array('', ''); |
|
| 306 | - } |
|
| 307 | - } |
|
| 240 | + $r = $boucles[$idb]->type_requete; |
|
| 241 | + // boucle recursive, c'est foutu... |
|
| 242 | + if ($r == TYPE_RECURSIF) { |
|
| 243 | + return array(); |
|
| 244 | + } |
|
| 245 | + if (!$r) { |
|
| 246 | + $joker = false; // indiquer a l'appelant |
|
| 247 | + # continuer pour chercher l'erreur suivante |
|
| 248 | + return array("'#" . $r . ':' . $nom_champ . "'", ''); |
|
| 249 | + } |
|
| 250 | + |
|
| 251 | + $desc = $boucles[$idb]->show; |
|
| 252 | + // le nom du champ est il une exception de la table ? un alias ? |
|
| 253 | + $excep = isset($GLOBALS['exceptions_des_tables'][$r]) ? $GLOBALS['exceptions_des_tables'][$r] : ''; |
|
| 254 | + if ($excep) { |
|
| 255 | + $excep = isset($excep[$nom_champ]) ? $excep[$nom_champ] : ''; |
|
| 256 | + } |
|
| 257 | + if ($excep) { |
|
| 258 | + $joker = false; // indiquer a l'appelant |
|
| 259 | + return index_exception($boucles[$idb], $desc, $nom_champ, $excep); |
|
| 260 | + } // pas d'alias. Le champ existe t'il ? |
|
| 261 | + else { |
|
| 262 | + // le champ est réellement présent, on le prend. |
|
| 263 | + if (isset($desc['field'][$nom_champ])) { |
|
| 264 | + $t = $boucles[$idb]->id_table; |
|
| 265 | + $joker = false; // indiquer a l'appelant |
|
| 266 | + return array("$t.$nom_champ", $nom_champ); |
|
| 267 | + } |
|
| 268 | + // Tous les champs sont-ils acceptés ? |
|
| 269 | + // Si oui, on retourne le champ, et on lève le flag joker |
|
| 270 | + // C'est le cas des itérateurs DATA qui acceptent tout |
|
| 271 | + // et testent la présence du champ à l'exécution et non à la compilation |
|
| 272 | + // car ils ne connaissent pas ici leurs contenus. |
|
| 273 | + elseif (/*$joker AND */ |
|
| 274 | + isset($desc['field']['*']) |
|
| 275 | + ) { |
|
| 276 | + $joker = true; // indiquer a l'appelant |
|
| 277 | + return array($nom_champ, $nom_champ); |
|
| 278 | + } |
|
| 279 | + // pas d'alias, pas de champ, pas de joker... |
|
| 280 | + // tenter via une jointure... |
|
| 281 | + else { |
|
| 282 | + $joker = false; // indiquer a l'appelant |
|
| 283 | + // regarder si le champ est deja dans une jointure existante |
|
| 284 | + // sinon, si il y a des joitures explicites, la construire |
|
| 285 | + if (!$t = trouver_champ_exterieur($nom_champ, $boucles[$idb]->from, $boucles[$idb])) { |
|
| 286 | + if ($boucles[$idb]->jointures_explicites) { |
|
| 287 | + // [todo] Ne pas lancer que lorsque il y a des jointures explicites !!!! |
|
| 288 | + // fonctionnel, il suffit d'utiliser $boucles[$idb]->jointures au lieu de jointures_explicites |
|
| 289 | + // mais est-ce ce qu'on veut ? |
|
| 290 | + $jointures = preg_split("/\s+/", $boucles[$idb]->jointures_explicites); |
|
| 291 | + if ($cle = trouver_jointure_champ($nom_champ, $boucles[$idb], $jointures)) { |
|
| 292 | + $t = trouver_champ_exterieur($nom_champ, $boucles[$idb]->from, $boucles[$idb]); |
|
| 293 | + } |
|
| 294 | + } |
|
| 295 | + } |
|
| 296 | + if ($t) { |
|
| 297 | + // si on a trouvé une jointure possible, on fait comme |
|
| 298 | + // si c'était une exception pour le champ demandé |
|
| 299 | + return index_exception($boucles[$idb], |
|
| 300 | + $desc, |
|
| 301 | + $nom_champ, |
|
| 302 | + array($t[1]['id_table'], reset($t[2]))); |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + return array('', ''); |
|
| 306 | + } |
|
| 307 | + } |
|
| 308 | 308 | } |
| 309 | 309 | |
| 310 | 310 | |
@@ -332,52 +332,52 @@ discard block |
||
| 332 | 332 | * est une expression pour le SELECT de la boucle du style "mots.titre AS titre_mot" |
| 333 | 333 | **/ |
| 334 | 334 | function index_exception(&$boucle, $desc, $nom_champ, $excep) { |
| 335 | - static $trouver_table; |
|
| 336 | - if (!$trouver_table) { |
|
| 337 | - $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 338 | - } |
|
| 339 | - |
|
| 340 | - if (is_array($excep)) { |
|
| 341 | - // permettre aux plugins de gerer eux meme des jointures derogatoire ingerables |
|
| 342 | - $t = null; |
|
| 343 | - if (count($excep) == 3) { |
|
| 344 | - $index_exception_derogatoire = array_pop($excep); |
|
| 345 | - $t = $index_exception_derogatoire($boucle, $desc, $nom_champ, $excep); |
|
| 346 | - } |
|
| 347 | - if ($t == null) { |
|
| 348 | - list($e, $x) = $excep; #PHP4 affecte de gauche a droite |
|
| 349 | - $excep = $x; #PHP5 de droite a gauche ! |
|
| 350 | - $j = $trouver_table($e, $boucle->sql_serveur); |
|
| 351 | - if (!$j) { |
|
| 352 | - return array('', ''); |
|
| 353 | - } |
|
| 354 | - $e = $j['table']; |
|
| 355 | - if (!$t = array_search($e, $boucle->from)) { |
|
| 356 | - $k = $j['key']['PRIMARY KEY']; |
|
| 357 | - if (strpos($k, ',')) { |
|
| 358 | - $l = (preg_split('/\s*,\s*/', $k)); |
|
| 359 | - $k = $desc['key']['PRIMARY KEY']; |
|
| 360 | - if (!in_array($k, $l)) { |
|
| 361 | - spip_log("jointure impossible $e " . join(',', $l)); |
|
| 362 | - |
|
| 363 | - return array('', ''); |
|
| 364 | - } |
|
| 365 | - } |
|
| 366 | - $k = array($boucle->id_table, array($e), $k); |
|
| 367 | - fabrique_jointures($boucle, array($k)); |
|
| 368 | - $t = array_search($e, $boucle->from); |
|
| 369 | - } |
|
| 370 | - } |
|
| 371 | - } else { |
|
| 372 | - $t = $boucle->id_table; |
|
| 373 | - } |
|
| 374 | - // demander a SQL de gerer le synonyme |
|
| 375 | - // ca permet que excep soit dynamique (Cedric, 2/3/06) |
|
| 376 | - if ($excep != $nom_champ) { |
|
| 377 | - $excep .= ' AS ' . $nom_champ; |
|
| 378 | - } |
|
| 379 | - |
|
| 380 | - return array("$t.$excep", $nom_champ); |
|
| 335 | + static $trouver_table; |
|
| 336 | + if (!$trouver_table) { |
|
| 337 | + $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 338 | + } |
|
| 339 | + |
|
| 340 | + if (is_array($excep)) { |
|
| 341 | + // permettre aux plugins de gerer eux meme des jointures derogatoire ingerables |
|
| 342 | + $t = null; |
|
| 343 | + if (count($excep) == 3) { |
|
| 344 | + $index_exception_derogatoire = array_pop($excep); |
|
| 345 | + $t = $index_exception_derogatoire($boucle, $desc, $nom_champ, $excep); |
|
| 346 | + } |
|
| 347 | + if ($t == null) { |
|
| 348 | + list($e, $x) = $excep; #PHP4 affecte de gauche a droite |
|
| 349 | + $excep = $x; #PHP5 de droite a gauche ! |
|
| 350 | + $j = $trouver_table($e, $boucle->sql_serveur); |
|
| 351 | + if (!$j) { |
|
| 352 | + return array('', ''); |
|
| 353 | + } |
|
| 354 | + $e = $j['table']; |
|
| 355 | + if (!$t = array_search($e, $boucle->from)) { |
|
| 356 | + $k = $j['key']['PRIMARY KEY']; |
|
| 357 | + if (strpos($k, ',')) { |
|
| 358 | + $l = (preg_split('/\s*,\s*/', $k)); |
|
| 359 | + $k = $desc['key']['PRIMARY KEY']; |
|
| 360 | + if (!in_array($k, $l)) { |
|
| 361 | + spip_log("jointure impossible $e " . join(',', $l)); |
|
| 362 | + |
|
| 363 | + return array('', ''); |
|
| 364 | + } |
|
| 365 | + } |
|
| 366 | + $k = array($boucle->id_table, array($e), $k); |
|
| 367 | + fabrique_jointures($boucle, array($k)); |
|
| 368 | + $t = array_search($e, $boucle->from); |
|
| 369 | + } |
|
| 370 | + } |
|
| 371 | + } else { |
|
| 372 | + $t = $boucle->id_table; |
|
| 373 | + } |
|
| 374 | + // demander a SQL de gerer le synonyme |
|
| 375 | + // ca permet que excep soit dynamique (Cedric, 2/3/06) |
|
| 376 | + if ($excep != $nom_champ) { |
|
| 377 | + $excep .= ' AS ' . $nom_champ; |
|
| 378 | + } |
|
| 379 | + |
|
| 380 | + return array("$t.$excep", $nom_champ); |
|
| 381 | 381 | } |
| 382 | 382 | |
| 383 | 383 | /** |
@@ -402,7 +402,7 @@ discard block |
||
| 402 | 402 | * Code PHP pour retrouver le champ |
| 403 | 403 | */ |
| 404 | 404 | function champ_sql($champ, $p, $defaut = null, $remonte_pile = true) { |
| 405 | - return index_pile($p->id_boucle, $champ, $p->boucles, $p->nom_boucle, $defaut, $remonte_pile); |
|
| 405 | + return index_pile($p->id_boucle, $champ, $p->boucles, $p->nom_boucle, $defaut, $remonte_pile); |
|
| 406 | 406 | } |
| 407 | 407 | |
| 408 | 408 | |
@@ -422,9 +422,9 @@ discard block |
||
| 422 | 422 | * Code PHP pour d'exécution de la balise et de ses filtres |
| 423 | 423 | **/ |
| 424 | 424 | function calculer_champ($p) { |
| 425 | - $p = calculer_balise($p->nom_champ, $p); |
|
| 425 | + $p = calculer_balise($p->nom_champ, $p); |
|
| 426 | 426 | |
| 427 | - return applique_filtres($p); |
|
| 427 | + return applique_filtres($p); |
|
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | |
@@ -461,26 +461,26 @@ discard block |
||
| 461 | 461 | **/ |
| 462 | 462 | function calculer_balise($nom, $p) { |
| 463 | 463 | |
| 464 | - // S'agit-t-il d'une balise_XXXX[_dist]() ? |
|
| 465 | - if ($f = charger_fonction($nom, 'balise', true)) { |
|
| 466 | - $p->balise_calculee = true; |
|
| 467 | - $res = $f($p); |
|
| 468 | - if ($res !== null and is_object($res)) { |
|
| 469 | - return $res; |
|
| 470 | - } |
|
| 471 | - } |
|
| 472 | - |
|
| 473 | - // Certaines des balises comportant un _ sont generiques |
|
| 474 | - if ($balise_generique = chercher_balise_generique($nom)) { |
|
| 475 | - $res = $balise_generique['fonction_generique']($p); |
|
| 476 | - if ($res !== null and is_object($res)) { |
|
| 477 | - return $res; |
|
| 478 | - } |
|
| 479 | - } |
|
| 480 | - |
|
| 481 | - $f = charger_fonction('DEFAUT', 'calculer_balise'); |
|
| 482 | - |
|
| 483 | - return $f($nom, $p); |
|
| 464 | + // S'agit-t-il d'une balise_XXXX[_dist]() ? |
|
| 465 | + if ($f = charger_fonction($nom, 'balise', true)) { |
|
| 466 | + $p->balise_calculee = true; |
|
| 467 | + $res = $f($p); |
|
| 468 | + if ($res !== null and is_object($res)) { |
|
| 469 | + return $res; |
|
| 470 | + } |
|
| 471 | + } |
|
| 472 | + |
|
| 473 | + // Certaines des balises comportant un _ sont generiques |
|
| 474 | + if ($balise_generique = chercher_balise_generique($nom)) { |
|
| 475 | + $res = $balise_generique['fonction_generique']($p); |
|
| 476 | + if ($res !== null and is_object($res)) { |
|
| 477 | + return $res; |
|
| 478 | + } |
|
| 479 | + } |
|
| 480 | + |
|
| 481 | + $f = charger_fonction('DEFAUT', 'calculer_balise'); |
|
| 482 | + |
|
| 483 | + return $f($nom, $p); |
|
| 484 | 484 | } |
| 485 | 485 | |
| 486 | 486 | |
@@ -508,36 +508,36 @@ discard block |
||
| 508 | 508 | **/ |
| 509 | 509 | function calculer_balise_DEFAUT_dist($nom, $p) { |
| 510 | 510 | |
| 511 | - // ca pourrait etre un champ SQL homonyme, |
|
| 512 | - $p->code = index_pile($p->id_boucle, $nom, $p->boucles, $p->nom_boucle); |
|
| 513 | - |
|
| 514 | - // compatibilite: depuis qu'on accepte #BALISE{ses_args} sans [(...)] autour |
|
| 515 | - // il faut recracher {...} quand ce n'est finalement pas des args |
|
| 516 | - if ($p->fonctions and (!$p->fonctions[0][0]) and $p->fonctions[0][1]) { |
|
| 517 | - $code = addslashes($p->fonctions[0][1]); |
|
| 518 | - $p->code .= " . '$code'"; |
|
| 519 | - } |
|
| 520 | - |
|
| 521 | - // ne pas passer le filtre securite sur les id_xxx |
|
| 522 | - if (strpos($nom, 'ID_') === 0) { |
|
| 523 | - $p->interdire_scripts = false; |
|
| 524 | - } |
|
| 525 | - |
|
| 526 | - // Compatibilite ascendante avec les couleurs html (#FEFEFE) : |
|
| 527 | - // SI le champ SQL n'est pas trouve |
|
| 528 | - // ET si la balise a une forme de couleur |
|
| 529 | - // ET s'il n'y a ni filtre ni etoile |
|
| 530 | - // ALORS retourner la couleur. |
|
| 531 | - // Ca permet si l'on veut vraiment de recuperer [(#ACCEDE*)] |
|
| 532 | - if (preg_match("/^[A-F]{1,6}$/i", $nom) |
|
| 533 | - and !$p->etoile |
|
| 534 | - and !$p->fonctions |
|
| 535 | - ) { |
|
| 536 | - $p->code = "'#$nom'"; |
|
| 537 | - $p->interdire_scripts = false; |
|
| 538 | - } |
|
| 539 | - |
|
| 540 | - return $p; |
|
| 511 | + // ca pourrait etre un champ SQL homonyme, |
|
| 512 | + $p->code = index_pile($p->id_boucle, $nom, $p->boucles, $p->nom_boucle); |
|
| 513 | + |
|
| 514 | + // compatibilite: depuis qu'on accepte #BALISE{ses_args} sans [(...)] autour |
|
| 515 | + // il faut recracher {...} quand ce n'est finalement pas des args |
|
| 516 | + if ($p->fonctions and (!$p->fonctions[0][0]) and $p->fonctions[0][1]) { |
|
| 517 | + $code = addslashes($p->fonctions[0][1]); |
|
| 518 | + $p->code .= " . '$code'"; |
|
| 519 | + } |
|
| 520 | + |
|
| 521 | + // ne pas passer le filtre securite sur les id_xxx |
|
| 522 | + if (strpos($nom, 'ID_') === 0) { |
|
| 523 | + $p->interdire_scripts = false; |
|
| 524 | + } |
|
| 525 | + |
|
| 526 | + // Compatibilite ascendante avec les couleurs html (#FEFEFE) : |
|
| 527 | + // SI le champ SQL n'est pas trouve |
|
| 528 | + // ET si la balise a une forme de couleur |
|
| 529 | + // ET s'il n'y a ni filtre ni etoile |
|
| 530 | + // ALORS retourner la couleur. |
|
| 531 | + // Ca permet si l'on veut vraiment de recuperer [(#ACCEDE*)] |
|
| 532 | + if (preg_match("/^[A-F]{1,6}$/i", $nom) |
|
| 533 | + and !$p->etoile |
|
| 534 | + and !$p->fonctions |
|
| 535 | + ) { |
|
| 536 | + $p->code = "'#$nom'"; |
|
| 537 | + $p->interdire_scripts = false; |
|
| 538 | + } |
|
| 539 | + |
|
| 540 | + return $p; |
|
| 541 | 541 | } |
| 542 | 542 | |
| 543 | 543 | |
@@ -580,36 +580,36 @@ discard block |
||
| 580 | 580 | **/ |
| 581 | 581 | function calculer_balise_dynamique($p, $nom, $l, $supp = array()) { |
| 582 | 582 | |
| 583 | - if (!balise_distante_interdite($p)) { |
|
| 584 | - $p->code = "''"; |
|
| 585 | - |
|
| 586 | - return $p; |
|
| 587 | - } |
|
| 588 | - // compatibilite: depuis qu'on accepte #BALISE{ses_args} sans [(...)] autour |
|
| 589 | - // il faut recracher {...} quand ce n'est finalement pas des args |
|
| 590 | - if ($p->fonctions and (!$p->fonctions[0][0]) and $p->fonctions[0][1]) { |
|
| 591 | - $p->fonctions = null; |
|
| 592 | - } |
|
| 593 | - |
|
| 594 | - if ($p->param and ($c = $p->param[0])) { |
|
| 595 | - // liste d'arguments commence toujours par la chaine vide |
|
| 596 | - array_shift($c); |
|
| 597 | - // construire la liste d'arguments comme pour un filtre |
|
| 598 | - $param = compose_filtres_args($p, $c, ','); |
|
| 599 | - } else { |
|
| 600 | - $param = ""; |
|
| 601 | - } |
|
| 602 | - $collecte = collecter_balise_dynamique($l, $p, $nom); |
|
| 603 | - |
|
| 604 | - $p->code = sprintf(CODE_EXECUTER_BALISE, $nom, |
|
| 605 | - join(',', $collecte), |
|
| 606 | - ($collecte ? $param : substr($param, 1)), # virer la virgule |
|
| 607 | - memoriser_contexte_compil($p), |
|
| 608 | - (!$supp ? '' : (', ' . join(',', $supp)))); |
|
| 609 | - |
|
| 610 | - $p->interdire_scripts = false; |
|
| 611 | - |
|
| 612 | - return $p; |
|
| 583 | + if (!balise_distante_interdite($p)) { |
|
| 584 | + $p->code = "''"; |
|
| 585 | + |
|
| 586 | + return $p; |
|
| 587 | + } |
|
| 588 | + // compatibilite: depuis qu'on accepte #BALISE{ses_args} sans [(...)] autour |
|
| 589 | + // il faut recracher {...} quand ce n'est finalement pas des args |
|
| 590 | + if ($p->fonctions and (!$p->fonctions[0][0]) and $p->fonctions[0][1]) { |
|
| 591 | + $p->fonctions = null; |
|
| 592 | + } |
|
| 593 | + |
|
| 594 | + if ($p->param and ($c = $p->param[0])) { |
|
| 595 | + // liste d'arguments commence toujours par la chaine vide |
|
| 596 | + array_shift($c); |
|
| 597 | + // construire la liste d'arguments comme pour un filtre |
|
| 598 | + $param = compose_filtres_args($p, $c, ','); |
|
| 599 | + } else { |
|
| 600 | + $param = ""; |
|
| 601 | + } |
|
| 602 | + $collecte = collecter_balise_dynamique($l, $p, $nom); |
|
| 603 | + |
|
| 604 | + $p->code = sprintf(CODE_EXECUTER_BALISE, $nom, |
|
| 605 | + join(',', $collecte), |
|
| 606 | + ($collecte ? $param : substr($param, 1)), # virer la virgule |
|
| 607 | + memoriser_contexte_compil($p), |
|
| 608 | + (!$supp ? '' : (', ' . join(',', $supp)))); |
|
| 609 | + |
|
| 610 | + $p->interdire_scripts = false; |
|
| 611 | + |
|
| 612 | + return $p; |
|
| 613 | 613 | } |
| 614 | 614 | |
| 615 | 615 | |
@@ -639,13 +639,13 @@ discard block |
||
| 639 | 639 | * Liste des codes PHP d'éxecution des balises collectées |
| 640 | 640 | **/ |
| 641 | 641 | function collecter_balise_dynamique($l, &$p, $nom) { |
| 642 | - $args = array(); |
|
| 643 | - foreach ($l as $c) { |
|
| 644 | - $x = calculer_balise($c, $p); |
|
| 645 | - $args[] = $x->code; |
|
| 646 | - } |
|
| 642 | + $args = array(); |
|
| 643 | + foreach ($l as $c) { |
|
| 644 | + $x = calculer_balise($c, $p); |
|
| 645 | + $args[] = $x->code; |
|
| 646 | + } |
|
| 647 | 647 | |
| 648 | - return $args; |
|
| 648 | + return $args; |
|
| 649 | 649 | } |
| 650 | 650 | |
| 651 | 651 | |
@@ -660,20 +660,20 @@ discard block |
||
| 660 | 660 | * Nom de la connexion |
| 661 | 661 | **/ |
| 662 | 662 | function trouver_nom_serveur_distant($p) { |
| 663 | - $nom = $p->id_boucle; |
|
| 664 | - if ($nom |
|
| 665 | - and isset($p->boucles[$nom]) |
|
| 666 | - ) { |
|
| 667 | - $s = $p->boucles[$nom]->sql_serveur; |
|
| 668 | - if (strlen($s) |
|
| 669 | - and strlen($serveur = strtolower($s)) |
|
| 670 | - and !in_array($serveur, $GLOBALS['exception_des_connect']) |
|
| 671 | - ) { |
|
| 672 | - return $serveur; |
|
| 673 | - } |
|
| 674 | - } |
|
| 675 | - |
|
| 676 | - return ""; |
|
| 663 | + $nom = $p->id_boucle; |
|
| 664 | + if ($nom |
|
| 665 | + and isset($p->boucles[$nom]) |
|
| 666 | + ) { |
|
| 667 | + $s = $p->boucles[$nom]->sql_serveur; |
|
| 668 | + if (strlen($s) |
|
| 669 | + and strlen($serveur = strtolower($s)) |
|
| 670 | + and !in_array($serveur, $GLOBALS['exception_des_connect']) |
|
| 671 | + ) { |
|
| 672 | + return $serveur; |
|
| 673 | + } |
|
| 674 | + } |
|
| 675 | + |
|
| 676 | + return ""; |
|
| 677 | 677 | } |
| 678 | 678 | |
| 679 | 679 | |
@@ -697,15 +697,15 @@ discard block |
||
| 697 | 697 | * - false : La balise est interdite car le serveur est distant |
| 698 | 698 | **/ |
| 699 | 699 | function balise_distante_interdite($p) { |
| 700 | - $nom = $p->id_boucle; |
|
| 700 | + $nom = $p->id_boucle; |
|
| 701 | 701 | |
| 702 | - if ($nom and trouver_nom_serveur_distant($p)) { |
|
| 703 | - spip_log($nom . ':' . $p->nom_champ . ' ' . _T('zbug_distant_interdit')); |
|
| 702 | + if ($nom and trouver_nom_serveur_distant($p)) { |
|
| 703 | + spip_log($nom . ':' . $p->nom_champ . ' ' . _T('zbug_distant_interdit')); |
|
| 704 | 704 | |
| 705 | - return false; |
|
| 706 | - } |
|
| 705 | + return false; |
|
| 706 | + } |
|
| 707 | 707 | |
| 708 | - return true; |
|
| 708 | + return true; |
|
| 709 | 709 | } |
| 710 | 710 | |
| 711 | 711 | |
@@ -716,83 +716,83 @@ discard block |
||
| 716 | 716 | // https://code.spip.net/@champs_traitements |
| 717 | 717 | function champs_traitements($p) { |
| 718 | 718 | |
| 719 | - if (isset($GLOBALS['table_des_traitements'][$p->nom_champ])) { |
|
| 720 | - $ps = $GLOBALS['table_des_traitements'][$p->nom_champ]; |
|
| 721 | - } else { |
|
| 722 | - // quand on utilise un traitement catch-all * |
|
| 723 | - // celui-ci ne s'applique pas sur les balises calculees qui peuvent gerer |
|
| 724 | - // leur propre securite |
|
| 725 | - if (!$p->balise_calculee) { |
|
| 726 | - $ps = $GLOBALS['table_des_traitements']['*']; |
|
| 727 | - } else { |
|
| 728 | - $ps = false; |
|
| 729 | - } |
|
| 730 | - } |
|
| 731 | - |
|
| 732 | - if (is_array($ps)) { |
|
| 733 | - // Recuperer le type de boucle (articles, DATA) et la table SQL sur laquelle elle porte |
|
| 734 | - $idb = index_boucle($p); |
|
| 735 | - // si le champ a ete trouve dans une boucle parente sa source est renseignee ici |
|
| 736 | - if (!empty($p->boucles[$idb]->source_champ[$p->nom_champ])) { |
|
| 737 | - $idb = $p->boucles[$idb]->source_champ[$p->nom_champ]; |
|
| 738 | - } |
|
| 739 | - |
|
| 740 | - // mais on peut aussi etre hors boucle. Se mefier. |
|
| 741 | - $type_requete = isset($p->boucles[$idb]->type_requete) ? $p->boucles[$idb]->type_requete : false; |
|
| 742 | - $table_sql = isset($p->boucles[$idb]->show['table_sql']) ? $p->boucles[$idb]->show['table_sql'] : false; |
|
| 743 | - |
|
| 744 | - // bien prendre en compte les alias de boucles (hierarchie => rubrique, syndication => syncdic, etc.) |
|
| 745 | - if ($type_requete and isset($GLOBALS['table_des_tables'][$type_requete])) { |
|
| 746 | - $type_alias = $type_requete; |
|
| 747 | - $type_requete = $GLOBALS['table_des_tables'][$type_requete]; |
|
| 748 | - } else { |
|
| 749 | - $type_alias = false; |
|
| 750 | - } |
|
| 751 | - |
|
| 752 | - // le traitement peut n'etre defini que pour une table en particulier "spip_articles" |
|
| 753 | - if ($table_sql and isset($ps[$table_sql])) { |
|
| 754 | - $ps = $ps[$table_sql]; |
|
| 755 | - } // ou pour une boucle en particulier "DATA","articles" |
|
| 756 | - elseif ($type_requete and isset($ps[$type_requete])) { |
|
| 757 | - $ps = $ps[$type_requete]; |
|
| 758 | - } // ou pour une boucle utilisant un alias ("hierarchie") |
|
| 759 | - elseif ($type_alias and isset($ps[$type_alias])) { |
|
| 760 | - $ps = $ps[$type_alias]; |
|
| 761 | - } // ou pour indifféremment quelle que soit la boucle |
|
| 762 | - elseif (isset($ps[0])) { |
|
| 763 | - $ps = $ps[0]; |
|
| 764 | - } else { |
|
| 765 | - $ps = false; |
|
| 766 | - } |
|
| 767 | - } |
|
| 768 | - |
|
| 769 | - if (!$ps) { |
|
| 770 | - return $p->code; |
|
| 771 | - } |
|
| 772 | - |
|
| 773 | - // Si une boucle DOCUMENTS{doublons} est presente dans le squelette, |
|
| 774 | - // ou si in INCLURE contient {doublons} |
|
| 775 | - // on insere une fonction de remplissage du tableau des doublons |
|
| 776 | - // dans les filtres propre() ou typo() |
|
| 777 | - // (qui traitent les raccourcis <docXX> referencant les docs) |
|
| 778 | - |
|
| 779 | - if (isset($p->descr['documents']) |
|
| 780 | - and |
|
| 781 | - $p->descr['documents'] |
|
| 782 | - and ( |
|
| 783 | - (strpos($ps, 'propre') !== false) |
|
| 784 | - or |
|
| 785 | - (strpos($ps, 'typo') !== false) |
|
| 786 | - ) |
|
| 787 | - ) { |
|
| 788 | - $ps = 'traiter_doublons_documents($doublons, ' . $ps . ')'; |
|
| 789 | - } |
|
| 790 | - |
|
| 791 | - // La protection des champs par |safehtml est assuree par les extensions |
|
| 792 | - // dans la declaration des traitements des champs sensibles |
|
| 793 | - |
|
| 794 | - // Remplacer enfin le placeholder %s par le vrai code de la balise |
|
| 795 | - return str_replace('%s', $p->code, $ps); |
|
| 719 | + if (isset($GLOBALS['table_des_traitements'][$p->nom_champ])) { |
|
| 720 | + $ps = $GLOBALS['table_des_traitements'][$p->nom_champ]; |
|
| 721 | + } else { |
|
| 722 | + // quand on utilise un traitement catch-all * |
|
| 723 | + // celui-ci ne s'applique pas sur les balises calculees qui peuvent gerer |
|
| 724 | + // leur propre securite |
|
| 725 | + if (!$p->balise_calculee) { |
|
| 726 | + $ps = $GLOBALS['table_des_traitements']['*']; |
|
| 727 | + } else { |
|
| 728 | + $ps = false; |
|
| 729 | + } |
|
| 730 | + } |
|
| 731 | + |
|
| 732 | + if (is_array($ps)) { |
|
| 733 | + // Recuperer le type de boucle (articles, DATA) et la table SQL sur laquelle elle porte |
|
| 734 | + $idb = index_boucle($p); |
|
| 735 | + // si le champ a ete trouve dans une boucle parente sa source est renseignee ici |
|
| 736 | + if (!empty($p->boucles[$idb]->source_champ[$p->nom_champ])) { |
|
| 737 | + $idb = $p->boucles[$idb]->source_champ[$p->nom_champ]; |
|
| 738 | + } |
|
| 739 | + |
|
| 740 | + // mais on peut aussi etre hors boucle. Se mefier. |
|
| 741 | + $type_requete = isset($p->boucles[$idb]->type_requete) ? $p->boucles[$idb]->type_requete : false; |
|
| 742 | + $table_sql = isset($p->boucles[$idb]->show['table_sql']) ? $p->boucles[$idb]->show['table_sql'] : false; |
|
| 743 | + |
|
| 744 | + // bien prendre en compte les alias de boucles (hierarchie => rubrique, syndication => syncdic, etc.) |
|
| 745 | + if ($type_requete and isset($GLOBALS['table_des_tables'][$type_requete])) { |
|
| 746 | + $type_alias = $type_requete; |
|
| 747 | + $type_requete = $GLOBALS['table_des_tables'][$type_requete]; |
|
| 748 | + } else { |
|
| 749 | + $type_alias = false; |
|
| 750 | + } |
|
| 751 | + |
|
| 752 | + // le traitement peut n'etre defini que pour une table en particulier "spip_articles" |
|
| 753 | + if ($table_sql and isset($ps[$table_sql])) { |
|
| 754 | + $ps = $ps[$table_sql]; |
|
| 755 | + } // ou pour une boucle en particulier "DATA","articles" |
|
| 756 | + elseif ($type_requete and isset($ps[$type_requete])) { |
|
| 757 | + $ps = $ps[$type_requete]; |
|
| 758 | + } // ou pour une boucle utilisant un alias ("hierarchie") |
|
| 759 | + elseif ($type_alias and isset($ps[$type_alias])) { |
|
| 760 | + $ps = $ps[$type_alias]; |
|
| 761 | + } // ou pour indifféremment quelle que soit la boucle |
|
| 762 | + elseif (isset($ps[0])) { |
|
| 763 | + $ps = $ps[0]; |
|
| 764 | + } else { |
|
| 765 | + $ps = false; |
|
| 766 | + } |
|
| 767 | + } |
|
| 768 | + |
|
| 769 | + if (!$ps) { |
|
| 770 | + return $p->code; |
|
| 771 | + } |
|
| 772 | + |
|
| 773 | + // Si une boucle DOCUMENTS{doublons} est presente dans le squelette, |
|
| 774 | + // ou si in INCLURE contient {doublons} |
|
| 775 | + // on insere une fonction de remplissage du tableau des doublons |
|
| 776 | + // dans les filtres propre() ou typo() |
|
| 777 | + // (qui traitent les raccourcis <docXX> referencant les docs) |
|
| 778 | + |
|
| 779 | + if (isset($p->descr['documents']) |
|
| 780 | + and |
|
| 781 | + $p->descr['documents'] |
|
| 782 | + and ( |
|
| 783 | + (strpos($ps, 'propre') !== false) |
|
| 784 | + or |
|
| 785 | + (strpos($ps, 'typo') !== false) |
|
| 786 | + ) |
|
| 787 | + ) { |
|
| 788 | + $ps = 'traiter_doublons_documents($doublons, ' . $ps . ')'; |
|
| 789 | + } |
|
| 790 | + |
|
| 791 | + // La protection des champs par |safehtml est assuree par les extensions |
|
| 792 | + // dans la declaration des traitements des champs sensibles |
|
| 793 | + |
|
| 794 | + // Remplacer enfin le placeholder %s par le vrai code de la balise |
|
| 795 | + return str_replace('%s', $p->code, $ps); |
|
| 796 | 796 | } |
| 797 | 797 | |
| 798 | 798 | |
@@ -805,112 +805,112 @@ discard block |
||
| 805 | 805 | // https://code.spip.net/@applique_filtres |
| 806 | 806 | function applique_filtres($p) { |
| 807 | 807 | |
| 808 | - // Traitements standards (cf. supra) |
|
| 809 | - if ($p->etoile == '') { |
|
| 810 | - $code = champs_traitements($p); |
|
| 811 | - } else { |
|
| 812 | - $code = $p->code; |
|
| 813 | - } |
|
| 808 | + // Traitements standards (cf. supra) |
|
| 809 | + if ($p->etoile == '') { |
|
| 810 | + $code = champs_traitements($p); |
|
| 811 | + } else { |
|
| 812 | + $code = $p->code; |
|
| 813 | + } |
|
| 814 | 814 | |
| 815 | - // Appliquer les filtres perso |
|
| 816 | - if ($p->param) { |
|
| 817 | - $code = compose_filtres($p, $code); |
|
| 818 | - } |
|
| 815 | + // Appliquer les filtres perso |
|
| 816 | + if ($p->param) { |
|
| 817 | + $code = compose_filtres($p, $code); |
|
| 818 | + } |
|
| 819 | 819 | |
| 820 | - // S'il y a un lien avec la session, ajouter un code qui levera |
|
| 821 | - // un drapeau dans la structure d'invalidation $Cache |
|
| 822 | - if (isset($p->descr['session'])) { |
|
| 823 | - $code = "invalideur_session(\$Cache, $code)"; |
|
| 824 | - } |
|
| 820 | + // S'il y a un lien avec la session, ajouter un code qui levera |
|
| 821 | + // un drapeau dans la structure d'invalidation $Cache |
|
| 822 | + if (isset($p->descr['session'])) { |
|
| 823 | + $code = "invalideur_session(\$Cache, $code)"; |
|
| 824 | + } |
|
| 825 | 825 | |
| 826 | - $code = sandbox_composer_interdire_scripts($code, $p); |
|
| 826 | + $code = sandbox_composer_interdire_scripts($code, $p); |
|
| 827 | 827 | |
| 828 | - return $code; |
|
| 828 | + return $code; |
|
| 829 | 829 | } |
| 830 | 830 | |
| 831 | 831 | // Cf. function pipeline dans ecrire/inc_utils.php |
| 832 | 832 | // https://code.spip.net/@compose_filtres |
| 833 | 833 | function compose_filtres(&$p, $code) { |
| 834 | 834 | |
| 835 | - $image_miette = false; |
|
| 836 | - foreach ($p->param as $filtre) { |
|
| 837 | - $fonc = array_shift($filtre); |
|
| 838 | - if (!$fonc) { |
|
| 839 | - continue; |
|
| 840 | - } // normalement qu'au premier tour. |
|
| 841 | - $is_filtre_image = ((substr($fonc, 0, 6) == 'image_') and $fonc != 'image_graver'); |
|
| 842 | - if ($image_miette and !$is_filtre_image) { |
|
| 843 | - // il faut graver maintenant car apres le filtre en cours |
|
| 844 | - // on est pas sur d'avoir encore le nom du fichier dans le pipe |
|
| 845 | - $code = "filtrer('image_graver', $code)"; |
|
| 846 | - $image_miette = false; |
|
| 847 | - } |
|
| 848 | - |
|
| 849 | - // recuperer les arguments du filtre, |
|
| 850 | - // a separer par "," ou ":" dans le cas du filtre "?{a,b}" |
|
| 851 | - $countfiltre = count($filtre); |
|
| 852 | - if ($fonc !== '?') { |
|
| 853 | - $sep = ','; |
|
| 854 | - } else { |
|
| 855 | - $sep = ':'; |
|
| 856 | - // |?{a,b} *doit* avoir exactement 2 arguments ; on les force |
|
| 857 | - if ($countfiltre != 2) { |
|
| 858 | - $filtre = array($filtre[0] ?? '', $filtre[1] ?? ''); |
|
| 859 | - $countfiltre = 2; |
|
| 860 | - } |
|
| 861 | - } |
|
| 862 | - $arglist = compose_filtres_args($p, $filtre, $sep); |
|
| 863 | - $logique = filtre_logique($fonc, $code, substr($arglist, 1)); |
|
| 864 | - if ($logique) { |
|
| 865 | - $code = $logique; |
|
| 866 | - } else { |
|
| 867 | - $code = sandbox_composer_filtre($fonc, $code, $arglist, $p, $countfiltre); |
|
| 868 | - if ($is_filtre_image) { |
|
| 869 | - $image_miette = true; |
|
| 870 | - } |
|
| 871 | - } |
|
| 872 | - } |
|
| 873 | - // ramasser les images intermediaires inutiles et graver l'image finale |
|
| 874 | - if ($image_miette) { |
|
| 875 | - $code = "filtrer('image_graver',$code)"; |
|
| 876 | - } |
|
| 877 | - |
|
| 878 | - return $code; |
|
| 835 | + $image_miette = false; |
|
| 836 | + foreach ($p->param as $filtre) { |
|
| 837 | + $fonc = array_shift($filtre); |
|
| 838 | + if (!$fonc) { |
|
| 839 | + continue; |
|
| 840 | + } // normalement qu'au premier tour. |
|
| 841 | + $is_filtre_image = ((substr($fonc, 0, 6) == 'image_') and $fonc != 'image_graver'); |
|
| 842 | + if ($image_miette and !$is_filtre_image) { |
|
| 843 | + // il faut graver maintenant car apres le filtre en cours |
|
| 844 | + // on est pas sur d'avoir encore le nom du fichier dans le pipe |
|
| 845 | + $code = "filtrer('image_graver', $code)"; |
|
| 846 | + $image_miette = false; |
|
| 847 | + } |
|
| 848 | + |
|
| 849 | + // recuperer les arguments du filtre, |
|
| 850 | + // a separer par "," ou ":" dans le cas du filtre "?{a,b}" |
|
| 851 | + $countfiltre = count($filtre); |
|
| 852 | + if ($fonc !== '?') { |
|
| 853 | + $sep = ','; |
|
| 854 | + } else { |
|
| 855 | + $sep = ':'; |
|
| 856 | + // |?{a,b} *doit* avoir exactement 2 arguments ; on les force |
|
| 857 | + if ($countfiltre != 2) { |
|
| 858 | + $filtre = array($filtre[0] ?? '', $filtre[1] ?? ''); |
|
| 859 | + $countfiltre = 2; |
|
| 860 | + } |
|
| 861 | + } |
|
| 862 | + $arglist = compose_filtres_args($p, $filtre, $sep); |
|
| 863 | + $logique = filtre_logique($fonc, $code, substr($arglist, 1)); |
|
| 864 | + if ($logique) { |
|
| 865 | + $code = $logique; |
|
| 866 | + } else { |
|
| 867 | + $code = sandbox_composer_filtre($fonc, $code, $arglist, $p, $countfiltre); |
|
| 868 | + if ($is_filtre_image) { |
|
| 869 | + $image_miette = true; |
|
| 870 | + } |
|
| 871 | + } |
|
| 872 | + } |
|
| 873 | + // ramasser les images intermediaires inutiles et graver l'image finale |
|
| 874 | + if ($image_miette) { |
|
| 875 | + $code = "filtrer('image_graver',$code)"; |
|
| 876 | + } |
|
| 877 | + |
|
| 878 | + return $code; |
|
| 879 | 879 | } |
| 880 | 880 | |
| 881 | 881 | // Filtres et,ou,oui,non,sinon,xou,xor,and,or,not,yes |
| 882 | 882 | // et comparateurs |
| 883 | 883 | function filtre_logique($fonc, $code, $arg) { |
| 884 | 884 | |
| 885 | - switch (true) { |
|
| 886 | - case in_array($fonc, $GLOBALS['table_criteres_infixes']): |
|
| 887 | - return "($code $fonc $arg)"; |
|
| 888 | - case ($fonc == 'and') or ($fonc == 'et'): |
|
| 889 | - return "((($code) AND ($arg)) ?' ' :'')"; |
|
| 890 | - case ($fonc == 'or') or ($fonc == 'ou'): |
|
| 891 | - return "((($code) OR ($arg)) ?' ' :'')"; |
|
| 892 | - case ($fonc == 'xor') or ($fonc == 'xou'): |
|
| 893 | - return "((($code) XOR ($arg)) ?' ' :'')"; |
|
| 894 | - case ($fonc == 'sinon'): |
|
| 895 | - return "(((\$a = $code) OR (is_string(\$a) AND strlen(\$a))) ? \$a : $arg)"; |
|
| 896 | - case ($fonc == 'not') or ($fonc == 'non'): |
|
| 897 | - return "(($code) ?'' :' ')"; |
|
| 898 | - case ($fonc == 'yes') or ($fonc == 'oui'): |
|
| 899 | - return "(($code) ?' ' :'')"; |
|
| 900 | - } |
|
| 901 | - |
|
| 902 | - return ''; |
|
| 885 | + switch (true) { |
|
| 886 | + case in_array($fonc, $GLOBALS['table_criteres_infixes']): |
|
| 887 | + return "($code $fonc $arg)"; |
|
| 888 | + case ($fonc == 'and') or ($fonc == 'et'): |
|
| 889 | + return "((($code) AND ($arg)) ?' ' :'')"; |
|
| 890 | + case ($fonc == 'or') or ($fonc == 'ou'): |
|
| 891 | + return "((($code) OR ($arg)) ?' ' :'')"; |
|
| 892 | + case ($fonc == 'xor') or ($fonc == 'xou'): |
|
| 893 | + return "((($code) XOR ($arg)) ?' ' :'')"; |
|
| 894 | + case ($fonc == 'sinon'): |
|
| 895 | + return "(((\$a = $code) OR (is_string(\$a) AND strlen(\$a))) ? \$a : $arg)"; |
|
| 896 | + case ($fonc == 'not') or ($fonc == 'non'): |
|
| 897 | + return "(($code) ?'' :' ')"; |
|
| 898 | + case ($fonc == 'yes') or ($fonc == 'oui'): |
|
| 899 | + return "(($code) ?' ' :'')"; |
|
| 900 | + } |
|
| 901 | + |
|
| 902 | + return ''; |
|
| 903 | 903 | } |
| 904 | 904 | |
| 905 | 905 | // https://code.spip.net/@compose_filtres_args |
| 906 | 906 | function compose_filtres_args($p, $args, $sep) { |
| 907 | - $arglist = ""; |
|
| 908 | - foreach ($args as $arg) { |
|
| 909 | - $arglist .= $sep . |
|
| 910 | - calculer_liste($arg, $p->descr, $p->boucles, $p->id_boucle); |
|
| 911 | - } |
|
| 907 | + $arglist = ""; |
|
| 908 | + foreach ($args as $arg) { |
|
| 909 | + $arglist .= $sep . |
|
| 910 | + calculer_liste($arg, $p->descr, $p->boucles, $p->id_boucle); |
|
| 911 | + } |
|
| 912 | 912 | |
| 913 | - return $arglist; |
|
| 913 | + return $arglist; |
|
| 914 | 914 | } |
| 915 | 915 | |
| 916 | 916 | |
@@ -928,15 +928,15 @@ discard block |
||
| 928 | 928 | **/ |
| 929 | 929 | function calculer_argument_precedent($idb, $nom_champ, &$boucles, $defaut = null) { |
| 930 | 930 | |
| 931 | - // si recursif, forcer l'extraction du champ SQL mais ignorer le code |
|
| 932 | - if ($boucles[$idb]->externe) { |
|
| 933 | - index_pile($idb, $nom_champ, $boucles, '', $defaut); |
|
| 934 | - // retourner $Pile[$SP] et pas $Pile[0] si recursion en 1ere boucle |
|
| 935 | - // on ignore le defaut fourni dans ce cas |
|
| 936 | - $defaut = "@\$Pile[\$SP]['$nom_champ']"; |
|
| 937 | - } |
|
| 931 | + // si recursif, forcer l'extraction du champ SQL mais ignorer le code |
|
| 932 | + if ($boucles[$idb]->externe) { |
|
| 933 | + index_pile($idb, $nom_champ, $boucles, '', $defaut); |
|
| 934 | + // retourner $Pile[$SP] et pas $Pile[0] si recursion en 1ere boucle |
|
| 935 | + // on ignore le defaut fourni dans ce cas |
|
| 936 | + $defaut = "@\$Pile[\$SP]['$nom_champ']"; |
|
| 937 | + } |
|
| 938 | 938 | |
| 939 | - return index_pile($boucles[$idb]->id_parent, $nom_champ, $boucles, '', $defaut); |
|
| 939 | + return index_pile($boucles[$idb]->id_parent, $nom_champ, $boucles, '', $defaut); |
|
| 940 | 940 | } |
| 941 | 941 | |
| 942 | 942 | // |
@@ -951,30 +951,30 @@ discard block |
||
| 951 | 951 | |
| 952 | 952 | // https://code.spip.net/@rindex_pile |
| 953 | 953 | function rindex_pile($p, $champ, $motif) { |
| 954 | - $n = 0; |
|
| 955 | - $b = $p->id_boucle; |
|
| 956 | - $p->code = ''; |
|
| 957 | - while ($b != '') { |
|
| 958 | - foreach ($p->boucles[$b]->criteres as $critere) { |
|
| 959 | - if ($critere->op == $motif) { |
|
| 960 | - $p->code = '$Pile[$SP' . (($n == 0) ? "" : "-$n") . |
|
| 961 | - "]['$champ']"; |
|
| 962 | - $b = ''; |
|
| 963 | - break 2; |
|
| 964 | - } |
|
| 965 | - } |
|
| 966 | - $n++; |
|
| 967 | - $b = $p->boucles[$b]->id_parent; |
|
| 968 | - } |
|
| 969 | - |
|
| 970 | - // si on est hors d'une boucle de {recherche}, cette balise est vide |
|
| 971 | - if (!$p->code) { |
|
| 972 | - $p->code = "''"; |
|
| 973 | - } |
|
| 974 | - |
|
| 975 | - $p->interdire_scripts = false; |
|
| 976 | - |
|
| 977 | - return $p; |
|
| 954 | + $n = 0; |
|
| 955 | + $b = $p->id_boucle; |
|
| 956 | + $p->code = ''; |
|
| 957 | + while ($b != '') { |
|
| 958 | + foreach ($p->boucles[$b]->criteres as $critere) { |
|
| 959 | + if ($critere->op == $motif) { |
|
| 960 | + $p->code = '$Pile[$SP' . (($n == 0) ? "" : "-$n") . |
|
| 961 | + "]['$champ']"; |
|
| 962 | + $b = ''; |
|
| 963 | + break 2; |
|
| 964 | + } |
|
| 965 | + } |
|
| 966 | + $n++; |
|
| 967 | + $b = $p->boucles[$b]->id_parent; |
|
| 968 | + } |
|
| 969 | + |
|
| 970 | + // si on est hors d'une boucle de {recherche}, cette balise est vide |
|
| 971 | + if (!$p->code) { |
|
| 972 | + $p->code = "''"; |
|
| 973 | + } |
|
| 974 | + |
|
| 975 | + $p->interdire_scripts = false; |
|
| 976 | + |
|
| 977 | + return $p; |
|
| 978 | 978 | } |
| 979 | 979 | |
| 980 | 980 | /** |
@@ -984,7 +984,7 @@ discard block |
||
| 984 | 984 | * @return string Nom de la balise, avec indication de boucle explicite si présent. |
| 985 | 985 | */ |
| 986 | 986 | function zbug_presenter_champ($p, $champ = "") { |
| 987 | - $balise = $champ ? $champ : $p->nom_champ; |
|
| 988 | - $explicite = $explicite = $p->nom_boucle ? $p->nom_boucle . ':' : ''; |
|
| 989 | - return "#{$explicite}{$balise}"; |
|
| 987 | + $balise = $champ ? $champ : $p->nom_champ; |
|
| 988 | + $explicite = $explicite = $p->nom_boucle ? $p->nom_boucle . ':' : ''; |
|
| 989 | + return "#{$explicite}{$balise}"; |
|
| 990 | 990 | } |
| 991 | 991 | \ No newline at end of file |