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 |
|
23 |
jpm |
18 |
private $referentiel = null;
|
|
|
19 |
private $traitementDao = null;
|
6 |
jpm |
20 |
|
|
|
21 |
public function __construct() {
|
|
|
22 |
parent::__construct();
|
|
|
23 |
|
|
|
24 |
// Récupération de paramêtres
|
23 |
jpm |
25 |
if (isset($_GET['ref'])) { // code du projet courrant
|
|
|
26 |
$this->referentiel = strtolower($_GET['ref']);
|
6 |
jpm |
27 |
}
|
|
|
28 |
|
|
|
29 |
// Chargement des DAO nécessaires
|
23 |
jpm |
30 |
$this->traitementDao = new TraitementDao();
|
6 |
jpm |
31 |
}
|
|
|
32 |
|
|
|
33 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
34 |
// Méthodes
|
|
|
35 |
/**
|
|
|
36 |
* Fonction d'affichage par défaut, elle appelle la liste des administrateurs
|
|
|
37 |
*/
|
|
|
38 |
public function executerActionParDefaut() {
|
23 |
jpm |
39 |
return $this->afficherInterface();
|
6 |
jpm |
40 |
}
|
|
|
41 |
|
23 |
jpm |
42 |
/**
|
|
|
43 |
* Affiche le formulaire de demande de traitement
|
|
|
44 |
*/
|
|
|
45 |
public function afficherInterface() {
|
|
|
46 |
$donnees = array();
|
|
|
47 |
$this->url->unsetVariablesRequete(array('module', 'action', 'ref'));
|
|
|
48 |
$donnees['url_form'] = $this->url->getUrl();
|
|
|
49 |
$donnees['url_module'] = 'Test';
|
|
|
50 |
$donnees['url_action'] = 'demanderTraitement';
|
|
|
51 |
|
|
|
52 |
// Traitement de l'info sur le code du référentiel
|
|
|
53 |
if (isset($this->referentiel)) {
|
|
|
54 |
$donnees['ref'] = $this->referentiel;
|
26 |
jpm |
55 |
$resultat = $this->traitementDao->getTraitementsEnCours($this->referentiel);
|
24 |
jpm |
56 |
if ($resultat != false) {
|
|
|
57 |
$donnees['traitements'] = $resultat;
|
|
|
58 |
} else {
|
26 |
jpm |
59 |
$this->addMessage("Un problème est survenu lors de la tentative de récupération des traitements en cours.");
|
24 |
jpm |
60 |
}
|
23 |
jpm |
61 |
} else {
|
26 |
jpm |
62 |
$this->addMessage("Aucun code de projet de référentiel n'est indiqué (Ex. bdnff).");
|
23 |
jpm |
63 |
}
|
|
|
64 |
|
26 |
jpm |
65 |
$donnees['messages'] = $this->getMessages();
|
23 |
jpm |
66 |
$this->setSortie(self::RENDU_CORPS, $this->getVue('form_traitement', $donnees), false);
|
|
|
67 |
}
|
|
|
68 |
|
|
|
69 |
/**
|
|
|
70 |
* Lance l'ajout d'un traitement
|
|
|
71 |
*/
|
|
|
72 |
public function demanderTraitement() {
|
|
|
73 |
$this->ajouterTraitement();
|
26 |
jpm |
74 |
$this->afficherInterface();
|
23 |
jpm |
75 |
}
|
|
|
76 |
|
|
|
77 |
/**
|
|
|
78 |
* Lance l'ajout d'un traitement
|
|
|
79 |
*/
|
|
|
80 |
private function ajouterTraitement() {
|
|
|
81 |
if (!isset($this->referentiel)) {
|
26 |
jpm |
82 |
$this->addMessage("Aucun code de projet de référentiel n'est indiqué (Ex. bdnff).");
|
23 |
jpm |
83 |
} else {
|
26 |
jpm |
84 |
// TODO : vérifier qu'il n'y a pas déjà un traitement en cours pour ce projet.
|
23 |
jpm |
85 |
$resultat = $this->traitementDao->ajouterTraitement($this->referentiel);
|
|
|
86 |
if ($resultat != false) {
|
26 |
jpm |
87 |
$this->addMessage("Le traitement #'$resultat' a été ajouté.");
|
|
|
88 |
$this->lancerScript();
|
23 |
jpm |
89 |
} else {
|
26 |
jpm |
90 |
$this->addMessage("Un problème est survenu lors de la tentative d'ajout du traitement.");
|
23 |
jpm |
91 |
}
|
|
|
92 |
}
|
|
|
93 |
}
|
|
|
94 |
|
26 |
jpm |
95 |
/**
|
|
|
96 |
* Lance le script d'execution des traitements
|
|
|
97 |
*/
|
|
|
98 |
private function lancerScript() {
|
|
|
99 |
$php = Config::get('chemin_bin_php');
|
|
|
100 |
$exe = Config::get('chemin_script');
|
|
|
101 |
$script = 'tests';
|
|
|
102 |
$projet = $this->referentiel;
|
|
|
103 |
$action = 'tout';
|
|
|
104 |
$log = Config::get('chemin_script_log');
|
|
|
105 |
$commande = "$php -f $exe $script -p $projet -a $action > $log &";
|
|
|
106 |
|
|
|
107 |
$message_erreur_tpl = "%s\n.".
|
|
|
108 |
"Il est nécessaire de configurer le lancement du script via une tache dans le cron.\n".
|
|
|
109 |
"La commande à lancer est : <code>$commande</code>";
|
|
|
110 |
if ($this->verifierSafeModeOff() === false) {
|
|
|
111 |
$e = "Le safe_mode est actif sur ce serveur.";
|
|
|
112 |
$this->addMessage(sprintf($message_erreur_tpl, $e));
|
|
|
113 |
} else if ($this->verifierAccesFonctionExec() === false) {
|
|
|
114 |
$e = "La fonction 'exec()' fait partie des fonctions désactivées sur ce serveur (voir disable_functions).";
|
|
|
115 |
$this->addMessage(sprintf($message_erreur_tpl, $e));
|
|
|
116 |
} else {
|
|
|
117 |
Debug::printr($commande);
|
|
|
118 |
$this->addMessage("Lancement du script effectuant les traitements.");
|
|
|
119 |
exec($commande);
|
|
|
120 |
}
|
|
|
121 |
}
|
|
|
122 |
|
|
|
123 |
private function verifierSafeModeOff() {
|
|
|
124 |
return ('1' == ini_get('safe_mode')) ? false : true;
|
|
|
125 |
}
|
|
|
126 |
|
|
|
127 |
private function verifierAccesFonctionExec() {
|
|
|
128 |
$disabled = explode(', ', ini_get('disable_functions'));
|
|
|
129 |
return !in_array('exec', $disabled);
|
|
|
130 |
}
|
|
|
131 |
|
6 |
jpm |
132 |
}
|
|
|
133 |
?>
|