33 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe Controleur du module Traitement.
|
|
|
5 |
* Affichage les infos sur l'ensemble des résultats d'un traitement.
|
|
|
6 |
*
|
|
|
7 |
* @package Referentiel
|
|
|
8 |
* @category Php5.2
|
|
|
9 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
10 |
* @copyright 2010 Tela-Botanica
|
|
|
11 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
12 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
13 |
* @version SVN: $Id$
|
|
|
14 |
*/
|
|
|
15 |
class Traitement extends AppliControleur {
|
|
|
16 |
|
37 |
jpm |
17 |
private $referentiel = null;
|
58 |
jpm |
18 |
private $traitement = null;
|
33 |
jpm |
19 |
private $traitementId = null;
|
|
|
20 |
private $traitementDao = null;
|
|
|
21 |
private $resultatDao = null;
|
|
|
22 |
|
|
|
23 |
public function __construct() {
|
|
|
24 |
parent::__construct();
|
|
|
25 |
|
|
|
26 |
// Récupération de paramêtres
|
|
|
27 |
if (isset($_GET['id-t'])) { // id du traitement courant
|
|
|
28 |
$this->traitementId = strtolower($_GET['id-t']);
|
|
|
29 |
}
|
37 |
jpm |
30 |
if (isset($_GET['ref'])) { // code du projet courrant
|
|
|
31 |
$this->referentiel = strtolower($_GET['ref']);
|
|
|
32 |
}
|
33 |
jpm |
33 |
|
|
|
34 |
// Chargement des DAO nécessaires
|
|
|
35 |
if (isset($this->traitementId)) {
|
|
|
36 |
$this->traitementDao = new TraitementDao();
|
|
|
37 |
$this->resultatDao = new ResultatDao();
|
|
|
38 |
}
|
|
|
39 |
}
|
|
|
40 |
|
|
|
41 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
42 |
// Méthodes
|
|
|
43 |
/**
|
|
|
44 |
* Fonction d'affichage par défaut, elle appelle la liste des administrateurs
|
|
|
45 |
*/
|
|
|
46 |
public function executerActionParDefaut() {
|
|
|
47 |
return $this->afficherTraitement();
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
/**
|
|
|
51 |
* Affiche le formulaire de demande de traitement
|
|
|
52 |
*/
|
|
|
53 |
public function afficherTraitement() {
|
|
|
54 |
$donnees = array();
|
|
|
55 |
|
|
|
56 |
// Traitement de l'info sur le code du référentiel
|
|
|
57 |
if (isset($this->traitementId)) {
|
|
|
58 |
// Recherche d'info sur le traitement
|
|
|
59 |
$infos = $this->traitementDao->getInfos($this->traitementId);
|
|
|
60 |
if ($infos != false) {
|
58 |
jpm |
61 |
$this->traitement = $infos;
|
|
|
62 |
$donnees['traitement'] = $this->traitement;
|
33 |
jpm |
63 |
} else {
|
|
|
64 |
$this->addMessage("L'identifiant de traitement n'est pas indexé dans la base de données.");
|
|
|
65 |
}
|
58 |
jpm |
66 |
|
|
|
67 |
// Spécificité du script de versionnage
|
|
|
68 |
$donnees['urls_zip'] = $this->traiterScriptVersionnage();
|
|
|
69 |
|
33 |
jpm |
70 |
// Recherche des résultats du traitement
|
|
|
71 |
$infos = $this->resultatDao->getResultatsTraitement($this->traitementId);
|
|
|
72 |
if ($infos != false) {
|
|
|
73 |
// Ajout de l'url vers la fiche du resultat
|
|
|
74 |
foreach ($infos as &$resultat) {
|
37 |
jpm |
75 |
$resultat['url'] = $this->obtenirUrlFicheResultat($this->referentiel, $resultat['id_resultat']);
|
33 |
jpm |
76 |
}
|
|
|
77 |
$donnees['resultats'] = $infos;
|
|
|
78 |
}
|
|
|
79 |
} else {
|
|
|
80 |
$this->addMessage("Aucun identifiant de traitement n'a été indiqué.");
|
|
|
81 |
}
|
|
|
82 |
|
|
|
83 |
$donnees['messages'] = $this->getMessages();
|
|
|
84 |
$this->traiterEsperluette($donnees);
|
|
|
85 |
$this->setSortie(self::RENDU_CORPS, $this->getVue('traitement', $donnees), false);
|
37 |
jpm |
86 |
$this->construireMenu($this->referentiel);
|
|
|
87 |
$this->construireFilAriane($this->referentiel, $this->traitementId);
|
33 |
jpm |
88 |
}
|
58 |
jpm |
89 |
|
|
|
90 |
private function traiterScriptVersionnage() {
|
|
|
91 |
$urls_zip = null;
|
|
|
92 |
if (isset($this->traitement['script']) && $this->traitement['script'] == 'versionnage') {
|
|
|
93 |
$meta = unserialize($this->traitement['script_parametres']);
|
|
|
94 |
$projet = strtolower($this->traitement['referentiel_code']);
|
|
|
95 |
$version = str_replace('.', '_', $meta['version']);
|
|
|
96 |
$fichier_zip_bdnt = $projet.'_v'.$version.'.zip';
|
|
|
97 |
$url_zip_bdnt = sprintf(Config::get('url_zip_tpl'), $fichier_zip_bdnt);
|
|
|
98 |
if ($this->testerUrl($url_zip_bdnt)) {
|
|
|
99 |
$urls_zip[$fichier_zip_bdnt] = $url_zip_bdnt;
|
|
|
100 |
}
|
220 |
jpm |
101 |
|
|
|
102 |
$fichier_zip_partiel_ancien = $projet.'_v'.$version.'_partiel.zip';
|
|
|
103 |
$url_zip_partiel_ancienne = sprintf(Config::get('url_zip_tpl'), $fichier_zip_partiel_ancien);
|
|
|
104 |
$fichier_zip_partiel = $projet.'_v'.$version.$this->manuel['suffixe_partiel'].'.zip';
|
58 |
jpm |
105 |
$url_zip_partiel = sprintf(Config::get('url_zip_tpl'), $fichier_zip_partiel);
|
|
|
106 |
if ($this->testerUrl($url_zip_partiel)) {
|
|
|
107 |
$urls_zip[$fichier_zip_partiel] = $url_zip_partiel;
|
220 |
jpm |
108 |
} else if ($this->testerUrl($url_zip_partiel_ancienne)) {
|
|
|
109 |
$urls_zip[$fichier_zip_partiel_ancien] = $url_zip_partiel_ancienne;
|
58 |
jpm |
110 |
}
|
220 |
jpm |
111 |
|
58 |
jpm |
112 |
}
|
|
|
113 |
return $urls_zip;
|
|
|
114 |
}
|
|
|
115 |
|
|
|
116 |
private function testerUrl($url) {
|
|
|
117 |
ini_set('allow_url_fopen', '1');
|
|
|
118 |
return (@fclose(@fopen($url, 'r'))) ? true : false;
|
|
|
119 |
}
|
33 |
jpm |
120 |
}
|
|
|
121 |
?>
|