@@ -13,122 +13,122 @@ |
||
| 13 | 13 | |
| 14 | 14 | class SqliteRequeteur |
| 15 | 15 | { |
| 16 | - /** @var string texte de la requête */ |
|
| 17 | - public $query = ''; // la requete |
|
| 18 | - /** @var string Nom de la connexion */ |
|
| 19 | - public $serveur = ''; |
|
| 20 | - /** @var PDO Identifiant de la connexion SQLite */ |
|
| 21 | - public $link = ''; |
|
| 22 | - /** @var string Prefixe des tables SPIP */ |
|
| 23 | - public $prefixe = ''; |
|
| 24 | - /** @var string Nom de la base de donnée */ |
|
| 25 | - public $db = ''; |
|
| 26 | - /** @var bool Doit-on tracer les requetes (var_profile) ? */ |
|
| 27 | - public $tracer = false; // doit-on tracer les requetes (var_profile) |
|
| 28 | - |
|
| 29 | - /** @var string Version de SQLite (2 ou 3) */ |
|
| 30 | - public $sqlite_version = ''; |
|
| 31 | - |
|
| 32 | - /** |
|
| 33 | - * Constructeur |
|
| 34 | - * |
|
| 35 | - * @param string $serveur |
|
| 36 | - * @return bool |
|
| 37 | - */ |
|
| 38 | - public function __construct($serveur = '') |
|
| 39 | - { |
|
| 40 | - _sqlite_init(); |
|
| 41 | - $this->serveur = strtolower($serveur); |
|
| 42 | - |
|
| 43 | - if (!($this->link = _sqlite_link($this->serveur)) && (!defined('_ECRIRE_INSTALL') || !_ECRIRE_INSTALL)) { |
|
| 44 | - spip_log('Aucune connexion sqlite (link)', 'sqlite.' . _LOG_ERREUR); |
|
| 45 | - |
|
| 46 | - return false; |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - $this->sqlite_version = _sqlite_is_version('', $this->link); |
|
| 50 | - |
|
| 51 | - $this->prefixe = $GLOBALS['connexions'][$this->serveur ? $this->serveur : 0]['prefixe']; |
|
| 52 | - $this->db = $GLOBALS['connexions'][$this->serveur ? $this->serveur : 0]['db']; |
|
| 53 | - |
|
| 54 | - // tracage des requetes ? |
|
| 55 | - $this->tracer = (isset($_GET['var_profile']) && $_GET['var_profile']); |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * Lancer la requête transmise et faire le tracage si demandé |
|
| 60 | - * |
|
| 61 | - * @param string $query |
|
| 62 | - * Requête à exécuter |
|
| 63 | - * @param bool|null $tracer |
|
| 64 | - * true pour tracer la requête |
|
| 65 | - * @return bool|PDOStatement|array |
|
| 66 | - */ |
|
| 67 | - public function executer_requete($query, $tracer = null) |
|
| 68 | - { |
|
| 69 | - if (is_null($tracer)) { |
|
| 70 | - $tracer = $this->tracer; |
|
| 71 | - } |
|
| 72 | - $err = ''; |
|
| 73 | - $t = 0; |
|
| 74 | - if ($tracer or (defined('_DEBUG_TRACE_QUERIES') and _DEBUG_TRACE_QUERIES)) { |
|
| 75 | - include_spip('public/tracer'); |
|
| 76 | - $t = trace_query_start(); |
|
| 77 | - } |
|
| 78 | - |
|
| 79 | - # spip_log("requete: $this->serveur >> $query",'sqlite.'._LOG_DEBUG); // boum ? pourquoi ? |
|
| 80 | - if ($this->link) { |
|
| 81 | - // memoriser la derniere erreur PHP vue |
|
| 82 | - $last_error = (function_exists('error_get_last') ? error_get_last() : ''); |
|
| 83 | - $e = null; |
|
| 84 | - // sauver la derniere requete |
|
| 85 | - $GLOBALS['connexions'][$this->serveur ? $this->serveur : 0]['last'] = $query; |
|
| 86 | - $GLOBALS['connexions'][$this->serveur ? $this->serveur : 0]['total_requetes']++; |
|
| 87 | - |
|
| 88 | - try { |
|
| 89 | - $r = $this->link->query($query); |
|
| 90 | - } catch (\PDOException $e) { |
|
| 91 | - spip_log('PDOException: ' . $e->getMessage(), 'sqlite.' . _LOG_DEBUG); |
|
| 92 | - $r = false; |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - // comptage : oblige de compter le nombre d'entrees retournees |
|
| 96 | - // par une requete SELECT |
|
| 97 | - // aucune autre solution ne donne le nombre attendu :( ! |
|
| 98 | - // particulierement s'il y a des LIMIT dans la requete. |
|
| 99 | - if ($r and strtoupper(substr(ltrim($query), 0, 6)) === 'SELECT') { |
|
| 100 | - // noter le link et la query pour faire le comptage *si* on en a besoin |
|
| 101 | - $r->spipSqliteRowCount = [$this->link, $query]; |
|
| 102 | - } |
|
| 103 | - |
|
| 104 | - // loger les warnings/erreurs eventuels de sqlite remontant dans PHP |
|
| 105 | - if ($e and $e instanceof \PDOException) { |
|
| 106 | - $err = strip_tags($e->getMessage()) . ' in ' . $e->getFile() . ' line ' . $e->getLine(); |
|
| 107 | - spip_log("$err - " . $query, 'sqlite.' . _LOG_ERREUR); |
|
| 108 | - } elseif ($err = (function_exists('error_get_last') ? error_get_last() : '') and $err != $last_error) { |
|
| 109 | - $err = strip_tags($err['message']) . ' in ' . $err['file'] . ' line ' . $err['line']; |
|
| 110 | - spip_log("$err - " . $query, 'sqlite.' . _LOG_ERREUR); |
|
| 111 | - } else { |
|
| 112 | - $err = ''; |
|
| 113 | - } |
|
| 114 | - } else { |
|
| 115 | - $r = false; |
|
| 116 | - } |
|
| 117 | - |
|
| 118 | - if (spip_sqlite_errno($this->serveur)) { |
|
| 119 | - $err .= spip_sqlite_error($query, $this->serveur); |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - return $t ? trace_query_end($query, $t, $r, $err, $this->serveur) : $r; |
|
| 123 | - } |
|
| 124 | - |
|
| 125 | - /** |
|
| 126 | - * Obtient l'identifiant de la dernière ligne insérée ou modifiée |
|
| 127 | - * |
|
| 128 | - * @return string|false |
|
| 129 | - **/ |
|
| 130 | - public function last_insert_id() |
|
| 131 | - { |
|
| 132 | - return $this->link->lastInsertId(); |
|
| 133 | - } |
|
| 16 | + /** @var string texte de la requête */ |
|
| 17 | + public $query = ''; // la requete |
|
| 18 | + /** @var string Nom de la connexion */ |
|
| 19 | + public $serveur = ''; |
|
| 20 | + /** @var PDO Identifiant de la connexion SQLite */ |
|
| 21 | + public $link = ''; |
|
| 22 | + /** @var string Prefixe des tables SPIP */ |
|
| 23 | + public $prefixe = ''; |
|
| 24 | + /** @var string Nom de la base de donnée */ |
|
| 25 | + public $db = ''; |
|
| 26 | + /** @var bool Doit-on tracer les requetes (var_profile) ? */ |
|
| 27 | + public $tracer = false; // doit-on tracer les requetes (var_profile) |
|
| 28 | + |
|
| 29 | + /** @var string Version de SQLite (2 ou 3) */ |
|
| 30 | + public $sqlite_version = ''; |
|
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * Constructeur |
|
| 34 | + * |
|
| 35 | + * @param string $serveur |
|
| 36 | + * @return bool |
|
| 37 | + */ |
|
| 38 | + public function __construct($serveur = '') |
|
| 39 | + { |
|
| 40 | + _sqlite_init(); |
|
| 41 | + $this->serveur = strtolower($serveur); |
|
| 42 | + |
|
| 43 | + if (!($this->link = _sqlite_link($this->serveur)) && (!defined('_ECRIRE_INSTALL') || !_ECRIRE_INSTALL)) { |
|
| 44 | + spip_log('Aucune connexion sqlite (link)', 'sqlite.' . _LOG_ERREUR); |
|
| 45 | + |
|
| 46 | + return false; |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + $this->sqlite_version = _sqlite_is_version('', $this->link); |
|
| 50 | + |
|
| 51 | + $this->prefixe = $GLOBALS['connexions'][$this->serveur ? $this->serveur : 0]['prefixe']; |
|
| 52 | + $this->db = $GLOBALS['connexions'][$this->serveur ? $this->serveur : 0]['db']; |
|
| 53 | + |
|
| 54 | + // tracage des requetes ? |
|
| 55 | + $this->tracer = (isset($_GET['var_profile']) && $_GET['var_profile']); |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * Lancer la requête transmise et faire le tracage si demandé |
|
| 60 | + * |
|
| 61 | + * @param string $query |
|
| 62 | + * Requête à exécuter |
|
| 63 | + * @param bool|null $tracer |
|
| 64 | + * true pour tracer la requête |
|
| 65 | + * @return bool|PDOStatement|array |
|
| 66 | + */ |
|
| 67 | + public function executer_requete($query, $tracer = null) |
|
| 68 | + { |
|
| 69 | + if (is_null($tracer)) { |
|
| 70 | + $tracer = $this->tracer; |
|
| 71 | + } |
|
| 72 | + $err = ''; |
|
| 73 | + $t = 0; |
|
| 74 | + if ($tracer or (defined('_DEBUG_TRACE_QUERIES') and _DEBUG_TRACE_QUERIES)) { |
|
| 75 | + include_spip('public/tracer'); |
|
| 76 | + $t = trace_query_start(); |
|
| 77 | + } |
|
| 78 | + |
|
| 79 | + # spip_log("requete: $this->serveur >> $query",'sqlite.'._LOG_DEBUG); // boum ? pourquoi ? |
|
| 80 | + if ($this->link) { |
|
| 81 | + // memoriser la derniere erreur PHP vue |
|
| 82 | + $last_error = (function_exists('error_get_last') ? error_get_last() : ''); |
|
| 83 | + $e = null; |
|
| 84 | + // sauver la derniere requete |
|
| 85 | + $GLOBALS['connexions'][$this->serveur ? $this->serveur : 0]['last'] = $query; |
|
| 86 | + $GLOBALS['connexions'][$this->serveur ? $this->serveur : 0]['total_requetes']++; |
|
| 87 | + |
|
| 88 | + try { |
|
| 89 | + $r = $this->link->query($query); |
|
| 90 | + } catch (\PDOException $e) { |
|
| 91 | + spip_log('PDOException: ' . $e->getMessage(), 'sqlite.' . _LOG_DEBUG); |
|
| 92 | + $r = false; |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + // comptage : oblige de compter le nombre d'entrees retournees |
|
| 96 | + // par une requete SELECT |
|
| 97 | + // aucune autre solution ne donne le nombre attendu :( ! |
|
| 98 | + // particulierement s'il y a des LIMIT dans la requete. |
|
| 99 | + if ($r and strtoupper(substr(ltrim($query), 0, 6)) === 'SELECT') { |
|
| 100 | + // noter le link et la query pour faire le comptage *si* on en a besoin |
|
| 101 | + $r->spipSqliteRowCount = [$this->link, $query]; |
|
| 102 | + } |
|
| 103 | + |
|
| 104 | + // loger les warnings/erreurs eventuels de sqlite remontant dans PHP |
|
| 105 | + if ($e and $e instanceof \PDOException) { |
|
| 106 | + $err = strip_tags($e->getMessage()) . ' in ' . $e->getFile() . ' line ' . $e->getLine(); |
|
| 107 | + spip_log("$err - " . $query, 'sqlite.' . _LOG_ERREUR); |
|
| 108 | + } elseif ($err = (function_exists('error_get_last') ? error_get_last() : '') and $err != $last_error) { |
|
| 109 | + $err = strip_tags($err['message']) . ' in ' . $err['file'] . ' line ' . $err['line']; |
|
| 110 | + spip_log("$err - " . $query, 'sqlite.' . _LOG_ERREUR); |
|
| 111 | + } else { |
|
| 112 | + $err = ''; |
|
| 113 | + } |
|
| 114 | + } else { |
|
| 115 | + $r = false; |
|
| 116 | + } |
|
| 117 | + |
|
| 118 | + if (spip_sqlite_errno($this->serveur)) { |
|
| 119 | + $err .= spip_sqlite_error($query, $this->serveur); |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + return $t ? trace_query_end($query, $t, $r, $err, $this->serveur) : $r; |
|
| 123 | + } |
|
| 124 | + |
|
| 125 | + /** |
|
| 126 | + * Obtient l'identifiant de la dernière ligne insérée ou modifiée |
|
| 127 | + * |
|
| 128 | + * @return string|false |
|
| 129 | + **/ |
|
| 130 | + public function last_insert_id() |
|
| 131 | + { |
|
| 132 | + return $this->link->lastInsertId(); |
|
| 133 | + } |
|
| 134 | 134 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $this->serveur = strtolower($serveur); |
| 42 | 42 | |
| 43 | 43 | if (!($this->link = _sqlite_link($this->serveur)) && (!defined('_ECRIRE_INSTALL') || !_ECRIRE_INSTALL)) { |
| 44 | - spip_log('Aucune connexion sqlite (link)', 'sqlite.' . _LOG_ERREUR); |
|
| 44 | + spip_log('Aucune connexion sqlite (link)', 'sqlite.'._LOG_ERREUR); |
|
| 45 | 45 | |
| 46 | 46 | return false; |
| 47 | 47 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | try { |
| 89 | 89 | $r = $this->link->query($query); |
| 90 | 90 | } catch (\PDOException $e) { |
| 91 | - spip_log('PDOException: ' . $e->getMessage(), 'sqlite.' . _LOG_DEBUG); |
|
| 91 | + spip_log('PDOException: '.$e->getMessage(), 'sqlite.'._LOG_DEBUG); |
|
| 92 | 92 | $r = false; |
| 93 | 93 | } |
| 94 | 94 | |
@@ -103,11 +103,11 @@ discard block |
||
| 103 | 103 | |
| 104 | 104 | // loger les warnings/erreurs eventuels de sqlite remontant dans PHP |
| 105 | 105 | if ($e and $e instanceof \PDOException) { |
| 106 | - $err = strip_tags($e->getMessage()) . ' in ' . $e->getFile() . ' line ' . $e->getLine(); |
|
| 107 | - spip_log("$err - " . $query, 'sqlite.' . _LOG_ERREUR); |
|
| 106 | + $err = strip_tags($e->getMessage()).' in '.$e->getFile().' line '.$e->getLine(); |
|
| 107 | + spip_log("$err - ".$query, 'sqlite.'._LOG_ERREUR); |
|
| 108 | 108 | } elseif ($err = (function_exists('error_get_last') ? error_get_last() : '') and $err != $last_error) { |
| 109 | - $err = strip_tags($err['message']) . ' in ' . $err['file'] . ' line ' . $err['line']; |
|
| 110 | - spip_log("$err - " . $query, 'sqlite.' . _LOG_ERREUR); |
|
| 109 | + $err = strip_tags($err['message']).' in '.$err['file'].' line '.$err['line']; |
|
| 110 | + spip_log("$err - ".$query, 'sqlite.'._LOG_ERREUR); |
|
| 111 | 111 | } else { |
| 112 | 112 | $err = ''; |
| 113 | 113 | } |
@@ -9,211 +9,211 @@ |
||
| 9 | 9 | */ |
| 10 | 10 | class SqliteTraducteur |
| 11 | 11 | { |
| 12 | - /** @var string $query texte de la requête */ |
|
| 13 | - public $query = ''; |
|
| 14 | - |
|
| 15 | - /** @var string $prefixe Préfixe des tables */ |
|
| 16 | - public $prefixe = ''; |
|
| 17 | - |
|
| 18 | - /** @var string $sqlite_version Version de sqlite (2 ou 3) */ |
|
| 19 | - public $sqlite_version = ''; |
|
| 20 | - |
|
| 21 | - /** Pour les corrections à effectuer sur les requêtes : array(code=>'texte') trouvé |
|
| 22 | - * |
|
| 23 | - * @var array |
|
| 24 | - */ |
|
| 25 | - public $textes = []; |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * Constructeur |
|
| 29 | - * |
|
| 30 | - * @param string $query Requête à préparer |
|
| 31 | - * @param string $prefixe Prefixe des tables à utiliser |
|
| 32 | - * @param string $sqlite_version Version SQLite (2 ou 3) |
|
| 33 | - */ |
|
| 34 | - public function __construct($query, $prefixe, $sqlite_version) |
|
| 35 | - { |
|
| 36 | - $this->query = $query; |
|
| 37 | - $this->prefixe = $prefixe; |
|
| 38 | - $this->sqlite_version = $sqlite_version; |
|
| 39 | - } |
|
| 40 | - |
|
| 41 | - /** |
|
| 42 | - * Transformer la requete pour SQLite |
|
| 43 | - * |
|
| 44 | - * Enlève les textes, transforme la requête pour quelle soit |
|
| 45 | - * bien interprétée par SQLite, puis remet les textes |
|
| 46 | - * la fonction affecte `$this->query` |
|
| 47 | - */ |
|
| 48 | - public function traduire_requete() |
|
| 49 | - { |
|
| 50 | - // |
|
| 51 | - // 1) Protection des textes en les remplacant par des codes |
|
| 52 | - // |
|
| 53 | - // enlever les 'textes' et initialiser avec |
|
| 54 | - list($this->query, $textes) = query_echappe_textes($this->query); |
|
| 55 | - |
|
| 56 | - // |
|
| 57 | - // 2) Corrections de la requete |
|
| 58 | - // |
|
| 59 | - // Correction Create Database |
|
| 60 | - // Create Database -> requete ignoree |
|
| 61 | - if (strpos($this->query, 'CREATE DATABASE') === 0) { |
|
| 62 | - spip_log("Sqlite : requete non executee -> $this->query", 'sqlite.' . _LOG_AVERTISSEMENT); |
|
| 63 | - $this->query = 'SELECT 1'; |
|
| 64 | - } |
|
| 65 | - |
|
| 66 | - // Correction Insert Ignore |
|
| 67 | - // INSERT IGNORE -> insert (tout court et pas 'insert or replace') |
|
| 68 | - if (strpos($this->query, 'INSERT IGNORE') === 0) { |
|
| 69 | - spip_log("Sqlite : requete transformee -> $this->query", 'sqlite.' . _LOG_DEBUG); |
|
| 70 | - $this->query = 'INSERT ' . substr($this->query, '13'); |
|
| 71 | - } |
|
| 72 | - |
|
| 73 | - // Correction des dates avec INTERVAL |
|
| 74 | - // utiliser sql_date_proche() de preference |
|
| 75 | - if (strpos($this->query, 'INTERVAL') !== false) { |
|
| 76 | - $this->query = preg_replace_callback( |
|
| 77 | - '/DATE_(ADD|SUB)(.*)INTERVAL\s+(\d+)\s+([a-zA-Z]+)\)/U', |
|
| 78 | - [&$this, '_remplacerDateParTime'], |
|
| 79 | - $this->query |
|
| 80 | - ); |
|
| 81 | - } |
|
| 82 | - |
|
| 83 | - if (strpos($this->query, 'LEFT(') !== false) { |
|
| 84 | - $this->query = str_replace('LEFT(', '_LEFT(', $this->query); |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - if (strpos($this->query, 'TIMESTAMPDIFF(') !== false) { |
|
| 88 | - $this->query = preg_replace('/TIMESTAMPDIFF\(\s*([^,]*)\s*,/Uims', "TIMESTAMPDIFF('\\1',", $this->query); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - |
|
| 92 | - // Correction Using |
|
| 93 | - // USING (non reconnu en sqlite2) |
|
| 94 | - // problematique car la jointure ne se fait pas du coup. |
|
| 95 | - if (($this->sqlite_version == 2) && (strpos($this->query, 'USING') !== false)) { |
|
| 96 | - spip_log( |
|
| 97 | - "'USING (champ)' n'est pas reconnu en SQLite 2. Utilisez 'ON table1.champ = table2.champ'", |
|
| 98 | - 'sqlite.' . _LOG_ERREUR |
|
| 99 | - ); |
|
| 100 | - $this->query = preg_replace('/USING\s*\([^\)]*\)/', '', $this->query); |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - // Correction Field |
|
| 104 | - // remplace FIELD(table,i,j,k...) par CASE WHEN table=i THEN n ... ELSE 0 END |
|
| 105 | - if (strpos($this->query, 'FIELD') !== false) { |
|
| 106 | - $this->query = preg_replace_callback( |
|
| 107 | - '/FIELD\s*\(([^\)]*)\)/', |
|
| 108 | - [&$this, '_remplacerFieldParCase'], |
|
| 109 | - $this->query |
|
| 110 | - ); |
|
| 111 | - } |
|
| 112 | - |
|
| 113 | - // Correction des noms de tables FROM |
|
| 114 | - // mettre les bons noms de table dans from, update, insert, replace... |
|
| 115 | - if (preg_match('/\s(SET|VALUES|WHERE|DATABASE)\s/iS', $this->query, $regs)) { |
|
| 116 | - $suite = strstr($this->query, $regs[0]); |
|
| 117 | - $this->query = substr($this->query, 0, -strlen($suite)); |
|
| 118 | - } else { |
|
| 119 | - $suite = ''; |
|
| 120 | - } |
|
| 121 | - $pref = ($this->prefixe) ? $this->prefixe . '_' : ''; |
|
| 122 | - $this->query = preg_replace('/([,\s])spip_/S', '\1' . $pref, $this->query) . $suite; |
|
| 123 | - |
|
| 124 | - // Correction zero AS x |
|
| 125 | - // pg n'aime pas 0+x AS alias, sqlite, dans le meme style, |
|
| 126 | - // n'apprecie pas du tout SELECT 0 as x ... ORDER BY x |
|
| 127 | - // il dit que x ne doit pas être un integer dans le order by ! |
|
| 128 | - // on remplace du coup x par vide() dans ce cas uniquement |
|
| 129 | - // |
|
| 130 | - // apparait dans public/vertebrer.php et dans le plugin menu aussi qui genere aussi ce genre de requete via un {par num #GET{tri_num}} |
|
| 131 | - // mais est-ce encore un soucis pour sqlite en 2021 ? (ie commenter le preg_replace marche très bien en sqlite 3.28) |
|
| 132 | - if ((strpos($this->query, '0 AS') !== false)) { |
|
| 133 | - // on ne remplace que dans ORDER BY ou GROUP BY |
|
| 134 | - if (preg_match('/\s(ORDER|GROUP) BY\s/i', $this->query, $regs)) { |
|
| 135 | - $suite = strstr($this->query, $regs[0]); |
|
| 136 | - $this->query = substr($this->query, 0, -strlen($suite)); |
|
| 137 | - |
|
| 138 | - // on cherche les noms des x dans 0 AS x |
|
| 139 | - // on remplace dans $suite le nom par vide() |
|
| 140 | - preg_match_all('/\b0 AS\s*([^\s,]+)/', $this->query, $matches, PREG_PATTERN_ORDER); |
|
| 141 | - foreach ($matches[1] as $m) { |
|
| 142 | - if (strpos($suite, $m) !== false) { |
|
| 143 | - $suite = preg_replace(",\b$m\b,", 'VIDE()', $suite); |
|
| 144 | - } |
|
| 145 | - } |
|
| 146 | - $this->query .= $suite; |
|
| 147 | - } |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - // Correction possible des divisions entieres |
|
| 151 | - // Le standard SQL (lequel? ou?) semble indiquer que |
|
| 152 | - // a/b=c doit donner c entier si a et b sont entiers 4/3=1. |
|
| 153 | - // C'est ce que retournent effectivement SQL Server et SQLite |
|
| 154 | - // Ce n'est pas ce qu'applique MySQL qui retourne un reel : 4/3=1.333... |
|
| 155 | - // |
|
| 156 | - // On peut forcer la conversion en multipliant par 1.0 avant la division |
|
| 157 | - // /!\ SQLite 3.5.9 Debian/Ubuntu est victime d'un bug en plus ! |
|
| 158 | - // cf. https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/254228 |
|
| 159 | - // http://www.sqlite.org/cvstrac/tktview?tn=3202 |
|
| 160 | - // (4*1.0/3) n'est pas rendu dans ce cas ! |
|
| 161 | - # $this->query = str_replace('/','* 1.00 / ',$this->query); |
|
| 162 | - |
|
| 163 | - |
|
| 164 | - // Correction critere REGEXP, non reconnu en sqlite2 |
|
| 165 | - if (($this->sqlite_version == 2) && (strpos($this->query, 'REGEXP') !== false)) { |
|
| 166 | - $this->query = preg_replace('/([^\s\(]*)(\s*)REGEXP(\s*)([^\s\)]*)/', 'REGEXP($4, $1)', $this->query); |
|
| 167 | - } |
|
| 168 | - |
|
| 169 | - // |
|
| 170 | - // 3) Remise en place des textes d'origine |
|
| 171 | - // |
|
| 172 | - // Correction Antiquotes et echappements |
|
| 173 | - // ` => rien |
|
| 174 | - if (strpos($this->query, '`') !== false) { |
|
| 175 | - $this->query = str_replace('`', '', $this->query); |
|
| 176 | - } |
|
| 177 | - |
|
| 178 | - $this->query = query_reinjecte_textes($this->query, $textes); |
|
| 179 | - |
|
| 180 | - return $this->query; |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - /** |
|
| 184 | - * Callback pour remplacer `DATE_` / `INTERVAL` |
|
| 185 | - * par `DATE ... strtotime` |
|
| 186 | - * |
|
| 187 | - * @param array $matches Captures |
|
| 188 | - * @return string texte de date compris par SQLite |
|
| 189 | - */ |
|
| 190 | - public function _remplacerDateParTime($matches) |
|
| 191 | - { |
|
| 192 | - $op = strtoupper($matches[1] == 'ADD') ? '+' : '-'; |
|
| 193 | - |
|
| 194 | - return "datetime$matches[2] '$op$matches[3] $matches[4]')"; |
|
| 195 | - } |
|
| 196 | - |
|
| 197 | - /** |
|
| 198 | - * Callback pour remplacer `FIELD(table,i,j,k...)` |
|
| 199 | - * par `CASE WHEN table=i THEN n ... ELSE 0 END` |
|
| 200 | - * |
|
| 201 | - * @param array $matches Captures |
|
| 202 | - * @return string texte de liste ordonnée compris par SQLite |
|
| 203 | - */ |
|
| 204 | - public function _remplacerFieldParCase($matches) |
|
| 205 | - { |
|
| 206 | - $fields = substr($matches[0], 6, -1); // ne recuperer que l'interieur X de field(X) |
|
| 207 | - $t = explode(',', $fields); |
|
| 208 | - $index = array_shift($t); |
|
| 209 | - |
|
| 210 | - $res = ''; |
|
| 211 | - $n = 0; |
|
| 212 | - foreach ($t as $v) { |
|
| 213 | - $n++; |
|
| 214 | - $res .= "\nWHEN $index=$v THEN $n"; |
|
| 215 | - } |
|
| 216 | - |
|
| 217 | - return "CASE $res ELSE 0 END "; |
|
| 218 | - } |
|
| 12 | + /** @var string $query texte de la requête */ |
|
| 13 | + public $query = ''; |
|
| 14 | + |
|
| 15 | + /** @var string $prefixe Préfixe des tables */ |
|
| 16 | + public $prefixe = ''; |
|
| 17 | + |
|
| 18 | + /** @var string $sqlite_version Version de sqlite (2 ou 3) */ |
|
| 19 | + public $sqlite_version = ''; |
|
| 20 | + |
|
| 21 | + /** Pour les corrections à effectuer sur les requêtes : array(code=>'texte') trouvé |
|
| 22 | + * |
|
| 23 | + * @var array |
|
| 24 | + */ |
|
| 25 | + public $textes = []; |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * Constructeur |
|
| 29 | + * |
|
| 30 | + * @param string $query Requête à préparer |
|
| 31 | + * @param string $prefixe Prefixe des tables à utiliser |
|
| 32 | + * @param string $sqlite_version Version SQLite (2 ou 3) |
|
| 33 | + */ |
|
| 34 | + public function __construct($query, $prefixe, $sqlite_version) |
|
| 35 | + { |
|
| 36 | + $this->query = $query; |
|
| 37 | + $this->prefixe = $prefixe; |
|
| 38 | + $this->sqlite_version = $sqlite_version; |
|
| 39 | + } |
|
| 40 | + |
|
| 41 | + /** |
|
| 42 | + * Transformer la requete pour SQLite |
|
| 43 | + * |
|
| 44 | + * Enlève les textes, transforme la requête pour quelle soit |
|
| 45 | + * bien interprétée par SQLite, puis remet les textes |
|
| 46 | + * la fonction affecte `$this->query` |
|
| 47 | + */ |
|
| 48 | + public function traduire_requete() |
|
| 49 | + { |
|
| 50 | + // |
|
| 51 | + // 1) Protection des textes en les remplacant par des codes |
|
| 52 | + // |
|
| 53 | + // enlever les 'textes' et initialiser avec |
|
| 54 | + list($this->query, $textes) = query_echappe_textes($this->query); |
|
| 55 | + |
|
| 56 | + // |
|
| 57 | + // 2) Corrections de la requete |
|
| 58 | + // |
|
| 59 | + // Correction Create Database |
|
| 60 | + // Create Database -> requete ignoree |
|
| 61 | + if (strpos($this->query, 'CREATE DATABASE') === 0) { |
|
| 62 | + spip_log("Sqlite : requete non executee -> $this->query", 'sqlite.' . _LOG_AVERTISSEMENT); |
|
| 63 | + $this->query = 'SELECT 1'; |
|
| 64 | + } |
|
| 65 | + |
|
| 66 | + // Correction Insert Ignore |
|
| 67 | + // INSERT IGNORE -> insert (tout court et pas 'insert or replace') |
|
| 68 | + if (strpos($this->query, 'INSERT IGNORE') === 0) { |
|
| 69 | + spip_log("Sqlite : requete transformee -> $this->query", 'sqlite.' . _LOG_DEBUG); |
|
| 70 | + $this->query = 'INSERT ' . substr($this->query, '13'); |
|
| 71 | + } |
|
| 72 | + |
|
| 73 | + // Correction des dates avec INTERVAL |
|
| 74 | + // utiliser sql_date_proche() de preference |
|
| 75 | + if (strpos($this->query, 'INTERVAL') !== false) { |
|
| 76 | + $this->query = preg_replace_callback( |
|
| 77 | + '/DATE_(ADD|SUB)(.*)INTERVAL\s+(\d+)\s+([a-zA-Z]+)\)/U', |
|
| 78 | + [&$this, '_remplacerDateParTime'], |
|
| 79 | + $this->query |
|
| 80 | + ); |
|
| 81 | + } |
|
| 82 | + |
|
| 83 | + if (strpos($this->query, 'LEFT(') !== false) { |
|
| 84 | + $this->query = str_replace('LEFT(', '_LEFT(', $this->query); |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + if (strpos($this->query, 'TIMESTAMPDIFF(') !== false) { |
|
| 88 | + $this->query = preg_replace('/TIMESTAMPDIFF\(\s*([^,]*)\s*,/Uims', "TIMESTAMPDIFF('\\1',", $this->query); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + |
|
| 92 | + // Correction Using |
|
| 93 | + // USING (non reconnu en sqlite2) |
|
| 94 | + // problematique car la jointure ne se fait pas du coup. |
|
| 95 | + if (($this->sqlite_version == 2) && (strpos($this->query, 'USING') !== false)) { |
|
| 96 | + spip_log( |
|
| 97 | + "'USING (champ)' n'est pas reconnu en SQLite 2. Utilisez 'ON table1.champ = table2.champ'", |
|
| 98 | + 'sqlite.' . _LOG_ERREUR |
|
| 99 | + ); |
|
| 100 | + $this->query = preg_replace('/USING\s*\([^\)]*\)/', '', $this->query); |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + // Correction Field |
|
| 104 | + // remplace FIELD(table,i,j,k...) par CASE WHEN table=i THEN n ... ELSE 0 END |
|
| 105 | + if (strpos($this->query, 'FIELD') !== false) { |
|
| 106 | + $this->query = preg_replace_callback( |
|
| 107 | + '/FIELD\s*\(([^\)]*)\)/', |
|
| 108 | + [&$this, '_remplacerFieldParCase'], |
|
| 109 | + $this->query |
|
| 110 | + ); |
|
| 111 | + } |
|
| 112 | + |
|
| 113 | + // Correction des noms de tables FROM |
|
| 114 | + // mettre les bons noms de table dans from, update, insert, replace... |
|
| 115 | + if (preg_match('/\s(SET|VALUES|WHERE|DATABASE)\s/iS', $this->query, $regs)) { |
|
| 116 | + $suite = strstr($this->query, $regs[0]); |
|
| 117 | + $this->query = substr($this->query, 0, -strlen($suite)); |
|
| 118 | + } else { |
|
| 119 | + $suite = ''; |
|
| 120 | + } |
|
| 121 | + $pref = ($this->prefixe) ? $this->prefixe . '_' : ''; |
|
| 122 | + $this->query = preg_replace('/([,\s])spip_/S', '\1' . $pref, $this->query) . $suite; |
|
| 123 | + |
|
| 124 | + // Correction zero AS x |
|
| 125 | + // pg n'aime pas 0+x AS alias, sqlite, dans le meme style, |
|
| 126 | + // n'apprecie pas du tout SELECT 0 as x ... ORDER BY x |
|
| 127 | + // il dit que x ne doit pas être un integer dans le order by ! |
|
| 128 | + // on remplace du coup x par vide() dans ce cas uniquement |
|
| 129 | + // |
|
| 130 | + // apparait dans public/vertebrer.php et dans le plugin menu aussi qui genere aussi ce genre de requete via un {par num #GET{tri_num}} |
|
| 131 | + // mais est-ce encore un soucis pour sqlite en 2021 ? (ie commenter le preg_replace marche très bien en sqlite 3.28) |
|
| 132 | + if ((strpos($this->query, '0 AS') !== false)) { |
|
| 133 | + // on ne remplace que dans ORDER BY ou GROUP BY |
|
| 134 | + if (preg_match('/\s(ORDER|GROUP) BY\s/i', $this->query, $regs)) { |
|
| 135 | + $suite = strstr($this->query, $regs[0]); |
|
| 136 | + $this->query = substr($this->query, 0, -strlen($suite)); |
|
| 137 | + |
|
| 138 | + // on cherche les noms des x dans 0 AS x |
|
| 139 | + // on remplace dans $suite le nom par vide() |
|
| 140 | + preg_match_all('/\b0 AS\s*([^\s,]+)/', $this->query, $matches, PREG_PATTERN_ORDER); |
|
| 141 | + foreach ($matches[1] as $m) { |
|
| 142 | + if (strpos($suite, $m) !== false) { |
|
| 143 | + $suite = preg_replace(",\b$m\b,", 'VIDE()', $suite); |
|
| 144 | + } |
|
| 145 | + } |
|
| 146 | + $this->query .= $suite; |
|
| 147 | + } |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + // Correction possible des divisions entieres |
|
| 151 | + // Le standard SQL (lequel? ou?) semble indiquer que |
|
| 152 | + // a/b=c doit donner c entier si a et b sont entiers 4/3=1. |
|
| 153 | + // C'est ce que retournent effectivement SQL Server et SQLite |
|
| 154 | + // Ce n'est pas ce qu'applique MySQL qui retourne un reel : 4/3=1.333... |
|
| 155 | + // |
|
| 156 | + // On peut forcer la conversion en multipliant par 1.0 avant la division |
|
| 157 | + // /!\ SQLite 3.5.9 Debian/Ubuntu est victime d'un bug en plus ! |
|
| 158 | + // cf. https://bugs.launchpad.net/ubuntu/+source/sqlite3/+bug/254228 |
|
| 159 | + // http://www.sqlite.org/cvstrac/tktview?tn=3202 |
|
| 160 | + // (4*1.0/3) n'est pas rendu dans ce cas ! |
|
| 161 | + # $this->query = str_replace('/','* 1.00 / ',$this->query); |
|
| 162 | + |
|
| 163 | + |
|
| 164 | + // Correction critere REGEXP, non reconnu en sqlite2 |
|
| 165 | + if (($this->sqlite_version == 2) && (strpos($this->query, 'REGEXP') !== false)) { |
|
| 166 | + $this->query = preg_replace('/([^\s\(]*)(\s*)REGEXP(\s*)([^\s\)]*)/', 'REGEXP($4, $1)', $this->query); |
|
| 167 | + } |
|
| 168 | + |
|
| 169 | + // |
|
| 170 | + // 3) Remise en place des textes d'origine |
|
| 171 | + // |
|
| 172 | + // Correction Antiquotes et echappements |
|
| 173 | + // ` => rien |
|
| 174 | + if (strpos($this->query, '`') !== false) { |
|
| 175 | + $this->query = str_replace('`', '', $this->query); |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + $this->query = query_reinjecte_textes($this->query, $textes); |
|
| 179 | + |
|
| 180 | + return $this->query; |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + /** |
|
| 184 | + * Callback pour remplacer `DATE_` / `INTERVAL` |
|
| 185 | + * par `DATE ... strtotime` |
|
| 186 | + * |
|
| 187 | + * @param array $matches Captures |
|
| 188 | + * @return string texte de date compris par SQLite |
|
| 189 | + */ |
|
| 190 | + public function _remplacerDateParTime($matches) |
|
| 191 | + { |
|
| 192 | + $op = strtoupper($matches[1] == 'ADD') ? '+' : '-'; |
|
| 193 | + |
|
| 194 | + return "datetime$matches[2] '$op$matches[3] $matches[4]')"; |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + /** |
|
| 198 | + * Callback pour remplacer `FIELD(table,i,j,k...)` |
|
| 199 | + * par `CASE WHEN table=i THEN n ... ELSE 0 END` |
|
| 200 | + * |
|
| 201 | + * @param array $matches Captures |
|
| 202 | + * @return string texte de liste ordonnée compris par SQLite |
|
| 203 | + */ |
|
| 204 | + public function _remplacerFieldParCase($matches) |
|
| 205 | + { |
|
| 206 | + $fields = substr($matches[0], 6, -1); // ne recuperer que l'interieur X de field(X) |
|
| 207 | + $t = explode(',', $fields); |
|
| 208 | + $index = array_shift($t); |
|
| 209 | + |
|
| 210 | + $res = ''; |
|
| 211 | + $n = 0; |
|
| 212 | + foreach ($t as $v) { |
|
| 213 | + $n++; |
|
| 214 | + $res .= "\nWHEN $index=$v THEN $n"; |
|
| 215 | + } |
|
| 216 | + |
|
| 217 | + return "CASE $res ELSE 0 END "; |
|
| 218 | + } |
|
| 219 | 219 | } |
@@ -59,15 +59,15 @@ discard block |
||
| 59 | 59 | // Correction Create Database |
| 60 | 60 | // Create Database -> requete ignoree |
| 61 | 61 | if (strpos($this->query, 'CREATE DATABASE') === 0) { |
| 62 | - spip_log("Sqlite : requete non executee -> $this->query", 'sqlite.' . _LOG_AVERTISSEMENT); |
|
| 62 | + spip_log("Sqlite : requete non executee -> $this->query", 'sqlite.'._LOG_AVERTISSEMENT); |
|
| 63 | 63 | $this->query = 'SELECT 1'; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | // Correction Insert Ignore |
| 67 | 67 | // INSERT IGNORE -> insert (tout court et pas 'insert or replace') |
| 68 | 68 | if (strpos($this->query, 'INSERT IGNORE') === 0) { |
| 69 | - spip_log("Sqlite : requete transformee -> $this->query", 'sqlite.' . _LOG_DEBUG); |
|
| 70 | - $this->query = 'INSERT ' . substr($this->query, '13'); |
|
| 69 | + spip_log("Sqlite : requete transformee -> $this->query", 'sqlite.'._LOG_DEBUG); |
|
| 70 | + $this->query = 'INSERT '.substr($this->query, '13'); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | // Correction des dates avec INTERVAL |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | if (($this->sqlite_version == 2) && (strpos($this->query, 'USING') !== false)) { |
| 96 | 96 | spip_log( |
| 97 | 97 | "'USING (champ)' n'est pas reconnu en SQLite 2. Utilisez 'ON table1.champ = table2.champ'", |
| 98 | - 'sqlite.' . _LOG_ERREUR |
|
| 98 | + 'sqlite.'._LOG_ERREUR |
|
| 99 | 99 | ); |
| 100 | 100 | $this->query = preg_replace('/USING\s*\([^\)]*\)/', '', $this->query); |
| 101 | 101 | } |
@@ -118,8 +118,8 @@ discard block |
||
| 118 | 118 | } else { |
| 119 | 119 | $suite = ''; |
| 120 | 120 | } |
| 121 | - $pref = ($this->prefixe) ? $this->prefixe . '_' : ''; |
|
| 122 | - $this->query = preg_replace('/([,\s])spip_/S', '\1' . $pref, $this->query) . $suite; |
|
| 121 | + $pref = ($this->prefixe) ? $this->prefixe.'_' : ''; |
|
| 122 | + $this->query = preg_replace('/([,\s])spip_/S', '\1'.$pref, $this->query).$suite; |
|
| 123 | 123 | |
| 124 | 124 | // Correction zero AS x |
| 125 | 125 | // pg n'aime pas 0+x AS alias, sqlite, dans le meme style, |
@@ -8,119 +8,119 @@ |
||
| 8 | 8 | **/ |
| 9 | 9 | class Sqlite |
| 10 | 10 | { |
| 11 | - /** @var SqliteRequeteur[] Liste des instances de requêteurs créés */ |
|
| 12 | - public static $requeteurs = []; |
|
| 13 | - /** @var bool[] Pour chaque connexion, flag pour savoir si une transaction est en cours */ |
|
| 14 | - public static $transaction_en_cours = []; |
|
| 11 | + /** @var SqliteRequeteur[] Liste des instances de requêteurs créés */ |
|
| 12 | + public static $requeteurs = []; |
|
| 13 | + /** @var bool[] Pour chaque connexion, flag pour savoir si une transaction est en cours */ |
|
| 14 | + public static $transaction_en_cours = []; |
|
| 15 | 15 | |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * Retourne une unique instance du requêteur |
|
| 19 | - * |
|
| 20 | - * Retourne une instance unique du requêteur pour une connexion SQLite |
|
| 21 | - * donnée |
|
| 22 | - * |
|
| 23 | - * @param string $serveur |
|
| 24 | - * Nom du connecteur |
|
| 25 | - * @return SqliteRequeteur |
|
| 26 | - * Instance unique du requêteur |
|
| 27 | - **/ |
|
| 28 | - public static function requeteur($serveur) |
|
| 29 | - { |
|
| 30 | - if (!isset(static::$requeteurs[$serveur])) { |
|
| 31 | - static::$requeteurs[$serveur] = new SqliteRequeteur($serveur); |
|
| 32 | - } |
|
| 17 | + /** |
|
| 18 | + * Retourne une unique instance du requêteur |
|
| 19 | + * |
|
| 20 | + * Retourne une instance unique du requêteur pour une connexion SQLite |
|
| 21 | + * donnée |
|
| 22 | + * |
|
| 23 | + * @param string $serveur |
|
| 24 | + * Nom du connecteur |
|
| 25 | + * @return SqliteRequeteur |
|
| 26 | + * Instance unique du requêteur |
|
| 27 | + **/ |
|
| 28 | + public static function requeteur($serveur) |
|
| 29 | + { |
|
| 30 | + if (!isset(static::$requeteurs[$serveur])) { |
|
| 31 | + static::$requeteurs[$serveur] = new SqliteRequeteur($serveur); |
|
| 32 | + } |
|
| 33 | 33 | |
| 34 | - return static::$requeteurs[$serveur]; |
|
| 35 | - } |
|
| 34 | + return static::$requeteurs[$serveur]; |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - /** |
|
| 38 | - * Prépare le texte d'une requête avant son exécution |
|
| 39 | - * |
|
| 40 | - * Adapte la requête au format plus ou moins MySQL par un format |
|
| 41 | - * compris de SQLite. |
|
| 42 | - * |
|
| 43 | - * Change les préfixes de tables SPIP par ceux véritables |
|
| 44 | - * |
|
| 45 | - * @param string $query Requête à préparer |
|
| 46 | - * @param string $serveur Nom de la connexion |
|
| 47 | - * @return string Requête préparée |
|
| 48 | - */ |
|
| 49 | - public static function traduire_requete($query, $serveur) |
|
| 50 | - { |
|
| 51 | - $requeteur = static::requeteur($serveur); |
|
| 52 | - $traducteur = new SqliteTraducteur($query, $requeteur->prefixe, $requeteur->sqlite_version); |
|
| 37 | + /** |
|
| 38 | + * Prépare le texte d'une requête avant son exécution |
|
| 39 | + * |
|
| 40 | + * Adapte la requête au format plus ou moins MySQL par un format |
|
| 41 | + * compris de SQLite. |
|
| 42 | + * |
|
| 43 | + * Change les préfixes de tables SPIP par ceux véritables |
|
| 44 | + * |
|
| 45 | + * @param string $query Requête à préparer |
|
| 46 | + * @param string $serveur Nom de la connexion |
|
| 47 | + * @return string Requête préparée |
|
| 48 | + */ |
|
| 49 | + public static function traduire_requete($query, $serveur) |
|
| 50 | + { |
|
| 51 | + $requeteur = static::requeteur($serveur); |
|
| 52 | + $traducteur = new SqliteTraducteur($query, $requeteur->prefixe, $requeteur->sqlite_version); |
|
| 53 | 53 | |
| 54 | - return $traducteur->traduire_requete(); |
|
| 55 | - } |
|
| 54 | + return $traducteur->traduire_requete(); |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * Démarre une transaction |
|
| 59 | - * |
|
| 60 | - * @param string $serveur Nom de la connexion |
|
| 61 | - **/ |
|
| 62 | - public static function demarrer_transaction($serveur) |
|
| 63 | - { |
|
| 64 | - Sqlite::executer_requete('BEGIN TRANSACTION', $serveur); |
|
| 65 | - Sqlite::$transaction_en_cours[$serveur] = true; |
|
| 66 | - } |
|
| 57 | + /** |
|
| 58 | + * Démarre une transaction |
|
| 59 | + * |
|
| 60 | + * @param string $serveur Nom de la connexion |
|
| 61 | + **/ |
|
| 62 | + public static function demarrer_transaction($serveur) |
|
| 63 | + { |
|
| 64 | + Sqlite::executer_requete('BEGIN TRANSACTION', $serveur); |
|
| 65 | + Sqlite::$transaction_en_cours[$serveur] = true; |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - /** |
|
| 69 | - * Exécute la requête donnée |
|
| 70 | - * |
|
| 71 | - * @param string $query Requête |
|
| 72 | - * @param string $serveur Nom de la connexion |
|
| 73 | - * @param null|bool $tracer Demander des statistiques (temps) ? |
|
| 74 | - **/ |
|
| 75 | - public static function executer_requete($query, $serveur, $tracer = null) |
|
| 76 | - { |
|
| 77 | - $requeteur = Sqlite::requeteur($serveur); |
|
| 68 | + /** |
|
| 69 | + * Exécute la requête donnée |
|
| 70 | + * |
|
| 71 | + * @param string $query Requête |
|
| 72 | + * @param string $serveur Nom de la connexion |
|
| 73 | + * @param null|bool $tracer Demander des statistiques (temps) ? |
|
| 74 | + **/ |
|
| 75 | + public static function executer_requete($query, $serveur, $tracer = null) |
|
| 76 | + { |
|
| 77 | + $requeteur = Sqlite::requeteur($serveur); |
|
| 78 | 78 | |
| 79 | - return $requeteur->executer_requete($query, $tracer); |
|
| 80 | - } |
|
| 79 | + return $requeteur->executer_requete($query, $tracer); |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - /** |
|
| 83 | - * Obtient l'identifiant de la dernière ligne insérée ou modifiée |
|
| 84 | - * |
|
| 85 | - * @param string $serveur Nom de la connexion |
|
| 86 | - * return int Identifiant |
|
| 87 | - **/ |
|
| 88 | - public static function last_insert_id($serveur) |
|
| 89 | - { |
|
| 90 | - $requeteur = Sqlite::requeteur($serveur); |
|
| 82 | + /** |
|
| 83 | + * Obtient l'identifiant de la dernière ligne insérée ou modifiée |
|
| 84 | + * |
|
| 85 | + * @param string $serveur Nom de la connexion |
|
| 86 | + * return int Identifiant |
|
| 87 | + **/ |
|
| 88 | + public static function last_insert_id($serveur) |
|
| 89 | + { |
|
| 90 | + $requeteur = Sqlite::requeteur($serveur); |
|
| 91 | 91 | |
| 92 | - return $requeteur->last_insert_id($serveur); |
|
| 93 | - } |
|
| 92 | + return $requeteur->last_insert_id($serveur); |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - /** |
|
| 96 | - * Annule une transaction |
|
| 97 | - * |
|
| 98 | - * @param string $serveur Nom de la connexion |
|
| 99 | - **/ |
|
| 100 | - public static function annuler_transaction($serveur) |
|
| 101 | - { |
|
| 102 | - Sqlite::executer_requete('ROLLBACK', $serveur); |
|
| 103 | - Sqlite::$transaction_en_cours[$serveur] = false; |
|
| 104 | - } |
|
| 95 | + /** |
|
| 96 | + * Annule une transaction |
|
| 97 | + * |
|
| 98 | + * @param string $serveur Nom de la connexion |
|
| 99 | + **/ |
|
| 100 | + public static function annuler_transaction($serveur) |
|
| 101 | + { |
|
| 102 | + Sqlite::executer_requete('ROLLBACK', $serveur); |
|
| 103 | + Sqlite::$transaction_en_cours[$serveur] = false; |
|
| 104 | + } |
|
| 105 | 105 | |
| 106 | - /** |
|
| 107 | - * Termine une transaction |
|
| 108 | - * |
|
| 109 | - * @param string $serveur Nom de la connexion |
|
| 110 | - **/ |
|
| 111 | - public static function finir_transaction($serveur) |
|
| 112 | - { |
|
| 113 | - // si pas de transaction en cours, ne rien faire et le dire |
|
| 114 | - if ( |
|
| 115 | - !isset(Sqlite::$transaction_en_cours[$serveur]) |
|
| 116 | - or Sqlite::$transaction_en_cours[$serveur] == false |
|
| 117 | - ) { |
|
| 118 | - return false; |
|
| 119 | - } |
|
| 120 | - // sinon fermer la transaction et retourner true |
|
| 121 | - Sqlite::executer_requete('COMMIT', $serveur); |
|
| 122 | - Sqlite::$transaction_en_cours[$serveur] = false; |
|
| 106 | + /** |
|
| 107 | + * Termine une transaction |
|
| 108 | + * |
|
| 109 | + * @param string $serveur Nom de la connexion |
|
| 110 | + **/ |
|
| 111 | + public static function finir_transaction($serveur) |
|
| 112 | + { |
|
| 113 | + // si pas de transaction en cours, ne rien faire et le dire |
|
| 114 | + if ( |
|
| 115 | + !isset(Sqlite::$transaction_en_cours[$serveur]) |
|
| 116 | + or Sqlite::$transaction_en_cours[$serveur] == false |
|
| 117 | + ) { |
|
| 118 | + return false; |
|
| 119 | + } |
|
| 120 | + // sinon fermer la transaction et retourner true |
|
| 121 | + Sqlite::executer_requete('COMMIT', $serveur); |
|
| 122 | + Sqlite::$transaction_en_cours[$serveur] = false; |
|
| 123 | 123 | |
| 124 | - return true; |
|
| 125 | - } |
|
| 124 | + return true; |
|
| 125 | + } |
|
| 126 | 126 | } |
@@ -7,21 +7,21 @@ |
||
| 7 | 7 | * @internal |
| 8 | 8 | */ |
| 9 | 9 | class Collection { |
| 10 | - private array $vars = []; |
|
| 10 | + private array $vars = []; |
|
| 11 | 11 | |
| 12 | - public function add(string $var, string $value) { |
|
| 13 | - $this->vars[$var] = $value; |
|
| 14 | - } |
|
| 12 | + public function add(string $var, string $value) { |
|
| 13 | + $this->vars[$var] = $value; |
|
| 14 | + } |
|
| 15 | 15 | |
| 16 | - public function getString(): string { |
|
| 17 | - $string = ''; |
|
| 18 | - foreach ($this->vars as $key => $value) { |
|
| 19 | - $string .= "$key: $value;\n"; |
|
| 20 | - } |
|
| 21 | - return $string; |
|
| 22 | - } |
|
| 16 | + public function getString(): string { |
|
| 17 | + $string = ''; |
|
| 18 | + foreach ($this->vars as $key => $value) { |
|
| 19 | + $string .= "$key: $value;\n"; |
|
| 20 | + } |
|
| 21 | + return $string; |
|
| 22 | + } |
|
| 23 | 23 | |
| 24 | - public function __toString(): string { |
|
| 25 | - return $this->getString(); |
|
| 26 | - } |
|
| 24 | + public function __toString(): string { |
|
| 25 | + return $this->getString(); |
|
| 26 | + } |
|
| 27 | 27 | } |
@@ -8,583 +8,583 @@ |
||
| 8 | 8 | |
| 9 | 9 | class Decorator extends FilterIterator |
| 10 | 10 | { |
| 11 | - /** |
|
| 12 | - * Conditions de filtrage |
|
| 13 | - * ie criteres de selection. |
|
| 14 | - * |
|
| 15 | - * @var array |
|
| 16 | - */ |
|
| 17 | - protected $filtre = []; |
|
| 18 | - |
|
| 19 | - /** |
|
| 20 | - * Fonction de filtrage compilee a partir des criteres de filtre. |
|
| 21 | - * |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 24 | - protected $func_filtre; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * Critere {offset, limit}. |
|
| 28 | - * |
|
| 29 | - * @var int |
|
| 30 | - * @var int |
|
| 31 | - */ |
|
| 32 | - protected $offset; |
|
| 33 | - protected $limit; |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * nombre d'elements recuperes depuis la position 0, |
|
| 37 | - * en tenant compte des filtres. |
|
| 38 | - * |
|
| 39 | - * @var int |
|
| 40 | - */ |
|
| 41 | - protected $fetched = 0; |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Y a t'il une erreur ? |
|
| 45 | - * |
|
| 46 | - * @var bool |
|
| 47 | - */ |
|
| 48 | - protected $err = false; |
|
| 49 | - |
|
| 50 | - // Extension SPIP des iterateurs PHP |
|
| 51 | - /** |
|
| 52 | - * type de l'iterateur. |
|
| 53 | - * |
|
| 54 | - * @var string |
|
| 55 | - */ |
|
| 56 | - protected $type; |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * parametres de l'iterateur. |
|
| 60 | - * |
|
| 61 | - * @var array |
|
| 62 | - */ |
|
| 63 | - protected $command; |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * infos de compilateur. |
|
| 67 | - * |
|
| 68 | - * @var array |
|
| 69 | - */ |
|
| 70 | - protected $info; |
|
| 71 | - |
|
| 72 | - /** |
|
| 73 | - * position courante de l'iterateur. |
|
| 74 | - * |
|
| 75 | - * @var int |
|
| 76 | - */ |
|
| 77 | - protected $pos; |
|
| 78 | - |
|
| 79 | - /** |
|
| 80 | - * nombre total resultats dans l'iterateur. |
|
| 81 | - * |
|
| 82 | - * @var int |
|
| 83 | - */ |
|
| 84 | - protected $total; |
|
| 85 | - |
|
| 86 | - /** |
|
| 87 | - * nombre maximal de recherche pour $total |
|
| 88 | - * si l'iterateur n'implemente pas de fonction specifique. |
|
| 89 | - */ |
|
| 90 | - protected $max = 100000; |
|
| 91 | - |
|
| 92 | - /** |
|
| 93 | - * Liste des champs a inserer dans les $row |
|
| 94 | - * retournes par ->fetch(). |
|
| 95 | - */ |
|
| 96 | - protected $select = []; |
|
| 97 | - private $iter; |
|
| 98 | - |
|
| 99 | - public function __construct(Iterator $iter, $command, $info) { |
|
| 100 | - parent::__construct($iter); |
|
| 101 | - parent::rewind(); // remettre a la premiere position (bug? connu de FilterIterator) |
|
| 102 | - |
|
| 103 | - // recuperer l'iterateur transmis |
|
| 104 | - $this->iter = $this->getInnerIterator(); |
|
| 105 | - $this->command = $command; |
|
| 106 | - $this->info = $info; |
|
| 107 | - $this->pos = 0; |
|
| 108 | - $this->fetched = 0; |
|
| 109 | - |
|
| 110 | - // chercher la liste des champs a retourner par |
|
| 111 | - // fetch si l'objet ne les calcule pas tout seul |
|
| 112 | - if (!method_exists($this->iter, 'fetch')) { |
|
| 113 | - $this->calculer_select(); |
|
| 114 | - $this->calculer_filtres(); |
|
| 115 | - } |
|
| 116 | - |
|
| 117 | - // emptyIterator critere {si} faux n'a pas d'erreur ! |
|
| 118 | - if (isset($this->iter->err)) { |
|
| 119 | - $this->err = $this->iter->err; |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - // pas d'init a priori, le calcul ne sera fait qu'en cas de besoin (provoque une double requete souvent inutile en sqlite) |
|
| 123 | - //$this->total = $this->count(); |
|
| 124 | - } |
|
| 125 | - |
|
| 126 | - /** |
|
| 127 | - * Drapeau a activer en cas d'echec |
|
| 128 | - * (select SQL errone, non chargement des DATA, etc). |
|
| 129 | - */ |
|
| 130 | - public function err() { |
|
| 131 | - if (method_exists($this->iter, 'err')) { |
|
| 132 | - return $this->iter->err(); |
|
| 133 | - } |
|
| 134 | - if (property_exists($this->iter, 'err')) { |
|
| 135 | - return $this->iter->err; |
|
| 136 | - } |
|
| 137 | - |
|
| 138 | - return false; |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - // recuperer la valeur d'une balise #X |
|
| 142 | - // en fonction des methodes |
|
| 143 | - // et proprietes disponibles |
|
| 144 | - public function get_select($nom) { |
|
| 145 | - if ( |
|
| 146 | - is_object($this->iter) |
|
| 147 | - and method_exists($this->iter, $nom) |
|
| 148 | - ) { |
|
| 149 | - try { |
|
| 150 | - return $this->iter->{$nom}(); |
|
| 151 | - } catch (Exception $e) { |
|
| 152 | - // #GETCHILDREN sur un fichier de DirectoryIterator ... |
|
| 153 | - spip_log("Methode {$nom} en echec sur " . get_class($this->iter)); |
|
| 154 | - spip_log("Cela peut être normal : retour d'une ligne de resultat ne pouvant pas calculer cette methode"); |
|
| 155 | - |
|
| 156 | - return ''; |
|
| 157 | - } |
|
| 158 | - } |
|
| 159 | - /* |
|
| 11 | + /** |
|
| 12 | + * Conditions de filtrage |
|
| 13 | + * ie criteres de selection. |
|
| 14 | + * |
|
| 15 | + * @var array |
|
| 16 | + */ |
|
| 17 | + protected $filtre = []; |
|
| 18 | + |
|
| 19 | + /** |
|
| 20 | + * Fonction de filtrage compilee a partir des criteres de filtre. |
|
| 21 | + * |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | + protected $func_filtre; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * Critere {offset, limit}. |
|
| 28 | + * |
|
| 29 | + * @var int |
|
| 30 | + * @var int |
|
| 31 | + */ |
|
| 32 | + protected $offset; |
|
| 33 | + protected $limit; |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * nombre d'elements recuperes depuis la position 0, |
|
| 37 | + * en tenant compte des filtres. |
|
| 38 | + * |
|
| 39 | + * @var int |
|
| 40 | + */ |
|
| 41 | + protected $fetched = 0; |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Y a t'il une erreur ? |
|
| 45 | + * |
|
| 46 | + * @var bool |
|
| 47 | + */ |
|
| 48 | + protected $err = false; |
|
| 49 | + |
|
| 50 | + // Extension SPIP des iterateurs PHP |
|
| 51 | + /** |
|
| 52 | + * type de l'iterateur. |
|
| 53 | + * |
|
| 54 | + * @var string |
|
| 55 | + */ |
|
| 56 | + protected $type; |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * parametres de l'iterateur. |
|
| 60 | + * |
|
| 61 | + * @var array |
|
| 62 | + */ |
|
| 63 | + protected $command; |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * infos de compilateur. |
|
| 67 | + * |
|
| 68 | + * @var array |
|
| 69 | + */ |
|
| 70 | + protected $info; |
|
| 71 | + |
|
| 72 | + /** |
|
| 73 | + * position courante de l'iterateur. |
|
| 74 | + * |
|
| 75 | + * @var int |
|
| 76 | + */ |
|
| 77 | + protected $pos; |
|
| 78 | + |
|
| 79 | + /** |
|
| 80 | + * nombre total resultats dans l'iterateur. |
|
| 81 | + * |
|
| 82 | + * @var int |
|
| 83 | + */ |
|
| 84 | + protected $total; |
|
| 85 | + |
|
| 86 | + /** |
|
| 87 | + * nombre maximal de recherche pour $total |
|
| 88 | + * si l'iterateur n'implemente pas de fonction specifique. |
|
| 89 | + */ |
|
| 90 | + protected $max = 100000; |
|
| 91 | + |
|
| 92 | + /** |
|
| 93 | + * Liste des champs a inserer dans les $row |
|
| 94 | + * retournes par ->fetch(). |
|
| 95 | + */ |
|
| 96 | + protected $select = []; |
|
| 97 | + private $iter; |
|
| 98 | + |
|
| 99 | + public function __construct(Iterator $iter, $command, $info) { |
|
| 100 | + parent::__construct($iter); |
|
| 101 | + parent::rewind(); // remettre a la premiere position (bug? connu de FilterIterator) |
|
| 102 | + |
|
| 103 | + // recuperer l'iterateur transmis |
|
| 104 | + $this->iter = $this->getInnerIterator(); |
|
| 105 | + $this->command = $command; |
|
| 106 | + $this->info = $info; |
|
| 107 | + $this->pos = 0; |
|
| 108 | + $this->fetched = 0; |
|
| 109 | + |
|
| 110 | + // chercher la liste des champs a retourner par |
|
| 111 | + // fetch si l'objet ne les calcule pas tout seul |
|
| 112 | + if (!method_exists($this->iter, 'fetch')) { |
|
| 113 | + $this->calculer_select(); |
|
| 114 | + $this->calculer_filtres(); |
|
| 115 | + } |
|
| 116 | + |
|
| 117 | + // emptyIterator critere {si} faux n'a pas d'erreur ! |
|
| 118 | + if (isset($this->iter->err)) { |
|
| 119 | + $this->err = $this->iter->err; |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + // pas d'init a priori, le calcul ne sera fait qu'en cas de besoin (provoque une double requete souvent inutile en sqlite) |
|
| 123 | + //$this->total = $this->count(); |
|
| 124 | + } |
|
| 125 | + |
|
| 126 | + /** |
|
| 127 | + * Drapeau a activer en cas d'echec |
|
| 128 | + * (select SQL errone, non chargement des DATA, etc). |
|
| 129 | + */ |
|
| 130 | + public function err() { |
|
| 131 | + if (method_exists($this->iter, 'err')) { |
|
| 132 | + return $this->iter->err(); |
|
| 133 | + } |
|
| 134 | + if (property_exists($this->iter, 'err')) { |
|
| 135 | + return $this->iter->err; |
|
| 136 | + } |
|
| 137 | + |
|
| 138 | + return false; |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + // recuperer la valeur d'une balise #X |
|
| 142 | + // en fonction des methodes |
|
| 143 | + // et proprietes disponibles |
|
| 144 | + public function get_select($nom) { |
|
| 145 | + if ( |
|
| 146 | + is_object($this->iter) |
|
| 147 | + and method_exists($this->iter, $nom) |
|
| 148 | + ) { |
|
| 149 | + try { |
|
| 150 | + return $this->iter->{$nom}(); |
|
| 151 | + } catch (Exception $e) { |
|
| 152 | + // #GETCHILDREN sur un fichier de DirectoryIterator ... |
|
| 153 | + spip_log("Methode {$nom} en echec sur " . get_class($this->iter)); |
|
| 154 | + spip_log("Cela peut être normal : retour d'une ligne de resultat ne pouvant pas calculer cette methode"); |
|
| 155 | + |
|
| 156 | + return ''; |
|
| 157 | + } |
|
| 158 | + } |
|
| 159 | + /* |
|
| 160 | 160 | if (property_exists($this->iter, $nom)) { |
| 161 | 161 | return $this->iter->$nom; |
| 162 | 162 | }*/ |
| 163 | - // cle et valeur par defaut |
|
| 164 | - // ICI PLANTAGE SI ON NE CONTROLE PAS $nom |
|
| 165 | - if ( |
|
| 166 | - in_array($nom, ['cle', 'valeur']) |
|
| 167 | - and method_exists($this, $nom) |
|
| 168 | - ) { |
|
| 169 | - return $this->{$nom}(); |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - // Par defaut chercher en xpath dans la valeur() |
|
| 173 | - return table_valeur($this->valeur(), $nom, null); |
|
| 174 | - } |
|
| 175 | - |
|
| 176 | - public function next(): void { |
|
| 177 | - ++$this->pos; |
|
| 178 | - parent::next(); |
|
| 179 | - } |
|
| 180 | - |
|
| 181 | - /** |
|
| 182 | - * revient au depart. |
|
| 183 | - */ |
|
| 184 | - public function rewind(): void { |
|
| 185 | - $this->pos = 0; |
|
| 186 | - $this->fetched = 0; |
|
| 187 | - parent::rewind(); |
|
| 188 | - } |
|
| 189 | - |
|
| 190 | - /** |
|
| 191 | - * aller a la position absolue n, |
|
| 192 | - * comptee depuis le debut. |
|
| 193 | - * |
|
| 194 | - * @param int $n |
|
| 195 | - * absolute pos |
|
| 196 | - * @param string $continue |
|
| 197 | - * param for sql_ api |
|
| 198 | - * |
|
| 199 | - * @return bool |
|
| 200 | - * success or fail if not implemented |
|
| 201 | - */ |
|
| 202 | - public function seek($n = 0, $continue = null) { |
|
| 203 | - if ($this->func_filtre or !method_exists($this->iter, 'seek') or !$this->iter->seek($n)) { |
|
| 204 | - $this->seek_loop($n); |
|
| 205 | - } |
|
| 206 | - $this->pos = $n; |
|
| 207 | - $this->fetched = $n; |
|
| 208 | - |
|
| 209 | - return true; |
|
| 210 | - } |
|
| 211 | - |
|
| 212 | - /** |
|
| 213 | - * Avancer de $saut pas. |
|
| 214 | - * |
|
| 215 | - * @param $saut |
|
| 216 | - * @param $max |
|
| 217 | - * |
|
| 218 | - * @return int |
|
| 219 | - */ |
|
| 220 | - public function skip($saut, $max = null) { |
|
| 221 | - // pas de saut en arriere autorise pour cette fonction |
|
| 222 | - if (($saut = intval($saut)) <= 0) { |
|
| 223 | - return $this->pos; |
|
| 224 | - } |
|
| 225 | - $seek = $this->pos + $saut; |
|
| 226 | - // si le saut fait depasser le maxi, on libere la resource |
|
| 227 | - // et on sort |
|
| 228 | - if (is_null($max)) { |
|
| 229 | - $max = $this->count(); |
|
| 230 | - } |
|
| 231 | - |
|
| 232 | - if ($seek >= $max or $seek >= $this->count()) { |
|
| 233 | - // sortie plus rapide que de faire next() jusqu'a la fin ! |
|
| 234 | - $this->free(); |
|
| 235 | - |
|
| 236 | - return $max; |
|
| 237 | - } |
|
| 238 | - |
|
| 239 | - $this->seek($seek); |
|
| 240 | - |
|
| 241 | - return $this->pos; |
|
| 242 | - } |
|
| 243 | - |
|
| 244 | - /** |
|
| 245 | - * Renvoyer un tableau des donnees correspondantes |
|
| 246 | - * a la position courante de l'iterateur |
|
| 247 | - * en controlant si on respecte le filtre |
|
| 248 | - * Appliquer aussi le critere {offset,limit}. |
|
| 249 | - * |
|
| 250 | - * @return array|bool |
|
| 251 | - */ |
|
| 252 | - public function fetch() { |
|
| 253 | - if (method_exists($this->iter, 'fetch')) { |
|
| 254 | - return $this->iter->fetch(); |
|
| 255 | - } |
|
| 256 | - while ( |
|
| 257 | - $this->valid() |
|
| 258 | - and ( |
|
| 259 | - !$this->accept() |
|
| 260 | - or (isset($this->offset) and $this->fetched++ < $this->offset) |
|
| 261 | - ) |
|
| 262 | - ) { |
|
| 263 | - $this->next(); |
|
| 264 | - } |
|
| 265 | - |
|
| 266 | - if (!$this->valid()) { |
|
| 267 | - return false; |
|
| 268 | - } |
|
| 269 | - |
|
| 270 | - if ( |
|
| 271 | - isset($this->limit) |
|
| 272 | - and $this->fetched > $this->offset + $this->limit |
|
| 273 | - ) { |
|
| 274 | - return false; |
|
| 275 | - } |
|
| 276 | - |
|
| 277 | - $r = []; |
|
| 278 | - foreach ($this->select as $nom) { |
|
| 279 | - $r[$nom] = $this->get_select($nom); |
|
| 280 | - } |
|
| 281 | - $this->next(); |
|
| 282 | - |
|
| 283 | - return $r; |
|
| 284 | - } |
|
| 285 | - |
|
| 286 | - // retourner la cle pour #CLE |
|
| 287 | - public function cle() { |
|
| 288 | - return $this->key(); |
|
| 289 | - } |
|
| 290 | - |
|
| 291 | - // retourner la valeur pour #VALEUR |
|
| 292 | - public function valeur() { |
|
| 293 | - return $this->current(); |
|
| 294 | - } |
|
| 295 | - |
|
| 296 | - /** |
|
| 297 | - * Accepte-t-on l'entree courante lue ? |
|
| 298 | - * On execute les filtres pour le savoir. |
|
| 299 | - */ |
|
| 300 | - public function accept(): bool { |
|
| 301 | - if ($f = $this->func_filtre) { |
|
| 302 | - return $f(); |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - return true; |
|
| 306 | - } |
|
| 307 | - |
|
| 308 | - /** |
|
| 309 | - * liberer la ressource. |
|
| 310 | - * |
|
| 311 | - * @return bool |
|
| 312 | - */ |
|
| 313 | - public function free() { |
|
| 314 | - if (method_exists($this->iter, 'free')) { |
|
| 315 | - $this->iter->free(); |
|
| 316 | - } |
|
| 317 | - $this->pos = $this->total = 0; |
|
| 318 | - |
|
| 319 | - return true; |
|
| 320 | - } |
|
| 321 | - |
|
| 322 | - /** |
|
| 323 | - * Compter le nombre total de resultats |
|
| 324 | - * pour #TOTAL_BOUCLE. |
|
| 325 | - * |
|
| 326 | - * @return int |
|
| 327 | - */ |
|
| 328 | - public function count() { |
|
| 329 | - if (is_null($this->total)) { |
|
| 330 | - if ( |
|
| 331 | - method_exists($this->iter, 'count') |
|
| 332 | - and !$this->func_filtre |
|
| 333 | - ) { |
|
| 334 | - return $this->total = $this->iter->count(); |
|
| 335 | - } |
|
| 336 | - // compter les lignes et rembobiner |
|
| 337 | - $total = 0; |
|
| 338 | - $pos = $this->pos; // sauver la position |
|
| 339 | - $this->rewind(); |
|
| 340 | - while ($this->fetch() and $total < $this->max) { |
|
| 341 | - ++$total; |
|
| 342 | - } |
|
| 343 | - $this->seek($pos); |
|
| 344 | - $this->total = $total; |
|
| 345 | - } |
|
| 346 | - |
|
| 347 | - return $this->total; |
|
| 348 | - } |
|
| 349 | - |
|
| 350 | - /** |
|
| 351 | - * Assembler le tableau de filtres traduits depuis les conditions SQL |
|
| 352 | - * les filtres vides ou null sont ignores. |
|
| 353 | - * |
|
| 354 | - * @param $filtres |
|
| 355 | - * @param string $operateur |
|
| 356 | - * |
|
| 357 | - * @return null|string |
|
| 358 | - */ |
|
| 359 | - protected function assembler_filtres($filtres, $operateur = 'AND') { |
|
| 360 | - $filtres_string = []; |
|
| 361 | - foreach ($filtres as $k => $v) { |
|
| 362 | - // si c'est un tableau de OR/AND + 2 sous-filtres, on recurse pour transformer en chaine |
|
| 363 | - if (is_array($v) and in_array(reset($v), ['OR', 'AND'])) { |
|
| 364 | - $op = array_shift($v); |
|
| 365 | - $v = $this->assembler_filtres($v, $op); |
|
| 366 | - } |
|
| 367 | - if (is_null($v) or !is_string($v) or empty($v)) { |
|
| 368 | - continue; |
|
| 369 | - } |
|
| 370 | - $filtres_string[] = $v; |
|
| 371 | - } |
|
| 372 | - |
|
| 373 | - if (!count($filtres_string)) { |
|
| 374 | - return null; |
|
| 375 | - } |
|
| 376 | - |
|
| 377 | - return '(' . implode(") {$operateur} (", $filtres_string) . ')'; |
|
| 378 | - } |
|
| 379 | - |
|
| 380 | - /** |
|
| 381 | - * Traduire un element du tableau where SQL en un filtre. |
|
| 382 | - * |
|
| 383 | - * @param $v |
|
| 384 | - * |
|
| 385 | - * @return null|array|string |
|
| 386 | - */ |
|
| 387 | - protected function traduire_condition_sql_en_filtre($v) { |
|
| 388 | - if (is_array($v)) { |
|
| 389 | - if ((count($v) >= 2) && ('REGEXP' == $v[0]) && ("'.*'" == $v[2])) { |
|
| 390 | - return 'true'; |
|
| 391 | - } |
|
| 392 | - if ((count($v) >= 2) && ('LIKE' == $v[0]) && ("'%'" == $v[2])) { |
|
| 393 | - return 'true'; |
|
| 394 | - } |
|
| 395 | - $op = $v[0] ?: $v; |
|
| 396 | - } else { |
|
| 397 | - $op = $v; |
|
| 398 | - } |
|
| 399 | - if ((!$op) or (1 == $op) or ('0=0' == $op)) { |
|
| 400 | - return 'true'; |
|
| 401 | - } |
|
| 402 | - if ('0=1' === $op) { |
|
| 403 | - return 'false'; |
|
| 404 | - } |
|
| 405 | - // traiter {cle IN a,b} ou {valeur !IN a,b} |
|
| 406 | - if (preg_match(',^\(([\w/]+)(\s+NOT)?\s+IN\s+(\(.*\))\)$,', $op, $regs)) { |
|
| 407 | - return $this->composer_filtre($regs[1], 'IN', $regs[3], $regs[2]); |
|
| 408 | - } |
|
| 409 | - |
|
| 410 | - // 3 possibilites : count($v) = |
|
| 411 | - // * 1 : {x y} ; on recoit $v[0] = y |
|
| 412 | - // * 2 : {x !op y} ; on recoit $v[0] = 'NOT', $v[1] = array() // array du type {x op y} |
|
| 413 | - // * 3 : {x op y} ; on recoit $v[0] = 'op', $v[1] = x, $v[2] = y |
|
| 414 | - |
|
| 415 | - // 1 : forcement traite par un critere, on passe |
|
| 416 | - if (!$v or !is_array($v) or 1 == count($v)) { |
|
| 417 | - return null; // sera ignore |
|
| 418 | - } |
|
| 419 | - if (2 == count($v) and is_array($v[1])) { |
|
| 420 | - return $this->composer_filtre($v[1][1], $v[1][0], $v[1][2], 'NOT'); |
|
| 421 | - } |
|
| 422 | - if (3 == count($v)) { |
|
| 423 | - // traiter le OR/AND suivi de 2 valeurs |
|
| 424 | - if (in_array($op, ['OR', 'AND'])) { |
|
| 425 | - array_shift($v); |
|
| 426 | - foreach (array_keys($v) as $k) { |
|
| 427 | - $v[$k] = $this->traduire_condition_sql_en_filtre($v[$k]); |
|
| 428 | - if (null === $v[$k]) { |
|
| 429 | - unset($v[$k]); |
|
| 430 | - } elseif ('true' === $v[$k]) { |
|
| 431 | - if ('OR' === $op) { |
|
| 432 | - return 'true'; |
|
| 433 | - } |
|
| 434 | - if ('AND' === $op) { |
|
| 435 | - unset($v[$k]); |
|
| 436 | - } |
|
| 437 | - } elseif ('false' === $v[$k]) { |
|
| 438 | - if ('OR' === $op) { |
|
| 439 | - unset($v[$k]); |
|
| 440 | - } |
|
| 441 | - if ('AND' === $op) { |
|
| 442 | - return 'false'; |
|
| 443 | - } |
|
| 444 | - } |
|
| 445 | - } |
|
| 446 | - if (!count($v)) { |
|
| 447 | - return null; |
|
| 448 | - } |
|
| 449 | - if (1 === count($v)) { |
|
| 450 | - return reset($v); |
|
| 451 | - } |
|
| 452 | - array_unshift($v, $op); |
|
| 453 | - |
|
| 454 | - return $v; |
|
| 455 | - } |
|
| 456 | - |
|
| 457 | - return $this->composer_filtre($v[1], $v[0], $v[2]); |
|
| 458 | - } |
|
| 459 | - |
|
| 460 | - return null; // sera ignore |
|
| 461 | - } |
|
| 462 | - |
|
| 463 | - /** |
|
| 464 | - * Calculer un filtre sur un champ du tableau. |
|
| 465 | - * |
|
| 466 | - * @param $cle |
|
| 467 | - * @param $op |
|
| 468 | - * @param $valeur |
|
| 469 | - * @param false $not |
|
| 470 | - * |
|
| 471 | - * @return null|string |
|
| 472 | - */ |
|
| 473 | - protected function composer_filtre($cle, $op, $valeur, $not = false) { |
|
| 474 | - if (method_exists($this->iter, 'exception_des_criteres')) { |
|
| 475 | - if (in_array($cle, $this->iter->exception_des_criteres())) { |
|
| 476 | - return null; |
|
| 477 | - } |
|
| 478 | - } |
|
| 479 | - // TODO: analyser le filtre pour refuser ce qu'on ne sait pas traiter ? |
|
| 480 | - // mais c'est normalement deja opere par calculer_critere_infixe() |
|
| 481 | - // qui regarde la description 'desc' (en casse reelle d'ailleurs : {isDir=1} |
|
| 482 | - // ne sera pas vu si l'on a defini desc['field']['isdir'] pour que #ISDIR soit present. |
|
| 483 | - // il faudrait peut etre definir les 2 champs isDir et isdir... a reflechir... |
|
| 484 | - |
|
| 485 | - // if (!in_array($cle, array('cle', 'valeur'))) |
|
| 486 | - // return; |
|
| 487 | - |
|
| 488 | - $a = '$this->get_select(\'' . $cle . '\')'; |
|
| 489 | - |
|
| 490 | - $filtre = ''; |
|
| 491 | - |
|
| 492 | - if ('REGEXP' == $op) { |
|
| 493 | - $filtre = 'filtrer("match", ' . $a . ', ' . str_replace('\"', '"', $valeur) . ')'; |
|
| 494 | - $op = ''; |
|
| 495 | - } else { |
|
| 496 | - if ('LIKE' == $op) { |
|
| 497 | - $valeur = str_replace(['\"', '_', '%'], ['"', '.', '.*'], preg_quote($valeur)); |
|
| 498 | - $filtre = 'filtrer("match", ' . $a . ', ' . $valeur . ')'; |
|
| 499 | - $op = ''; |
|
| 500 | - } else { |
|
| 501 | - if ('=' == $op) { |
|
| 502 | - $op = '=='; |
|
| 503 | - } else { |
|
| 504 | - if ('IN' == $op) { |
|
| 505 | - $filtre = 'in_array(' . $a . ', array' . $valeur . ')'; |
|
| 506 | - $op = ''; |
|
| 507 | - } else { |
|
| 508 | - if (!in_array($op, ['<', '<=', '>', '>='])) { |
|
| 509 | - spip_log('operateur non reconnu ' . $op); // [todo] mettre une erreur de squelette |
|
| 510 | - $op = ''; |
|
| 511 | - } |
|
| 512 | - } |
|
| 513 | - } |
|
| 514 | - } |
|
| 515 | - } |
|
| 516 | - |
|
| 517 | - if ($op) { |
|
| 518 | - $filtre = $a . $op . str_replace('\"', '"', $valeur); |
|
| 519 | - } |
|
| 520 | - |
|
| 521 | - if ($not) { |
|
| 522 | - $filtre = "!({$filtre})"; |
|
| 523 | - } |
|
| 524 | - |
|
| 525 | - return $filtre; |
|
| 526 | - } |
|
| 527 | - |
|
| 528 | - // calcule les elements a retournes par fetch() |
|
| 529 | - // enleve les elements inutiles du select() |
|
| 530 | - // |
|
| 531 | - private function calculer_select() { |
|
| 532 | - if ($select = &$this->command['select']) { |
|
| 533 | - foreach ($select as $s) { |
|
| 534 | - // /!\ $s = '.nom' |
|
| 535 | - if ('.' == $s[0]) { |
|
| 536 | - $s = substr($s, 1); |
|
| 537 | - } |
|
| 538 | - $this->select[] = $s; |
|
| 539 | - } |
|
| 540 | - } |
|
| 541 | - } |
|
| 542 | - |
|
| 543 | - private function calculer_filtres() { |
|
| 544 | - // Issu de calculer_select() de public/composer L.519 |
|
| 545 | - // TODO: externaliser... |
|
| 546 | - // |
|
| 547 | - // retirer les criteres vides: |
|
| 548 | - // {X ?} avec X absent de l'URL |
|
| 549 | - // {par #ENV{X}} avec X absent de l'URL |
|
| 550 | - // IN sur collection vide (ce dernier devrait pouvoir etre fait a la compil) |
|
| 551 | - if ($where = &$this->command['where']) { |
|
| 552 | - foreach ($where as $k => $v) { |
|
| 553 | - $this->filtre[] = $this->traduire_condition_sql_en_filtre($v); |
|
| 554 | - } |
|
| 555 | - } |
|
| 556 | - |
|
| 557 | - // critere {2,7} |
|
| 558 | - if (isset($this->command['limit']) and $this->command['limit']) { |
|
| 559 | - $limit = explode(',', $this->command['limit']); |
|
| 560 | - $this->offset = $limit[0]; |
|
| 561 | - $this->limit = $limit[1]; |
|
| 562 | - } |
|
| 563 | - |
|
| 564 | - // Creer la fonction de filtrage sur $this |
|
| 565 | - if ($this->filtre) { |
|
| 566 | - if ($filtres = $this->assembler_filtres($this->filtre)) { |
|
| 567 | - $filtres = 'return ' . $filtres . ';'; |
|
| 568 | - $this->func_filtre = fn () => eval($filtres); |
|
| 569 | - } else { |
|
| 570 | - $this->func_filtre = null; |
|
| 571 | - } |
|
| 572 | - } |
|
| 573 | - } |
|
| 574 | - |
|
| 575 | - /* |
|
| 163 | + // cle et valeur par defaut |
|
| 164 | + // ICI PLANTAGE SI ON NE CONTROLE PAS $nom |
|
| 165 | + if ( |
|
| 166 | + in_array($nom, ['cle', 'valeur']) |
|
| 167 | + and method_exists($this, $nom) |
|
| 168 | + ) { |
|
| 169 | + return $this->{$nom}(); |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + // Par defaut chercher en xpath dans la valeur() |
|
| 173 | + return table_valeur($this->valeur(), $nom, null); |
|
| 174 | + } |
|
| 175 | + |
|
| 176 | + public function next(): void { |
|
| 177 | + ++$this->pos; |
|
| 178 | + parent::next(); |
|
| 179 | + } |
|
| 180 | + |
|
| 181 | + /** |
|
| 182 | + * revient au depart. |
|
| 183 | + */ |
|
| 184 | + public function rewind(): void { |
|
| 185 | + $this->pos = 0; |
|
| 186 | + $this->fetched = 0; |
|
| 187 | + parent::rewind(); |
|
| 188 | + } |
|
| 189 | + |
|
| 190 | + /** |
|
| 191 | + * aller a la position absolue n, |
|
| 192 | + * comptee depuis le debut. |
|
| 193 | + * |
|
| 194 | + * @param int $n |
|
| 195 | + * absolute pos |
|
| 196 | + * @param string $continue |
|
| 197 | + * param for sql_ api |
|
| 198 | + * |
|
| 199 | + * @return bool |
|
| 200 | + * success or fail if not implemented |
|
| 201 | + */ |
|
| 202 | + public function seek($n = 0, $continue = null) { |
|
| 203 | + if ($this->func_filtre or !method_exists($this->iter, 'seek') or !$this->iter->seek($n)) { |
|
| 204 | + $this->seek_loop($n); |
|
| 205 | + } |
|
| 206 | + $this->pos = $n; |
|
| 207 | + $this->fetched = $n; |
|
| 208 | + |
|
| 209 | + return true; |
|
| 210 | + } |
|
| 211 | + |
|
| 212 | + /** |
|
| 213 | + * Avancer de $saut pas. |
|
| 214 | + * |
|
| 215 | + * @param $saut |
|
| 216 | + * @param $max |
|
| 217 | + * |
|
| 218 | + * @return int |
|
| 219 | + */ |
|
| 220 | + public function skip($saut, $max = null) { |
|
| 221 | + // pas de saut en arriere autorise pour cette fonction |
|
| 222 | + if (($saut = intval($saut)) <= 0) { |
|
| 223 | + return $this->pos; |
|
| 224 | + } |
|
| 225 | + $seek = $this->pos + $saut; |
|
| 226 | + // si le saut fait depasser le maxi, on libere la resource |
|
| 227 | + // et on sort |
|
| 228 | + if (is_null($max)) { |
|
| 229 | + $max = $this->count(); |
|
| 230 | + } |
|
| 231 | + |
|
| 232 | + if ($seek >= $max or $seek >= $this->count()) { |
|
| 233 | + // sortie plus rapide que de faire next() jusqu'a la fin ! |
|
| 234 | + $this->free(); |
|
| 235 | + |
|
| 236 | + return $max; |
|
| 237 | + } |
|
| 238 | + |
|
| 239 | + $this->seek($seek); |
|
| 240 | + |
|
| 241 | + return $this->pos; |
|
| 242 | + } |
|
| 243 | + |
|
| 244 | + /** |
|
| 245 | + * Renvoyer un tableau des donnees correspondantes |
|
| 246 | + * a la position courante de l'iterateur |
|
| 247 | + * en controlant si on respecte le filtre |
|
| 248 | + * Appliquer aussi le critere {offset,limit}. |
|
| 249 | + * |
|
| 250 | + * @return array|bool |
|
| 251 | + */ |
|
| 252 | + public function fetch() { |
|
| 253 | + if (method_exists($this->iter, 'fetch')) { |
|
| 254 | + return $this->iter->fetch(); |
|
| 255 | + } |
|
| 256 | + while ( |
|
| 257 | + $this->valid() |
|
| 258 | + and ( |
|
| 259 | + !$this->accept() |
|
| 260 | + or (isset($this->offset) and $this->fetched++ < $this->offset) |
|
| 261 | + ) |
|
| 262 | + ) { |
|
| 263 | + $this->next(); |
|
| 264 | + } |
|
| 265 | + |
|
| 266 | + if (!$this->valid()) { |
|
| 267 | + return false; |
|
| 268 | + } |
|
| 269 | + |
|
| 270 | + if ( |
|
| 271 | + isset($this->limit) |
|
| 272 | + and $this->fetched > $this->offset + $this->limit |
|
| 273 | + ) { |
|
| 274 | + return false; |
|
| 275 | + } |
|
| 276 | + |
|
| 277 | + $r = []; |
|
| 278 | + foreach ($this->select as $nom) { |
|
| 279 | + $r[$nom] = $this->get_select($nom); |
|
| 280 | + } |
|
| 281 | + $this->next(); |
|
| 282 | + |
|
| 283 | + return $r; |
|
| 284 | + } |
|
| 285 | + |
|
| 286 | + // retourner la cle pour #CLE |
|
| 287 | + public function cle() { |
|
| 288 | + return $this->key(); |
|
| 289 | + } |
|
| 290 | + |
|
| 291 | + // retourner la valeur pour #VALEUR |
|
| 292 | + public function valeur() { |
|
| 293 | + return $this->current(); |
|
| 294 | + } |
|
| 295 | + |
|
| 296 | + /** |
|
| 297 | + * Accepte-t-on l'entree courante lue ? |
|
| 298 | + * On execute les filtres pour le savoir. |
|
| 299 | + */ |
|
| 300 | + public function accept(): bool { |
|
| 301 | + if ($f = $this->func_filtre) { |
|
| 302 | + return $f(); |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + return true; |
|
| 306 | + } |
|
| 307 | + |
|
| 308 | + /** |
|
| 309 | + * liberer la ressource. |
|
| 310 | + * |
|
| 311 | + * @return bool |
|
| 312 | + */ |
|
| 313 | + public function free() { |
|
| 314 | + if (method_exists($this->iter, 'free')) { |
|
| 315 | + $this->iter->free(); |
|
| 316 | + } |
|
| 317 | + $this->pos = $this->total = 0; |
|
| 318 | + |
|
| 319 | + return true; |
|
| 320 | + } |
|
| 321 | + |
|
| 322 | + /** |
|
| 323 | + * Compter le nombre total de resultats |
|
| 324 | + * pour #TOTAL_BOUCLE. |
|
| 325 | + * |
|
| 326 | + * @return int |
|
| 327 | + */ |
|
| 328 | + public function count() { |
|
| 329 | + if (is_null($this->total)) { |
|
| 330 | + if ( |
|
| 331 | + method_exists($this->iter, 'count') |
|
| 332 | + and !$this->func_filtre |
|
| 333 | + ) { |
|
| 334 | + return $this->total = $this->iter->count(); |
|
| 335 | + } |
|
| 336 | + // compter les lignes et rembobiner |
|
| 337 | + $total = 0; |
|
| 338 | + $pos = $this->pos; // sauver la position |
|
| 339 | + $this->rewind(); |
|
| 340 | + while ($this->fetch() and $total < $this->max) { |
|
| 341 | + ++$total; |
|
| 342 | + } |
|
| 343 | + $this->seek($pos); |
|
| 344 | + $this->total = $total; |
|
| 345 | + } |
|
| 346 | + |
|
| 347 | + return $this->total; |
|
| 348 | + } |
|
| 349 | + |
|
| 350 | + /** |
|
| 351 | + * Assembler le tableau de filtres traduits depuis les conditions SQL |
|
| 352 | + * les filtres vides ou null sont ignores. |
|
| 353 | + * |
|
| 354 | + * @param $filtres |
|
| 355 | + * @param string $operateur |
|
| 356 | + * |
|
| 357 | + * @return null|string |
|
| 358 | + */ |
|
| 359 | + protected function assembler_filtres($filtres, $operateur = 'AND') { |
|
| 360 | + $filtres_string = []; |
|
| 361 | + foreach ($filtres as $k => $v) { |
|
| 362 | + // si c'est un tableau de OR/AND + 2 sous-filtres, on recurse pour transformer en chaine |
|
| 363 | + if (is_array($v) and in_array(reset($v), ['OR', 'AND'])) { |
|
| 364 | + $op = array_shift($v); |
|
| 365 | + $v = $this->assembler_filtres($v, $op); |
|
| 366 | + } |
|
| 367 | + if (is_null($v) or !is_string($v) or empty($v)) { |
|
| 368 | + continue; |
|
| 369 | + } |
|
| 370 | + $filtres_string[] = $v; |
|
| 371 | + } |
|
| 372 | + |
|
| 373 | + if (!count($filtres_string)) { |
|
| 374 | + return null; |
|
| 375 | + } |
|
| 376 | + |
|
| 377 | + return '(' . implode(") {$operateur} (", $filtres_string) . ')'; |
|
| 378 | + } |
|
| 379 | + |
|
| 380 | + /** |
|
| 381 | + * Traduire un element du tableau where SQL en un filtre. |
|
| 382 | + * |
|
| 383 | + * @param $v |
|
| 384 | + * |
|
| 385 | + * @return null|array|string |
|
| 386 | + */ |
|
| 387 | + protected function traduire_condition_sql_en_filtre($v) { |
|
| 388 | + if (is_array($v)) { |
|
| 389 | + if ((count($v) >= 2) && ('REGEXP' == $v[0]) && ("'.*'" == $v[2])) { |
|
| 390 | + return 'true'; |
|
| 391 | + } |
|
| 392 | + if ((count($v) >= 2) && ('LIKE' == $v[0]) && ("'%'" == $v[2])) { |
|
| 393 | + return 'true'; |
|
| 394 | + } |
|
| 395 | + $op = $v[0] ?: $v; |
|
| 396 | + } else { |
|
| 397 | + $op = $v; |
|
| 398 | + } |
|
| 399 | + if ((!$op) or (1 == $op) or ('0=0' == $op)) { |
|
| 400 | + return 'true'; |
|
| 401 | + } |
|
| 402 | + if ('0=1' === $op) { |
|
| 403 | + return 'false'; |
|
| 404 | + } |
|
| 405 | + // traiter {cle IN a,b} ou {valeur !IN a,b} |
|
| 406 | + if (preg_match(',^\(([\w/]+)(\s+NOT)?\s+IN\s+(\(.*\))\)$,', $op, $regs)) { |
|
| 407 | + return $this->composer_filtre($regs[1], 'IN', $regs[3], $regs[2]); |
|
| 408 | + } |
|
| 409 | + |
|
| 410 | + // 3 possibilites : count($v) = |
|
| 411 | + // * 1 : {x y} ; on recoit $v[0] = y |
|
| 412 | + // * 2 : {x !op y} ; on recoit $v[0] = 'NOT', $v[1] = array() // array du type {x op y} |
|
| 413 | + // * 3 : {x op y} ; on recoit $v[0] = 'op', $v[1] = x, $v[2] = y |
|
| 414 | + |
|
| 415 | + // 1 : forcement traite par un critere, on passe |
|
| 416 | + if (!$v or !is_array($v) or 1 == count($v)) { |
|
| 417 | + return null; // sera ignore |
|
| 418 | + } |
|
| 419 | + if (2 == count($v) and is_array($v[1])) { |
|
| 420 | + return $this->composer_filtre($v[1][1], $v[1][0], $v[1][2], 'NOT'); |
|
| 421 | + } |
|
| 422 | + if (3 == count($v)) { |
|
| 423 | + // traiter le OR/AND suivi de 2 valeurs |
|
| 424 | + if (in_array($op, ['OR', 'AND'])) { |
|
| 425 | + array_shift($v); |
|
| 426 | + foreach (array_keys($v) as $k) { |
|
| 427 | + $v[$k] = $this->traduire_condition_sql_en_filtre($v[$k]); |
|
| 428 | + if (null === $v[$k]) { |
|
| 429 | + unset($v[$k]); |
|
| 430 | + } elseif ('true' === $v[$k]) { |
|
| 431 | + if ('OR' === $op) { |
|
| 432 | + return 'true'; |
|
| 433 | + } |
|
| 434 | + if ('AND' === $op) { |
|
| 435 | + unset($v[$k]); |
|
| 436 | + } |
|
| 437 | + } elseif ('false' === $v[$k]) { |
|
| 438 | + if ('OR' === $op) { |
|
| 439 | + unset($v[$k]); |
|
| 440 | + } |
|
| 441 | + if ('AND' === $op) { |
|
| 442 | + return 'false'; |
|
| 443 | + } |
|
| 444 | + } |
|
| 445 | + } |
|
| 446 | + if (!count($v)) { |
|
| 447 | + return null; |
|
| 448 | + } |
|
| 449 | + if (1 === count($v)) { |
|
| 450 | + return reset($v); |
|
| 451 | + } |
|
| 452 | + array_unshift($v, $op); |
|
| 453 | + |
|
| 454 | + return $v; |
|
| 455 | + } |
|
| 456 | + |
|
| 457 | + return $this->composer_filtre($v[1], $v[0], $v[2]); |
|
| 458 | + } |
|
| 459 | + |
|
| 460 | + return null; // sera ignore |
|
| 461 | + } |
|
| 462 | + |
|
| 463 | + /** |
|
| 464 | + * Calculer un filtre sur un champ du tableau. |
|
| 465 | + * |
|
| 466 | + * @param $cle |
|
| 467 | + * @param $op |
|
| 468 | + * @param $valeur |
|
| 469 | + * @param false $not |
|
| 470 | + * |
|
| 471 | + * @return null|string |
|
| 472 | + */ |
|
| 473 | + protected function composer_filtre($cle, $op, $valeur, $not = false) { |
|
| 474 | + if (method_exists($this->iter, 'exception_des_criteres')) { |
|
| 475 | + if (in_array($cle, $this->iter->exception_des_criteres())) { |
|
| 476 | + return null; |
|
| 477 | + } |
|
| 478 | + } |
|
| 479 | + // TODO: analyser le filtre pour refuser ce qu'on ne sait pas traiter ? |
|
| 480 | + // mais c'est normalement deja opere par calculer_critere_infixe() |
|
| 481 | + // qui regarde la description 'desc' (en casse reelle d'ailleurs : {isDir=1} |
|
| 482 | + // ne sera pas vu si l'on a defini desc['field']['isdir'] pour que #ISDIR soit present. |
|
| 483 | + // il faudrait peut etre definir les 2 champs isDir et isdir... a reflechir... |
|
| 484 | + |
|
| 485 | + // if (!in_array($cle, array('cle', 'valeur'))) |
|
| 486 | + // return; |
|
| 487 | + |
|
| 488 | + $a = '$this->get_select(\'' . $cle . '\')'; |
|
| 489 | + |
|
| 490 | + $filtre = ''; |
|
| 491 | + |
|
| 492 | + if ('REGEXP' == $op) { |
|
| 493 | + $filtre = 'filtrer("match", ' . $a . ', ' . str_replace('\"', '"', $valeur) . ')'; |
|
| 494 | + $op = ''; |
|
| 495 | + } else { |
|
| 496 | + if ('LIKE' == $op) { |
|
| 497 | + $valeur = str_replace(['\"', '_', '%'], ['"', '.', '.*'], preg_quote($valeur)); |
|
| 498 | + $filtre = 'filtrer("match", ' . $a . ', ' . $valeur . ')'; |
|
| 499 | + $op = ''; |
|
| 500 | + } else { |
|
| 501 | + if ('=' == $op) { |
|
| 502 | + $op = '=='; |
|
| 503 | + } else { |
|
| 504 | + if ('IN' == $op) { |
|
| 505 | + $filtre = 'in_array(' . $a . ', array' . $valeur . ')'; |
|
| 506 | + $op = ''; |
|
| 507 | + } else { |
|
| 508 | + if (!in_array($op, ['<', '<=', '>', '>='])) { |
|
| 509 | + spip_log('operateur non reconnu ' . $op); // [todo] mettre une erreur de squelette |
|
| 510 | + $op = ''; |
|
| 511 | + } |
|
| 512 | + } |
|
| 513 | + } |
|
| 514 | + } |
|
| 515 | + } |
|
| 516 | + |
|
| 517 | + if ($op) { |
|
| 518 | + $filtre = $a . $op . str_replace('\"', '"', $valeur); |
|
| 519 | + } |
|
| 520 | + |
|
| 521 | + if ($not) { |
|
| 522 | + $filtre = "!({$filtre})"; |
|
| 523 | + } |
|
| 524 | + |
|
| 525 | + return $filtre; |
|
| 526 | + } |
|
| 527 | + |
|
| 528 | + // calcule les elements a retournes par fetch() |
|
| 529 | + // enleve les elements inutiles du select() |
|
| 530 | + // |
|
| 531 | + private function calculer_select() { |
|
| 532 | + if ($select = &$this->command['select']) { |
|
| 533 | + foreach ($select as $s) { |
|
| 534 | + // /!\ $s = '.nom' |
|
| 535 | + if ('.' == $s[0]) { |
|
| 536 | + $s = substr($s, 1); |
|
| 537 | + } |
|
| 538 | + $this->select[] = $s; |
|
| 539 | + } |
|
| 540 | + } |
|
| 541 | + } |
|
| 542 | + |
|
| 543 | + private function calculer_filtres() { |
|
| 544 | + // Issu de calculer_select() de public/composer L.519 |
|
| 545 | + // TODO: externaliser... |
|
| 546 | + // |
|
| 547 | + // retirer les criteres vides: |
|
| 548 | + // {X ?} avec X absent de l'URL |
|
| 549 | + // {par #ENV{X}} avec X absent de l'URL |
|
| 550 | + // IN sur collection vide (ce dernier devrait pouvoir etre fait a la compil) |
|
| 551 | + if ($where = &$this->command['where']) { |
|
| 552 | + foreach ($where as $k => $v) { |
|
| 553 | + $this->filtre[] = $this->traduire_condition_sql_en_filtre($v); |
|
| 554 | + } |
|
| 555 | + } |
|
| 556 | + |
|
| 557 | + // critere {2,7} |
|
| 558 | + if (isset($this->command['limit']) and $this->command['limit']) { |
|
| 559 | + $limit = explode(',', $this->command['limit']); |
|
| 560 | + $this->offset = $limit[0]; |
|
| 561 | + $this->limit = $limit[1]; |
|
| 562 | + } |
|
| 563 | + |
|
| 564 | + // Creer la fonction de filtrage sur $this |
|
| 565 | + if ($this->filtre) { |
|
| 566 | + if ($filtres = $this->assembler_filtres($this->filtre)) { |
|
| 567 | + $filtres = 'return ' . $filtres . ';'; |
|
| 568 | + $this->func_filtre = fn () => eval($filtres); |
|
| 569 | + } else { |
|
| 570 | + $this->func_filtre = null; |
|
| 571 | + } |
|
| 572 | + } |
|
| 573 | + } |
|
| 574 | + |
|
| 575 | + /* |
|
| 576 | 576 | * aller a la position $n en parcourant |
| 577 | 577 | * un par un tous les elements |
| 578 | 578 | */ |
| 579 | - private function seek_loop($n) { |
|
| 580 | - if ($this->pos > $n) { |
|
| 581 | - $this->rewind(); |
|
| 582 | - } |
|
| 579 | + private function seek_loop($n) { |
|
| 580 | + if ($this->pos > $n) { |
|
| 581 | + $this->rewind(); |
|
| 582 | + } |
|
| 583 | 583 | |
| 584 | - while ($this->pos < $n and $this->valid()) { |
|
| 585 | - $this->next(); |
|
| 586 | - } |
|
| 584 | + while ($this->pos < $n and $this->valid()) { |
|
| 585 | + $this->next(); |
|
| 586 | + } |
|
| 587 | 587 | |
| 588 | - return true; |
|
| 589 | - } |
|
| 588 | + return true; |
|
| 589 | + } |
|
| 590 | 590 | } |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | return $this->iter->{$nom}(); |
| 151 | 151 | } catch (Exception $e) { |
| 152 | 152 | // #GETCHILDREN sur un fichier de DirectoryIterator ... |
| 153 | - spip_log("Methode {$nom} en echec sur " . get_class($this->iter)); |
|
| 153 | + spip_log("Methode {$nom} en echec sur ".get_class($this->iter)); |
|
| 154 | 154 | spip_log("Cela peut être normal : retour d'une ligne de resultat ne pouvant pas calculer cette methode"); |
| 155 | 155 | |
| 156 | 156 | return ''; |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | return null; |
| 375 | 375 | } |
| 376 | 376 | |
| 377 | - return '(' . implode(") {$operateur} (", $filtres_string) . ')'; |
|
| 377 | + return '('.implode(") {$operateur} (", $filtres_string).')'; |
|
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | /** |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | return $this->composer_filtre($v[1], $v[0], $v[2]); |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | - return null; // sera ignore |
|
| 460 | + return null; // sera ignore |
|
| 461 | 461 | } |
| 462 | 462 | |
| 463 | 463 | /** |
@@ -485,28 +485,28 @@ discard block |
||
| 485 | 485 | // if (!in_array($cle, array('cle', 'valeur'))) |
| 486 | 486 | // return; |
| 487 | 487 | |
| 488 | - $a = '$this->get_select(\'' . $cle . '\')'; |
|
| 488 | + $a = '$this->get_select(\''.$cle.'\')'; |
|
| 489 | 489 | |
| 490 | 490 | $filtre = ''; |
| 491 | 491 | |
| 492 | 492 | if ('REGEXP' == $op) { |
| 493 | - $filtre = 'filtrer("match", ' . $a . ', ' . str_replace('\"', '"', $valeur) . ')'; |
|
| 493 | + $filtre = 'filtrer("match", '.$a.', '.str_replace('\"', '"', $valeur).')'; |
|
| 494 | 494 | $op = ''; |
| 495 | 495 | } else { |
| 496 | 496 | if ('LIKE' == $op) { |
| 497 | 497 | $valeur = str_replace(['\"', '_', '%'], ['"', '.', '.*'], preg_quote($valeur)); |
| 498 | - $filtre = 'filtrer("match", ' . $a . ', ' . $valeur . ')'; |
|
| 498 | + $filtre = 'filtrer("match", '.$a.', '.$valeur.')'; |
|
| 499 | 499 | $op = ''; |
| 500 | 500 | } else { |
| 501 | 501 | if ('=' == $op) { |
| 502 | 502 | $op = '=='; |
| 503 | 503 | } else { |
| 504 | 504 | if ('IN' == $op) { |
| 505 | - $filtre = 'in_array(' . $a . ', array' . $valeur . ')'; |
|
| 505 | + $filtre = 'in_array('.$a.', array'.$valeur.')'; |
|
| 506 | 506 | $op = ''; |
| 507 | 507 | } else { |
| 508 | 508 | if (!in_array($op, ['<', '<=', '>', '>='])) { |
| 509 | - spip_log('operateur non reconnu ' . $op); // [todo] mettre une erreur de squelette |
|
| 509 | + spip_log('operateur non reconnu '.$op); // [todo] mettre une erreur de squelette |
|
| 510 | 510 | $op = ''; |
| 511 | 511 | } |
| 512 | 512 | } |
@@ -515,7 +515,7 @@ discard block |
||
| 515 | 515 | } |
| 516 | 516 | |
| 517 | 517 | if ($op) { |
| 518 | - $filtre = $a . $op . str_replace('\"', '"', $valeur); |
|
| 518 | + $filtre = $a.$op.str_replace('\"', '"', $valeur); |
|
| 519 | 519 | } |
| 520 | 520 | |
| 521 | 521 | if ($not) { |
@@ -564,7 +564,7 @@ discard block |
||
| 564 | 564 | // Creer la fonction de filtrage sur $this |
| 565 | 565 | if ($this->filtre) { |
| 566 | 566 | if ($filtres = $this->assembler_filtres($this->filtre)) { |
| 567 | - $filtres = 'return ' . $filtres . ';'; |
|
| 567 | + $filtres = 'return '.$filtres.';'; |
|
| 568 | 568 | $this->func_filtre = fn () => eval($filtres); |
| 569 | 569 | } else { |
| 570 | 570 | $this->func_filtre = null; |
@@ -9,12 +9,12 @@ |
||
| 9 | 9 | */ |
| 10 | 10 | class Condition extends Data |
| 11 | 11 | { |
| 12 | - /** |
|
| 13 | - * Obtenir les données de la boucle CONDITION. |
|
| 14 | - * |
|
| 15 | - * @param array $command |
|
| 16 | - */ |
|
| 17 | - protected function select($command) { |
|
| 18 | - $this->tableau = [0 => 1]; |
|
| 19 | - } |
|
| 12 | + /** |
|
| 13 | + * Obtenir les données de la boucle CONDITION. |
|
| 14 | + * |
|
| 15 | + * @param array $command |
|
| 16 | + */ |
|
| 17 | + protected function select($command) { |
|
| 18 | + $this->tableau = [0 => 1]; |
|
| 19 | + } |
|
| 20 | 20 | } |
@@ -12,193 +12,193 @@ |
||
| 12 | 12 | class Sql extends AbstractIterateur implements Iterator |
| 13 | 13 | { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Ressource sql. |
|
| 17 | - * |
|
| 18 | - * @var bool|object |
|
| 19 | - */ |
|
| 20 | - protected $sqlresult = false; |
|
| 15 | + /** |
|
| 16 | + * Ressource sql. |
|
| 17 | + * |
|
| 18 | + * @var bool|object |
|
| 19 | + */ |
|
| 20 | + protected $sqlresult = false; |
|
| 21 | 21 | |
| 22 | - /** |
|
| 23 | - * row sql courante. |
|
| 24 | - * |
|
| 25 | - * @var null|array |
|
| 26 | - */ |
|
| 27 | - protected $row; |
|
| 22 | + /** |
|
| 23 | + * row sql courante. |
|
| 24 | + * |
|
| 25 | + * @var null|array |
|
| 26 | + */ |
|
| 27 | + protected $row; |
|
| 28 | 28 | |
| 29 | - protected bool $firstseek = false; |
|
| 29 | + protected bool $firstseek = false; |
|
| 30 | 30 | |
| 31 | - protected int $pos = -1; |
|
| 31 | + protected int $pos = -1; |
|
| 32 | 32 | |
| 33 | - /* |
|
| 33 | + /* |
|
| 34 | 34 | * array command: les commandes d'initialisation |
| 35 | 35 | * array info: les infos sur le squelette |
| 36 | 36 | */ |
| 37 | - public function __construct(array $command, array $info = []) { |
|
| 38 | - $this->type = 'SQL'; |
|
| 39 | - parent::__construct($command, $info); |
|
| 40 | - |
|
| 41 | - $this->select(); |
|
| 42 | - } |
|
| 43 | - |
|
| 44 | - /** |
|
| 45 | - * Rembobiner. |
|
| 46 | - * |
|
| 47 | - * @return bool |
|
| 48 | - */ |
|
| 49 | - public function rewind(): void { |
|
| 50 | - if ($this->pos > 0) { |
|
| 51 | - $this->seek(0); |
|
| 52 | - } |
|
| 53 | - } |
|
| 54 | - |
|
| 55 | - /** |
|
| 56 | - * Verifier l'etat de l'iterateur. |
|
| 57 | - */ |
|
| 58 | - public function valid(): bool { |
|
| 59 | - if ($this->err) { |
|
| 60 | - return false; |
|
| 61 | - } |
|
| 62 | - if (!$this->firstseek) { |
|
| 63 | - $this->next(); |
|
| 64 | - } |
|
| 65 | - |
|
| 66 | - return is_array($this->row); |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * Valeurs sur la position courante. |
|
| 71 | - * |
|
| 72 | - * @return array |
|
| 73 | - */ |
|
| 74 | - #[\ReturnTypeWillChange] |
|
| 75 | - public function current() { |
|
| 76 | - return $this->row; |
|
| 77 | - } |
|
| 78 | - |
|
| 79 | - #[\ReturnTypeWillChange] |
|
| 80 | - public function key() { |
|
| 81 | - return $this->pos; |
|
| 82 | - } |
|
| 83 | - |
|
| 84 | - /** |
|
| 85 | - * Sauter a une position absolue. |
|
| 86 | - * |
|
| 87 | - * @param int $n |
|
| 88 | - * @param null|string $continue |
|
| 89 | - * |
|
| 90 | - * @return bool |
|
| 91 | - */ |
|
| 92 | - public function seek($n = 0, $continue = null) { |
|
| 93 | - if (!sql_seek($this->sqlresult, $n, $this->command['connect'], $continue)) { |
|
| 94 | - // SQLite ne sait pas seek(), il faut relancer la query |
|
| 95 | - // si la position courante est apres la position visee |
|
| 96 | - // il faut relancer la requete |
|
| 97 | - if ($this->pos > $n) { |
|
| 98 | - $this->free(); |
|
| 99 | - $this->select(); |
|
| 100 | - $this->valid(); |
|
| 101 | - } |
|
| 102 | - // et utiliser la methode par defaut pour se deplacer au bon endroit |
|
| 103 | - // (sera fait en cas d'echec de cette fonction) |
|
| 104 | - return false; |
|
| 105 | - } |
|
| 106 | - $this->row = sql_fetch($this->sqlresult, $this->command['connect']); |
|
| 107 | - $this->pos = min($n, $this->count()); |
|
| 108 | - |
|
| 109 | - return true; |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - /** |
|
| 113 | - * Avancer d'un cran. |
|
| 114 | - */ |
|
| 115 | - public function next(): void { |
|
| 116 | - $this->row = sql_fetch($this->sqlresult, $this->command['connect']); |
|
| 117 | - ++$this->pos; |
|
| 118 | - $this->firstseek |= true; |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - /** |
|
| 122 | - * Avancer et retourner les donnees pour le nouvel element. |
|
| 123 | - * |
|
| 124 | - * @return null|array|bool |
|
| 125 | - */ |
|
| 126 | - public function fetch() { |
|
| 127 | - if ($this->valid()) { |
|
| 128 | - $r = $this->current(); |
|
| 129 | - $this->next(); |
|
| 130 | - } else { |
|
| 131 | - $r = false; |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - return $r; |
|
| 135 | - } |
|
| 136 | - |
|
| 137 | - /** |
|
| 138 | - * liberer les ressources. |
|
| 139 | - * |
|
| 140 | - * @return bool |
|
| 141 | - */ |
|
| 142 | - public function free() { |
|
| 143 | - if (!$this->sqlresult) { |
|
| 144 | - return true; |
|
| 145 | - } |
|
| 146 | - $a = sql_free($this->sqlresult, $this->command['connect']); |
|
| 147 | - $this->sqlresult = null; |
|
| 148 | - |
|
| 149 | - return $a; |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - /** |
|
| 153 | - * Compter le nombre de resultats. |
|
| 154 | - * |
|
| 155 | - * @return int |
|
| 156 | - */ |
|
| 157 | - public function count() { |
|
| 158 | - if (is_null($this->total)) { |
|
| 159 | - if (!$this->sqlresult) { |
|
| 160 | - $this->total = 0; |
|
| 161 | - } else { |
|
| 162 | - // cas count(*) |
|
| 163 | - if (in_array('count(*)', $this->command['select'])) { |
|
| 164 | - $this->valid(); |
|
| 165 | - $s = $this->current(); |
|
| 166 | - $this->total = $s['count(*)']; |
|
| 167 | - } else { |
|
| 168 | - $this->total = sql_count($this->sqlresult, $this->command['connect']); |
|
| 169 | - } |
|
| 170 | - } |
|
| 171 | - } |
|
| 172 | - |
|
| 173 | - return $this->total; |
|
| 174 | - } |
|
| 175 | - |
|
| 176 | - /** |
|
| 177 | - * selectionner les donnees, ie faire la requete SQL. |
|
| 178 | - */ |
|
| 179 | - protected function select() { |
|
| 180 | - $this->row = null; |
|
| 181 | - $v = &$this->command; |
|
| 182 | - $this->sqlresult = calculer_select( |
|
| 183 | - $v['select'], |
|
| 184 | - $v['from'], |
|
| 185 | - $v['type'], |
|
| 186 | - $v['where'], |
|
| 187 | - $v['join'], |
|
| 188 | - $v['groupby'], |
|
| 189 | - $v['orderby'], |
|
| 190 | - $v['limit'], |
|
| 191 | - $v['having'], |
|
| 192 | - $v['table'], |
|
| 193 | - $v['id'], |
|
| 194 | - $v['connect'], |
|
| 195 | - $this->info |
|
| 196 | - ); |
|
| 197 | - $this->err = !$this->sqlresult; |
|
| 198 | - $this->firstseek = false; |
|
| 199 | - $this->pos = -1; |
|
| 200 | - |
|
| 201 | - // pas d'init a priori, le calcul ne sera fait qu'en cas de besoin (provoque une double requete souvent inutile en sqlite) |
|
| 202 | - //$this->total = $this->count(); |
|
| 203 | - } |
|
| 37 | + public function __construct(array $command, array $info = []) { |
|
| 38 | + $this->type = 'SQL'; |
|
| 39 | + parent::__construct($command, $info); |
|
| 40 | + |
|
| 41 | + $this->select(); |
|
| 42 | + } |
|
| 43 | + |
|
| 44 | + /** |
|
| 45 | + * Rembobiner. |
|
| 46 | + * |
|
| 47 | + * @return bool |
|
| 48 | + */ |
|
| 49 | + public function rewind(): void { |
|
| 50 | + if ($this->pos > 0) { |
|
| 51 | + $this->seek(0); |
|
| 52 | + } |
|
| 53 | + } |
|
| 54 | + |
|
| 55 | + /** |
|
| 56 | + * Verifier l'etat de l'iterateur. |
|
| 57 | + */ |
|
| 58 | + public function valid(): bool { |
|
| 59 | + if ($this->err) { |
|
| 60 | + return false; |
|
| 61 | + } |
|
| 62 | + if (!$this->firstseek) { |
|
| 63 | + $this->next(); |
|
| 64 | + } |
|
| 65 | + |
|
| 66 | + return is_array($this->row); |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * Valeurs sur la position courante. |
|
| 71 | + * |
|
| 72 | + * @return array |
|
| 73 | + */ |
|
| 74 | + #[\ReturnTypeWillChange] |
|
| 75 | + public function current() { |
|
| 76 | + return $this->row; |
|
| 77 | + } |
|
| 78 | + |
|
| 79 | + #[\ReturnTypeWillChange] |
|
| 80 | + public function key() { |
|
| 81 | + return $this->pos; |
|
| 82 | + } |
|
| 83 | + |
|
| 84 | + /** |
|
| 85 | + * Sauter a une position absolue. |
|
| 86 | + * |
|
| 87 | + * @param int $n |
|
| 88 | + * @param null|string $continue |
|
| 89 | + * |
|
| 90 | + * @return bool |
|
| 91 | + */ |
|
| 92 | + public function seek($n = 0, $continue = null) { |
|
| 93 | + if (!sql_seek($this->sqlresult, $n, $this->command['connect'], $continue)) { |
|
| 94 | + // SQLite ne sait pas seek(), il faut relancer la query |
|
| 95 | + // si la position courante est apres la position visee |
|
| 96 | + // il faut relancer la requete |
|
| 97 | + if ($this->pos > $n) { |
|
| 98 | + $this->free(); |
|
| 99 | + $this->select(); |
|
| 100 | + $this->valid(); |
|
| 101 | + } |
|
| 102 | + // et utiliser la methode par defaut pour se deplacer au bon endroit |
|
| 103 | + // (sera fait en cas d'echec de cette fonction) |
|
| 104 | + return false; |
|
| 105 | + } |
|
| 106 | + $this->row = sql_fetch($this->sqlresult, $this->command['connect']); |
|
| 107 | + $this->pos = min($n, $this->count()); |
|
| 108 | + |
|
| 109 | + return true; |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + /** |
|
| 113 | + * Avancer d'un cran. |
|
| 114 | + */ |
|
| 115 | + public function next(): void { |
|
| 116 | + $this->row = sql_fetch($this->sqlresult, $this->command['connect']); |
|
| 117 | + ++$this->pos; |
|
| 118 | + $this->firstseek |= true; |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + /** |
|
| 122 | + * Avancer et retourner les donnees pour le nouvel element. |
|
| 123 | + * |
|
| 124 | + * @return null|array|bool |
|
| 125 | + */ |
|
| 126 | + public function fetch() { |
|
| 127 | + if ($this->valid()) { |
|
| 128 | + $r = $this->current(); |
|
| 129 | + $this->next(); |
|
| 130 | + } else { |
|
| 131 | + $r = false; |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + return $r; |
|
| 135 | + } |
|
| 136 | + |
|
| 137 | + /** |
|
| 138 | + * liberer les ressources. |
|
| 139 | + * |
|
| 140 | + * @return bool |
|
| 141 | + */ |
|
| 142 | + public function free() { |
|
| 143 | + if (!$this->sqlresult) { |
|
| 144 | + return true; |
|
| 145 | + } |
|
| 146 | + $a = sql_free($this->sqlresult, $this->command['connect']); |
|
| 147 | + $this->sqlresult = null; |
|
| 148 | + |
|
| 149 | + return $a; |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + /** |
|
| 153 | + * Compter le nombre de resultats. |
|
| 154 | + * |
|
| 155 | + * @return int |
|
| 156 | + */ |
|
| 157 | + public function count() { |
|
| 158 | + if (is_null($this->total)) { |
|
| 159 | + if (!$this->sqlresult) { |
|
| 160 | + $this->total = 0; |
|
| 161 | + } else { |
|
| 162 | + // cas count(*) |
|
| 163 | + if (in_array('count(*)', $this->command['select'])) { |
|
| 164 | + $this->valid(); |
|
| 165 | + $s = $this->current(); |
|
| 166 | + $this->total = $s['count(*)']; |
|
| 167 | + } else { |
|
| 168 | + $this->total = sql_count($this->sqlresult, $this->command['connect']); |
|
| 169 | + } |
|
| 170 | + } |
|
| 171 | + } |
|
| 172 | + |
|
| 173 | + return $this->total; |
|
| 174 | + } |
|
| 175 | + |
|
| 176 | + /** |
|
| 177 | + * selectionner les donnees, ie faire la requete SQL. |
|
| 178 | + */ |
|
| 179 | + protected function select() { |
|
| 180 | + $this->row = null; |
|
| 181 | + $v = &$this->command; |
|
| 182 | + $this->sqlresult = calculer_select( |
|
| 183 | + $v['select'], |
|
| 184 | + $v['from'], |
|
| 185 | + $v['type'], |
|
| 186 | + $v['where'], |
|
| 187 | + $v['join'], |
|
| 188 | + $v['groupby'], |
|
| 189 | + $v['orderby'], |
|
| 190 | + $v['limit'], |
|
| 191 | + $v['having'], |
|
| 192 | + $v['table'], |
|
| 193 | + $v['id'], |
|
| 194 | + $v['connect'], |
|
| 195 | + $this->info |
|
| 196 | + ); |
|
| 197 | + $this->err = !$this->sqlresult; |
|
| 198 | + $this->firstseek = false; |
|
| 199 | + $this->pos = -1; |
|
| 200 | + |
|
| 201 | + // pas d'init a priori, le calcul ne sera fait qu'en cas de besoin (provoque une double requete souvent inutile en sqlite) |
|
| 202 | + //$this->total = $this->count(); |
|
| 203 | + } |
|
| 204 | 204 | } |
@@ -4,24 +4,24 @@ |
||
| 4 | 4 | |
| 5 | 5 | abstract class AbstractIterateur |
| 6 | 6 | { |
| 7 | - protected string $type; |
|
| 7 | + protected string $type; |
|
| 8 | 8 | |
| 9 | - /** |
|
| 10 | - * Calcul du total des elements |
|
| 11 | - * |
|
| 12 | - * @var int|null |
|
| 13 | - **/ |
|
| 14 | - public $total = null; |
|
| 9 | + /** |
|
| 10 | + * Calcul du total des elements |
|
| 11 | + * |
|
| 12 | + * @var int|null |
|
| 13 | + **/ |
|
| 14 | + public $total = null; |
|
| 15 | 15 | |
| 16 | - /** Erreur presente ? **/ |
|
| 17 | - public bool $err = false; |
|
| 16 | + /** Erreur presente ? **/ |
|
| 17 | + public bool $err = false; |
|
| 18 | 18 | |
| 19 | - protected array $command = []; |
|
| 19 | + protected array $command = []; |
|
| 20 | 20 | |
| 21 | - protected array $info = []; |
|
| 21 | + protected array $info = []; |
|
| 22 | 22 | |
| 23 | - public function __construct(array $command, array $info = []) { |
|
| 24 | - $this->command = $command; |
|
| 25 | - $this->info = $info; |
|
| 26 | - } |
|
| 23 | + public function __construct(array $command, array $info = []) { |
|
| 24 | + $this->command = $command; |
|
| 25 | + $this->info = $info; |
|
| 26 | + } |
|
| 27 | 27 | } |
@@ -12,499 +12,499 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class Data extends AbstractIterateur implements Iterator |
| 14 | 14 | { |
| 15 | - /** Tableau de données */ |
|
| 16 | - protected array $tableau = []; |
|
| 17 | - |
|
| 18 | - /** |
|
| 19 | - * Conditions de filtrage |
|
| 20 | - * ie criteres de selection |
|
| 21 | - */ |
|
| 22 | - protected array $filtre = []; |
|
| 23 | - |
|
| 24 | - /** |
|
| 25 | - * Cle courante |
|
| 26 | - * |
|
| 27 | - * @var scalar |
|
| 28 | - */ |
|
| 29 | - protected $cle = null; |
|
| 30 | - |
|
| 31 | - /** |
|
| 32 | - * Valeur courante |
|
| 33 | - * |
|
| 34 | - * @var mixed |
|
| 35 | - */ |
|
| 36 | - protected $valeur = null; |
|
| 37 | - |
|
| 38 | - /** |
|
| 39 | - * Constructeur |
|
| 40 | - * |
|
| 41 | - * @param $command |
|
| 42 | - * @param array $info |
|
| 43 | - */ |
|
| 44 | - public function __construct(array $command, array $info = []) { |
|
| 45 | - $this->type = 'DATA'; |
|
| 46 | - $this->command = $command; |
|
| 47 | - $this->info = $info; |
|
| 48 | - |
|
| 49 | - $this->select($command); |
|
| 50 | - } |
|
| 51 | - |
|
| 52 | - /** |
|
| 53 | - * Revenir au depart |
|
| 54 | - * |
|
| 55 | - * @return void |
|
| 56 | - */ |
|
| 57 | - public function rewind(): void { |
|
| 58 | - reset($this->tableau); |
|
| 59 | - $this->cle = array_key_first($this->tableau); |
|
| 60 | - $this->valeur = current($this->tableau); |
|
| 61 | - next($this->tableau); |
|
| 62 | - } |
|
| 63 | - |
|
| 64 | - /** |
|
| 65 | - * Déclarer les critères exceptions |
|
| 66 | - * |
|
| 67 | - * @return array |
|
| 68 | - */ |
|
| 69 | - public function exception_des_criteres() { |
|
| 70 | - return ['tableau']; |
|
| 71 | - } |
|
| 72 | - |
|
| 73 | - /** |
|
| 74 | - * Récupérer depuis le cache si possible |
|
| 75 | - * |
|
| 76 | - * @param string $cle |
|
| 77 | - * @return mixed |
|
| 78 | - */ |
|
| 79 | - protected function cache_get($cle) { |
|
| 80 | - if (!$cle) { |
|
| 81 | - return; |
|
| 82 | - } |
|
| 83 | - # utiliser memoization si dispo |
|
| 84 | - if (!function_exists('cache_get')) { |
|
| 85 | - return; |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - return cache_get($cle); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - /** |
|
| 92 | - * Stocker en cache si possible |
|
| 93 | - * |
|
| 94 | - * @param string $cle |
|
| 95 | - * @param int $ttl |
|
| 96 | - * @param null|mixed $valeur |
|
| 97 | - * @return bool |
|
| 98 | - */ |
|
| 99 | - protected function cache_set($cle, $ttl, $valeur = null) { |
|
| 100 | - if (!$cle) { |
|
| 101 | - return; |
|
| 102 | - } |
|
| 103 | - if (is_null($valeur)) { |
|
| 104 | - $valeur = $this->tableau; |
|
| 105 | - } |
|
| 106 | - # utiliser memoization si dispo |
|
| 107 | - if (!function_exists('cache_set')) { |
|
| 108 | - return; |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - return cache_set( |
|
| 112 | - $cle, |
|
| 113 | - [ |
|
| 114 | - 'data' => $valeur, |
|
| 115 | - 'time' => time(), |
|
| 116 | - 'ttl' => $ttl |
|
| 117 | - ], |
|
| 118 | - 3600 + $ttl |
|
| 119 | - ); |
|
| 120 | - # conserver le cache 1h de plus que la validite demandee, |
|
| 121 | - # pour le cas ou le serveur distant ne reponde plus |
|
| 122 | - } |
|
| 123 | - |
|
| 124 | - /** |
|
| 125 | - * Aller chercher les données de la boucle DATA |
|
| 126 | - * |
|
| 127 | - * @throws Exception |
|
| 128 | - * @param array $command |
|
| 129 | - * @return void |
|
| 130 | - */ |
|
| 131 | - protected function select($command) { |
|
| 132 | - |
|
| 133 | - // l'iterateur DATA peut etre appele en passant (data:type) |
|
| 134 | - // le type se retrouve dans la commande 'from' |
|
| 135 | - // dans ce cas la le critere {source}, si present, n'a pas besoin du 1er argument |
|
| 136 | - if (isset($this->command['from'][0])) { |
|
| 137 | - if (isset($this->command['source']) and is_array($this->command['source'])) { |
|
| 138 | - array_unshift($this->command['source'], $this->command['sourcemode']); |
|
| 139 | - } |
|
| 140 | - $this->command['sourcemode'] = $this->command['from'][0]; |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - // cherchons differents moyens de creer le tableau de donnees |
|
| 144 | - // les commandes connues pour l'iterateur DATA |
|
| 145 | - // sont : {tableau #ARRAY} ; {cle=...} ; {valeur=...} |
|
| 146 | - |
|
| 147 | - // {source format, [URL], [arg2]...} |
|
| 148 | - if ( |
|
| 149 | - isset($this->command['source']) |
|
| 150 | - and isset($this->command['sourcemode']) |
|
| 151 | - ) { |
|
| 152 | - $this->select_source(); |
|
| 153 | - } |
|
| 154 | - |
|
| 155 | - // Critere {liste X1, X2, X3} |
|
| 156 | - if (isset($this->command['liste'])) { |
|
| 157 | - $this->select_liste(); |
|
| 158 | - } |
|
| 159 | - if (isset($this->command['enum'])) { |
|
| 160 | - $this->select_enum(); |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - // Si a ce stade on n'a pas de table, il y a un bug |
|
| 164 | - if (!is_array($this->tableau)) { |
|
| 165 | - $this->err = true; |
|
| 166 | - spip_log('erreur datasource ' . var_export($command, true)); |
|
| 167 | - } |
|
| 168 | - |
|
| 169 | - // {datapath query.results} |
|
| 170 | - // extraire le chemin "query.results" du tableau de donnees |
|
| 171 | - if ( |
|
| 172 | - !$this->err |
|
| 173 | - and isset($this->command['datapath']) |
|
| 174 | - and is_array($this->command['datapath']) |
|
| 175 | - ) { |
|
| 176 | - $this->select_datapath(); |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - // tri {par x} |
|
| 180 | - if ($this->command['orderby']) { |
|
| 181 | - $this->select_orderby(); |
|
| 182 | - } |
|
| 183 | - |
|
| 184 | - // grouper les resultats {fusion /x/y/z} ; |
|
| 185 | - if ($this->command['groupby']) { |
|
| 186 | - $this->select_groupby(); |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - $this->rewind(); |
|
| 190 | - #var_dump($this->tableau); |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - |
|
| 194 | - /** |
|
| 195 | - * Aller chercher les donnees de la boucle DATA |
|
| 196 | - * depuis une source |
|
| 197 | - * {source format, [URL], [arg2]...} |
|
| 198 | - */ |
|
| 199 | - protected function select_source() { |
|
| 200 | - # un peu crado : avant de charger le cache il faut charger |
|
| 201 | - # les class indispensables, sinon PHP ne saura pas gerer |
|
| 202 | - # l'objet en cache ; cf plugins/icalendar |
|
| 203 | - # perf : pas de fonction table_to_array ! (table est deja un array) |
|
| 204 | - if ( |
|
| 205 | - isset($this->command['sourcemode']) |
|
| 206 | - and !in_array($this->command['sourcemode'], ['table', 'array', 'tableau']) |
|
| 207 | - ) { |
|
| 208 | - charger_fonction($this->command['sourcemode'] . '_to_array', 'inc', true); |
|
| 209 | - } |
|
| 210 | - |
|
| 211 | - # le premier argument peut etre un array, une URL etc. |
|
| 212 | - $src = $this->command['source'][0]; |
|
| 213 | - |
|
| 214 | - # avons-nous un cache dispo ? |
|
| 215 | - $cle = null; |
|
| 216 | - if (is_string($src)) { |
|
| 217 | - $cle = 'datasource_' . md5($this->command['sourcemode'] . ':' . var_export($this->command['source'], true)); |
|
| 218 | - } |
|
| 219 | - |
|
| 220 | - $cache = $this->cache_get($cle); |
|
| 221 | - if (isset($this->command['datacache'])) { |
|
| 222 | - $ttl = intval($this->command['datacache']); |
|
| 223 | - } |
|
| 224 | - if ( |
|
| 225 | - $cache |
|
| 226 | - and ($cache['time'] + ($ttl ?? $cache['ttl']) |
|
| 227 | - > time()) |
|
| 228 | - and !(_request('var_mode') === 'recalcul' |
|
| 229 | - and include_spip('inc/autoriser') |
|
| 230 | - and autoriser('recalcul') |
|
| 231 | - ) |
|
| 232 | - ) { |
|
| 233 | - $this->tableau = $cache['data']; |
|
| 234 | - } else { |
|
| 235 | - try { |
|
| 236 | - if ( |
|
| 237 | - isset($this->command['sourcemode']) |
|
| 238 | - and in_array( |
|
| 239 | - $this->command['sourcemode'], |
|
| 240 | - ['table', 'array', 'tableau'] |
|
| 241 | - ) |
|
| 242 | - ) { |
|
| 243 | - if ( |
|
| 244 | - is_array($a = $src) |
|
| 245 | - or (is_string($a) |
|
| 246 | - and $a = str_replace('"', '"', $a) # fragile! |
|
| 247 | - and is_array($a = @unserialize($a))) |
|
| 248 | - ) { |
|
| 249 | - $this->tableau = $a; |
|
| 250 | - } |
|
| 251 | - } else { |
|
| 252 | - $data = $src; |
|
| 253 | - if (is_string($src)) { |
|
| 254 | - if (tester_url_absolue($src)) { |
|
| 255 | - include_spip('inc/distant'); |
|
| 256 | - $data = recuperer_url($src, ['taille_max' => _DATA_SOURCE_MAX_SIZE]); |
|
| 257 | - $data = $data['page'] ?? ''; |
|
| 258 | - if (!$data) { |
|
| 259 | - throw new Exception('404'); |
|
| 260 | - } |
|
| 261 | - if (!isset($ttl)) { |
|
| 262 | - $ttl = 24 * 3600; |
|
| 263 | - } |
|
| 264 | - } elseif (@is_dir($src)) { |
|
| 265 | - $data = $src; |
|
| 266 | - } elseif (@is_readable($src) && @is_file($src)) { |
|
| 267 | - $data = spip_file_get_contents($src); |
|
| 268 | - } |
|
| 269 | - if (!isset($ttl)) { |
|
| 270 | - $ttl = 10; |
|
| 271 | - } |
|
| 272 | - } |
|
| 273 | - |
|
| 274 | - if ( |
|
| 275 | - !$this->err |
|
| 276 | - and $data_to_array = charger_fonction($this->command['sourcemode'] . '_to_array', 'inc', true) |
|
| 277 | - ) { |
|
| 278 | - $args = $this->command['source']; |
|
| 279 | - $args[0] = $data; |
|
| 280 | - if (is_array($a = $data_to_array(...$args))) { |
|
| 281 | - $this->tableau = $a; |
|
| 282 | - } |
|
| 283 | - } |
|
| 284 | - } |
|
| 285 | - |
|
| 286 | - if (!is_array($this->tableau)) { |
|
| 287 | - $this->err = true; |
|
| 288 | - } |
|
| 289 | - |
|
| 290 | - if (!$this->err and isset($ttl) and $ttl > 0) { |
|
| 291 | - $this->cache_set($cle, $ttl); |
|
| 292 | - } |
|
| 293 | - } catch (Exception $e) { |
|
| 294 | - $e = $e->getMessage(); |
|
| 295 | - $err = sprintf( |
|
| 296 | - "[%s, %s] $e", |
|
| 297 | - $src, |
|
| 298 | - $this->command['sourcemode'] |
|
| 299 | - ); |
|
| 300 | - erreur_squelette([$err, []]); |
|
| 301 | - $this->err = true; |
|
| 302 | - } |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - # en cas d'erreur, utiliser le cache si encore dispo |
|
| 306 | - if ( |
|
| 307 | - $this->err |
|
| 308 | - and $cache |
|
| 309 | - ) { |
|
| 310 | - $this->tableau = $cache['data']; |
|
| 311 | - $this->err = false; |
|
| 312 | - } |
|
| 313 | - } |
|
| 314 | - |
|
| 315 | - |
|
| 316 | - /** |
|
| 317 | - * Retourne un tableau donne depuis un critère liste |
|
| 318 | - * |
|
| 319 | - * Critère `{liste X1, X2, X3}` |
|
| 320 | - * |
|
| 321 | - * @see critere_DATA_liste_dist() |
|
| 322 | - * |
|
| 323 | - **/ |
|
| 324 | - protected function select_liste() { |
|
| 325 | - # s'il n'y a qu'une valeur dans la liste, sans doute une #BALISE |
|
| 326 | - if (!isset($this->command['liste'][1])) { |
|
| 327 | - if (!is_array($this->command['liste'][0])) { |
|
| 328 | - $this->command['liste'] = explode(',', $this->command['liste'][0]); |
|
| 329 | - } else { |
|
| 330 | - $this->command['liste'] = $this->command['liste'][0]; |
|
| 331 | - } |
|
| 332 | - } |
|
| 333 | - $this->tableau = $this->command['liste']; |
|
| 334 | - } |
|
| 335 | - |
|
| 336 | - /** |
|
| 337 | - * Retourne un tableau donne depuis un critere liste |
|
| 338 | - * Critere {enum Xmin, Xmax} |
|
| 339 | - * |
|
| 340 | - **/ |
|
| 341 | - protected function select_enum() { |
|
| 342 | - # s'il n'y a qu'une valeur dans la liste, sans doute une #BALISE |
|
| 343 | - if (!isset($this->command['enum'][1])) { |
|
| 344 | - if (!is_array($this->command['enum'][0])) { |
|
| 345 | - $this->command['enum'] = explode(',', $this->command['enum'][0]); |
|
| 346 | - } else { |
|
| 347 | - $this->command['enum'] = $this->command['enum'][0]; |
|
| 348 | - } |
|
| 349 | - } |
|
| 350 | - if ((is_countable($this->command['enum']) ? count($this->command['enum']) : 0) >= 3) { |
|
| 351 | - $enum = range( |
|
| 352 | - array_shift($this->command['enum']), |
|
| 353 | - array_shift($this->command['enum']), |
|
| 354 | - array_shift($this->command['enum']) |
|
| 355 | - ); |
|
| 356 | - } else { |
|
| 357 | - $enum = range(array_shift($this->command['enum']), array_shift($this->command['enum'])); |
|
| 358 | - } |
|
| 359 | - $this->tableau = $enum; |
|
| 360 | - } |
|
| 361 | - |
|
| 362 | - |
|
| 363 | - /** |
|
| 364 | - * extraire le chemin "query.results" du tableau de donnees |
|
| 365 | - * {datapath query.results} |
|
| 366 | - * |
|
| 367 | - **/ |
|
| 368 | - protected function select_datapath() { |
|
| 369 | - $base = reset($this->command['datapath']); |
|
| 370 | - if (strlen($base = ltrim(trim($base), '/'))) { |
|
| 371 | - $this->tableau = table_valeur($this->tableau, $base); |
|
| 372 | - if (!is_array($this->tableau)) { |
|
| 373 | - $this->tableau = []; |
|
| 374 | - $this->err = true; |
|
| 375 | - spip_log("datapath '$base' absent"); |
|
| 376 | - } |
|
| 377 | - } |
|
| 378 | - } |
|
| 379 | - |
|
| 380 | - /** |
|
| 381 | - * Ordonner les resultats |
|
| 382 | - * {par x} |
|
| 383 | - * |
|
| 384 | - **/ |
|
| 385 | - protected function select_orderby() { |
|
| 386 | - $sortfunc = ''; |
|
| 387 | - $aleas = 0; |
|
| 388 | - foreach ($this->command['orderby'] as $tri) { |
|
| 389 | - // virer le / initial pour les criteres de la forme {par /xx} |
|
| 390 | - if (preg_match(',^\.?([/\w:_-]+)( DESC)?$,iS', ltrim($tri, '/'), $r)) { |
|
| 391 | - $r = array_pad($r, 3, null); |
|
| 392 | - |
|
| 393 | - // tri par cle |
|
| 394 | - if ($r[1] == 'cle') { |
|
| 395 | - if (isset($r[2]) and $r[2]) { |
|
| 396 | - krsort($this->tableau); |
|
| 397 | - } else { |
|
| 398 | - ksort($this->tableau); |
|
| 399 | - } |
|
| 400 | - } # {par hasard} |
|
| 401 | - else { |
|
| 402 | - if ($r[1] == 'hasard') { |
|
| 403 | - $k = array_keys($this->tableau); |
|
| 404 | - shuffle($k); |
|
| 405 | - $v = []; |
|
| 406 | - foreach ($k as $cle) { |
|
| 407 | - $v[$cle] = $this->tableau[$cle]; |
|
| 408 | - } |
|
| 409 | - $this->tableau = $v; |
|
| 410 | - } else { |
|
| 411 | - # {par valeur} |
|
| 412 | - if ($r[1] == 'valeur') { |
|
| 413 | - $tv = '%s'; |
|
| 414 | - } # {par valeur/xx/yy} ?? |
|
| 415 | - else { |
|
| 416 | - $tv = 'table_valeur(%s, ' . var_export($r[1], true) . ')'; |
|
| 417 | - } |
|
| 418 | - $sortfunc .= ' |
|
| 15 | + /** Tableau de données */ |
|
| 16 | + protected array $tableau = []; |
|
| 17 | + |
|
| 18 | + /** |
|
| 19 | + * Conditions de filtrage |
|
| 20 | + * ie criteres de selection |
|
| 21 | + */ |
|
| 22 | + protected array $filtre = []; |
|
| 23 | + |
|
| 24 | + /** |
|
| 25 | + * Cle courante |
|
| 26 | + * |
|
| 27 | + * @var scalar |
|
| 28 | + */ |
|
| 29 | + protected $cle = null; |
|
| 30 | + |
|
| 31 | + /** |
|
| 32 | + * Valeur courante |
|
| 33 | + * |
|
| 34 | + * @var mixed |
|
| 35 | + */ |
|
| 36 | + protected $valeur = null; |
|
| 37 | + |
|
| 38 | + /** |
|
| 39 | + * Constructeur |
|
| 40 | + * |
|
| 41 | + * @param $command |
|
| 42 | + * @param array $info |
|
| 43 | + */ |
|
| 44 | + public function __construct(array $command, array $info = []) { |
|
| 45 | + $this->type = 'DATA'; |
|
| 46 | + $this->command = $command; |
|
| 47 | + $this->info = $info; |
|
| 48 | + |
|
| 49 | + $this->select($command); |
|
| 50 | + } |
|
| 51 | + |
|
| 52 | + /** |
|
| 53 | + * Revenir au depart |
|
| 54 | + * |
|
| 55 | + * @return void |
|
| 56 | + */ |
|
| 57 | + public function rewind(): void { |
|
| 58 | + reset($this->tableau); |
|
| 59 | + $this->cle = array_key_first($this->tableau); |
|
| 60 | + $this->valeur = current($this->tableau); |
|
| 61 | + next($this->tableau); |
|
| 62 | + } |
|
| 63 | + |
|
| 64 | + /** |
|
| 65 | + * Déclarer les critères exceptions |
|
| 66 | + * |
|
| 67 | + * @return array |
|
| 68 | + */ |
|
| 69 | + public function exception_des_criteres() { |
|
| 70 | + return ['tableau']; |
|
| 71 | + } |
|
| 72 | + |
|
| 73 | + /** |
|
| 74 | + * Récupérer depuis le cache si possible |
|
| 75 | + * |
|
| 76 | + * @param string $cle |
|
| 77 | + * @return mixed |
|
| 78 | + */ |
|
| 79 | + protected function cache_get($cle) { |
|
| 80 | + if (!$cle) { |
|
| 81 | + return; |
|
| 82 | + } |
|
| 83 | + # utiliser memoization si dispo |
|
| 84 | + if (!function_exists('cache_get')) { |
|
| 85 | + return; |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + return cache_get($cle); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + /** |
|
| 92 | + * Stocker en cache si possible |
|
| 93 | + * |
|
| 94 | + * @param string $cle |
|
| 95 | + * @param int $ttl |
|
| 96 | + * @param null|mixed $valeur |
|
| 97 | + * @return bool |
|
| 98 | + */ |
|
| 99 | + protected function cache_set($cle, $ttl, $valeur = null) { |
|
| 100 | + if (!$cle) { |
|
| 101 | + return; |
|
| 102 | + } |
|
| 103 | + if (is_null($valeur)) { |
|
| 104 | + $valeur = $this->tableau; |
|
| 105 | + } |
|
| 106 | + # utiliser memoization si dispo |
|
| 107 | + if (!function_exists('cache_set')) { |
|
| 108 | + return; |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + return cache_set( |
|
| 112 | + $cle, |
|
| 113 | + [ |
|
| 114 | + 'data' => $valeur, |
|
| 115 | + 'time' => time(), |
|
| 116 | + 'ttl' => $ttl |
|
| 117 | + ], |
|
| 118 | + 3600 + $ttl |
|
| 119 | + ); |
|
| 120 | + # conserver le cache 1h de plus que la validite demandee, |
|
| 121 | + # pour le cas ou le serveur distant ne reponde plus |
|
| 122 | + } |
|
| 123 | + |
|
| 124 | + /** |
|
| 125 | + * Aller chercher les données de la boucle DATA |
|
| 126 | + * |
|
| 127 | + * @throws Exception |
|
| 128 | + * @param array $command |
|
| 129 | + * @return void |
|
| 130 | + */ |
|
| 131 | + protected function select($command) { |
|
| 132 | + |
|
| 133 | + // l'iterateur DATA peut etre appele en passant (data:type) |
|
| 134 | + // le type se retrouve dans la commande 'from' |
|
| 135 | + // dans ce cas la le critere {source}, si present, n'a pas besoin du 1er argument |
|
| 136 | + if (isset($this->command['from'][0])) { |
|
| 137 | + if (isset($this->command['source']) and is_array($this->command['source'])) { |
|
| 138 | + array_unshift($this->command['source'], $this->command['sourcemode']); |
|
| 139 | + } |
|
| 140 | + $this->command['sourcemode'] = $this->command['from'][0]; |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + // cherchons differents moyens de creer le tableau de donnees |
|
| 144 | + // les commandes connues pour l'iterateur DATA |
|
| 145 | + // sont : {tableau #ARRAY} ; {cle=...} ; {valeur=...} |
|
| 146 | + |
|
| 147 | + // {source format, [URL], [arg2]...} |
|
| 148 | + if ( |
|
| 149 | + isset($this->command['source']) |
|
| 150 | + and isset($this->command['sourcemode']) |
|
| 151 | + ) { |
|
| 152 | + $this->select_source(); |
|
| 153 | + } |
|
| 154 | + |
|
| 155 | + // Critere {liste X1, X2, X3} |
|
| 156 | + if (isset($this->command['liste'])) { |
|
| 157 | + $this->select_liste(); |
|
| 158 | + } |
|
| 159 | + if (isset($this->command['enum'])) { |
|
| 160 | + $this->select_enum(); |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + // Si a ce stade on n'a pas de table, il y a un bug |
|
| 164 | + if (!is_array($this->tableau)) { |
|
| 165 | + $this->err = true; |
|
| 166 | + spip_log('erreur datasource ' . var_export($command, true)); |
|
| 167 | + } |
|
| 168 | + |
|
| 169 | + // {datapath query.results} |
|
| 170 | + // extraire le chemin "query.results" du tableau de donnees |
|
| 171 | + if ( |
|
| 172 | + !$this->err |
|
| 173 | + and isset($this->command['datapath']) |
|
| 174 | + and is_array($this->command['datapath']) |
|
| 175 | + ) { |
|
| 176 | + $this->select_datapath(); |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + // tri {par x} |
|
| 180 | + if ($this->command['orderby']) { |
|
| 181 | + $this->select_orderby(); |
|
| 182 | + } |
|
| 183 | + |
|
| 184 | + // grouper les resultats {fusion /x/y/z} ; |
|
| 185 | + if ($this->command['groupby']) { |
|
| 186 | + $this->select_groupby(); |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + $this->rewind(); |
|
| 190 | + #var_dump($this->tableau); |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + |
|
| 194 | + /** |
|
| 195 | + * Aller chercher les donnees de la boucle DATA |
|
| 196 | + * depuis une source |
|
| 197 | + * {source format, [URL], [arg2]...} |
|
| 198 | + */ |
|
| 199 | + protected function select_source() { |
|
| 200 | + # un peu crado : avant de charger le cache il faut charger |
|
| 201 | + # les class indispensables, sinon PHP ne saura pas gerer |
|
| 202 | + # l'objet en cache ; cf plugins/icalendar |
|
| 203 | + # perf : pas de fonction table_to_array ! (table est deja un array) |
|
| 204 | + if ( |
|
| 205 | + isset($this->command['sourcemode']) |
|
| 206 | + and !in_array($this->command['sourcemode'], ['table', 'array', 'tableau']) |
|
| 207 | + ) { |
|
| 208 | + charger_fonction($this->command['sourcemode'] . '_to_array', 'inc', true); |
|
| 209 | + } |
|
| 210 | + |
|
| 211 | + # le premier argument peut etre un array, une URL etc. |
|
| 212 | + $src = $this->command['source'][0]; |
|
| 213 | + |
|
| 214 | + # avons-nous un cache dispo ? |
|
| 215 | + $cle = null; |
|
| 216 | + if (is_string($src)) { |
|
| 217 | + $cle = 'datasource_' . md5($this->command['sourcemode'] . ':' . var_export($this->command['source'], true)); |
|
| 218 | + } |
|
| 219 | + |
|
| 220 | + $cache = $this->cache_get($cle); |
|
| 221 | + if (isset($this->command['datacache'])) { |
|
| 222 | + $ttl = intval($this->command['datacache']); |
|
| 223 | + } |
|
| 224 | + if ( |
|
| 225 | + $cache |
|
| 226 | + and ($cache['time'] + ($ttl ?? $cache['ttl']) |
|
| 227 | + > time()) |
|
| 228 | + and !(_request('var_mode') === 'recalcul' |
|
| 229 | + and include_spip('inc/autoriser') |
|
| 230 | + and autoriser('recalcul') |
|
| 231 | + ) |
|
| 232 | + ) { |
|
| 233 | + $this->tableau = $cache['data']; |
|
| 234 | + } else { |
|
| 235 | + try { |
|
| 236 | + if ( |
|
| 237 | + isset($this->command['sourcemode']) |
|
| 238 | + and in_array( |
|
| 239 | + $this->command['sourcemode'], |
|
| 240 | + ['table', 'array', 'tableau'] |
|
| 241 | + ) |
|
| 242 | + ) { |
|
| 243 | + if ( |
|
| 244 | + is_array($a = $src) |
|
| 245 | + or (is_string($a) |
|
| 246 | + and $a = str_replace('"', '"', $a) # fragile! |
|
| 247 | + and is_array($a = @unserialize($a))) |
|
| 248 | + ) { |
|
| 249 | + $this->tableau = $a; |
|
| 250 | + } |
|
| 251 | + } else { |
|
| 252 | + $data = $src; |
|
| 253 | + if (is_string($src)) { |
|
| 254 | + if (tester_url_absolue($src)) { |
|
| 255 | + include_spip('inc/distant'); |
|
| 256 | + $data = recuperer_url($src, ['taille_max' => _DATA_SOURCE_MAX_SIZE]); |
|
| 257 | + $data = $data['page'] ?? ''; |
|
| 258 | + if (!$data) { |
|
| 259 | + throw new Exception('404'); |
|
| 260 | + } |
|
| 261 | + if (!isset($ttl)) { |
|
| 262 | + $ttl = 24 * 3600; |
|
| 263 | + } |
|
| 264 | + } elseif (@is_dir($src)) { |
|
| 265 | + $data = $src; |
|
| 266 | + } elseif (@is_readable($src) && @is_file($src)) { |
|
| 267 | + $data = spip_file_get_contents($src); |
|
| 268 | + } |
|
| 269 | + if (!isset($ttl)) { |
|
| 270 | + $ttl = 10; |
|
| 271 | + } |
|
| 272 | + } |
|
| 273 | + |
|
| 274 | + if ( |
|
| 275 | + !$this->err |
|
| 276 | + and $data_to_array = charger_fonction($this->command['sourcemode'] . '_to_array', 'inc', true) |
|
| 277 | + ) { |
|
| 278 | + $args = $this->command['source']; |
|
| 279 | + $args[0] = $data; |
|
| 280 | + if (is_array($a = $data_to_array(...$args))) { |
|
| 281 | + $this->tableau = $a; |
|
| 282 | + } |
|
| 283 | + } |
|
| 284 | + } |
|
| 285 | + |
|
| 286 | + if (!is_array($this->tableau)) { |
|
| 287 | + $this->err = true; |
|
| 288 | + } |
|
| 289 | + |
|
| 290 | + if (!$this->err and isset($ttl) and $ttl > 0) { |
|
| 291 | + $this->cache_set($cle, $ttl); |
|
| 292 | + } |
|
| 293 | + } catch (Exception $e) { |
|
| 294 | + $e = $e->getMessage(); |
|
| 295 | + $err = sprintf( |
|
| 296 | + "[%s, %s] $e", |
|
| 297 | + $src, |
|
| 298 | + $this->command['sourcemode'] |
|
| 299 | + ); |
|
| 300 | + erreur_squelette([$err, []]); |
|
| 301 | + $this->err = true; |
|
| 302 | + } |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + # en cas d'erreur, utiliser le cache si encore dispo |
|
| 306 | + if ( |
|
| 307 | + $this->err |
|
| 308 | + and $cache |
|
| 309 | + ) { |
|
| 310 | + $this->tableau = $cache['data']; |
|
| 311 | + $this->err = false; |
|
| 312 | + } |
|
| 313 | + } |
|
| 314 | + |
|
| 315 | + |
|
| 316 | + /** |
|
| 317 | + * Retourne un tableau donne depuis un critère liste |
|
| 318 | + * |
|
| 319 | + * Critère `{liste X1, X2, X3}` |
|
| 320 | + * |
|
| 321 | + * @see critere_DATA_liste_dist() |
|
| 322 | + * |
|
| 323 | + **/ |
|
| 324 | + protected function select_liste() { |
|
| 325 | + # s'il n'y a qu'une valeur dans la liste, sans doute une #BALISE |
|
| 326 | + if (!isset($this->command['liste'][1])) { |
|
| 327 | + if (!is_array($this->command['liste'][0])) { |
|
| 328 | + $this->command['liste'] = explode(',', $this->command['liste'][0]); |
|
| 329 | + } else { |
|
| 330 | + $this->command['liste'] = $this->command['liste'][0]; |
|
| 331 | + } |
|
| 332 | + } |
|
| 333 | + $this->tableau = $this->command['liste']; |
|
| 334 | + } |
|
| 335 | + |
|
| 336 | + /** |
|
| 337 | + * Retourne un tableau donne depuis un critere liste |
|
| 338 | + * Critere {enum Xmin, Xmax} |
|
| 339 | + * |
|
| 340 | + **/ |
|
| 341 | + protected function select_enum() { |
|
| 342 | + # s'il n'y a qu'une valeur dans la liste, sans doute une #BALISE |
|
| 343 | + if (!isset($this->command['enum'][1])) { |
|
| 344 | + if (!is_array($this->command['enum'][0])) { |
|
| 345 | + $this->command['enum'] = explode(',', $this->command['enum'][0]); |
|
| 346 | + } else { |
|
| 347 | + $this->command['enum'] = $this->command['enum'][0]; |
|
| 348 | + } |
|
| 349 | + } |
|
| 350 | + if ((is_countable($this->command['enum']) ? count($this->command['enum']) : 0) >= 3) { |
|
| 351 | + $enum = range( |
|
| 352 | + array_shift($this->command['enum']), |
|
| 353 | + array_shift($this->command['enum']), |
|
| 354 | + array_shift($this->command['enum']) |
|
| 355 | + ); |
|
| 356 | + } else { |
|
| 357 | + $enum = range(array_shift($this->command['enum']), array_shift($this->command['enum'])); |
|
| 358 | + } |
|
| 359 | + $this->tableau = $enum; |
|
| 360 | + } |
|
| 361 | + |
|
| 362 | + |
|
| 363 | + /** |
|
| 364 | + * extraire le chemin "query.results" du tableau de donnees |
|
| 365 | + * {datapath query.results} |
|
| 366 | + * |
|
| 367 | + **/ |
|
| 368 | + protected function select_datapath() { |
|
| 369 | + $base = reset($this->command['datapath']); |
|
| 370 | + if (strlen($base = ltrim(trim($base), '/'))) { |
|
| 371 | + $this->tableau = table_valeur($this->tableau, $base); |
|
| 372 | + if (!is_array($this->tableau)) { |
|
| 373 | + $this->tableau = []; |
|
| 374 | + $this->err = true; |
|
| 375 | + spip_log("datapath '$base' absent"); |
|
| 376 | + } |
|
| 377 | + } |
|
| 378 | + } |
|
| 379 | + |
|
| 380 | + /** |
|
| 381 | + * Ordonner les resultats |
|
| 382 | + * {par x} |
|
| 383 | + * |
|
| 384 | + **/ |
|
| 385 | + protected function select_orderby() { |
|
| 386 | + $sortfunc = ''; |
|
| 387 | + $aleas = 0; |
|
| 388 | + foreach ($this->command['orderby'] as $tri) { |
|
| 389 | + // virer le / initial pour les criteres de la forme {par /xx} |
|
| 390 | + if (preg_match(',^\.?([/\w:_-]+)( DESC)?$,iS', ltrim($tri, '/'), $r)) { |
|
| 391 | + $r = array_pad($r, 3, null); |
|
| 392 | + |
|
| 393 | + // tri par cle |
|
| 394 | + if ($r[1] == 'cle') { |
|
| 395 | + if (isset($r[2]) and $r[2]) { |
|
| 396 | + krsort($this->tableau); |
|
| 397 | + } else { |
|
| 398 | + ksort($this->tableau); |
|
| 399 | + } |
|
| 400 | + } # {par hasard} |
|
| 401 | + else { |
|
| 402 | + if ($r[1] == 'hasard') { |
|
| 403 | + $k = array_keys($this->tableau); |
|
| 404 | + shuffle($k); |
|
| 405 | + $v = []; |
|
| 406 | + foreach ($k as $cle) { |
|
| 407 | + $v[$cle] = $this->tableau[$cle]; |
|
| 408 | + } |
|
| 409 | + $this->tableau = $v; |
|
| 410 | + } else { |
|
| 411 | + # {par valeur} |
|
| 412 | + if ($r[1] == 'valeur') { |
|
| 413 | + $tv = '%s'; |
|
| 414 | + } # {par valeur/xx/yy} ?? |
|
| 415 | + else { |
|
| 416 | + $tv = 'table_valeur(%s, ' . var_export($r[1], true) . ')'; |
|
| 417 | + } |
|
| 418 | + $sortfunc .= ' |
|
| 419 | 419 | $a = ' . sprintf($tv, '$aa') . '; |
| 420 | 420 | $b = ' . sprintf($tv, '$bb') . '; |
| 421 | 421 | if ($a <> $b) |
| 422 | 422 | return ($a ' . (!empty($r[2]) ? '>' : '<') . ' $b) ? -1 : 1;'; |
| 423 | - } |
|
| 424 | - } |
|
| 425 | - } |
|
| 426 | - } |
|
| 427 | - |
|
| 428 | - if ($sortfunc) { |
|
| 429 | - $sortfunc .= "\n return 0;"; |
|
| 430 | - uasort($this->tableau, fn($aa, $bb) => eval($sortfunc)); |
|
| 431 | - } |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - |
|
| 435 | - /** |
|
| 436 | - * Grouper les resultats |
|
| 437 | - * {fusion /x/y/z} |
|
| 438 | - * |
|
| 439 | - **/ |
|
| 440 | - protected function select_groupby() { |
|
| 441 | - // virer le / initial pour les criteres de la forme {fusion /xx} |
|
| 442 | - if (strlen($fusion = ltrim($this->command['groupby'][0], '/'))) { |
|
| 443 | - $vu = []; |
|
| 444 | - foreach ($this->tableau as $k => $v) { |
|
| 445 | - $val = table_valeur($v, $fusion); |
|
| 446 | - if (isset($vu[$val])) { |
|
| 447 | - unset($this->tableau[$k]); |
|
| 448 | - } else { |
|
| 449 | - $vu[$val] = true; |
|
| 450 | - } |
|
| 451 | - } |
|
| 452 | - } |
|
| 453 | - } |
|
| 454 | - |
|
| 455 | - |
|
| 456 | - /** |
|
| 457 | - * L'iterateur est-il encore valide ? |
|
| 458 | - * |
|
| 459 | - * @return bool |
|
| 460 | - */ |
|
| 461 | - public function valid(): bool { |
|
| 462 | - return !is_null($this->cle); |
|
| 463 | - } |
|
| 464 | - |
|
| 465 | - /** |
|
| 466 | - * Retourner la valeur |
|
| 467 | - * |
|
| 468 | - * @return mixed |
|
| 469 | - */ |
|
| 470 | - #[\ReturnTypeWillChange] |
|
| 471 | - public function current() { |
|
| 472 | - return $this->valeur; |
|
| 473 | - } |
|
| 474 | - |
|
| 475 | - /** |
|
| 476 | - * Retourner la cle |
|
| 477 | - * |
|
| 478 | - * @return mixed |
|
| 479 | - */ |
|
| 480 | - #[\ReturnTypeWillChange] |
|
| 481 | - public function key() { |
|
| 482 | - return $this->cle; |
|
| 483 | - } |
|
| 484 | - |
|
| 485 | - /** |
|
| 486 | - * Passer a la valeur suivante |
|
| 487 | - * |
|
| 488 | - * @return void |
|
| 489 | - */ |
|
| 490 | - public function next(): void { |
|
| 491 | - if ($this->valid()) { |
|
| 492 | - $this->cle = key($this->tableau); |
|
| 493 | - $this->valeur = current($this->tableau); |
|
| 494 | - next($this->tableau); |
|
| 495 | - } |
|
| 496 | - } |
|
| 497 | - |
|
| 498 | - /** |
|
| 499 | - * Compter le nombre total de resultats |
|
| 500 | - * |
|
| 501 | - * @return int |
|
| 502 | - */ |
|
| 503 | - public function count() { |
|
| 504 | - if (is_null($this->total)) { |
|
| 505 | - $this->total = count($this->tableau); |
|
| 506 | - } |
|
| 507 | - |
|
| 508 | - return $this->total; |
|
| 509 | - } |
|
| 423 | + } |
|
| 424 | + } |
|
| 425 | + } |
|
| 426 | + } |
|
| 427 | + |
|
| 428 | + if ($sortfunc) { |
|
| 429 | + $sortfunc .= "\n return 0;"; |
|
| 430 | + uasort($this->tableau, fn($aa, $bb) => eval($sortfunc)); |
|
| 431 | + } |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + |
|
| 435 | + /** |
|
| 436 | + * Grouper les resultats |
|
| 437 | + * {fusion /x/y/z} |
|
| 438 | + * |
|
| 439 | + **/ |
|
| 440 | + protected function select_groupby() { |
|
| 441 | + // virer le / initial pour les criteres de la forme {fusion /xx} |
|
| 442 | + if (strlen($fusion = ltrim($this->command['groupby'][0], '/'))) { |
|
| 443 | + $vu = []; |
|
| 444 | + foreach ($this->tableau as $k => $v) { |
|
| 445 | + $val = table_valeur($v, $fusion); |
|
| 446 | + if (isset($vu[$val])) { |
|
| 447 | + unset($this->tableau[$k]); |
|
| 448 | + } else { |
|
| 449 | + $vu[$val] = true; |
|
| 450 | + } |
|
| 451 | + } |
|
| 452 | + } |
|
| 453 | + } |
|
| 454 | + |
|
| 455 | + |
|
| 456 | + /** |
|
| 457 | + * L'iterateur est-il encore valide ? |
|
| 458 | + * |
|
| 459 | + * @return bool |
|
| 460 | + */ |
|
| 461 | + public function valid(): bool { |
|
| 462 | + return !is_null($this->cle); |
|
| 463 | + } |
|
| 464 | + |
|
| 465 | + /** |
|
| 466 | + * Retourner la valeur |
|
| 467 | + * |
|
| 468 | + * @return mixed |
|
| 469 | + */ |
|
| 470 | + #[\ReturnTypeWillChange] |
|
| 471 | + public function current() { |
|
| 472 | + return $this->valeur; |
|
| 473 | + } |
|
| 474 | + |
|
| 475 | + /** |
|
| 476 | + * Retourner la cle |
|
| 477 | + * |
|
| 478 | + * @return mixed |
|
| 479 | + */ |
|
| 480 | + #[\ReturnTypeWillChange] |
|
| 481 | + public function key() { |
|
| 482 | + return $this->cle; |
|
| 483 | + } |
|
| 484 | + |
|
| 485 | + /** |
|
| 486 | + * Passer a la valeur suivante |
|
| 487 | + * |
|
| 488 | + * @return void |
|
| 489 | + */ |
|
| 490 | + public function next(): void { |
|
| 491 | + if ($this->valid()) { |
|
| 492 | + $this->cle = key($this->tableau); |
|
| 493 | + $this->valeur = current($this->tableau); |
|
| 494 | + next($this->tableau); |
|
| 495 | + } |
|
| 496 | + } |
|
| 497 | + |
|
| 498 | + /** |
|
| 499 | + * Compter le nombre total de resultats |
|
| 500 | + * |
|
| 501 | + * @return int |
|
| 502 | + */ |
|
| 503 | + public function count() { |
|
| 504 | + if (is_null($this->total)) { |
|
| 505 | + $this->total = count($this->tableau); |
|
| 506 | + } |
|
| 507 | + |
|
| 508 | + return $this->total; |
|
| 509 | + } |
|
| 510 | 510 | } |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | // Si a ce stade on n'a pas de table, il y a un bug |
| 164 | 164 | if (!is_array($this->tableau)) { |
| 165 | 165 | $this->err = true; |
| 166 | - spip_log('erreur datasource ' . var_export($command, true)); |
|
| 166 | + spip_log('erreur datasource '.var_export($command, true)); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | // {datapath query.results} |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | isset($this->command['sourcemode']) |
| 206 | 206 | and !in_array($this->command['sourcemode'], ['table', 'array', 'tableau']) |
| 207 | 207 | ) { |
| 208 | - charger_fonction($this->command['sourcemode'] . '_to_array', 'inc', true); |
|
| 208 | + charger_fonction($this->command['sourcemode'].'_to_array', 'inc', true); |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | # le premier argument peut etre un array, une URL etc. |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | # avons-nous un cache dispo ? |
| 215 | 215 | $cle = null; |
| 216 | 216 | if (is_string($src)) { |
| 217 | - $cle = 'datasource_' . md5($this->command['sourcemode'] . ':' . var_export($this->command['source'], true)); |
|
| 217 | + $cle = 'datasource_'.md5($this->command['sourcemode'].':'.var_export($this->command['source'], true)); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | $cache = $this->cache_get($cle); |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | |
| 274 | 274 | if ( |
| 275 | 275 | !$this->err |
| 276 | - and $data_to_array = charger_fonction($this->command['sourcemode'] . '_to_array', 'inc', true) |
|
| 276 | + and $data_to_array = charger_fonction($this->command['sourcemode'].'_to_array', 'inc', true) |
|
| 277 | 277 | ) { |
| 278 | 278 | $args = $this->command['source']; |
| 279 | 279 | $args[0] = $data; |
@@ -413,13 +413,13 @@ discard block |
||
| 413 | 413 | $tv = '%s'; |
| 414 | 414 | } # {par valeur/xx/yy} ?? |
| 415 | 415 | else { |
| 416 | - $tv = 'table_valeur(%s, ' . var_export($r[1], true) . ')'; |
|
| 416 | + $tv = 'table_valeur(%s, '.var_export($r[1], true).')'; |
|
| 417 | 417 | } |
| 418 | 418 | $sortfunc .= ' |
| 419 | - $a = ' . sprintf($tv, '$aa') . '; |
|
| 420 | - $b = ' . sprintf($tv, '$bb') . '; |
|
| 419 | + $a = ' . sprintf($tv, '$aa').'; |
|
| 420 | + $b = ' . sprintf($tv, '$bb').'; |
|
| 421 | 421 | if ($a <> $b) |
| 422 | - return ($a ' . (!empty($r[2]) ? '>' : '<') . ' $b) ? -1 : 1;'; |
|
| 422 | + return ($a ' . (!empty($r[2]) ? '>' : '<').' $b) ? -1 : 1;'; |
|
| 423 | 423 | } |
| 424 | 424 | } |
| 425 | 425 | } |