1497 |
jpm |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* Service fournissant la liste des projets et leurs informations
|
|
|
4 |
* Encodage en entrée : utf8
|
|
|
5 |
* Encodage en sortie : utf8
|
|
|
6 |
*
|
|
|
7 |
* @author Grégoire DUCHÉ <gregoire@tela-botanica.org>
|
|
|
8 |
* @author Jean-Pascal MILECNT <jpm@tela-botanica.org>
|
|
|
9 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
10 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
11 |
* @version $Id$
|
|
|
12 |
* @copyright 2009
|
|
|
13 |
*/
|
|
|
14 |
|
|
|
15 |
class CoelProjet extends Coel {
|
|
|
16 |
|
|
|
17 |
protected $tables = array(115 => array( 'nom' => 'coel_projet',
|
|
|
18 |
'prefixe' => 'cpr',
|
|
|
19 |
'id' => array('cpr_id_projet')));
|
|
|
20 |
|
|
|
21 |
/**
|
|
|
22 |
* Méthode appelée avec une requête de type GET.
|
|
|
23 |
*/
|
|
|
24 |
public function getElement($param = array()) {
|
|
|
25 |
// Initialisation de variables
|
|
|
26 |
$info = array();
|
|
|
27 |
|
|
|
28 |
// Pré traitement des paramêtres
|
|
|
29 |
$p = $this->traiterParametresUrl(array('id_projet', 'cpr_nom'), $param);
|
|
|
30 |
|
|
|
31 |
// Nous avons un identifiant de projet, nous récupérons seulement les informations du projet donné
|
|
|
32 |
$requete = (($this->distinct) ? 'SELECT DISTINCT' : 'SELECT').' * '.
|
|
|
33 |
'FROM coel_projet '.
|
|
|
34 |
((count($p) != 0) ? 'WHERE ' : '').
|
|
|
35 |
((isset($p['cpr_nom'])) ? "AND cpr_nom LIKE {$p['cpr_nom']} " : '').
|
|
|
36 |
((isset($p['id_projet'])) ? "AND cpr_id_projet = {$p['id_projet']} " : '').
|
|
|
37 |
'ORDER BY '.((!is_null($this->orderby)) ? $this->orderby : 'cpr_id_projet ASC').' ';
|
|
|
38 |
|
|
|
39 |
$requete = str_replace('WHERE AND', 'WHERE', $requete);
|
|
|
40 |
$requeteCount = $requete;
|
|
|
41 |
$requete .= "LIMIT $this->start, $this->limit ";
|
|
|
42 |
|
|
|
43 |
// Récupération des résultats
|
|
|
44 |
try {
|
|
|
45 |
// SPÉCIAL :
|
|
|
46 |
// Lorsqu'on cherche un seul projet avec un id passé en paramêtre, nous devons renvoyer un objet
|
1595 |
aurelien |
47 |
$donnees = ($this->formatRetour == 'objet' && isset($p['id_projet'])) ? $this->bdd->query($requete)->fetch(PDO::FETCH_OBJ) : $this->bdd->query($requete)->fetchAll(PDO::FETCH_ASSOC);
|
1497 |
jpm |
48 |
if ($donnees === false) {
|
|
|
49 |
$this->messages[] = "La requête n'a retourné aucun résultat.";
|
|
|
50 |
}
|
|
|
51 |
|
|
|
52 |
$nbElements = $this->bdd->query($requeteCount)->rowCount();
|
|
|
53 |
|
|
|
54 |
$info['nbElements'] = $nbElements;
|
|
|
55 |
$info['projets'] = $donnees;
|
|
|
56 |
} catch (PDOException $e) {
|
|
|
57 |
$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage());
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
// Envoie sur la sortie standard
|
|
|
61 |
$this->envoyer($info);
|
|
|
62 |
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
/**
|
|
|
66 |
* Méthode appelée pour ajouter un élément.
|
|
|
67 |
*/
|
|
|
68 |
public function createElement($params) {
|
|
|
69 |
// Identification de l'utilisateur
|
|
|
70 |
list($id_utilisateur, $id_session) = $this->getIdentification($params);
|
|
|
71 |
// Contrôle du non détournement de l'utilisateur
|
|
|
72 |
if ($this->etreAutorise($id_utilisateur)) {
|
|
|
73 |
try {
|
|
|
74 |
// Vérification des tables à vraiment mettre à jour en fonction des données passées.
|
|
|
75 |
$tables_a_modifier = $this->recupererTablesAModifier($params);
|
|
|
76 |
reset($tables_a_modifier);
|
|
|
77 |
|
|
|
78 |
$id_projet = null;
|
|
|
79 |
while (list($table_id, $table) = each($tables_a_modifier)) {
|
|
|
80 |
if (!is_null($table['champs'])) {
|
|
|
81 |
if (!$this->avoirCleComplete($table)) {
|
|
|
82 |
// Ajout des données à la table des données
|
|
|
83 |
$id_projet = $this->ajouter($table);
|
|
|
84 |
if ($id_projet !== false) {
|
|
|
85 |
$table['champs_valeurs_id']['cpr_id_projet'] = $id_projet;
|
|
|
86 |
$table['champs_valeurs_brut']['cpr_id_projet'] = $id_projet;
|
|
|
87 |
|
|
|
88 |
// Historisation (Ajout des méta-données)
|
|
|
89 |
$etat = 1; // Ajout
|
|
|
90 |
$cle = $this->recupererCle($table);
|
|
|
91 |
$id_projet = $cle;
|
|
|
92 |
$info = $this->creerXmlHisto($table['champs_valeurs_brut']);
|
|
|
93 |
$id_meta = $this->historiser($table_id, $cle, $info, $id_utilisateur, $etat, $id_session);
|
|
|
94 |
|
|
|
95 |
// Liaison de la table des données à ses méta-données
|
|
|
96 |
$champ_meta = "{$table['prefixe']}_ce_meta";
|
|
|
97 |
$table['champs_valeurs_protege'] = array($champ_meta => $id_meta);
|
|
|
98 |
$this->modifier($table);
|
|
|
99 |
}
|
|
|
100 |
} else {
|
|
|
101 |
$this->mettreAJourAvecCle($id_utilisateur, $id_session, $table_id, $table);
|
|
|
102 |
}
|
|
|
103 |
}
|
|
|
104 |
}
|
|
|
105 |
} catch (PDOException $e) {
|
|
|
106 |
$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage(), $requete);
|
|
|
107 |
}
|
|
|
108 |
} else {
|
|
|
109 |
$this->messages[] = "Il faut être identifié pour accéder à ce service";
|
|
|
110 |
}
|
|
|
111 |
|
|
|
112 |
$this->envoyer((string)$id_projet);
|
|
|
113 |
}
|
|
|
114 |
|
|
|
115 |
/**
|
|
|
116 |
* Méthode appelée pour mettre à jour un élément
|
|
|
117 |
*/
|
|
|
118 |
public function updateElement($uid, $params) {
|
|
|
119 |
// Vérification de la présence des id passés par l'url
|
|
|
120 |
$id_projet = "0";
|
|
|
121 |
if (!isset($uid[0])) {
|
|
|
122 |
$this->messages[] = "Identifiant de projet manquant. Vous ne devriez pas avoir accès à ce service.";
|
|
|
123 |
} else {
|
|
|
124 |
// Identification de l'utilisateur
|
|
|
125 |
list($id_utilisateur, $id_session) = $this->getIdentification($params);
|
|
|
126 |
|
|
|
127 |
// Contrôle du non détournement de l'utilisateur
|
|
|
128 |
if ($this->etreAutorise($id_utilisateur)) {
|
|
|
129 |
try {
|
|
|
130 |
// Vérification des tables à vraiment mettre à jour en fonction des données passées.
|
|
|
131 |
$tables_a_modifier = $this->recupererTablesAModifier($params);
|
|
|
132 |
|
|
|
133 |
// Pour chaque table du module nous lançons si nécessaire l'historisation puis la mise à jour
|
|
|
134 |
foreach ($tables_a_modifier as $table_id => $table) {
|
|
|
135 |
$this->mettreAJourAvecCle($id_utilisateur, $id_session, $table_id, $table);
|
|
|
136 |
}
|
|
|
137 |
} catch (PDOException $e) {
|
|
|
138 |
$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage(), $requete);
|
|
|
139 |
}
|
|
|
140 |
$id_projet = $params['cpu_id_projet'] ;
|
|
|
141 |
}
|
|
|
142 |
}
|
|
|
143 |
|
|
|
144 |
// Envoie sur la sortie standard
|
|
|
145 |
$this->envoyer();
|
|
|
146 |
}
|
|
|
147 |
|
|
|
148 |
/**
|
|
|
149 |
* Méthode appelée pour supprimer un élément
|
|
|
150 |
*/
|
|
|
151 |
public function deleteElement($uid) {
|
|
|
152 |
// NOTES : un projet ne peut pas être supprimé si il possède des éléments liés.
|
|
|
153 |
// Vérification de la présence des id passés par l'url
|
|
|
154 |
if (!isset($uid[0]) || !isset($uid[1])) {
|
|
|
155 |
$this->messages[] = "Identifiant de projet ou d'utilisateur manquant. Vous ne devriez pas avoir accès à ce service.";
|
|
|
156 |
} else {
|
|
|
157 |
// Identification de l'utilisateur
|
|
|
158 |
list($id_utilisateur, $id_session) = $this->getIdentification($uid[0]);
|
|
|
159 |
|
|
|
160 |
// Contrôle du non détournement de l'utilisateur
|
|
|
161 |
if ($this->etreAutorise($id_utilisateur)) {
|
|
|
162 |
// Récupération des id passés par l'url
|
|
|
163 |
$identifiants = explode(',', rtrim($uid[1], ','));
|
|
|
164 |
|
|
|
165 |
try {
|
|
|
166 |
if (count($identifiants) == 0) {
|
|
|
167 |
$this->messages[] = "Aucun enregistrement n'a été supprimé.";
|
|
|
168 |
} else {
|
|
|
169 |
$idsProjetsNonSupprimes = "";
|
|
|
170 |
foreach ($identifiants as $id_projet) {
|
|
|
171 |
$params = array('cpr_id_projet' => $id_projet);
|
|
|
172 |
$tables_a_modifier = $this->recupererTablesAModifier($params);
|
|
|
173 |
|
|
|
174 |
//Vérifions que le projet n'a aucune liaison
|
|
|
175 |
$existeLiaisons = false;
|
|
|
176 |
$i = 5;
|
|
|
177 |
while (!$existeLiaisons && $i > 0) {
|
|
|
178 |
switch ($i) {
|
|
|
179 |
case 5 :
|
|
|
180 |
$requete = "SELECT * FROM coel_collection WHERE cc_ce_projet = '{$id_projet}' ";
|
|
|
181 |
break;
|
|
|
182 |
case 4 :
|
|
|
183 |
$requete = "SELECT * FROM coel_structure WHERE cs_ce_projet = '{$id_projet}' ";
|
|
|
184 |
break;
|
|
|
185 |
case 3 :
|
|
|
186 |
$requete = "SELECT * FROM coel_commentaire WHERE ccm_ce_projet = '{$id_projet}' ";
|
|
|
187 |
break;
|
|
|
188 |
case 2 :
|
|
|
189 |
$requete = "SELECT * FROM coel_publication WHERE cpu_ce_projet = '{$id_projet}' ";
|
|
|
190 |
break;
|
|
|
191 |
case 1 :
|
|
|
192 |
$requete = "SELECT * FROM coel_personne WHERE cp_ce_projet = '{$id_projet}' ";
|
|
|
193 |
break;
|
|
|
194 |
}
|
|
|
195 |
|
|
|
196 |
$resultat = $this->bdd->query($requete)->rowCount();
|
|
|
197 |
//$this->debug[] = $requete." => ".$resultat;
|
|
|
198 |
if ($resultat > 0) {
|
|
|
199 |
$existeLiaisons = true;
|
|
|
200 |
}
|
|
|
201 |
|
|
|
202 |
$i--;
|
|
|
203 |
}
|
|
|
204 |
|
|
|
205 |
if (!$existeLiaisons) {
|
|
|
206 |
foreach ($tables_a_modifier as $table_id => $table) {
|
|
|
207 |
if ($this->avoirEnregistrement($table)) {
|
|
|
208 |
$resultat = $this->supprimer($table);
|
|
|
209 |
if ($resultat === true) {
|
|
|
210 |
// Historisation (Ajout des méta-données)
|
|
|
211 |
$cle = $this->recupererCle($table);
|
|
|
212 |
$this->historiser($table_id, $cle, 'NULL', $id_utilisateur, 3, $id_session);
|
|
|
213 |
}
|
|
|
214 |
}
|
|
|
215 |
}
|
|
|
216 |
} else {
|
|
|
217 |
$idsProjetsNonSupprimes .= $id_projet.",";
|
|
|
218 |
}
|
|
|
219 |
}
|
|
|
220 |
}
|
|
|
221 |
} catch (PDOException $e) {
|
|
|
222 |
$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage(), $requete);
|
|
|
223 |
}
|
|
|
224 |
}
|
|
|
225 |
}
|
|
|
226 |
|
|
|
227 |
$info = null;
|
|
|
228 |
if ($idsProjetsNonSupprimes != "") {
|
|
|
229 |
$info = array();
|
|
|
230 |
$info[0] = $idsProjetsNonSupprimes;
|
|
|
231 |
}
|
|
|
232 |
|
|
|
233 |
// Envoie sur la sortie standard
|
|
|
234 |
$this->envoyer($info);
|
|
|
235 |
}
|
|
|
236 |
}
|
|
|
237 |
?>
|