Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 861 | Rev 863 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
854 raphael 1
<?php
2
/*
3
 * @copyright 2013 Tela Botanica (accueil@tela-botanica.org)
4
 * @author Raphaël Droz <raphael@tela-botanica.org>
5
 * @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
6
 * @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
7
 *
859 raphael 8
 * pattern: /service:eflore:0.1/coste/textes/bdtfx.nn:182,631
854 raphael 9
 * params: txt.format=(htm|txt) ,  retour.champs=(titre,texte,...) , retour.format=(min|max), ...
10
 *
11
 * Ce webservice est censé pouvoir:
859 raphael 12
 * 1) retourner des informations (choisies) à propos d'un ou plusieurs taxon(s) donné(s)
13
 *	  (à partir de son numéro nomenclatural
14
 * 2) retourner des informations (choisies) à propos de taxons recherchés
15
 *	  (à partir de divers critères)
854 raphael 16
 *
17
 * TODO: masque.titre => masque.tag
859 raphael 18
 * TODO: clarifier l'attribut "tag" retourné (tag de la description ou des clefs de détermination)
854 raphael 19
 *
20
 */
21
 
858 raphael 22
// affecte le nombre d'ids autorisés dans le dernier segment d'URL
23
// *et* la valeur maximale autorisée pour navigation.limite.
24
define('_COSTE_TEXTE_MAX_RESULT_LIMIT', 500);
25
 
859 raphael 26
// simplifie et accélère la sanitization de l'input:
27
// SELECT MAX(num_nom) FROM coste_v2_00;
861 raphael 28
define('_COSTE_TEXTE_MAX_COSTE_NN', 7015 + 1000);
862 raphael 29
// SELECT MAX(page) FROM coste_v2_00;
30
define('_COSTE_TEXTE_MAX_COSTE_PAGE', 4126);
31
// SELECT MAX(tome) FROM coste_v2_00;
32
define('_COSTE_TEXTE_MAX_COSTE_TOME', 3);
33
// SELECT MAX(num_taxonomique) FROM coste_v2_00;
34
define('_COSTE_TEXTE_MAX_BDTFX_NT', 37809);
861 raphael 35
// SELECT MAX(num_nom) FROM bdtfx_v1_02;
36
define('_COSTE_TEXTE_MAX_BDTFX_NN', 103386 + 10000);
859 raphael 37
 
854 raphael 38
/*restore_error_handler();
39
  error_reporting(E_ALL);*/
