990 |
isa |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe Mobile Wikini.
|
|
|
5 |
*
|
|
|
6 |
* @category PHP 5.2
|
|
|
7 |
* @package eflore-consultation
|
|
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
9 |
* @author Delphine CAUQUIL <delphine@tela-botanica.org>
|
|
|
10 |
* @author Isabelle NEMBROT <isabelle.nembrot@tela-botanica.org>
|
|
|
11 |
* @copyright 2013 Tela-Botanica
|
|
|
12 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
|
|
|
13 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
|
|
|
14 |
* @version $Id$
|
|
|
15 |
*/
|
|
|
16 |
class Texte extends aControleur {
|
|
|
17 |
|
|
|
18 |
private $conteneur = null;
|
|
|
19 |
private $donnees = array();
|
|
|
20 |
private $format = "text/html";
|
|
|
21 |
|
|
|
22 |
public function __construct(Conteneur $conteneur) {
|
|
|
23 |
$this->conteneur = $conteneur;
|
|
|
24 |
$this->nomCourant = $this->conteneur->getNomCourant();
|
|
|
25 |
|
|
|
26 |
parent::__construct();
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
public function getDonnees() {
|
|
|
30 |
$url_wiki = $this->obtenirUrlWikini();
|
|
|
31 |
$obj = json_decode(file_get_contents($url_wiki));
|
|
|
32 |
|
|
|
33 |
$this->donnees['corps'] = $obj->{'texte'};
|
|
|
34 |
if (strpos($this->format, "html") != false) {
|
|
|
35 |
$this->obtenirCorpsHtml();
|
|
|
36 |
} else {
|
|
|
37 |
$this->obtenirCorpsPlain();
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
if ($this->donnees['corps'] != "") {
|
|
|
41 |
$this->donnees['corps'] = preg_split('/===/', $this->donnees['corps'], -1, PREG_SPLIT_NO_EMPTY);
|
|
|
42 |
|
|
|
43 |
$this->donnees['titre'] = $this->donnees['corps'][0];
|
|
|
44 |
if (strpos($this->format, "html") != false) {
|
|
|
45 |
$this->obtenirTitreHtml();
|
|
|
46 |
} else {
|
|
|
47 |
$this->obtenirTitrePlain();
|
|
|
48 |
}
|
|
|
49 |
}
|
|
|
50 |
|
|
|
51 |
return $this->donnees;
|
|
|
52 |
}
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
//formater pour AppUrls ?
|
|
|
56 |
public function obtenirUrlWikini() {
|
|
|
57 |
$titre = urlencode("Fiche simplifiée Smart'flore");
|
|
|
58 |
$url_wiki = "http://www.tela-botanica.org/wikini/eFloreRedaction/api/rest/0.5/pages/SmartFlore"
|
|
|
59 |
.strtoupper($this->conteneur->getParametre('referentiel'))."nt".$this->nomCourant->getNomSelectionne()->get('num_taxonomique')
|
|
|
60 |
."?txt.format=".$this->format."&txt.section.titre=".$titre;
|
|
|
61 |
|
|
|
62 |
return ($url_wiki);
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
private function obtenirCorpsHtml() {
|
|
|
66 |
$a_remplacer = array('<h3>', '</h3>');
|
|
|
67 |
$this->donnees['corps'] = str_replace($a_remplacer, "===", $this->donnees['corps']);
|
|
|
68 |
}
|
|
|
69 |
|
|
|
70 |
private function obtenirCorpsPlain() {
|
|
|
71 |
$a_enlever = array(Chr(10).'=', '='.Chr(10), Chr(10).''.Chr(10));
|
|
|
72 |
$this->donnees['corps'] = str_replace($a_enlever, '', $this->donnees['corps']);
|
|
|
73 |
$this->donnees['corps'] = str_replace(Chr(10), '<br />', $this->donnees['corps']);
|
|
|
74 |
}
|
|
|
75 |
|
|
|
76 |
private function obtenirTitreHtml() {
|
|
|
77 |
$a_remplacer = array('<b>', '</b>', '(<br />', '<br />)');
|
|
|
78 |
$this->donnees['titre'] = str_replace($a_remplacer, '<br />', $this->donnees['titre']);
|
|
|
79 |
|
|
|
80 |
$a_enlever = array(Chr(10).'<br />', '<br />'.Chr(10), Chr(10).''.Chr(10), '<br />'.Chr(10).'<br />'.Chr(10));
|
|
|
81 |
$this->donnees['titre'] = str_replace($a_enlever, '', $this->donnees['titre']);
|
|
|
82 |
|
|
|
83 |
$this->separer_NomCommun_NomSci();
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
private function separer_NomCommun_NomSci() {
|
|
|
87 |
$this->donnees['titre'] = str_replace('<br />', '::', $this->donnees['titre']);
|
|
|
88 |
$this->donnees['titre'] = preg_split("/::/", $this->donnees['titre'], -1, PREG_SPLIT_NO_EMPTY);
|
1163 |
raphael |
89 |
$this->donnees['nom-commun'] = $this->donnees['titre'][0]; // sauf erreur ? parser le wikini serait peut-être plus adapté
|
990 |
isa |
90 |
}
|
|
|
91 |
|
|
|
92 |
private function obtenirTitrePlain() {
|
|
|
93 |
$this->donnees['titre'] = str_replace('**', '<br />', $this->donnees['titre']);
|
|
|
94 |
|
|
|
95 |
$a_remplacer = array('(<br />', '<br />)', '<br /><br />');
|
|
|
96 |
$this->donnees['titre'] = str_replace($a_remplacer, '<br />', $this->donnees['titre']);
|
|
|
97 |
|
|
|
98 |
$this->separer_NomCommun_NomSci();
|
|
|
99 |
$this->separer_NomSci_NomAuteur();
|
|
|
100 |
}
|
|
|
101 |
|
|
|
102 |
private function separer_NomSci_NomAuteur() {
|
|
|
103 |
$nom_sci = str_replace('//', '::', $this->donnees['titre'][1]);
|
|
|
104 |
$nom_sci = preg_split("/::/", $nom_sci, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
105 |
$this->donnees['titre'][1] = "<i>".$nom_sci[0]."</i> ".$nom_sci[1];
|
|
|
106 |
}
|
|
|
107 |
}
|
|
|
108 |
?>
|