64 |
aurelien |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Librairie de consultation d'une page wiki
|
|
|
5 |
*
|
|
|
6 |
* @category php 5.2
|
|
|
7 |
* @package wapi
|
|
|
8 |
* @author Aurélien Peronnet < aurelien@tela-botanica.org>
|
|
|
9 |
* @copyright Copyright (c) 2015, Tela Botanica (accueil@tela-botanica.org)
|
|
|
10 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
12 |
* @version $Id$
|
|
|
13 |
*/
|
|
|
14 |
class ManipulationPage {
|
|
|
15 |
|
|
|
16 |
private $wiki = null;
|
|
|
17 |
private $pageNom = null;
|
|
|
18 |
private $section = null;
|
|
|
19 |
private $creerPage = false;
|
|
|
20 |
private $templateDefaut = null;
|
|
|
21 |
|
|
|
22 |
public function __construct($wiki, $pageNom) {
|
|
|
23 |
// Cette construction bizarre sert à éviter des bugs issus du comportement de wikini
|
|
|
24 |
$this->wiki = $wiki;
|
|
|
25 |
global $wiki;
|
|
|
26 |
$wiki = $this->wiki;
|
|
|
27 |
|
|
|
28 |
$this->pageNom = $pageNom;
|
|
|
29 |
$this->wiki->setPageCourante($this->pageNom);
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
public function consulterPage($page, $section = null) {
|
|
|
33 |
$this->wiki->setPageCourante($page);
|
|
|
34 |
$page = $this->wiki->LoadPage($page);
|
|
|
35 |
|
|
|
36 |
if ($page != null) {
|
|
|
37 |
$this->consulterPageSectionsFormatees($page, $section);
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
return $page;
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
public function consulterPageSectionsFormatees(&$page, $section) {
|
|
|
44 |
// attention les wikis sont souvent en ISO !
|
|
|
45 |
$page["body"] = $this->convertirTexteWikiVersEncodageAppli($page['body']);
|
|
|
46 |
if($section != null) {
|
|
|
47 |
$sections_tab = explode(',', $section);
|
|
|
48 |
if(count($sections_tab) > 1) {
|
|
|
49 |
foreach($sections_tab as $section_t) {
|
|
|
50 |
$page["sections"][$section_t] = $this->decouperPageSection($page["body"], $section_t);
|
|
|
51 |
}
|
|
|
52 |
} else {
|
|
|
53 |
$page["body"] = $this->decouperPageSection($page["body"], $section);
|
|
|
54 |
}
|
|
|
55 |
}
|
|
|
56 |
}
|
|
|
57 |
|
|
|
58 |
public function decouperPageSection($contenu_page, $section) {
|
|
|
59 |
$section_retour = '';
|
|
|
60 |
if (is_numeric($section)) {
|
|
|
61 |
$section_retour = $this->getSectionParNumero($contenu_page, $section);
|
|
|
62 |
} else {
|
|
|
63 |
$section_retour = $this->getSectionParTitre($contenu_page, $section, false);
|
|
|
64 |
}
|
|
|
65 |
return $section_retour;
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
public function getSectionParNumero($page, $num) {
|
|
|
69 |
preg_match_all('/(=[=]+[ ]*)(.[.^=]*)+[ ]*=[=]+[.]*/i', $page, $sections, PREG_OFFSET_CAPTURE);
|
|
|
70 |
$sectionTxt = '';
|
|
|
71 |
$debut_section = 0;
|
|
|
72 |
$lg_page = strlen($page);
|
|
|
73 |
$fin_section = $lg_page;
|
|
|
74 |
|
|
|
75 |
if ($num <= count($sections[1]) && $num > 0) {
|
|
|
76 |
|
|
|
77 |
$debut_section = $sections[1][$num - 1][1];
|
|
|
78 |
$separateur = trim($sections[1][$num - 1][0]);
|
|
|
79 |
$separateur_trouve = false;
|
|
|
80 |
|
|
|
81 |
for ($i = $num; $i < count($sections[1]); $i++) {
|
|
|
82 |
$fin_section = $sections[1][$i][1];
|
|
|
83 |
if($separateur == trim($sections[1][$i][0])) {
|
|
|
84 |
$separateur_trouve = true;
|
|
|
85 |
break;
|
|
|
86 |
}
|
|
|
87 |
}
|
|
|
88 |
|
|
|
89 |
$fin_section = $separateur_trouve ? $fin_section : $lg_page;
|
|
|
90 |
$sectionTxt = substr($page, $debut_section, $fin_section - $debut_section);
|
|
|
91 |
|
|
|
92 |
} else {
|
|
|
93 |
$sectionTxt = '';
|
|
|
94 |
}
|
|
|
95 |
|
|
|
96 |
return $sectionTxt;
|
|
|
97 |
}
|
|
|
98 |
|
|
|
99 |
public function getSectionParTitre($page, $titre, $inclure_titre = false) {
|
|
|
100 |
$section = '';
|
|
|
101 |
$reg_exp = '/((=[=]+)[ ]*'.preg_quote(trim($titre), '/').'[ ]*=[=]+)[.]*/i';
|
|
|
102 |
$match = preg_split($reg_exp, $page, 2, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
|
|
|
103 |
if (count($match) > 3) {
|
|
|
104 |
$section = explode(trim($match[2]), $match[3], 2);
|
|
|
105 |
$section = $section[0];
|
|
|
106 |
$section = ($inclure_titre) ? $match[1].$section : $section;
|
|
|
107 |
} elseif (count($match) == 3) {
|
|
|
108 |
$section = explode(trim($match[1]), $match[2], 2);
|
|
|
109 |
$section = $section[0];
|
|
|
110 |
$section = ($inclure_titre) ? $match[0].$section : $section;
|
|
|
111 |
} else {
|
|
|
112 |
$section = "";
|
|
|
113 |
}
|
|
|
114 |
|
|
|
115 |
return $section;
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
public function creerPageAPartirTemplate($tag_page_a_creer, $tag_template) {
|
|
|
119 |
$page_template = $this->consulterPage($tag_template);
|
|
|
120 |
$corps_nouvelle_page = ($page_template != null) ? $page_template['body'] : '';
|
|
|
121 |
// si le template n'existe pas, la page créée sera vide
|
|
|
122 |
$ecriture = $this->ecrirePage($tag_page_a_creer, $corps_nouvelle_page);
|
|
|
123 |
|
|
|
124 |
return $ecriture;
|
|
|
125 |
}
|
|
|
126 |
|
|
|
127 |
/**
|
|
|
128 |
*
|
|
|
129 |
* Si la section demandée existe dans la page, renvoie un tableau contenant le numéro de caractère de
|
|
|
130 |
* début de la section, après son titre, ainsi que la longeur du titre
|
|
|
131 |
* @param string $titre de la section
|
|
|
132 |
* @param string $page contenu de la page wiki
|
|
|
133 |
* @return tableau associatif tel que décrit ici
|
|
|
134 |
*/
|
|
|
135 |
public function getInformationsPositionSection($titre, $page) {
|
|
|
136 |
|
|
|
137 |
preg_match_all('/(=[=]+[ ]*'.preg_quote(trim($titre), '/').'[ ]*=[=]+[.]*)/i', $page, $sections, PREG_OFFSET_CAPTURE);
|
|
|
138 |
$longueur_titre = 0;
|
|
|
139 |
$debut_section_apres_titre = 0;
|
|
|
140 |
|
|
|
141 |
if (count($sections) > 0 && is_array($sections[0]) && count($sections[0][0]) >= 2) {
|
|
|
142 |
$longueur_titre = mb_strlen($sections[0][0][0]);
|
|
|
143 |
$debut_section_apres_titre = $sections[0][0][1] + $longueur_titre;
|
|
|
144 |
}
|
|
|
145 |
|
|
|
146 |
// ATTENTION : début contient le numéro du caractere de début de la section, après le titre
|
|
|
147 |
$infos = array('debut' => $debut_section_apres_titre,
|
|
|
148 |
'longueur_titre' => $longueur_titre
|
|
|
149 |
);
|
|
|
150 |
|
|
|
151 |
return $infos;
|
|
|
152 |
}
|
|
|
153 |
|
|
|
154 |
public function remplacerSection($titre_section, $section_remplacement, $corps) {
|
|
|
155 |
|
|
|
156 |
// insertion d'un saut de ligne pour empêcher de casser le titre, lorsque le titre
|
|
|
157 |
// suivant vient directement après la section, sans saut de ligne ni espace
|
|
|
158 |
$section_remplacement = "\n".$section_remplacement."\n";
|
|
|
159 |
$section_page_originale = $this->getSectionParTitre($corps, $titre_section, true);
|
|
|
160 |
$infos_section = $this->getInformationsPositionSection($titre_section, $corps);
|
|
|
161 |
$nb_caracteres_a_remplacer = mb_strlen($section_page_originale) - $infos_section['longueur_titre'];
|
|
|
162 |
|
|
|
163 |
$nouveau_contenu = substr_replace($corps, $section_remplacement, $infos_section['debut'], $nb_caracteres_a_remplacer);
|
|
|
164 |
|
|
|
165 |
return $nouveau_contenu;
|
|
|
166 |
}
|
|
|
167 |
|
|
|
168 |
public function ecrirePage($nom_page, $contenu) {
|
|
|
169 |
|
|
|
170 |
$texte_encode = $this->convertirTexteAppliVersEncodageWiki($contenu);
|
|
|
171 |
$ecriture = $this->wiki->SavePage($nom_page, $texte_encode, "", true);
|
|
|
172 |
|
|
|
173 |
// 0 signifie écriture réussie et 1 pas autorisé (donc échec)
|
|
|
174 |
// on ramène donc ça à une valeur de true/false
|
|
|
175 |
$ecriture = ($ecriture == 0) ? true : false;
|
|
|
176 |
|
|
|
177 |
return $ecriture;
|
|
|
178 |
}
|
|
|
179 |
|
|
|
180 |
public static function convertirTexteWikiVersEncodageAppli($texte) {
|
|
|
181 |
if (Config::get('encodage_appli') != Config::get('encodage_wiki')) {
|
|
|
182 |
$texte = mb_convert_encoding($texte,Config::get('encodage_appli'),Config::get('encodage_wiki'));
|
|
|
183 |
}
|
|
|
184 |
return $texte;
|
|
|
185 |
}
|
|
|
186 |
|
|
|
187 |
public static function convertirTexteAppliVersEncodageWiki($texte) {
|
|
|
188 |
if (Config::get('encodage_appli') != Config::get('encodage_wiki')) {
|
|
|
189 |
$texte = mb_convert_encoding($texte,Config::get('encodage_wiki'),Config::get('encodage_appli'));
|
|
|
190 |
}
|
|
|
191 |
return $texte;
|
|
|
192 |
}
|
|
|
193 |
}
|
|
|
194 |
?>
|