856 raphael 40
class Textes {
854 raphael 41
	// paramètres autorisés
42
	static $allow_params = array(
43
		'txt.format', 'retour.format', 'retour.champs',
44
		'recherche',
862 raphael 45
		'masque.ns', 'masque.txt', 'masque.page', 'masque.tome', 'masque.famille', 'masque.nt',
854 raphael 46
		'masque.titre', // masque sur titre de la page wiki correspondante (page "clef" OR page "description")
47
		'navigation.depart', 'navigation.limite');
48
	// et valeurs par défaut
49
	static $default_params = array('txt.format' => 'txt', 'retour.format' => 'max', 'recherche' => 'stricte',
50
								   'retour.champs' => 'titre,texte,determination,tag',
51
								   'navigation.depart' => 0, 'navigation.limite' => 50);
52
 
53
	// les champs de base de coste_v2_00
54
	// mysql -N tb_eflore<<<"SHOW FIELDS FROM coste_v2_00"|egrep -v 'page_'|awk '{print $1}'|xargs -i -n1 printf "'%s' => 'c.%s',\n" {} {}
55
	static $allow_champs = array(
861 raphael 56
		'coste:nn' => 'c.num_nom',
57
		'bdtfx:nn' => 'IF(c.flore_bdtfx_nn = "",NULL,c.flore_bdtfx_nn)',
58
		'bdtfx:nt' => 'c.flore_bdtfx_nt',
854 raphael 59
		'num_nom' => 'c.num_nom',
60
		'num_nom_retenu' => 'c.num_nom_retenu',
61
		'num_tax_sup' => 'c.num_tax_sup',
62
		'rang' => 'c.rang',
63
		'nom_sci' => 'c.nom_sci',
64
		'nom_supra_generique' => 'c.nom_supra_generique',
65
		'genre' => 'c.genre',
66
		'epithete_infra_generique' => 'c.epithete_infra_generique',
67
		'epithete_sp' => 'c.epithete_sp',
68
		'type_epithete' => 'c.type_epithete',
69
		'epithete_infra_sp' => 'c.epithete_infra_sp',
70
		'cultivar_groupe' => 'c.cultivar_groupe',
71
		'cultivar' => 'c.cultivar',
72
		'nom_commercial' => 'c.nom_commercial',
73
		'auteur' => 'c.auteur',
74
		'annee' => 'c.annee',
75
		'biblio_origine' => 'c.biblio_origine',
76
		'notes' => 'c.notes',
77
		'nom_addendum' => 'c.nom_addendum',
78
		'nom_francais' => 'c.nom_francais',
79
		'nom_coste' => 'c.nom_coste',
80
		'auteur_coste' => 'c.auteur_coste',
81
		'biblio_coste' => 'c.biblio_coste',
82
		'num_nom_coste' => 'c.num_nom_coste',
83
		'num_nom_retenu_coste' => 'c.num_nom_retenu_coste',
84
		'num_tax_sup_coste' => 'c.num_tax_sup_coste',
85
		'synonymie_coste' => 'c.synonymie_coste',
86
		'tome' => 'c.tome',
87
		'page' => 'c.page',
88
		'nbre_taxons' => 'c.nbre_taxons',
89
		'flore_bdtfx_nn' => 'c.flore_bdtfx_nn',
90
		'flore_bdtfx_nt' => 'c.flore_bdtfx_nt',
91
		'image' => 'c.image',
92
		'image_auteur' => 'c.image_auteur',
93
		'nom_sci_html' => 'c.nom_sci_html',
94
 
95
		// handly duplicate (redirigé vers nom_sci ou nom_sci_html selon que txt.format vaut "txt" ou "htm"
96
		'titre' => 'c.nom_sci',
97
 
98
		// champs spécifiques (et étrangères)
99
		'texte' => 'dsc.body',
100
		'determination' => 'cle.body',
101
		'tag' => 'dsc.tag',
102
		'famille' => 'b.famille', // cf sqlAddJoins()
103
		'*' => 'XXX' // spécial
104
	);
105
 
106
	// les champs suivants disparaissent de la liste utilisée pour former la requête SQL
861 raphael 107
	// (ils sont exclue lorsque '*' est utilisée, ce sont généralement des synonymes)
108
	static $special_champs = array('nom_sci_html', 'nom_sci', '*', 'flore_bdtfx_nn', 'flore_bdtfx_nt', 'num_nom');
109
 
110
	// ces champs sont toujours dans les résultats (cf sqlSelectFields()
111
	static $champs_obligatoires = array('coste:nn', 'bdtfx:nn');
112
 
113
 
854 raphael 114
	// le pattern utilisé pour la recherche dite "floue"
115
	static $soundex_scheme = '(%1$s LIKE %2$s OR SOUNDEX(%1$s) = SOUNDEX(%2$s) OR SOUNDEX(REVERSE(%1$s)) = SOUNDEX(REVERSE(%2$s)))';
116
 
117
	// contrainte du point d'entrée d'API webservice Tela lors d'un GET
118
	public function consulter($ressources, $parametres, $db = NULL) {
119
		if(!$db) {
120
			// http_response_code(500);
121
			throw new Exception('no DB', 500);
122
		}
123
 
124
		// parser la requête et filtrer les paramètres valides
125
		// en cas d'accès HTTP
126
		if(array_key_exists('QUERY_STRING', $_SERVER)) {
127
			self::requestParse($uri, $params);
128
		}
129
		// en cas d'accès phpunit
130
		else {
131
			$uri = $ressources;
132
		}
133
 
134
		// renvoie du plain/text d'aide (cf fin de programme)
135
		if(count($uri) == 1 && $uri[0] == 'aide') return self::aide();
136
 
137
 
858 raphael 138
		if(is_null($parametres)) $parametres = Array();
139
		$params = self::requestFilterParams($parametres);
140
		// les contraintes liées aux ids (passés comme composants d'URL)
141
		// sont ajoutées aux params [sans être accepté comme paramètre d'URL]
142
		$params['_ids'] = self::requestFilterIds($uri);
854 raphael 143
 
858 raphael 144
		// XXX: temporaires, passage de $db aux fonctions
145
		// de toolkits
146
		$req = self::getCosteInfo($params, $db);
147
 
854 raphael 148
		$res = $db->recupererTous($req);
149
		$err = mysql_error();
150
		if(!$res && $err) {
151
			// http_response_code(400);
152
			// if(defined('DEBUG') && DEBUG) header("X-Debug: $req");
153
			throw new Exception('not found', 400);
154
		}
155
 
156
		// rapide formatage des résultats:
157
		$matches = 0;
158
 
159
		if($res) {
160
			// nombre de matches (sans LIMIT) utilisé pour l'en-tête
161
			$matches = $db->recuperer('SELECT FOUND_ROWS() AS total');
162
			$matches = intval($matches['total']);
163
		}
164
 
861 raphael 165
		// reformate les résultats pour les indexer par coste:nn
854 raphael 166
		$res2 = array();
167
		foreach($res as $v) {
861 raphael 168
			$res2[$v['coste:nn']] = $v;
854 raphael 169
		}
170
 
171
		// l'appelant s'occupera du json_encode()
172
		// même si ça démange d'exit'er ici
173
		header("Content-Type: application/json; charset=utf-8");
174
		return array('entete' => array('depart' => $params['navigation.depart'],
175
									   'limite' => $params['navigation.limite'],
176
									   'total' => count($res2),
177
									   'match' => $matches),
178
					 'resultats' => $res2);
179
 
180
	}
181
 
182
 
861 raphael 183
	// la fonction centrale: récupère les infos à partir de paramètres
184
	// et une optionnelle contrainte sur coste:nn ou bdtfx:nn
858 raphael 185
	static function getCosteInfo(array $params, $db) {
854 raphael 186
		// contraintes (WHERE):
858 raphael 187
		$constraints = self::sqlAddConstraint($params, $db);
188
		// XXX: que faire en l'absence de contrainte ? pour l'instant : "WHERE 1"
854 raphael 189
 
190
		// champs:
191
		$champs_valides_non_formattes = NULL;
192
		$champs_valides = self::sqlSelectFields($params, $champs_valides_non_formattes);
193
 
194
		// joins:
195
		$other_join = self::sqlAddJoins($params, $champs_valides_non_formattes);
196
		$req = sprintf(<<<EOF
861 raphael 197
SELECT SQL_CALC_FOUND_ROWS  %s
854 raphael 198
FROM tb_eflore.coste_v2_00 c
199
LEFT JOIN tela_prod_wikini.florecoste_pages dsc ON c.page_wiki_dsc = dsc.tag AND dsc.latest = 'Y'
200
LEFT JOIN tela_prod_wikini.florecoste_pages cle ON c.page_wiki_cle = cle.tag AND cle.latest = 'Y'
201
%s
202
WHERE %s ORDER BY c.num_nom LIMIT %u, %u -- %s
203
EOF
204
					   ,
205
					   $champs_valides, // dans le SELECT (parmi champs coste_v2_00)
206
					   // autre join, si nécessaire
207
					   $other_join ? $other_join : '',
208
					   // where
209
					   $constraints ? implode(' AND ', $constraints) : '1',
210
 
211
					   // limit
212
					   $params['navigation.depart'],
213
					   $params['navigation.limite'],
214
					   __FILE__ . ':' . __LINE__);
215
 
216
		return $req;
217
	}
218
 
219
 
220
 
221
 
222
	// SQL helpers
223
	// le préfix de coste_v2_00 est "c"
224
	// le préfix de florecoste_pages sur la description est est "dsc"
225
	// le préfix de florecoste_pages sur la clef de détermination est est "cle"
858 raphael 226
	static function sqlAddConstraint($params, $db) {
854 raphael 227
		$stack = array();
228
		if(!empty($params['masque.ns'])) {
229
			if($params['recherche'] == 'etendue')
858 raphael 230
				$stack[] = 'c.nom_sci LIKE ' . $db->proteger('%' . trim($params['masque.ns']) . '%');
854 raphael 231
			elseif($params['recherche'] == 'floue')
232
				$stack[] = sprintf(self::$soundex_scheme,
233
								   'c.nom_sci',
858 raphael 234
								   $db->proteger('%' . trim($params['masque.ns']) . '%'));
854 raphael 235
			else
858 raphael 236
				$stack[] = 'c.nom_sci = ' . $db->proteger(trim($params['masque.ns']));
854 raphael 237
		}
238
 
239
		// le masque sur texte est toujours un LIKE() "étendue", sauf si "floue" spécifié
240
		if(!empty($params['masque.txt'])) {
241
			if($params['recherche'] == 'floue') {
242
				$stack[] = sprintf(self::$soundex_scheme,
243
								   'dsc.body',
858 raphael 244
								   $db->proteger('%' . trim($params['masque.txt']) . '%'));
854 raphael 245
			}
246
			else {
858 raphael 247
				$stack[] = 'dsc.body LIKE ' . $db->proteger('%' . trim($params['masque.txt']) . '%');
854 raphael 248
			}
249
		}
250
 
251
		if(!empty($params['masque.titre'])) {
252
			if($params['recherche'] == 'stricte') {
253
				$stack[] = sprintf('(dsc.tag = %1$s OR cle.tag = %1$s)',
858 raphael 254
								   $db->proteger(trim($params['masque.titre'])));
854 raphael 255
			}
256
			else {
257
				$stack[] = sprintf('(dsc.tag LIKE %1$s OR cle.tag LIKE %1$s)',
858 raphael 258
								   $db->proteger('%' .  trim($params['masque.titre']) . '%'));
854 raphael 259
			}
260
		}
261
 
262
		if(array_key_exists('masque.famille', $params)) {
858 raphael 263
			$stack[] = 'b.famille LIKE ' . $db->proteger(trim($params['masque.famille']));
854 raphael 264
		}
265
 
266
		if(array_key_exists('masque.page', $params)) {
267
			$stack[] = 'c.page = ' . intval($params['masque.page']);
268
		}
269
 
270
		if(array_key_exists('masque.tome', $params)) {
271
			$stack[] = 'c.tome = ' . intval($params['masque.tome']);
272
		}
273
 
862 raphael 274
		if(array_key_exists('masque.nt', $params)) {
275
			$stack[] = 'c.flore_bdtfx_nt = ' . intval($params['masque.nt']);
276
		}
277
 
861 raphael 278
		// ajout de la contrainte sur coste:nn ou bdtfx:nn si un composant d'URL supplémentaire
858 raphael 279
		// comportant un #id existe, cf self::requestFilterIds()
861 raphael 280
		$o_stack = array();
858 raphael 281
		if(array_key_exists('_ids', $params) && $params['_ids']) {
861 raphael 282
			if($params['_ids']['coste']) {
283
				$o_stack[] = sprintf("c.num_nom IN (%s)", implode(',', $params['_ids']['coste']));
284
			}
285
			if($params['_ids']['bdtfx']) {
286
				$o_stack[] = sprintf("c.flore_bdtfx_nn IN (%s)", implode(',', $params['_ids']['bdtfx']));
287
			}
858 raphael 288
		}
861 raphael 289
		if($o_stack) $stack[] = '(' . implode(' OR ', $o_stack) . ')';
858 raphael 290
 
854 raphael 291
		return $stack;
292
	}
293
 
294
 
295
	// $unmerged contient la même liste de champs que celle renvoyée
296
	// à la différence que celle-ci n'est pas reformatée et s'avère donc
297
	// utilisable plus aisément dans sqlAddJoins() qui peut en avoir besoin
298
	static function sqlSelectFields($params, &$unmerged) {
299
		$champs = $params['retour.champs'];
300
		// champs coste_v2_00
861 raphael 301
		$c = self::addSQLToFieldSynonym(explode(',', $champs));
854 raphael 302
		if(isset($c['*'])) {
303
			$t = array_diff_key(self::$allow_champs, array_flip(self::$special_champs));
304
		}
305
		else {
306
			// just loop below
307
			$t = $c;
308
		}
309
 
310
		// si aucun des champs fournis n'est valide
311
		// on se rappelle nous-même après avoir réinitialisé retour.champs
312
		// avec les champs par défaut
313
		if(!$t) {
314
			$params['retour.champs'] = self::$default_params['retour.champs'];
315
			return self::sqlSelectFields($params);
316
		}
317
 
318
		if(array_key_exists('titre', $t))
319
			$t['titre'] = $params['txt.format'] == 'txt' ? 'c.nom_sci' : 'c.nom_sci_html';
320
 
861 raphael 321
		// champs obligatoires:
322
		$t = array_merge($t, self::addSQLToFieldSynonym(self::$champs_obligatoires));
854 raphael 323
		$unmerged = $t;
324
 
325
		// XXX: PHP-5.3
326
		$ret = array();
327
		foreach($t as $k => $v) {
861 raphael 328
			if(strpos($k, ':') !== FALSE) {
329
				$ret[] = "$v AS \"$k\"";
330
			} else {
331
				$ret[] = "$v AS $k";
332
			}
854 raphael 333
		}
334
		return implode(',',$ret);
335
	}
336
 
337
	static function sqlAddJoins($params, $champs) {
338
		$j = '';
339
		// ces tests doivent correspondre aux champs générés par sqlSelectFields()
340
		// ou contraintes générées par sqlAddConstraint()
341
		if(array_key_exists('masque.famille', $params) ||
342
		   array_key_exists('famille', $champs)) {
861 raphael 343
			$j .= 'LEFT JOIN tb_eflore.bdtfx_v1_02 b ON c.flore_bdtfx_nn = b.num_nom';
854 raphael 344
		}
345
 
346
		return $j;
347
	}
348
 
861 raphael 349
	// d'un tableau de type array("coste:nn", "type_epithete")
350
	// retourne
351
	// un tableau de type array("coste:nn" => "c.num_nom", "type_epithete" => "c.type_epithete")
352
	// basé sur self::$allow_champs
353
	static function addSQLToFieldSynonym(Array $syno) {
354
		return array_intersect_key(self::$allow_champs, array_flip($syno));
355
	}
356
 
854 raphael 357
	// request handler
358
	static function requestParse(&$ressource, &$params) {
359
		$uri = explode('/', $_SERVER['REDIRECT_URL']);
360
		if(!empty($_SERVER['QUERY_STRING']))
361
			parse_str($_SERVER['REDIRECT_QUERY_STRING'], $params);
856 raphael 362
		$ressource = array_slice($uri, array_search('textes', $uri) + 1, 3);
854 raphael 363
	}
364
 
365
	// supprime l'index du tableau des paramètres si sa valeur ne correspond pas
366
	// au spectre passé par $values.
367
	static function unsetIfInvalid(&$var, $index, $values) {
368
		if(array_key_exists($index, $var) && !in_array($var[$index], $values))
369
			unset($var[$index]);
370
	}
371
 
372
	static function requestFilterParams(Array $params) {
373
		$p = array_intersect_key($params, array_flip(self::$allow_params));
374
		self::unsetIfInvalid($p, 'txt.format', array('txt', 'htm'));
375
		self::unsetIfInvalid($p, 'retour.format', array('min','max'));
376
		self::unsetIfInvalid($p, 'recherche', array('stricte','etendue','floue'));
377
 
378
		if(isset($params['masque.ns'])) $p['masque.ns'] = trim($params['masque.ns']);
379
		if(isset($params['masque.texte'])) $p['masque.texte'] = trim($params['masque.texte']);
380
 
381
		if(isset($params['masque.famille'])) {
382
			// mysql -N<<<"SELECT DISTINCT famille FROM bdtfx_v1_02;"|sed -r "s/(.)/\1\n/g"|sort -u|tr -d "\n"
383
			$p['masque.famille'] = preg_replace('/[^a-zA-Z %_]/', '', iconv("UTF-8",
384
																			"ASCII//TRANSLIT",
385
																			$params['masque.famille']));
386
		}
387
 
388
		// TODO: use filter_input(INPUT_GET);
389
		// renvoie FALSE ou NULL si absent ou invalide
390
		$p['navigation.limite'] = filter_var(@$params['navigation.limite'],
391
												  FILTER_VALIDATE_INT,
392
												  array('options' => array('default' => NULL,
393
																		   'min_range' => 1,
858 raphael 394
																		   'max_range' => _COSTE_TEXTE_MAX_RESULT_LIMIT)));
854 raphael 395
		$p['navigation.depart'] = filter_var(@$params['navigation.depart'],
396
												  FILTER_VALIDATE_INT,
397
												  array('options' => array('default' => NULL,
398
																		   'min_range' => 0,
861 raphael 399
																		   'max_range' => _COSTE_TEXTE_MAX_COSTE_NN)));
862 raphael 400
		$p['masque.page'] = filter_var(@$params['masque.page'],
401
												  FILTER_VALIDATE_INT,
402
												  array('options' => array('default' => NULL,
403
																		   'min_range' => 0,
404
																		   'max_range' => _COSTE_TEXTE_MAX_COSTE_PAGE)));
405
		$p['masque.tome'] = filter_var(@$params['masque.tome'],
406
												  FILTER_VALIDATE_INT,
407
												  array('options' => array('default' => NULL,
408
																		   'min_range' => 0,
409
																		   'max_range' => _COSTE_TEXTE_MAX_COSTE_TOME)));
410
		$p['masque.nt'] = filter_var(@$params['masque.nt'],
411
												  FILTER_VALIDATE_INT,
412
												  array('options' => array('default' => NULL,
413
																		   'min_range' => 0,
414
																		   'max_range' => _COSTE_TEXTE_MAX_BDTFX_NT)));
854 raphael 415
 
416
		// on filtre les NULL, FALSE et '', mais pas les 0, d'où le callback()
417
		// TODO: PHP-5.3
418
		$p = array_filter($p, create_function('$a','return !in_array($a, array("",false,null),true);'));
419
		$p = array_merge(self::$default_params, $p);
420
 
421
		return $p;
422
	}
423
 
858 raphael 424
	static function requestFilterIds($uri) {
425
		if(count($uri) != 1) return NULL;
426
 
861 raphael 427
		// getNN* renvoient le num_nom passé comme segment d'URI:
428
		// - soit un id selon coste (num_nom dans coste_v2_00)
429
		// - soit un id selon bdtfx (num_nom dans bdtfx_v1_02)
858 raphael 430
		// ou bien l'extrait du pattern bdtfx.nn:(#id)
861 raphael 431
		$ids_coste = array_filter(array_map(array(__CLASS__, 'getNNCoste'), explode(',', $uri[0])));
432
		$ids_bdtfx = array_filter(array_map(array(__CLASS__, 'getNNBdtfx'), explode(',', $uri[0])));
858 raphael 433
 
434
		// en cas d'échec (tous les id sont invalides), bail-out
861 raphael 435
		if(!$ids_bdtfx && !$ids_coste) {
858 raphael 436
			// http_response_code(500);
437
			throw new Exception('not supported', 500);
438
		}
439
 
861 raphael 440
		return array(
441
			'coste' => array_slice($ids_coste, 0, intval(_COSTE_TEXTE_MAX_RESULT_LIMIT/2) ),
442
			'bdtfx' => array_slice($ids_bdtfx, 0, intval(_COSTE_TEXTE_MAX_RESULT_LIMIT/2) )
443
		);
858 raphael 444
	}
445
 
854 raphael 446
	static function aide() {
447
		header("Content-Type: text/plain; charset=utf-8");
448
		return sprintf("
449
Service coste/textes:
450
Retourne des informations (choisies) à propos d'un taxon donné (à partir de son numéro nomenclatural
451
Retourne des informations (choisies) à propos de taxons recherchés (à partir de divers critères)
861 raphael 452
Les résultats sont indexés. La clef par défaut est le num_nom d'après coste (attribut \"coste:nn\")
854 raphael 453
Usage:
858 raphael 454
			coste/textes/<liste-num_nom>?<params>
861 raphael 455
* <liste-num_nom> étant une liste de numéros nomenclaturaux de taxons séparés par des virgules au format:
456
 - <#id>: un numéro nomenclatural dans la base coste
457
 - <bdtfx.nn:#id>: un numéro nomenclatural dans la base bdtfx
854 raphael 458
* retour.champs une liste de champs séparés par des virgules parmi *,%s
459
* les paramètres acceptés sont les suivants: %s
460
* les champs retournés par défaut sont les suivants: %s
461
* le paramètre \"recherche\" affecte les masques \"ns\" et \"texte\"
462
* le paramètre \"famille\" est traité via LIKE et accepte les caractères '_' et '%'
463
* le paramètre \"retour.format\" est inutilisé pour l'instant",
464
					   implode(',', array_keys(self::$allow_champs)),
465
					   implode(',', self::$allow_params),
466
					   self::$default_params['retour.champs']
467
		);
468
	}
469
 
861 raphael 470
	static function getNNCoste($refnn) {
859 raphael 471
		if(is_numeric($refnn)) {
472
			$t = intval($refnn);
861 raphael 473
			if($t >= 1 && $t < _COSTE_TEXTE_MAX_COSTE_NN) return $t;
859 raphael 474
		}
861 raphael 475
		return FALSE;
476
	}
477
 
478
	static function getNNBdtfx($refnn) {
854 raphael 479
		if(strpos($refnn, 'bdtfx.nn:') !== 0) return FALSE;
861 raphael 480
		$t = intval(str_replace('bdtfx.nn:', '', $refnn));
481
		if($t >= 1 && $t < _COSTE_TEXTE_MAX_BDTFX_NN) return $t;
482
		return FALSE;
854 raphael 483
	}
484
}