6 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe Controleur du module Test.
|
16 |
jpm |
5 |
*
|
|
|
6 |
* TODO : refactoriser l'ensemble des tests!
|
6 |
jpm |
7 |
*
|
|
|
8 |
* @package Referentiel
|
|
|
9 |
* @category Php5.2
|
|
|
10 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
11 |
* @copyright 2010 Tela-Botanica
|
|
|
12 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
13 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
14 |
* @version SVN: $Id$
|
|
|
15 |
*/
|
|
|
16 |
class Test extends AppliControleur {
|
|
|
17 |
|
39 |
jpm |
18 |
const SCRIPT_A_LANCER = 'tests';
|
|
|
19 |
|
23 |
jpm |
20 |
private $referentiel = null;
|
181 |
jpm |
21 |
private $referentielDao = null;
|
23 |
jpm |
22 |
private $traitementDao = null;
|
6 |
jpm |
23 |
|
|
|
24 |
public function __construct() {
|
|
|
25 |
parent::__construct();
|
|
|
26 |
|
|
|
27 |
// Récupération de paramêtres
|
23 |
jpm |
28 |
if (isset($_GET['ref'])) { // code du projet courrant
|
|
|
29 |
$this->referentiel = strtolower($_GET['ref']);
|
6 |
jpm |
30 |
}
|
|
|
31 |
|
|
|
32 |
// Chargement des DAO nécessaires
|
181 |
jpm |
33 |
$this->referentielDao = new ReferentielDao();
|
23 |
jpm |
34 |
$this->traitementDao = new TraitementDao();
|
6 |
jpm |
35 |
}
|
|
|
36 |
|
|
|
37 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
38 |
// Méthodes
|
|
|
39 |
/**
|
|
|
40 |
* Fonction d'affichage par défaut, elle appelle la liste des administrateurs
|
|
|
41 |
*/
|
|
|
42 |
public function executerActionParDefaut() {
|
23 |
jpm |
43 |
return $this->afficherInterface();
|
6 |
jpm |
44 |
}
|
|
|
45 |
|
23 |
jpm |
46 |
/**
|
|
|
47 |
* Affiche le formulaire de demande de traitement
|
|
|
48 |
*/
|
|
|
49 |
public function afficherInterface() {
|
120 |
jpm |
50 |
if ($this->authentifierCoordinateur()) {
|
|
|
51 |
$donnees = array();
|
|
|
52 |
$this->definirCommeModulePrincipal(get_class($this));
|
38 |
jpm |
53 |
|
120 |
jpm |
54 |
$this->url->unsetVariablesRequete(array('module', 'action', 'ref'));
|
|
|
55 |
$donnees['url_form'] = $this->url->getUrl();
|
|
|
56 |
$donnees['url_module'] = 'Test';
|
|
|
57 |
$donnees['url_action_demande'] = 'demanderTraitement';
|
|
|
58 |
$donnees['url_action_rafraichir'] = 'afficherInterface';
|
267 |
delphine |
59 |
$donnees['url_action_importer'] = 'importerReferentiel';
|
|
|
60 |
$donnees['url_importation'] = $donnees['url_form'].
|
|
|
61 |
'?module='.$donnees['url_module'].'&action='.$donnees['url_action_importer'].'&ref='.$this->referentiel;
|
33 |
jpm |
62 |
|
120 |
jpm |
63 |
// Traitement de l'info sur le code du référentiel
|
|
|
64 |
if (isset($this->referentiel)) {
|
181 |
jpm |
65 |
// Récupération du nom du référentiel courrant
|
|
|
66 |
$donnees['nom_referentiel'] = $this->referentielDao->getNom($this->referentiel);
|
|
|
67 |
|
|
|
68 |
// Récupération du référentiel courrant
|
120 |
jpm |
69 |
$donnees['ref'] = $this->referentiel;
|
|
|
70 |
|
|
|
71 |
// Recherche des traitements en attente
|
|
|
72 |
$donnees['traitements_en_attente'] = $this->traitementDao->getTraitementsEnAttente($this->referentiel, self::SCRIPT_A_LANCER);
|
|
|
73 |
|
|
|
74 |
// Recherche des traitements en cours d'éxecution
|
|
|
75 |
$donnees['traitements_en_cours'] = $this->traitementDao->getTraitementsEnCours($this->referentiel, self::SCRIPT_A_LANCER);
|
|
|
76 |
|
|
|
77 |
// Recherche des traitements déjà effectué
|
|
|
78 |
$resultat = $this->traitementDao->getTraitementsTermines($this->referentiel, self::SCRIPT_A_LANCER);
|
|
|
79 |
if (is_array($resultat)) {
|
|
|
80 |
// Ajout de l'url vers la fiche du traitement
|
|
|
81 |
foreach ($resultat as &$traitement) {
|
|
|
82 |
$traitement['url'] = $this->obtenirUrlFicheTraitement($this->referentiel, $traitement['id_traitement']);
|
|
|
83 |
}
|
|
|
84 |
$donnees['traitements_termines'] = $resultat;
|
33 |
jpm |
85 |
}
|
120 |
jpm |
86 |
} else {
|
156 |
jpm |
87 |
$this->addMessage("Aucun code de projet de référentiel n'est indiqué (Ex. bdtfx).");
|
33 |
jpm |
88 |
}
|
120 |
jpm |
89 |
|
|
|
90 |
$donnees['messages'] = $this->getMessages();
|
|
|
91 |
$this->setSortie(self::RENDU_CORPS, $this->getVue('form_tests', $donnees), false);
|
|
|
92 |
$this->construireMenu($this->referentiel);
|
|
|
93 |
$this->construireFilAriane($this->referentiel);
|
39 |
jpm |
94 |
}
|
23 |
jpm |
95 |
}
|
|
|
96 |
|
|
|
97 |
/**
|
|
|
98 |
* Lance l'ajout d'un traitement
|
|
|
99 |
*/
|
|
|
100 |
public function demanderTraitement() {
|
39 |
jpm |
101 |
$this->ajouterTraitement($this->referentiel, self::SCRIPT_A_LANCER);
|
26 |
jpm |
102 |
$this->afficherInterface();
|
23 |
jpm |
103 |
}
|
267 |
delphine |
104 |
|
|
|
105 |
/**
|
|
|
106 |
* Lance l'importation d'un référentiel au format taxref dans une table bdnt_taxref
|
|
|
107 |
*/
|
269 |
delphine |
108 |
public function importerReferentiel() {
|
267 |
delphine |
109 |
if (isset($_FILES['nom_fichier']) && $_FILES['nom_fichier']['name'] != '') {
|
|
|
110 |
$destination = Config::get('chemin_tmp').$_FILES['nom_fichier']['name'];
|
|
|
111 |
move_uploaded_file($_FILES['nom_fichier']['tmp_name'], $destination);
|
|
|
112 |
$this->ajouterTraitementParametre($this->referentiel, $destination, 'importation');
|
|
|
113 |
} else {
|
|
|
114 |
$this->addMessage("Aucun fichier n'a été précisé.");
|
|
|
115 |
}
|
|
|
116 |
$this->afficherInterface();
|
|
|
117 |
}
|
6 |
jpm |
118 |
}
|
|
|
119 |
?>
|