Line 9... |
Line 9... |
9 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
9 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
10 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
10 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
11 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
11 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
12 |
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
|
12 |
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
|
13 |
*/
|
13 |
*/
|
14 |
class Maintenance extends DelScript {
|
14 |
class Maintenance extends Script {
|
Line 15... |
Line 15... |
15 |
|
15 |
|
- |
|
16 |
protected $tables_referentiel = array();
|
Line 16... |
Line 17... |
16 |
protected $tables_referentiel = array();
|
17 |
protected $conteneur = null;
|
- |
|
18 |
|
17 |
|
19 |
public function executer() {
|
- |
|
20 |
$cmd = $this->getParametre('a');
|
- |
|
21 |
$this->conteneur = new Conteneur($this->parametres);
|
- |
|
22 |
|
18 |
public function __construct($conteneur) {
|
23 |
switch ($cmd) {
|
- |
|
24 |
case 'corrigerNomsReferentiels' :
|
- |
|
25 |
$this->corrigerNomsReferentiels();
|
- |
|
26 |
break;
|
- |
|
27 |
case 'supprimerPropositionsOrphelines' :
|
- |
|
28 |
$this->supprimerPropositionsOrphelines();
|
- |
|
29 |
break;
|
- |
|
30 |
case 'affecterNnsAuxPropositionsViables' :
|
- |
|
31 |
$this->affecterNnsAuxPropositionsViables();
|
- |
|
32 |
break;
|
- |
|
33 |
case 'dedoublonnerPropositions' :
|
- |
|
34 |
$this->dedoublonnerPropositions();
|
- |
|
35 |
break;
|
- |
|
36 |
default :
|
19 |
$this->conteneur = new Conteneur($this->parametres);
|
37 |
throw new Exception("Erreur : la commande '$cmd' n'existe pas!");
|
Line 20... |
Line 38... |
20 |
$this->construireTableauReferentiels();
|
38 |
}
|
- |
|
39 |
}
|
- |
|
40 |
|
- |
|
41 |
private function corrigerNomsReferentiels() {
|
- |
|
42 |
|
- |
|
43 |
echo "Corrections des noms de referentiels ... ";
|
- |
|
44 |
|
- |
|
45 |
$requete = "UPDATE del_commentaire ".
|
- |
|
46 |
"SET nom_referentiel = 'bdtfx' ".
|
- |
|
47 |
"WHERE nom_referentiel IN ('bdtfx_v1', 'bdtfx:1.01') ";
|
- |
|
48 |
$modif = $this->conteneur->getBdd()->executer($requete);
|
- |
|
49 |
|
- |
|
50 |
$requete = "UPDATE del_commentaire ".
|
- |
|
51 |
"SET nom_referentiel = 'apd' ".
|
- |
|
52 |
"WHERE nom_referentiel IN ('bdtao', 'bdtao:1.00') ";
|
- |
|
53 |
$modif = $this->conteneur->getBdd()->executer($requete);
|
- |
|
54 |
|
- |
|
55 |
$requete = "UPDATE del_commentaire ".
|
- |
|
56 |
"SET nom_referentiel = 'bdtxa' ".
|
- |
|
57 |
"WHERE nom_referentiel IN ('bdtxa:1.00') ";
|
- |
|
58 |
$modif = $this->conteneur->getBdd()->executer($requete);
|
- |
|
59 |
|
- |
|
60 |
$requete = "UPDATE del_commentaire ".
|
- |
|
61 |
"SET nom_referentiel = 'isfan' ".
|
- |
|
62 |
"WHERE nom_referentiel IN ('isfan:1.00') ";
|
- |
|
63 |
$modif = $this->conteneur->getBdd()->executer($requete);
|
- |
|
64 |
|
- |
|
65 |
echo "OK \n";
|
- |
|
66 |
|
21 |
}
|
67 |
return $modif;
|
- |
|
68 |
}
|
22 |
|
69 |
|
- |
|
70 |
private function supprimerPropositionsOrphelines() {
|
- |
|
71 |
|
- |
|
72 |
echo "Suppression des propositions orphelines ... ";
|
- |
|
73 |
|
- |
|
74 |
$requete_prop = "DELETE FROM del_commentaire ".
|
- |
|
75 |
"WHERE ce_observation NOT IN (SELECT id_observation FROM del_observation)";
|
- |
|
76 |
$modif_prop = $this->conteneur->getBdd()->executer($requete_prop);
|
- |
|
77 |
|
- |
|
78 |
$requete_votes = "DELETE FROM del_commentaire_vote ".
|
- |
|
79 |
"WHERE ce_proposition NOT IN (SELECT id_commentaire FROM del_commentaire)";
|
- |
|
80 |
$modif_votes = $this->conteneur->getBdd()->executer($requete_votes);
|
- |
|
81 |
|
23 |
public function executer() {
|
82 |
echo "OK \n";
|
Line 24... |
Line 83... |
24 |
$this->affecterNnsAuxPropositionsViables();
|
83 |
|
25 |
//$this->affecterPropositionsRetenues();
|
84 |
return $modif_prop && $modif_votes;
|
26 |
}
|
85 |
}
|
Line 39... |
Line 98... |
39 |
"SELECT ce_observation FROM del_commentaire WHERE proposition_retenue = 0 ".
|
98 |
"SELECT ce_observation FROM del_commentaire WHERE proposition_retenue = 0 ".
|
40 |
") ".
|
99 |
") ".
|
41 |
"AND ce_observation NOT IN ( ".
|
100 |
"AND ce_observation NOT IN ( ".
|
42 |
"SELECT ce_observation FROM del_commentaire WHERE proposition_retenue = 1 ".
|
101 |
"SELECT ce_observation FROM del_commentaire WHERE proposition_retenue = 1 ".
|
43 |
") ";
|
102 |
") ";
|
- |
|
103 |
// Desactivé pour le moment le temps de trouver une meilleure idée
|
44 |
echo $requete;exit;
|
104 |
echo $requete;exit;
|
45 |
$modif = $this->executer($requete);
|
105 |
$modif = $this->conteneur->getBdd->executer($requete);
|
46 |
return $modif;
|
106 |
return $modif;
|
47 |
}
|
107 |
}
|
Line -... |
Line 108... |
- |
|
108 |
|
- |
|
109 |
private function dedoublonnerPropositions() {
|
- |
|
110 |
// La méthode n'est pas optimisé, on fait beaucoup de boucles, de traitement de données
|
- |
|
111 |
// etc... mais la méthode ne doit pas être lancée souvent et elle est rapide
|
- |
|
112 |
echo "Détection des propositions en doublons \n";
|
- |
|
113 |
|
- |
|
114 |
$infos_indexees = array();
|
- |
|
115 |
$infos_indexees_par_obs = array();
|
- |
|
116 |
|
- |
|
117 |
$requete_id_prod_doubl = "SELECT GROUP_CONCAT(id_commentaire) as id_commentaires_dupliques ".
|
- |
|
118 |
"FROM del_commentaire ".
|
- |
|
119 |
"WHERE ce_observation = 952835 ".
|
- |
|
120 |
"GROUP BY ce_observation, nom_sel ".
|
- |
|
121 |
"HAVING COUNT(nom_sel) > 1 ";
|
- |
|
122 |
|
- |
|
123 |
$ids_propositions_doublonnees = $this->conteneur->getBdd()->recupererTous($requete_id_prod_doubl);
|
- |
|
124 |
|
- |
|
125 |
$ids_propositions_doublonnees_chaine = "";
|
- |
|
126 |
foreach($ids_propositions_doublonnees as $ids_p_d) {
|
- |
|
127 |
$ids_propositions_doublonnees_chaine .= $ids_p_d['id_commentaires_dupliques'].",";
|
- |
|
128 |
}
|
- |
|
129 |
$ids_propositions_doublonnees_chaine = rtrim($ids_propositions_doublonnees_chaine, ',');
|
- |
|
130 |
|
- |
|
131 |
$requete_prop_doubl = "SELECT * FROM del_commentaire ".
|
- |
|
132 |
"WHERE id_commentaire IN (".$ids_propositions_doublonnees_chaine.") ".
|
- |
|
133 |
"ORDER BY ce_observation, date ";
|
- |
|
134 |
|
- |
|
135 |
$propositions_doublonnees = $this->conteneur->getBdd()->recupererTous($requete_prop_doubl);
|
- |
|
136 |
|
- |
|
137 |
echo count($propositions_doublonnees)." propositions pour ".count($ids_propositions_doublonnees)." observations sont en doublons \n";
|
- |
|
138 |
|
- |
|
139 |
foreach($propositions_doublonnees as &$proposition_d) {
|
- |
|
140 |
|
- |
|
141 |
$id_obs = $proposition_d['ce_observation'];
|
- |
|
142 |
$id_proposition = $proposition_d['id_commentaire'];
|
- |
|
143 |
$nom_sel_prop = $proposition_d['nom_sel'];
|
- |
|
144 |
|
- |
|
145 |
$infos_indexees[$id_proposition] = $proposition_d;
|
- |
|
146 |
if(!isset($infos_indexees_par_obs[$id_obs])) {
|
- |
|
147 |
$infos_indexees_par_obs[$id_obs] = array();
|
- |
|
148 |
}
|
- |
|
149 |
$proposition_d['votes'] = array();
|
- |
|
150 |
$infos_indexees_par_obs[$id_obs][$nom_sel_prop][$id_proposition] = $proposition_d;
|
- |
|
151 |
}
|
- |
|
152 |
|
- |
|
153 |
$requete_votes_prop_doubl = "SELECT * FROM del_commentaire_vote ".
|
- |
|
154 |
"WHERE ce_proposition IN (".$ids_propositions_doublonnees_chaine.")";
|
- |
|
155 |
|
- |
|
156 |
$votes_doublonnes = $this->conteneur->getBdd()->recupererTous($requete_votes_prop_doubl);
|
- |
|
157 |
|
- |
|
158 |
echo count($votes_doublonnes)." votes sont concernés \n";
|
- |
|
159 |
|
- |
|
160 |
foreach($votes_doublonnes as &$vote_d) {
|
- |
|
161 |
$id_proposition = $vote_d['ce_proposition'];
|
- |
|
162 |
$proposition_concernee = $infos_indexees[$id_proposition];
|
- |
|
163 |
$id_obs = $proposition_concernee['ce_observation'];
|
- |
|
164 |
$nom_sel_prop = $proposition_concernee['nom_sel'];
|
- |
|
165 |
|
- |
|
166 |
$infos_indexees[$vote_d['ce_proposition']]['votes'][] = $vote_d;
|
- |
|
167 |
$infos_indexees_par_obs[$id_obs][$nom_sel_prop][$id_proposition]['votes'][] = $vote_d;
|
- |
|
168 |
}
|
- |
|
169 |
|
- |
|
170 |
$nb_propositions_conservees = 0;
|
- |
|
171 |
$nb_propositions_supprimees = 0;
|
- |
|
172 |
$nb_votes_reaffectes = 0;
|
- |
|
173 |
|
- |
|
174 |
foreach($infos_indexees_par_obs as $obs => &$propositions) {
|
- |
|
175 |
foreach($propositions as $nom => &$doublons) {
|
- |
|
176 |
$this->trierPropositionsEtFusionnerVotes($doublons);
|
- |
|
177 |
$nb_propositions_conservees += count($doublons['propositions_conservees']);
|
- |
|
178 |
$nb_propositions_supprimees += count($doublons['propositions_supprimees']);
|
- |
|
179 |
$nb_votes_reaffectes += count($doublons['votes_propositions_doublons']);
|
- |
|
180 |
}
|
- |
|
181 |
}
|
- |
|
182 |
|
- |
|
183 |
echo $nb_propositions_conservees." propositions seront conservées \n";
|
- |
|
184 |
echo $nb_propositions_supprimees." propositions seront supprimées car inutiles ou fusionnées \n";
|
- |
|
185 |
echo $nb_votes_reaffectes." groupes de votes seront potentiellement réaffectés \n";
|
- |
|
186 |
|
- |
|
187 |
foreach($infos_indexees_par_obs as $obs => &$nom_en_doublons) {
|
- |
|
188 |
foreach($nom_en_doublons as $nom_en_doublon => &$propositions_en_doublons) {
|
- |
|
189 |
$this->mettreAJourPropositions($propositions_en_doublons);
|
- |
|
190 |
$this->afficherAvancement('observations traitées ', 1);
|
- |
|
191 |
}
|
- |
|
192 |
}
|
- |
|
193 |
echo "\n";
|
- |
|
194 |
|
- |
|
195 |
file_put_contents('/home/aurelien/web/test_fusion.json', json_encode($infos_indexees_par_obs));
|
- |
|
196 |
}
|
- |
|
197 |
|
- |
|
198 |
private function trierPropositionsEtFusionnerVotes(&$prop_a_doublons) {
|
- |
|
199 |
|
- |
|
200 |
$proposition_conservees = array();
|
- |
|
201 |
$propositions_supprimees = array();
|
- |
|
202 |
$votes_conserves = array();
|
- |
|
203 |
$votes_supprimes = array();
|
- |
|
204 |
|
- |
|
205 |
$nb_votes_max = 0;
|
- |
|
206 |
$prop_votes_max = null;
|
- |
|
207 |
|
- |
|
208 |
foreach($prop_a_doublons as &$prop) {
|
- |
|
209 |
//TODO: lowercase
|
- |
|
210 |
$index = strtolower($prop['nom_sel']).'-'.$prop['utilisateur_courriel'];
|
- |
|
211 |
$points = 0;
|
- |
|
212 |
// On conserve tous les votes pour tri ultérieur
|
- |
|
213 |
if(!empty($prop['votes'])) {
|
- |
|
214 |
// TODO: quoi faire dans le cas de votes contrad
|
- |
|
215 |
if(!isset($votes_conserves[$index])) {
|
- |
|
216 |
$votes_conserves[$index] = array();
|
- |
|
217 |
}
|
- |
|
218 |
|
- |
|
219 |
foreach($prop['votes'] as $vote_proposition) {
|
- |
|
220 |
$index_vote = $vote_proposition['ce_utilisateur'];
|
- |
|
221 |
if(isset($votes_conserves[$index][$index_vote])) {
|
- |
|
222 |
$vote_deja_present = $votes_conserves[$index][$index_vote];
|
- |
|
223 |
$valeur_vote_maj = max($votes_conserves[$index][$index_vote]['valeur'], $vote_proposition['valeur']);
|
- |
|
224 |
$votes_conserves[$index][$index_vote]['valeur'] = $valeur_vote_maj;
|
- |
|
225 |
$votes_conserves[$index][$index_vote]['raison'] .= ' - '.$vote_proposition['valeur'];
|
- |
|
226 |
} else {
|
- |
|
227 |
$vote_proposition['raison'] = 'Fusion de '.$vote_proposition['valeur'];
|
- |
|
228 |
$votes_conserves[$index][$index_vote] = $vote_proposition;
|
- |
|
229 |
}
|
- |
|
230 |
|
- |
|
231 |
}
|
- |
|
232 |
}
|
- |
|
233 |
|
- |
|
234 |
$conservee = false;
|
- |
|
235 |
$raison = 'Supprimée car ne rentre dans aucun cas';
|
- |
|
236 |
|
- |
|
237 |
// On garde les num noms valides
|
- |
|
238 |
if($prop['nom_sel_nn'] != "" && $prop['nom_sel_nn'] != 0) {
|
- |
|
239 |
if(isset($proposition_conservees[$index])) {
|
- |
|
240 |
$proposition_conservees[$index]['nom_sel_nn'] = $prop['nom_sel_nn'];
|
- |
|
241 |
if($proposition_conservees[$index]['nom_ret_nn'] == "" ||
|
- |
|
242 |
$proposition_conservees[$index]['nom_ret_nn'] == 0) {
|
- |
|
243 |
$proposition_conservees[$index]['nom_ret_nn'] = $prop['nom_ret_nn'];
|
- |
|
244 |
$proposition_conservees[$index]['nom_ret_nn'] = $prop['nom_ret_nn'];
|
- |
|
245 |
}
|
- |
|
246 |
$raison = "Fusionnée car nn valide ! \n";
|
- |
|
247 |
$conservee = false;
|
- |
|
248 |
} else {
|
- |
|
249 |
$raison = "Conservée car nn valide ! \n";
|
- |
|
250 |
$proposition_conservees[$index] = $prop;
|
- |
|
251 |
$conservee = true;
|
- |
|
252 |
}
|
- |
|
253 |
}
|
- |
|
254 |
|
- |
|
255 |
// On garde le caractère de proposition retenue
|
- |
|
256 |
if(!isset($proposition_conservees[$index]) && $prop['proposition_retenue'] == "1") {
|
- |
|
257 |
if(isset($proposition_conservees[$index])) {
|
- |
|
258 |
$proposition_conservees[$index]['proposition_retenue'] = $prop['proposition_retenue'];
|
- |
|
259 |
$proposition_conservees[$index]['date_validation'] = $prop['date_validation'];
|
- |
|
260 |
$proposition_conservees[$index]['ce_validateur'] = $prop['ce_validateur'];
|
- |
|
261 |
$raison = "Fusionnée car retenue ! \n";
|
- |
|
262 |
$conservee = false;
|
- |
|
263 |
} else {
|
- |
|
264 |
$raison = "Conservée car retenue ! \n";
|
- |
|
265 |
$proposition_conservees[$index] = $prop;
|
- |
|
266 |
$conservee = true;
|
- |
|
267 |
}
|
- |
|
268 |
}
|
- |
|
269 |
|
- |
|
270 |
// On garde le caractère de proposition initiale
|
- |
|
271 |
if(!isset($proposition_conservees[$index]) && $prop['proposition_initiale'] == "1") {
|
- |
|
272 |
if(isset($proposition_conservees[$index])) {
|
- |
|
273 |
$proposition_conservees[$index]['proposition_initiale'] = $prop['proposition_initiale'];
|
- |
|
274 |
$proposition_conservees[$index]['ce_utilisateur'] = $prop['ce_utilisateur'];
|
- |
|
275 |
$proposition_conservees[$index]['utilisateur_prenom'] = $prop['utilisateur_prenom'];
|
- |
|
276 |
$proposition_conservees[$index]['utilisateur_nom'] = $prop['utilisateur_nom'];
|
- |
|
277 |
$proposition_conservees[$index]['utilisateur_courriel'] = $prop['utilisateur_courriel'];
|
- |
|
278 |
$conservee = false;
|
- |
|
279 |
} else {
|
- |
|
280 |
$raison = "Conservée car initiale ! \n";
|
- |
|
281 |
$proposition_conservees[$index] = $prop;
|
- |
|
282 |
$conservee = true;
|
- |
|
283 |
}
|
- |
|
284 |
}
|
- |
|
285 |
|
- |
|
286 |
// Une proposition contenant un texte est tout même interessante aussi
|
- |
|
287 |
if(!isset($proposition_conservees[$index]) && trim($prop['texte']) != "") {
|
- |
|
288 |
if(isset($proposition_conservees[$index])) {
|
- |
|
289 |
$proposition_conservees[$index]['texte'] .= " ".$prop['texte'];
|
- |
|
290 |
$raison = "Fusionnée car contient du texte ! \n";
|
- |
|
291 |
$conservee = false;
|
- |
|
292 |
} else {
|
- |
|
293 |
$raison = "Conservée car contient du texte ! \n";
|
- |
|
294 |
$proposition_conservees[$index] = $prop;
|
- |
|
295 |
$conservee = true;
|
- |
|
296 |
}
|
- |
|
297 |
}
|
- |
|
298 |
|
- |
|
299 |
if($conservee) {
|
- |
|
300 |
$proposition_conservees[$index] = $prop;
|
- |
|
301 |
$proposition_conservees[$index]['raison'] = $raison;
|
- |
|
302 |
} else {
|
- |
|
303 |
// Si elle n'est rentrée dans aucun des cas de conservation alors on la supprime
|
- |
|
304 |
$propositions_supprimees[$prop['id_commentaire']] = $prop;
|
- |
|
305 |
$propositions_supprimees[$prop['id_commentaire']]['raison'] = $raison;
|
- |
|
306 |
}
|
- |
|
307 |
}
|
- |
|
308 |
|
- |
|
309 |
// Si aucune proposition ne convient on prend la première
|
- |
|
310 |
// qui est normalement la plus ancienne
|
- |
|
311 |
if(empty($proposition_conservees)) {
|
- |
|
312 |
$prop_conservee = reset($prop_a_doublons);
|
- |
|
313 |
$index = strtolower($prop_conservee['nom_sel']).'-'.$prop_conservee['utilisateur_courriel'];
|
- |
|
314 |
$proposition_conservees[$index] = $prop_conservee;
|
- |
|
315 |
$proposition_conservees[$index]['raison'] = "Conservée car aucune autre ne convient \n";
|
- |
|
316 |
|
- |
|
317 |
// Dans ce cas on retire la proposition qui sera conservée des propositions supprimées
|
- |
|
318 |
unset($propositions_supprimees[$prop_conservee['id_commentaire']]);
|
- |
|
319 |
}
|
- |
|
320 |
|
- |
|
321 |
$prop_a_doublons['propositions_conservees'] = $proposition_conservees;
|
- |
|
322 |
$prop_a_doublons['propositions_supprimees'] = $propositions_supprimees;
|
- |
|
323 |
$prop_a_doublons['votes_propositions_doublons'] = $votes_conserves;
|
- |
|
324 |
|
- |
|
325 |
}
|
- |
|
326 |
|
- |
|
327 |
private function mettreAJourPropositions(&$propositions_a_obs_a_nom) {
|
- |
|
328 |
//print_r($propositions_a_obs_a_nom);exit;
|
- |
|
329 |
$propositions_conservees = $propositions_a_obs_a_nom['propositions_conservees'];
|
- |
|
330 |
foreach($propositions_conservees as $index => $proposition_conservee) {
|
- |
|
331 |
|
- |
|
332 |
$id_proposition_conservee = $proposition_conservee['id_commentaire'];
|
- |
|
333 |
unset($proposition_conservee['votes']);
|
- |
|
334 |
unset($proposition_conservee['raison']);
|
- |
|
335 |
unset($proposition_conservee['id_commentaire']);
|
- |
|
336 |
$maj_prop = array();
|
- |
|
337 |
|
- |
|
338 |
foreach($proposition_conservee as $champ => $valeur) {
|
- |
|
339 |
$maj_prop[] = $champ.'='.$this->conteneur->getBdd()->proteger($valeur);
|
- |
|
340 |
}
|
- |
|
341 |
|
- |
|
342 |
$requete_maj_prop = "UPDATE del_commentaire SET ".implode(',', $maj_prop)." ".
|
- |
|
343 |
"WHERE id_commentaire = ".$id_proposition_conservee;
|
- |
|
344 |
|
- |
|
345 |
//$modif = $this->conteneur->getBdd->executer($requete_maj_prop);
|
- |
|
346 |
|
- |
|
347 |
if(isset($propositions_a_obs_a_nom['votes_propositions_doublons'][$index])) {
|
- |
|
348 |
$votes_a_proposition = $propositions_a_obs_a_nom['votes_propositions_doublons'][$index];
|
- |
|
349 |
//echo $requete."\n"."\n";
|
- |
|
350 |
//print_r($votes_a_proposition);exit;
|
- |
|
351 |
foreach($votes_a_proposition as $vote_a_proposition) {
|
- |
|
352 |
$id_vote_conserve = $vote_a_proposition['id_vote'];
|
- |
|
353 |
unset($vote_a_proposition['id_vote']);
|
- |
|
354 |
unset($vote_a_proposition['raison']);
|
- |
|
355 |
$maj_vote = array();
|
- |
|
356 |
|
- |
|
357 |
$vote_a_proposition['ce_proposition'] = $id_proposition_conservee;
|
- |
|
358 |
foreach($vote_a_proposition as $champ_v => $valeur_v) {
|
- |
|
359 |
$maj_vote[] = $champ_v.'='.$this->conteneur->getBdd()->proteger($valeur_v);
|
- |
|
360 |
}
|
- |
|
361 |
|
- |
|
362 |
$requete_maj_vote = "UPDATE del_commentaire_vote SET ".implode(',', $maj_vote)." ".
|
- |
|
363 |
"WHERE id_vote = ".$id_vote_conserve;
|
- |
|
364 |
echo $requete_maj_vote."\n";
|
- |
|
365 |
//$modif = $this->conteneur->getBdd->executer($requete_maj_prop);
|
- |
|
366 |
}
|
- |
|
367 |
}
|
- |
|
368 |
}
|
- |
|
369 |
//echo '<pre>'.print_r($proposition_a_obs, true).'</pre>';exit;
|
- |
|
370 |
}
|
48 |
|
371 |
|
Line -... |
Line 372... |
- |
|
372 |
private function affecterNnsAuxPropositionsViables() {
|
- |
|
373 |
|
49 |
private function affecterNnsAuxPropositionsViables() {
|
374 |
$this->construireTableauReferentiels();
|
50 |
|
375 |
|
Line 51... |
Line 376... |
51 |
echo "Affectation de nn aux propositions qui le permettent \n";
|
376 |
echo "Affectation de nn aux propositions qui le permettent \n";
|
52 |
$propositions = $this->obtenirPropositionsPotentiellementViables();
|
377 |
$propositions = $this->obtenirPropositionsPotentiellementViables();
|
Line 97... |
Line 422... |
97 |
|
422 |
|
98 |
// On ne met à jour qu'en étant absolument sur (si l'on a trouvé un seul nom)
|
423 |
// On ne met à jour qu'en étant absolument sur (si l'on a trouvé un seul nom)
|
99 |
if(count($noms_possibles) == 1) {
|
424 |
if(count($noms_possibles) == 1) {
|
100 |
$nom_dans_ref = array_pop($noms_possibles);
|
425 |
$nom_dans_ref = array_pop($noms_possibles);
|
101 |
if(isset($nom_dans_ref['num_nom'])) {
|
426 |
if(isset($nom_dans_ref['num_nom'])) {
|
102 |
$this->mettreAjourProposition($prop['id_commentaire'], $referentiel, array_pop($noms_possibles));
|
427 |
$this->mettreAjourProposition($prop['id_commentaire'], $referentiel, $nom_dans_ref);
|
103 |
$nb_prop_augmentees ++;
|
428 |
$nb_prop_augmentees ++;
|
104 |
}
|
429 |
}
|
105 |
}
|
430 |
}
|
Line 144... |
Line 469... |
144 |
private function mettreAjourProposition($id_proposition, $referentiel, $infos) {
|
469 |
private function mettreAjourProposition($id_proposition, $referentiel, $infos) {
|
145 |
$requete = "UPDATE del_commentaire ".
|
470 |
$requete = "UPDATE del_commentaire ".
|
146 |
"SET nom_sel_nn = ".$this->conteneur->getBdd()->proteger($infos['num_nom']).", ".
|
471 |
"SET nom_sel_nn = ".$this->conteneur->getBdd()->proteger($infos['num_nom']).", ".
|
147 |
" nom_referentiel = ".$this->conteneur->getBdd()->proteger($referentiel)." ".
|
472 |
" nom_referentiel = ".$this->conteneur->getBdd()->proteger($referentiel)." ".
|
148 |
"WHERE id_commentaire = ".$this->conteneur->getBdd()->proteger($id_proposition);
|
473 |
"WHERE id_commentaire = ".$this->conteneur->getBdd()->proteger($id_proposition);
|
- |
|
474 |
|
149 |
return $this->conteneur->getBdd()->requeter($requete);
|
475 |
return $this->conteneur->getBdd()->executer($requete);
|
150 |
}
|
476 |
}
|
Line 151... |
Line 477... |
151 |
|
477 |
|
152 |
private function construireTableauReferentiels() {
|
478 |
private function construireTableauReferentiels() {
|
153 |
$referentiels_dispos = explode(',', $this->conteneur->getParametre('referentiels'));
|
479 |
$referentiels_dispos = explode(',', $this->conteneur->getParametre('referentiels'));
|