50 |
aurelien |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
*
|
|
|
5 |
* @category wiki/smart'Flore
|
|
|
6 |
* @package Scripts
|
|
|
7 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
|
|
8 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
9 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
10 |
* @copyright 1999-2015 Tela Botanica <accueil@tela-botanica.org>
|
|
|
11 |
*/
|
|
|
12 |
|
|
|
13 |
class MigrationSmartFlore extends Script {
|
|
|
14 |
|
|
|
15 |
protected $mode_verbeux = false;
|
|
|
16 |
|
|
|
17 |
// Paramêtres autorisées lors de l'appel au script en ligne de commande
|
|
|
18 |
protected $parametres_autorises = array(
|
|
|
19 |
'-n' => array(true, true, 'Nom du fichier ou du dossier à traiter'));
|
|
|
20 |
|
|
|
21 |
public function executer() {
|
|
|
22 |
// L'obligation de mettre un paramètre -a donnée par le framework
|
|
|
23 |
// n'a pas de sens, ça ne doit pas être obligatoire !!!
|
|
|
24 |
$cmd = $this->getParametre('a');
|
|
|
25 |
$this->mode_verbeux = $this->getParametre('v');
|
|
|
26 |
|
|
|
27 |
switch($cmd) {
|
|
|
28 |
case 'tous' :
|
|
|
29 |
$this->migrerFormatSmartFlore();
|
|
|
30 |
break;
|
|
|
31 |
|
|
|
32 |
default:
|
|
|
33 |
}
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
protected function migrerFormatSmartFlore() {
|
|
|
37 |
|
60 |
mathias |
38 |
// sections "souples" - attention, ne seront pas "quotées" mais interprétées comme morceaux de regexp directement !
|
61 |
mathias |
39 |
$sections = array("Fiche simplifi.+e Smart.+flore", "Introduction","Comment la reconna.+tre.+","Son histoire","Ses usages",".+(?:cologie|habitat).+","Ce qu.+il faut savoir.+","Sources");
|
50 |
aurelien |
40 |
$nouvelles_sections = array(
|
60 |
mathias |
41 |
"Description" => array("Introduction","Comment la reconna.+tre.+","Son histoire"),
|
|
|
42 |
"Usages" => array("Ses usages", "Ce qu.+il faut savoir.+"),
|
61 |
mathias |
43 |
"Écologie & habitat" => array(".+(?:cologie|habitat).+"), // groupe non-capturant avec (?:a|b)
|
60 |
mathias |
44 |
"Sources" => array("Sources")
|
50 |
aurelien |
45 |
);
|
|
|
46 |
|
|
|
47 |
$where_section = 'body NOT LIKE "';
|
|
|
48 |
$nouvelles_sections_k = array_keys($nouvelles_sections);
|
|
|
49 |
foreach($nouvelles_sections_k as $nouvelle_section_k) {
|
|
|
50 |
// Encore et toujours de l'iso (d'ailleurs si on ne fait pas de conversion la requete se comporte
|
|
|
51 |
// très bizarrement et renvoie des résultats en trop une fois le script déjà exécuté)
|
|
|
52 |
$where_section .= '%'.addslashes(ManipulationPage::convertirTexteAppliVersEncodageWiki($nouvelle_section_k)).'%';
|
|
|
53 |
}
|
|
|
54 |
$where_section = $where_section.'"';
|
|
|
55 |
|
|
|
56 |
$this->wiki = Registre::get('wikiApi');
|
|
|
57 |
$requete = 'SELECT * FROM '.$this->wiki->GetConfigValue('table_prefix').'pages WHERE latest = "Y" '.
|
|
|
58 |
'AND tag LIKE "SmartFlore%nt%" '.
|
|
|
59 |
'AND '.$where_section;
|
|
|
60 |
|
|
|
61 |
$pages = $this->wiki->LoadAll($requete);
|
|
|
62 |
$pages_fmt = array();
|
|
|
63 |
echo "Nombre de pages à migrer : ".count($pages)."\n";
|
|
|
64 |
|
|
|
65 |
if(!empty($pages)) {
|
|
|
66 |
$manipulation = new ManipulationPage($this->wiki, $pages[0]);
|
|
|
67 |
echo "Migration en cours... \n";
|
|
|
68 |
|
|
|
69 |
foreach($pages as &$page) {
|
|
|
70 |
|
|
|
71 |
$page_fmt = array();
|
|
|
72 |
|
|
|
73 |
// On capte l'entête de la page situé avant la première section pour le recopier
|
|
|
74 |
// dans les nouvelles pages (il contient les backlinks et les noms)
|
|
|
75 |
$delim_entete = strpos($page["body"], "==== Introduction ====");
|
|
|
76 |
if($delim_entete === false) {
|
|
|
77 |
$delim_entete = strpos($page["body"], "====Introduction====");
|
|
|
78 |
}
|
|
|
79 |
// Attention l'entete est en iso, il faut le convertir manuellement
|
|
|
80 |
$entete = $manipulation->convertirTexteWikiVersEncodageAppli(substr($page["body"], 0, $delim_entete));
|
|
|
81 |
|
|
|
82 |
// Par contre ici consulterPageSectionsFormatees est gentil et fait la conversion vers l'encodage de l'appli pour nous
|
|
|
83 |
$manipulation->consulterPageSectionsFormatees($page, implode(',', $sections));
|
|
|
84 |
|
|
|
85 |
// Fusion des anciennes sections dans les nouvelles
|
|
|
86 |
foreach($nouvelles_sections as $nom_nouvelle_section => $sections_a_fusionner) {
|
|
|
87 |
$page_fmt[$nom_nouvelle_section] = '===='.$nom_nouvelle_section.'====';
|
|
|
88 |
foreach($sections_a_fusionner as $section_a_fusionner) {
|
|
|
89 |
if(isset($page['sections'][$section_a_fusionner])) {
|
|
|
90 |
$page_fmt[$nom_nouvelle_section] .= $page['sections'][$section_a_fusionner];
|
|
|
91 |
}
|
|
|
92 |
}
|
|
|
93 |
}
|
|
|
94 |
|
|
|
95 |
$corps = $entete."\n".implode("\n", $page_fmt);
|
|
|
96 |
$manipulation->ecrirePage($page["tag"], $corps);
|
|
|
97 |
}
|
|
|
98 |
}
|
|
|
99 |
echo "Migration effectuée \n";
|
|
|
100 |
// Le exit est là pour empecher l'affichage d'être pollué par les erreurs
|
|
|
101 |
// dûes à certaines antédiluviennités de wikini
|
|
|
102 |
exit;
|
|
|
103 |
}
|
|
|
104 |
|
|
|
105 |
// http://stackoverflow.com/questions/834303/startswith-and-endswith-functions-in-php
|
|
|
106 |
protected function endsWith($haystack, $needle) {
|
|
|
107 |
// search forward starting from end minus needle length characters
|
|
|
108 |
return $needle === "" || (($temp = strlen($haystack) - strlen($needle)) >= 0 && strpos($haystack, $needle, $temp) !== FALSE);
|
|
|
109 |
}
|
|
|
110 |
}
|