46 |
jpm |
1 |
<?php
|
|
|
2 |
// Encodage : UTF-8
|
|
|
3 |
// +-------------------------------------------------------------------------------------------------------------------+
|
|
|
4 |
/**
|
|
|
5 |
* Versionnage de référentiels de nomenclature et taxonomie
|
|
|
6 |
*
|
|
|
7 |
* Description : classe permettant de versionner les référentiels selon le manuel technique
|
|
|
8 |
* Utilisation : php script.php versionnage -p bdnff -a tout
|
|
|
9 |
*
|
|
|
10 |
//Auteur original :
|
|
|
11 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
12 |
* @copyright Tela-Botanica 1999-2010
|
|
|
13 |
* @link http://www.tela-botanica.org/wikini/RTaxMethodo/wakka.php?wiki=MaNuel
|
|
|
14 |
* @licence GPL v3 & CeCILL v2
|
|
|
15 |
* @version $Id$
|
|
|
16 |
*/
|
|
|
17 |
// +-------------------------------------------------------------------------------------------------------------------+
|
195 |
jpm |
18 |
// TODO : lors de la génération de la version 2 de la BDTFX tester les diff! Il se peut que la mémoire soit dépassée.
|
46 |
jpm |
19 |
class Versionnage extends ScriptCommande {
|
|
|
20 |
|
|
|
21 |
const SCRIPT_NOM = 'versionnage';
|
305 |
delphine |
22 |
const MANUEL_VERSION = '4.4';
|
46 |
jpm |
23 |
|
|
|
24 |
private $projet = null;
|
|
|
25 |
private $traitement = null;
|
51 |
jpm |
26 |
private $meta = null;
|
55 |
jpm |
27 |
private $version_courante = null;
|
49 |
jpm |
28 |
private $messages = null;
|
46 |
jpm |
29 |
private $manuel = null;
|
55 |
jpm |
30 |
private $manuel_nom = null;
|
|
|
31 |
private $manuel_chemin = null;
|
|
|
32 |
private $zip_chemin_dossier = null;
|
|
|
33 |
private $zip_chemin_fichier = null;
|
65 |
jpm |
34 |
private $zip_chemin_dossier_partiel = null;
|
|
|
35 |
private $zip_chemin_fichier_partiel = null;
|
55 |
jpm |
36 |
|
51 |
jpm |
37 |
private $noms = null;
|
|
|
38 |
private $noms_precedents = null;
|
216 |
jpm |
39 |
private $noms_supprimes = null;
|
51 |
jpm |
40 |
private $noms_stat = null;
|
214 |
jpm |
41 |
private $noms_stat_partiel = null;
|
51 |
jpm |
42 |
private $champs_ordre = null;
|
|
|
43 |
private $champs_nom = null;
|
65 |
jpm |
44 |
private $champs_nom_partiel = null;
|
216 |
jpm |
45 |
private $champs_courants = null;
|
65 |
jpm |
46 |
private $champs_diff = null;
|
|
|
47 |
private $diff_champs_nom = null;
|
51 |
jpm |
48 |
private $diff_modif_types = null;
|
|
|
49 |
private $signature_md5 = null;
|
65 |
jpm |
50 |
private $signature_md5_partiel = null;
|
217 |
jpm |
51 |
private $derniere_meta = null;
|
|
|
52 |
private $rangs_bdnt_taxref = null;
|
|
|
53 |
private $statuts_bdnt_taxref = null;
|
46 |
jpm |
54 |
|
|
|
55 |
private $resultatDao = null;
|
|
|
56 |
private $traitementDao = null;
|
51 |
jpm |
57 |
private $metaDao = null;
|
46 |
jpm |
58 |
private $tableStructureDao = null;
|
|
|
59 |
private $referentielDao = null;
|
|
|
60 |
|
|
|
61 |
public function executer() {
|
|
|
62 |
// Récupération du dernier traitement demandé
|
|
|
63 |
$this->traitementDao = new TraitementDao();
|
142 |
delphine |
64 |
$this->traitement = $this->traitementDao->getDernierTraitement('tout', self::SCRIPT_NOM);
|
46 |
jpm |
65 |
if (isset($this->traitement)) {
|
142 |
delphine |
66 |
$this->projet = $this->traitement['referentiel_code']; // Récupération du nom de projet
|
46 |
jpm |
67 |
Debug::printr($this->traitement);
|
|
|
68 |
// Écriture de la date de début du traitement
|
|
|
69 |
Debug::printr('Debute:'.$this->traitementDao->debuterTraitement($this->traitement['id_traitement']));
|
|
|
70 |
|
|
|
71 |
// Nettoyage des traitements obsolètes
|
|
|
72 |
$traitements_obsoletes = $this->traitementDao->getTraitementsObsoletes($this->projet, self::SCRIPT_NOM);
|
|
|
73 |
if (isset($traitements_obsoletes)) {
|
|
|
74 |
Debug::printr('Supp. obsoletes:'.$this->traitementDao->supprimer($traitements_obsoletes));
|
|
|
75 |
}
|
|
|
76 |
|
|
|
77 |
// Lancement du test demandé
|
|
|
78 |
$cmd = $this->getParam('a');
|
|
|
79 |
switch ($cmd) {
|
|
|
80 |
case 'tout' :
|
55 |
jpm |
81 |
$this->initialiserScript();
|
51 |
jpm |
82 |
Debug::printr('Départ lancement versionnage:');
|
46 |
jpm |
83 |
$this->lancerVersionnage();
|
|
|
84 |
break;
|
|
|
85 |
default :
|
|
|
86 |
$this->traiterErreur('Erreur : la commande "%s" n\'existe pas!', array($cmd));
|
|
|
87 |
}
|
|
|
88 |
// Écriture de la date de fin du traitement
|
|
|
89 |
Debug::printr('Termine:'.$this->traitementDao->terminerTraitement($this->traitement['id_traitement']));
|
|
|
90 |
}
|
|
|
91 |
}
|
55 |
jpm |
92 |
|
|
|
93 |
private function initialiserScript() {
|
|
|
94 |
$this->metaDao = new MetaDao();
|
|
|
95 |
$this->resultatDao = new ResultatDao();
|
|
|
96 |
$this->referentielDao = new ReferentielDao();
|
|
|
97 |
|
|
|
98 |
$this->manuel_nom = 'mtpr_v'.str_replace('.', '_', self::MANUEL_VERSION).'.pdf';
|
|
|
99 |
$this->manuel_chemin = Config::get('chemin_appli').DS.'..'.DS.'configurations'.DS;
|
|
|
100 |
|
|
|
101 |
$manuel_config_nom = 'referentiel_v'.self::MANUEL_VERSION.'.ini';
|
|
|
102 |
$this->manuel = parse_ini_file($this->manuel_chemin.$manuel_config_nom);
|
|
|
103 |
}
|
|
|
104 |
|
46 |
jpm |
105 |
public function lancerVersionnage() {
|
51 |
jpm |
106 |
$this->chargerTraitementParametre();
|
55 |
jpm |
107 |
$this->initialiserNomVersionCOurante();
|
|
|
108 |
$this->initialiserCheminsZip();
|
65 |
jpm |
109 |
$this->creerDossiersZip();
|
51 |
jpm |
110 |
$this->archiver();
|
|
|
111 |
$this->chargerNomsATraiter();
|
|
|
112 |
$this->analyserNomsATraiter();
|
|
|
113 |
$this->creerFichiers();
|
55 |
jpm |
114 |
$this->nettoyerFichiers();
|
51 |
jpm |
115 |
$this->traiterMessages();
|
|
|
116 |
}
|
47 |
jpm |
117 |
|
51 |
jpm |
118 |
private function chargerTraitementParametre() {
|
|
|
119 |
$this->meta = unserialize($this->traitement['script_parametres']);
|
46 |
jpm |
120 |
}
|
|
|
121 |
|
51 |
jpm |
122 |
private function archiver() {
|
|
|
123 |
$ok = $this->referentielDao->archiver($this->projet, $this->meta['version']);
|
|
|
124 |
if ($ok) {
|
|
|
125 |
$m = "L'archivage de la version '{$this->meta['version']}' du référentiel '{$this->projet}' a réussi";
|
|
|
126 |
$this->ajouterMessage($m);
|
|
|
127 |
} else {
|
|
|
128 |
$m = "L'archivage de la version '{$this->meta['version']}' du référentiel '{$this->projet}' a échoué";
|
|
|
129 |
$this->ajouterMessage($m);
|
|
|
130 |
}
|
|
|
131 |
}
|
|
|
132 |
|
55 |
jpm |
133 |
private function initialiserNomVersionCOurante() {
|
|
|
134 |
$this->version_courante = strtolower($this->projet).'_v'.str_replace('.', '_', $this->meta['version']);
|
|
|
135 |
Debug::printr("Nom archive courante :".$this->version_courante);
|
|
|
136 |
}
|
|
|
137 |
|
|
|
138 |
private function initialiserCheminsZip() {
|
|
|
139 |
$this->zip_chemin_dossier = Config::get('chemin_referentiel_zip').$this->version_courante.DIRECTORY_SEPARATOR;
|
|
|
140 |
$this->zip_chemin_fichier = Config::get('chemin_referentiel_zip').$this->version_courante.'.zip';
|
217 |
jpm |
141 |
$this->zip_chemin_dossier_partiel = Config::get('chemin_referentiel_zip').$this->version_courante.$this->manuel['suffixe_partiel'].DIRECTORY_SEPARATOR;
|
|
|
142 |
$this->zip_chemin_fichier_partiel = Config::get('chemin_referentiel_zip').$this->version_courante.$this->manuel['suffixe_partiel'].'.zip';
|
55 |
jpm |
143 |
}
|
|
|
144 |
|
65 |
jpm |
145 |
private function creerDossiersZip() {
|
55 |
jpm |
146 |
$recursivite = true;
|
|
|
147 |
if (mkdir($this->zip_chemin_dossier, 0777, $recursivite) === false) {
|
|
|
148 |
$this->ajouterMessage("La création du dossier '$this->zip_chemin_dossier' devant contenir les fichiers a échouée.");
|
|
|
149 |
}
|
65 |
jpm |
150 |
if (mkdir($this->zip_chemin_dossier_partiel, 0777, $recursivite) === false) {
|
|
|
151 |
$this->ajouterMessage("La création du dossier '$this->zip_chemin_dossier_partiel' devant contenir les fichiers partiels a échouée.");
|
|
|
152 |
}
|
55 |
jpm |
153 |
}
|
|
|
154 |
|
51 |
jpm |
155 |
private function chargerNomsATraiter() {
|
55 |
jpm |
156 |
$this->noms = $this->referentielDao->getTout($this->version_courante);
|
51 |
jpm |
157 |
}
|
|
|
158 |
|
|
|
159 |
private function analyserNomsATraiter() {
|
|
|
160 |
$this->noms_stat['combinaison'] = $this->getNombreCombinaison();
|
|
|
161 |
$this->noms_stat['taxon'] = $this->getNombreTaxon();
|
|
|
162 |
Debug::printr("Stats :".print_r($this->noms_stat, true));
|
214 |
jpm |
163 |
$this->noms_stat_partiel = $this->getStatsPartiel();
|
|
|
164 |
Debug::printr("Stats partiel:".print_r($this->noms_stat_partiel, true));
|
51 |
jpm |
165 |
}
|
|
|
166 |
|
|
|
167 |
private function getNombreCombinaison() {
|
|
|
168 |
return count($this->noms);
|
|
|
169 |
}
|
|
|
170 |
|
|
|
171 |
private function getNombreTaxon() {
|
|
|
172 |
$nbre = 0;
|
|
|
173 |
foreach ($this->noms as $nom) {
|
|
|
174 |
if ($nom['num_nom_retenu'] == $nom['num_nom']) {
|
|
|
175 |
$nbre++;
|
|
|
176 |
}
|
|
|
177 |
}
|
|
|
178 |
return $nbre;
|
|
|
179 |
}
|
|
|
180 |
|
214 |
jpm |
181 |
private function getStatsPartiel() {
|
|
|
182 |
$stat['combinaison'] = 0;
|
|
|
183 |
$stat['taxon'] = 0;
|
|
|
184 |
foreach ($this->noms as $nom) {
|
|
|
185 |
if ($nom['exclure_taxref'] != '1') {
|
|
|
186 |
$stat['combinaison']++;
|
|
|
187 |
if ($nom['num_nom_retenu'] == $nom['num_nom']) {
|
|
|
188 |
$stat['taxon']++;
|
|
|
189 |
}
|
|
|
190 |
}
|
|
|
191 |
}
|
|
|
192 |
return $stat;
|
|
|
193 |
}
|
|
|
194 |
|
51 |
jpm |
195 |
private function creerFichiers() {
|
|
|
196 |
// Respecter l'ordre de traitement : BDNT puis DIFF puis META
|
65 |
jpm |
197 |
$donnees =& $this->creerFichierBdnt();
|
|
|
198 |
$this->creerFichierBdntPartiel($donnees);
|
|
|
199 |
$donnees = null;
|
|
|
200 |
$donnees =& $this->creerFichierDiff();
|
|
|
201 |
$this->creerFichierDiffPartiel($donnees);
|
|
|
202 |
$donnees = null;
|
|
|
203 |
$donnees =& $this->creerFichierMeta();
|
|
|
204 |
$this->creerFichierMetaPartiel($donnees);
|
|
|
205 |
$donnees = null;
|
55 |
jpm |
206 |
$this->nettoyerMemoire();
|
|
|
207 |
$this->copierManuel();
|
65 |
jpm |
208 |
$this->creerFichiersZip();
|
51 |
jpm |
209 |
}
|
|
|
210 |
|
|
|
211 |
private function creerFichierBdnt() {
|
54 |
jpm |
212 |
reset($this->noms);
|
|
|
213 |
Debug::printr("Element courrant du tableau des noms : ".count($this->noms).'-'.print_r(current($this->noms),true));
|
|
|
214 |
|
51 |
jpm |
215 |
$this->determinerOrdreDesChamps();
|
|
|
216 |
$this->definirNomDesChamps();
|
65 |
jpm |
217 |
$this->definirNomDesChampsDiff();
|
46 |
jpm |
218 |
|
|
|
219 |
$donnees = array();
|
51 |
jpm |
220 |
$donnees['champs'] = $this->champs_nom;
|
195 |
jpm |
221 |
|
217 |
jpm |
222 |
$fichier_nom = $this->getBaseNomFichier().$this->manuel['suffixe_bdnt'].$this->manuel['ext_fichier'];
|
195 |
jpm |
223 |
$fichier_chemin = $this->zip_chemin_dossier.$fichier_nom;
|
|
|
224 |
$bdnt_tsv_entete = $this->getVue('versionnage/squelettes/bdnt_entete', array('champs' => $donnees['champs']), '.tpl.tsv');
|
|
|
225 |
$this->ecrireFichier($fichier_chemin, $bdnt_tsv_entete);
|
|
|
226 |
|
65 |
jpm |
227 |
foreach ($this->noms as $id => &$nom) {
|
46 |
jpm |
228 |
$infos = array();
|
65 |
jpm |
229 |
foreach ($this->champs_ordre as $champ => $ordre) {
|
145 |
delphine |
230 |
if (array_key_exists($champ, $nom)) {
|
65 |
jpm |
231 |
$infos[$champ] = trim($nom[$champ]);
|
46 |
jpm |
232 |
} else {
|
65 |
jpm |
233 |
$e = "Le champ '$champ' n'a pas été trouvé dans les données du nom : $id.";
|
49 |
jpm |
234 |
$this->ajouterMessage($e);
|
46 |
jpm |
235 |
}
|
|
|
236 |
}
|
58 |
jpm |
237 |
$infos = $this->remplacerTabulation($infos);
|
|
|
238 |
$infos = $this->remplacerSautsDeLigne($infos);
|
195 |
jpm |
239 |
$this->noms[$id] = $infos;
|
|
|
240 |
|
|
|
241 |
$bdnt_tsv_ligne = $this->getVue('versionnage/squelettes/bdnt_ligne', array('nom_infos' => $infos), '.tpl.tsv');
|
|
|
242 |
$this->ajouterAuFichier($fichier_chemin, $bdnt_tsv_ligne);
|
47 |
jpm |
243 |
}
|
195 |
jpm |
244 |
$this->ecrireComplementFichierBdnt($fichier_chemin);
|
65 |
jpm |
245 |
return $donnees;
|
46 |
jpm |
246 |
}
|
|
|
247 |
|
51 |
jpm |
248 |
private function determinerOrdreDesChamps() {
|
46 |
jpm |
249 |
$champs_ordre = explode(',', $this->manuel['champs']);
|
|
|
250 |
$champs_ordre = array_flip($champs_ordre);
|
51 |
jpm |
251 |
$nom_courant = current($this->noms);
|
|
|
252 |
$champs_ordre = $this->attribuerOrdreChampsSupplémentaires($champs_ordre, $nom_courant);
|
46 |
jpm |
253 |
asort($champs_ordre);
|
51 |
jpm |
254 |
$this->champs_ordre = $champs_ordre;
|
54 |
jpm |
255 |
Debug::printr("Ordre des champs : ".print_r($this->champs_ordre,true));
|
46 |
jpm |
256 |
}
|
|
|
257 |
|
|
|
258 |
private function attribuerOrdreChampsSupplémentaires($champs_ordre, $nom) {
|
|
|
259 |
foreach ($nom as $champ => $info) {
|
|
|
260 |
if (!isset($champs_ordre[$champ])) {
|
|
|
261 |
$champs_ordre[$champ] = count($champs_ordre);
|
|
|
262 |
}
|
|
|
263 |
}
|
|
|
264 |
return $champs_ordre;
|
|
|
265 |
}
|
|
|
266 |
|
65 |
jpm |
267 |
private function definirNomDesChamps() {
|
|
|
268 |
$this->champs_nom = array_flip($this->champs_ordre);
|
|
|
269 |
}
|
|
|
270 |
|
|
|
271 |
private function definirNomDesChampsDiff() {
|
|
|
272 |
$this->champs_diff = explode(',', $this->manuel['champs_diff']);
|
|
|
273 |
$this->diff_champs_nom = array_merge($this->champs_nom, $this->champs_diff);
|
|
|
274 |
}
|
|
|
275 |
|
49 |
jpm |
276 |
private function ajouterMessage($message) {
|
46 |
jpm |
277 |
$titre = self::SCRIPT_NOM.' #'.$this->traitement['id_traitement'];
|
54 |
jpm |
278 |
$this->messages[] = array('message' => $message, 'resultat' => true);
|
46 |
jpm |
279 |
}
|
|
|
280 |
|
65 |
jpm |
281 |
private function remplacerTabulation($doc) {
|
|
|
282 |
if (is_string($doc)) {
|
|
|
283 |
$doc = str_replace("\t", ' ', $doc);
|
|
|
284 |
} else if (is_array($doc) && count($doc) > 0) {
|
|
|
285 |
foreach ($doc as $cle => $valeur) {
|
|
|
286 |
$doc[$cle] = $this->remplacerTabulation($valeur);
|
|
|
287 |
}
|
|
|
288 |
}
|
|
|
289 |
return $doc;
|
|
|
290 |
}
|
|
|
291 |
|
|
|
292 |
private function remplacerSautsDeLigne($doc) {
|
|
|
293 |
if (is_string($doc)) {
|
|
|
294 |
$a_remplacer = array("\r", "\n");
|
|
|
295 |
$doc = str_replace($a_remplacer, ' ', $doc);
|
|
|
296 |
} else if (is_array($doc) && count($doc) > 0) {
|
|
|
297 |
foreach ($doc as $cle => $valeur) {
|
|
|
298 |
$doc[$cle] = $this->remplacerSautsDeLigne($valeur);
|
|
|
299 |
}
|
|
|
300 |
}
|
|
|
301 |
return $doc;
|
|
|
302 |
}
|
|
|
303 |
|
195 |
jpm |
304 |
private function ecrireComplementFichierBdnt($fichier_chemin) {
|
|
|
305 |
if (file_exists($fichier_chemin)) {
|
51 |
jpm |
306 |
$this->ajouterMessage("Écriture du fichier bdnt réussie.");
|
|
|
307 |
$this->signature_md5 = md5_file($fichier_chemin);
|
|
|
308 |
$this->ajouterMessage("Signature MD5 du fichier bdnt :".$this->signature_md5);
|
65 |
jpm |
309 |
$this->ajouterMessage("Nombre de combinaisons traitées : ".$this->noms_stat['combinaison']);
|
51 |
jpm |
310 |
}
|
|
|
311 |
}
|
|
|
312 |
|
|
|
313 |
private function getBaseNomFichier() {
|
193 |
jpm |
314 |
return strtolower($this->meta['acronyme'].'_v'.str_replace('.', '_', $this->meta['version']));
|
51 |
jpm |
315 |
}
|
65 |
jpm |
316 |
|
|
|
317 |
private function creerFichierBdntPartiel(&$donnees) {
|
|
|
318 |
$this->definirChampsPartiel();
|
219 |
jpm |
319 |
$this->creerCorrespondanceRangBdntTaxref();
|
218 |
jpm |
320 |
$this->creerCorrespondanceStatutBdntTaxref();
|
65 |
jpm |
321 |
Debug::printr(current($donnees['noms']));
|
|
|
322 |
$donnees['champs_partiel'] = $this->champs_nom_partiel;
|
|
|
323 |
$donnees['dernier_champ'] = end($this->champs_nom_partiel);
|
195 |
jpm |
324 |
$this->ecrireFichierBdntPartielle($donnees);
|
65 |
jpm |
325 |
}
|
51 |
jpm |
326 |
|
65 |
jpm |
327 |
private function definirChampsPartiel() {
|
|
|
328 |
$this->champs_nom_partiel = explode(',', $this->manuel['champs_partiel']);
|
217 |
jpm |
329 |
$champs_taxref = explode(',', $this->manuel['champs_taxref']);
|
|
|
330 |
$this->champs_nom_partiel = array_merge($this->champs_nom_partiel, $champs_taxref);
|
65 |
jpm |
331 |
Debug::printr("Champs partiels : ".print_r($this->champs_nom_partiel,true));
|
|
|
332 |
}
|
|
|
333 |
|
217 |
jpm |
334 |
private function creerCorrespondanceRangBdntTaxref() {
|
|
|
335 |
$rangs = explode(',', $this->manuel['rangs_bdnt_taxref']);
|
|
|
336 |
foreach ($rangs as $rang) {
|
|
|
337 |
list($id_bdnt, $code_taxref) = explode(':', trim($rang));
|
|
|
338 |
$this->rangs_bdnt_taxref[$id_bdnt] = $code_taxref;
|
|
|
339 |
}
|
|
|
340 |
}
|
|
|
341 |
|
|
|
342 |
private function creerCorrespondanceStatutBdntTaxref() {
|
|
|
343 |
$statuts = explode(',', $this->manuel['statuts_bdnt_taxref']);
|
|
|
344 |
foreach ($statuts as $statut) {
|
|
|
345 |
list($code_taxref, $champ_et_code_bdnt) = explode('=', trim($statut));
|
|
|
346 |
list($nom_champ_bdnt, $code_bdnt) = explode(':', trim($champ_et_code_bdnt));
|
|
|
347 |
$this->statuts_bdnt_taxref[$nom_champ_bdnt][$code_bdnt] = $code_taxref;
|
|
|
348 |
}
|
|
|
349 |
Debug::printr($this->statuts_bdnt_taxref);
|
|
|
350 |
}
|
|
|
351 |
|
195 |
jpm |
352 |
private function ecrireFichierBdntPartielle(&$donnees) {
|
217 |
jpm |
353 |
$fichier_nom = $this->getBaseNomFichier().$this->manuel['suffixe_bdnt'].$this->manuel['suffixe_partiel'].$this->manuel['ext_fichier'];
|
65 |
jpm |
354 |
$fichier_chemin = $this->zip_chemin_dossier_partiel.$fichier_nom;
|
195 |
jpm |
355 |
$bdnt_tsv_entete = $this->getVue('versionnage/squelettes/bdnt_partiel_entete', array('champs_partiel' => $donnees['champs_partiel']), '.tpl.tsv');
|
|
|
356 |
$this->ecrireFichier($fichier_chemin, $bdnt_tsv_entete);
|
|
|
357 |
|
|
|
358 |
foreach ($this->noms as $id => &$nom) {
|
|
|
359 |
$donnees['nom_infos'] = $nom;
|
217 |
jpm |
360 |
|
|
|
361 |
// Ajout de champs spécifique à Taxref généré depuis les données BDNT
|
|
|
362 |
$donnees['nom_infos']['taxref_rang'] = $this->attribuerRangTaxref($nom['rang']);
|
|
|
363 |
$donnees['nom_infos']['taxref_statut'] = $this->attribuerStatutTaxref($nom);
|
|
|
364 |
|
195 |
jpm |
365 |
$bdnt_tsv_ligne = $this->getVue('versionnage/squelettes/bdnt_partiel_ligne', $donnees, '.tpl.tsv');
|
|
|
366 |
if ($bdnt_tsv_ligne != '') {
|
|
|
367 |
$this->ajouterAuFichier($fichier_chemin, $bdnt_tsv_ligne);
|
|
|
368 |
}
|
|
|
369 |
}
|
65 |
jpm |
370 |
|
195 |
jpm |
371 |
if (file_exists($fichier_chemin)) {
|
65 |
jpm |
372 |
$this->ajouterMessage("Écriture du fichier de la bdnt partielle réussie.");
|
|
|
373 |
$this->signature_md5_partiel = md5_file($fichier_chemin);
|
|
|
374 |
$this->ajouterMessage("Signature MD5 du fichier bdnt partiel :".$this->signature_md5_partiel);
|
|
|
375 |
$this->ajouterMessage("Nombre de combinaisons traitées : ".$this->noms_stat['combinaison']);
|
|
|
376 |
}
|
|
|
377 |
}
|
|
|
378 |
|
217 |
jpm |
379 |
private function attribuerRangTaxref($rang) {
|
|
|
380 |
$rang_taxref = '';
|
|
|
381 |
if (isset($this->rangs_bdnt_taxref[$rang])) {
|
|
|
382 |
$rang_taxref = $this->rangs_bdnt_taxref[$rang];
|
|
|
383 |
}
|
|
|
384 |
return $rang_taxref;
|
|
|
385 |
}
|
|
|
386 |
|
|
|
387 |
private function attribuerStatutTaxref($nom) {
|
|
|
388 |
$statut_taxref = '';
|
|
|
389 |
$champs_statuts = array('presence', 'statut_origine', 'statut_introduction', 'statut_culture');
|
|
|
390 |
foreach ($champs_statuts as $champ) {
|
|
|
391 |
$valeur = trim($nom[$champ]);
|
|
|
392 |
if (isset($this->statuts_bdnt_taxref[$champ][$valeur])) {
|
|
|
393 |
$statut_taxref = $this->statuts_bdnt_taxref[$champ][$valeur];
|
|
|
394 |
}
|
|
|
395 |
}
|
|
|
396 |
return $statut_taxref;
|
|
|
397 |
}
|
|
|
398 |
|
58 |
jpm |
399 |
private function ecrireFichier($fichier_chemin, &$contenu) {
|
51 |
jpm |
400 |
$retour = true;
|
|
|
401 |
if (file_put_contents($fichier_chemin, $contenu) == false) {
|
|
|
402 |
$e = "Une erreur est survenu lors de l'écriture du fichier : $fichier_chemin";
|
|
|
403 |
$this->ajouterMessage($e);
|
|
|
404 |
$retour = false;
|
|
|
405 |
}
|
65 |
jpm |
406 |
$contenu = null;
|
51 |
jpm |
407 |
return $retour;
|
|
|
408 |
}
|
|
|
409 |
|
195 |
jpm |
410 |
private function ajouterAuFichier($fichier_chemin, &$contenu) {
|
|
|
411 |
$retour = true;
|
|
|
412 |
if (file_put_contents($fichier_chemin, $contenu, FILE_APPEND) == false) {
|
|
|
413 |
$e = "Une erreur est survenu lors de l'ajout de données dans le fichier : $fichier_chemin";
|
|
|
414 |
$this->ajouterMessage($e);
|
|
|
415 |
$retour = false;
|
|
|
416 |
}
|
|
|
417 |
$contenu = null;
|
|
|
418 |
return $retour;
|
|
|
419 |
}
|
|
|
420 |
|
51 |
jpm |
421 |
private function creerFichierDiff() {
|
65 |
jpm |
422 |
$donnees = array();
|
217 |
jpm |
423 |
$this->derniere_meta = $this->metaDao->getDerniere($this->projet);
|
|
|
424 |
if (is_null($this->derniere_meta === false)) {
|
54 |
jpm |
425 |
$this->ajouterMessage("Un problème est survenu lors de la récupération des métadonnées précédentes.");
|
217 |
jpm |
426 |
} else if (is_null($this->derniere_meta)) {
|
51 |
jpm |
427 |
$this->ajouterMessage("Premier versionnage pour ce projet, aucun fichier différentiel ne sera créé.");
|
|
|
428 |
} else {
|
217 |
jpm |
429 |
$code_projet_precedent = strtolower($this->derniere_meta['code']).'_v'.str_replace('.', '_', $this->derniere_meta['version']);
|
55 |
jpm |
430 |
if ($code_projet_precedent == $this->version_courante) {
|
|
|
431 |
$e = "La code de la version préalablement versionnée ($code_projet_precedent) est le même que celui ".
|
|
|
432 |
"de la demande actuel ({$this->version_courante}) pour ce projet, aucun fichier différentiel ne sera créé.";
|
|
|
433 |
$this->ajouterMessage($e);
|
|
|
434 |
} else {
|
|
|
435 |
$this->noms_precedents = $this->referentielDao->getTout($code_projet_precedent);
|
65 |
jpm |
436 |
$donnees['diff'] = $this->realiserDiff();
|
|
|
437 |
$donnees['champs'] = $this->diff_champs_nom;
|
|
|
438 |
$diff_tsv =& $this->getVue('versionnage/squelettes/diff', &$donnees, '.tpl.tsv');
|
55 |
jpm |
439 |
$this->ecrireFichierDiff($diff_tsv);
|
|
|
440 |
}
|
51 |
jpm |
441 |
}
|
65 |
jpm |
442 |
return $donnees;
|
51 |
jpm |
443 |
}
|
|
|
444 |
|
|
|
445 |
private function realiserDiff() {
|
65 |
jpm |
446 |
$this->chargerTableauChampsModifTypes();
|
|
|
447 |
$this->noms_stat['modification'] = 0;
|
|
|
448 |
|
216 |
jpm |
449 |
$this->verifierNomsSupprimes();
|
|
|
450 |
$this->champs_courants = $this->champs_nom;
|
51 |
jpm |
451 |
$diff = array();
|
65 |
jpm |
452 |
foreach ($this->noms as $id => $nom) {
|
225 |
jpm |
453 |
$this->supprimerNomAExclurePartiel($this->noms, $id);
|
58 |
jpm |
454 |
$infos = array();
|
225 |
jpm |
455 |
if ($this->etreSupprime($id)) {
|
|
|
456 |
$infos = $this->traiterDiffSuppression($nom);
|
|
|
457 |
} else if ($this->etreAjoute($id)) {
|
65 |
jpm |
458 |
$infos = $this->traiterDiffAjout($nom);
|
51 |
jpm |
459 |
} else {
|
65 |
jpm |
460 |
$nom_precedent = $this->noms_precedents[$id];
|
225 |
jpm |
461 |
$this->supprimerNomAExclurePartiel($this->noms_precedents, $id);
|
|
|
462 |
$nom_precedent = $this->nettoyerEspacesTableau($nom_precedent);
|
65 |
jpm |
463 |
$infos = $this->traiterDiffModif($nom, $nom_precedent);
|
|
|
464 |
}
|
|
|
465 |
|
|
|
466 |
if (count($infos) > 0) {
|
216 |
jpm |
467 |
$this->noms_stat['modification']++;
|
65 |
jpm |
468 |
$infos = $this->remplacerTabulation($infos);
|
|
|
469 |
$infos = $this->remplacerSautsDeLigne($infos);
|
|
|
470 |
$diff[$id] = $infos;
|
|
|
471 |
}
|
|
|
472 |
}
|
214 |
jpm |
473 |
|
65 |
jpm |
474 |
return $diff;
|
|
|
475 |
}
|
|
|
476 |
|
216 |
jpm |
477 |
private function verifierNomsSupprimes($edition = '«Complète»') {
|
217 |
jpm |
478 |
$this->noms_supprimes = array_diff_key($this->noms_precedents, $this->noms);
|
216 |
jpm |
479 |
$e = count($this->noms_supprimes)." lignes ont été supprimées vis à vis de la version ".
|
|
|
480 |
"précédentes pour l'édition $edition. Cela concerne les noms : ".implode(', ', array_keys($this->noms_supprimes));
|
|
|
481 |
Debug::printr($e);
|
214 |
jpm |
482 |
$this->ajouterMessage($e);
|
225 |
jpm |
483 |
}
|
214 |
jpm |
484 |
|
225 |
jpm |
485 |
private function supprimerNomAExclurePartiel(&$tableau, $id) {
|
|
|
486 |
if ($tableau[$id]['exclure_taxref'] == '1') {
|
|
|
487 |
unset($tableau[$id]);
|
|
|
488 |
}
|
|
|
489 |
}
|
|
|
490 |
|
|
|
491 |
private function nettoyerNomAExclurePartiel($nom) {
|
|
|
492 |
foreach ($nom as $champ => $valeur) {
|
|
|
493 |
if (! in_array($champ, $this->champs_nom_partiel)) {
|
|
|
494 |
unset($nom[$champ]);
|
|
|
495 |
}
|
|
|
496 |
}
|
|
|
497 |
return $nom;
|
|
|
498 |
}
|
|
|
499 |
|
|
|
500 |
private function etreSupprime($id) {
|
|
|
501 |
$supprime = false;
|
|
|
502 |
if (array_key_exists($id, $this->noms_supprimes)) {
|
|
|
503 |
$supprime = true;
|
|
|
504 |
}
|
|
|
505 |
return $supprime;
|
|
|
506 |
}
|
|
|
507 |
|
216 |
jpm |
508 |
private function traiterDiffSuppression(&$nom) {
|
|
|
509 |
$infos = $nom;
|
|
|
510 |
$infos['modification_type'] = 'S';
|
|
|
511 |
$infos['modification_type_1'] = '0';
|
|
|
512 |
$infos['modification_type_2'] = '0';
|
|
|
513 |
$infos['modification_type_3'] = '0';
|
|
|
514 |
return $infos;
|
|
|
515 |
}
|
|
|
516 |
|
225 |
jpm |
517 |
private function etreAjoute($id) {
|
|
|
518 |
$ajoute = false;
|
|
|
519 |
if (! array_key_exists($id, $this->noms_precedents)) {
|
|
|
520 |
$ajoute = true;
|
|
|
521 |
}
|
|
|
522 |
return $ajoute;
|
|
|
523 |
}
|
|
|
524 |
|
|
|
525 |
private function nettoyerEspacesTableau($tableau) {
|
|
|
526 |
array_walk($tableau, create_function('&$val', '$val = trim($val);'));
|
|
|
527 |
return $tableau;
|
|
|
528 |
}
|
|
|
529 |
|
65 |
jpm |
530 |
private function traiterDiffAjout(&$nom) {
|
|
|
531 |
$infos = $nom;
|
|
|
532 |
$infos['modification_type'] = 'A';
|
|
|
533 |
$infos['modification_type_1'] = '0';
|
|
|
534 |
$infos['modification_type_2'] = '0';
|
|
|
535 |
$infos['modification_type_3'] = '0';
|
|
|
536 |
return $infos;
|
|
|
537 |
}
|
|
|
538 |
|
|
|
539 |
private function traiterDiffModif(&$nom, &$nom_precedent) {
|
|
|
540 |
$infos = array();
|
214 |
jpm |
541 |
$nom_diff = array_diff_assoc($nom, $nom_precedent);
|
|
|
542 |
|
65 |
jpm |
543 |
if (count($nom_diff) > 0) {
|
|
|
544 |
$modif['modification_type'] = 'M';
|
|
|
545 |
$modif['modification_type_1'] = '0';
|
|
|
546 |
$modif['modification_type_2'] = '0';
|
|
|
547 |
$modif['modification_type_3'] = '0';
|
|
|
548 |
|
216 |
jpm |
549 |
foreach ($this->champs_courants as $champ) {
|
65 |
jpm |
550 |
if (isset($nom_diff[$champ])) {
|
214 |
jpm |
551 |
// Si le champ modifié est vide nous retournons le mot clé "NULL" pour identifier le champ modifié
|
|
|
552 |
$infos[$champ] = ($nom_diff[$champ] != '') ? $nom_diff[$champ] : 'NULL';
|
65 |
jpm |
553 |
$type = $this->getDiffType($champ);
|
|
|
554 |
$modif['modification_type_'.$type] = '1';
|
|
|
555 |
} else {
|
|
|
556 |
if ($champ == 'num_nom') {
|
|
|
557 |
$infos[$champ] = $nom[$champ];
|
|
|
558 |
} else {
|
|
|
559 |
$infos[$champ] = '';
|
51 |
jpm |
560 |
}
|
|
|
561 |
}
|
|
|
562 |
}
|
65 |
jpm |
563 |
|
|
|
564 |
foreach ($modif as $cle => $val) {
|
|
|
565 |
$infos[$cle] = $val;
|
|
|
566 |
}
|
51 |
jpm |
567 |
}
|
65 |
jpm |
568 |
return $infos;
|
51 |
jpm |
569 |
}
|
|
|
570 |
|
|
|
571 |
private function chargerTableauChampsModifTypes() {
|
|
|
572 |
$champs = explode(',', $this->manuel['champs_diff_type']);
|
|
|
573 |
foreach ($champs as $champ) {
|
58 |
jpm |
574 |
list($champ_nom, $type) = explode('=', trim($champ));
|
51 |
jpm |
575 |
$this->diff_modif_types[$champ_nom] = $type;
|
|
|
576 |
}
|
|
|
577 |
}
|
|
|
578 |
|
|
|
579 |
private function getDiffType($champ_nom) {
|
|
|
580 |
$type = isset($this->diff_modif_types[$champ_nom]) ? $this->diff_modif_types[$champ_nom] : '3';
|
|
|
581 |
return $type;
|
|
|
582 |
}
|
|
|
583 |
|
65 |
jpm |
584 |
private function ecrireFichierDiff(&$contenu) {
|
217 |
jpm |
585 |
$fichier_nom = $this->getBaseNomFichier().$this->manuel['suffixe_diff'].$this->manuel['ext_fichier'];
|
55 |
jpm |
586 |
$fichier_chemin = $this->zip_chemin_dossier.$fichier_nom;
|
51 |
jpm |
587 |
|
|
|
588 |
if ($this->ecrireFichier($fichier_chemin, $contenu)) {
|
|
|
589 |
$this->ajouterMessage("Écriture du fichier diff réussie.");
|
|
|
590 |
}
|
|
|
591 |
}
|
|
|
592 |
|
65 |
jpm |
593 |
private function creerFichierDiffPartiel(&$donnees) {
|
214 |
jpm |
594 |
$this->noms_stat_partiel['modification'] = 0;
|
217 |
jpm |
595 |
if (! is_null($this->derniere_meta) && $this->derniere_meta !== false) {
|
|
|
596 |
$donnees['diff_partiel'] = $this->realiserDiffPartiel();
|
65 |
jpm |
597 |
$donnees['champs_partiel_diff'] = array_merge($this->champs_nom_partiel, $this->champs_diff);
|
|
|
598 |
$donnees['dernier_champ'] = end($donnees['champs_partiel_diff']);
|
|
|
599 |
$diff_tsv_partiel =& $this->getVue('versionnage/squelettes/diff_partiel', &$donnees, '.tpl.tsv');
|
|
|
600 |
$this->ecrireFichierDiffPartiel($diff_tsv_partiel);
|
217 |
jpm |
601 |
} else {
|
|
|
602 |
$this->ajouterMessage("Aucun fichier différentiel pour l'édition «Partielle» ne sera créé.");
|
65 |
jpm |
603 |
}
|
|
|
604 |
}
|
|
|
605 |
|
216 |
jpm |
606 |
private function realiserDiffPartiel() {
|
|
|
607 |
$this->noms_stat_partiel['modification'] = 0;
|
|
|
608 |
|
|
|
609 |
$this->champs_courants = $this->champs_nom_partiel;
|
|
|
610 |
$this->verifierNomsSupprimes('«Partielle»');
|
|
|
611 |
$diff = array();
|
|
|
612 |
foreach ($this->noms as $id => $nom) {
|
|
|
613 |
unset($this->noms[$id]);
|
219 |
jpm |
614 |
|
|
|
615 |
// Ajout de champs spécifique à Taxref généré depuis les données BDNT
|
|
|
616 |
$nom['taxref_rang'] = $this->attribuerRangTaxref($nom['rang']);
|
|
|
617 |
$nom['taxref_statut'] = $this->attribuerStatutTaxref($nom);
|
225 |
jpm |
618 |
$nom = $this->nettoyerNomAExclurePartiel($nom);
|
216 |
jpm |
619 |
$infos = array();
|
225 |
jpm |
620 |
if ($this->etreSupprime($id)) {
|
|
|
621 |
$infos = $this->traiterDiffSuppression($nom);
|
|
|
622 |
} elseif ($this->etreAjoute($id)) {
|
216 |
jpm |
623 |
$infos = $this->traiterDiffAjout($nom);
|
|
|
624 |
} else {
|
|
|
625 |
$nom_precedent = $this->noms_precedents[$id];
|
|
|
626 |
unset($this->noms_precedents[$id]);
|
219 |
jpm |
627 |
|
|
|
628 |
// Ajout de champs spécifique à Taxref généré depuis les données BDNT
|
|
|
629 |
$nom_precedent['taxref_rang'] = $this->attribuerRangTaxref($nom_precedent['rang']);
|
|
|
630 |
$nom_precedent['taxref_statut'] = $this->attribuerStatutTaxref($nom_precedent);
|
225 |
jpm |
631 |
$nom_precedent = $this->nettoyerNomAExclurePartiel($nom_precedent);
|
|
|
632 |
$nom_precedent = $this->nettoyerEspacesTableau($nom_precedent);
|
216 |
jpm |
633 |
$infos = $this->traiterDiffModif($nom, $nom_precedent);
|
|
|
634 |
}
|
|
|
635 |
|
|
|
636 |
if (count($infos) > 0) {
|
|
|
637 |
$this->noms_stat_partiel['modification']++;
|
|
|
638 |
$infos = $this->remplacerTabulation($infos);
|
|
|
639 |
$infos = $this->remplacerSautsDeLigne($infos);
|
|
|
640 |
$diff[$id] = $infos;
|
|
|
641 |
}
|
|
|
642 |
}
|
|
|
643 |
|
|
|
644 |
return $diff;
|
|
|
645 |
}
|
|
|
646 |
|
65 |
jpm |
647 |
private function ecrireFichierDiffPartiel(&$contenu) {
|
217 |
jpm |
648 |
$fichier_nom = $this->getBaseNomFichier().$this->manuel['suffixe_diff'].$this->manuel['suffixe_partiel'].$this->manuel['ext_fichier'];
|
65 |
jpm |
649 |
$fichier_chemin = $this->zip_chemin_dossier_partiel.$fichier_nom;
|
|
|
650 |
|
|
|
651 |
if ($this->ecrireFichier($fichier_chemin, $contenu)) {
|
|
|
652 |
$this->ajouterMessage("Écriture du fichier diff partiel réussie.");
|
|
|
653 |
}
|
|
|
654 |
}
|
|
|
655 |
|
51 |
jpm |
656 |
private function creerFichierMeta() {
|
|
|
657 |
$donnees = array();
|
|
|
658 |
$donnees = $this->meta;
|
|
|
659 |
$donnees['stats'] = $this->noms_stat;
|
|
|
660 |
$donnees['signature'] = $this->signature_md5;
|
58 |
jpm |
661 |
|
|
|
662 |
$donnees = $this->remplacerTabulation($donnees);
|
|
|
663 |
$donnees = $this->remplacerSautsDeLigne($donnees);
|
|
|
664 |
|
65 |
jpm |
665 |
$meta_tsv =& $this->getVue('versionnage/squelettes/meta', &$donnees, '.tpl.tsv');
|
51 |
jpm |
666 |
$this->ecrireFichierMeta($meta_tsv);
|
65 |
jpm |
667 |
return $donnees;
|
51 |
jpm |
668 |
}
|
|
|
669 |
|
65 |
jpm |
670 |
private function ecrireFichierMeta(&$contenu) {
|
217 |
jpm |
671 |
$fichier_nom = $this->getBaseNomFichier().$this->manuel['suffixe_meta'].$this->manuel['ext_fichier'];
|
65 |
jpm |
672 |
$fichier_chemin = $this->zip_chemin_dossier.$fichier_nom;
|
|
|
673 |
|
|
|
674 |
if ($this->ecrireFichier($fichier_chemin, $contenu)) {
|
|
|
675 |
$this->ajouterMessage("Écriture du fichier meta réussie.");
|
|
|
676 |
$this->archiverMetadonnees();
|
58 |
jpm |
677 |
}
|
|
|
678 |
}
|
|
|
679 |
|
65 |
jpm |
680 |
private function creerFichierMetaPartiel(&$donnees) {
|
|
|
681 |
$donnees['signature'] = $this->signature_md5_partiel;
|
214 |
jpm |
682 |
$donnees['stats'] = $this->noms_stat_partiel;
|
219 |
jpm |
683 |
$donnees['notes'] = trim($this->manuel['notes_partiel'].' '.$donnees['notes']);
|
65 |
jpm |
684 |
$meta_tsv_partiel =& $this->getVue('versionnage/squelettes/meta', &$donnees, '.tpl.tsv');
|
|
|
685 |
$this->ecrireFichierMetaPartiel($meta_tsv_partiel);
|
58 |
jpm |
686 |
}
|
|
|
687 |
|
65 |
jpm |
688 |
private function ecrireFichierMetaPartiel(&$contenu) {
|
217 |
jpm |
689 |
$fichier_nom = $this->getBaseNomFichier().$this->manuel['suffixe_meta'].$this->manuel['suffixe_partiel'].$this->manuel['ext_fichier'];
|
65 |
jpm |
690 |
$fichier_chemin = $this->zip_chemin_dossier_partiel.$fichier_nom;
|
51 |
jpm |
691 |
|
|
|
692 |
if ($this->ecrireFichier($fichier_chemin, $contenu)) {
|
65 |
jpm |
693 |
$this->ajouterMessage("Écriture du fichier meta partiel réussie.");
|
51 |
jpm |
694 |
}
|
|
|
695 |
}
|
|
|
696 |
|
|
|
697 |
private function archiverMetadonnees() {
|
|
|
698 |
$metadonnees = $this->meta;
|
|
|
699 |
$metadonnees['code'] = $this->meta['acronyme'];
|
|
|
700 |
unset($metadonnees['acronyme']);
|
|
|
701 |
$metadonnees['domaine_taxo'] = $this->meta['dom_tax'];
|
|
|
702 |
unset($metadonnees['dom_tax']);
|
|
|
703 |
$metadonnees['domaine_geo'] = $this->meta['dom_geo'];
|
|
|
704 |
unset($metadonnees['dom_geo']);
|
|
|
705 |
$metadonnees['domaine_nom'] = $this->meta['dom_code'];
|
|
|
706 |
unset($metadonnees['dom_code']);
|
|
|
707 |
$metadonnees['auteur'] = $this->meta['auteur_principal'];
|
|
|
708 |
unset($metadonnees['auteur_principal']);
|
|
|
709 |
$metadonnees['date_production'] = $this->meta['date_prod'];
|
|
|
710 |
unset($metadonnees['date_prod']);
|
|
|
711 |
$metadonnees['droit'] = $this->meta['copyright'];
|
|
|
712 |
unset($metadonnees['copyright']);
|
|
|
713 |
|
|
|
714 |
$ok = $this->metaDao->ajouter($metadonnees);
|
|
|
715 |
if ($ok === false) {
|
|
|
716 |
$this->ajouterMessage("L'archivage des métadonnées a échoué.");
|
|
|
717 |
}
|
|
|
718 |
}
|
|
|
719 |
|
55 |
jpm |
720 |
private function nettoyerMemoire() {
|
|
|
721 |
$this->noms = null;
|
|
|
722 |
$this->noms_precedents = null;
|
|
|
723 |
$this->noms_stat = null;
|
|
|
724 |
}
|
|
|
725 |
|
|
|
726 |
private function copierManuel() {
|
|
|
727 |
$fichier_source = $this->manuel_chemin.$this->manuel_nom;
|
65 |
jpm |
728 |
$fichiers_destination[] = $this->zip_chemin_dossier.$this->manuel_nom;
|
|
|
729 |
$fichiers_destination[] = $this->zip_chemin_dossier_partiel.$this->manuel_nom;
|
|
|
730 |
foreach ($fichiers_destination as $destination) {
|
|
|
731 |
if (copy($fichier_source, $destination) === false) {
|
|
|
732 |
$this->ajouterMessage("La copie du manuel vers '$destination' a échouée.");
|
|
|
733 |
}
|
55 |
jpm |
734 |
}
|
|
|
735 |
}
|
|
|
736 |
|
65 |
jpm |
737 |
private function creerFichiersZip() {
|
|
|
738 |
$this->zipper($this->zip_chemin_fichier, $this->zip_chemin_dossier);
|
|
|
739 |
$this->zipper($this->zip_chemin_fichier_partiel, $this->zip_chemin_dossier_partiel);
|
|
|
740 |
}
|
|
|
741 |
|
|
|
742 |
private function zipper($fichier_zip, $dossier_a_zipper) {
|
|
|
743 |
$zip = new PclZip($fichier_zip);
|
|
|
744 |
if ($zip->add($dossier_a_zipper, PCLZIP_OPT_REMOVE_ALL_PATH) == 0) {
|
|
|
745 |
$e = "La création du fichier zip '$fichier_zip' a échoué avec l'erreur : ".$zip->errorInfo(true);
|
55 |
jpm |
746 |
$this->ajouterMessage($e);
|
65 |
jpm |
747 |
}
|
55 |
jpm |
748 |
}
|
|
|
749 |
|
|
|
750 |
private function nettoyerFichiers() {
|
65 |
jpm |
751 |
Fichier::supprimerDossier($this->zip_chemin_dossier);
|
|
|
752 |
Fichier::supprimerDossier($this->zip_chemin_dossier_partiel);
|
55 |
jpm |
753 |
}
|
|
|
754 |
|
49 |
jpm |
755 |
private function traiterMessages() {
|
|
|
756 |
if (isset($this->messages)) {
|
54 |
jpm |
757 |
$num_message = 1;
|
49 |
jpm |
758 |
foreach ($this->messages as $message) {
|
54 |
jpm |
759 |
$message['nom'] = 'Message #'.$num_message++;
|
49 |
jpm |
760 |
$this->resultatDao->ajouter($this->traitement['id_traitement'], $message);
|
|
|
761 |
}
|
46 |
jpm |
762 |
}
|
|
|
763 |
}
|
|
|
764 |
}
|
|
|
765 |
?>
|