Subversion Repositories eFlore/Applications.coel

Rev

Rev 1689 | Rev 1693 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1497 jpm 1
<?php
2
/**
3
 * Service fournissant la liste des structures et leurs informations.
4
 * Encodage en entrée : utf8
5
 * Encodage en sortie : utf8
6
 *
7
 * @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
 * @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
9
 * @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
10
 * @version $Id$
11
 * @copyright 2009
12
 */
13
class CoelStructure extends Coel {
14
 
15
	// ATTENTION : tjrs garder la table principale en premier, puis mettre les tables spécialisées.
16
	protected $tables = array(	120 => array(
17
									'nom' => 'coel_structure',
18
									'prefixe' => 'cs',
19
									'id' => array('cs_id_structure')),
1669 raphael 20
								122 => array(
21
									'nom' => 'coel_structure_conservation',
22
									'prefixe' => 'csc',
23
									'id' => array('csc_id_structure')),
24
								123 => array(
25
									'nom' => 'coel_structure_valorisation',
26
									'prefixe' => 'csv',
27
									'id' => array('csv_id_structure')));
1497 jpm 28
 
29
	/**
30
	 * Méthode principale appelée avec une requête de type GET.
31
	 */
32
	public function getElement($param = array()) {
33
		// Initialisation des variables
34
		$info = array();
35
 
36
		// Nour recherchons le type de requête demandé
37
		$type = $param[0];
38
 
39
		if ($type == '*' || is_numeric($type)) {
1673 raphael 40
			// Pré traitement des paramêtres
41
			$p = $this->traiterParametresUrl(array('id_projet', 'id_structure', 'recherche'), $param);
42
			$info = $this->getElementParDefaut($p);
1497 jpm 43
		} else {
44
			$methode = 'getElement'.$type;
45
			if (method_exists($this, $methode)) {
46
				array_shift($param);
47
				$info = $this->$methode($param);
48
			} else {
49
				$this->messages[] = "Le type d'information demandé '$type' n'est pas disponible.";
50
			}
51
		}
52
 
53
		// Envoie sur la sortie standard
54
		$this->envoyer($info);
55
	}
56
 
57
	/**
58
	 * Méthode par défaut pour garder la compatibilité avec Coel.
59
	 * Appelée avec les paramêtres d'url suivant :
60
	 * /CoelStructure/_/_/_
61
	 * ou les _ représentent dans l'ordre : id_projet, id_structure et nom
62
	 * Si un des paramêtres est abscent, il prendre la valeur *
63
	 */
1673 raphael 64
	public function getElementParDefaut($p) {
1497 jpm 65
		// Initialisation des variables
66
		$info = array();
1673 raphael 67
 
1688 raphael 68
        $whereClause = array();
69
        if(isset($p['id_projet'])) $whereClause[] = "cs_ce_projet = {$p['id_projet']}";
70
        if(isset($p['id_structure'])) $whereClause[] = "cs_id_structure = {$p['id_structure']}";
71
 
1691 raphael 72
        if(isset($p['recherche'])) {
73
            if(@$this->searchCity && trim($this->searchCity) == true) {
74
                $whereClause[] = "(" . implode(" OR ", array("cs_nom LIKE {$p['recherche']}", "cs_ville LIKE {$p['recherche']}")) . ")";
75
            } else {
76
                $whereClause[] = "cs_nom LIKE {$p['recherche']}";
77
            }
78
        }
1688 raphael 79
 
1497 jpm 80
		// Construction de la requête
1688 raphael 81
		$requete = sprintf(
82
            'SELECT SQL_CALC_FOUND_ROWS %s cs.*, csc.*, csv.*, cmhl_date_modification, cmhl_notes, cmhl_source, cmhl_ce_modifier_par, cmhl_ce_etat, cmhl_ip '
83
            . ' FROM coel_structure AS cs '
84
            . ' LEFT JOIN coel_meta_historique_ligne ON (cs_ce_meta = cmhl_id_historique_ligne) '
85
            . ' LEFT JOIN coel_structure_conservation AS csc ON (cs_id_structure = csc_id_structure) '
86
            . ' LEFT JOIN coel_structure_valorisation AS csv ON (cs_id_structure = csv_id_structure) '
87
            . ' WHERE %s ORDER BY %s LIMIT %d, %d -- %s:%d',
1497 jpm 88
 
1688 raphael 89
            $this->distinct ? 'DISTINCT' : '',
90
            $whereClause ? implode(" AND ", $whereClause) : TRUE,
91
            is_null($this->orderby) ? 'cs.cs_nom ASC' : $this->orderby,
92
            $this->start, $this->limit,
93
            __FILE__, __LINE__);
94
 
1689 raphael 95
        // Récupération des résultats
1497 jpm 96
		try {
97
			// SPÉCIAL :
98
			// Lorsqu'on cherche une seule structure avec un id passé en paramêtre, nous devons renvoyer un objet
1595 aurelien 99
			$donnees = ($this->formatRetour == 'objet' && isset($p['id_structure'])) ? $this->bdd->query($requete)->fetch(PDO::FETCH_OBJ) : $this->bdd->query($requete)->fetchAll(PDO::FETCH_ASSOC);
1497 jpm 100
			if ($donnees === false) {
101
				$this->messages[] = "La requête a retourné aucun résultat.";
102
			}
1689 raphael 103
 
104
            // l'UI java n'aime pas les NULL
105
            if(!is_array($donnees)) {
106
                // $donnees est un objet PHP
107
                array_walk($donnees, create_function('&$val', '$val = is_null($val) ? "" : $val;'));
108
            }
109
            else {
110
                // $donnees est un tableau d'objets PHP
111
                foreach($donnees as &$structure) {
112
                    array_walk($structure, create_function('&$val', '$val = is_null($val) ? "" : $val;'));
113
                }
114
            }
115
 
1688 raphael 116
			$elements_nbre = $this->bdd->query("SELECT FOUND_ROWS() AS c")->fetch(PDO::FETCH_ASSOC);
1689 raphael 117
			$info['nbElements'] = intval($elements_nbre['c']);
1497 jpm 118
			$info['structures'] = $donnees;
119
		} catch (PDOException $e) {
120
			$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage());
121
		}
122
 
123
		return $info;
124
	}
125
 
126
	/* Méthode pour récupérer le nombre de structure par zone géographique.
127
	 * Appelée avec les paramêtres d'url suivant :
128
	 * /CoelStructure/ParZoneGeo/_
129
	 * ou les _ représentent dans l'ordre : type.
130
	 * ou type peut valoir: FRD (= département français)
131
	 * Si un des paramêtres est abscent, il prendre la valeur *
132
	 */
133
	public function getElementParZoneGeo($param) {
134
		// Initialisation des variables
135
		$info = array();
136
 
137
		// Pré traitement des paramêtres
1581 jpm 138
		$p = $this->traiterParametresUrl(array('type', 'projets'), $param);
1497 jpm 139
		if (!isset($p['type'])) {
140
			$this->messages[] = "Il est obligatoire d'indiquer type de recherche pour utiliser ce service.";
141
		} else {
142
			// Construction de la requête
1669 raphael 143
			$requete =	(($this->distinct) ? 'SELECT DISTINCT' : 'SELECT').' '.
1497 jpm 144
						'	IF ( SUBSTRING( cs_code_postal FROM 1 FOR 2 ) >= 96, '.
145
						'		SUBSTRING( cs_code_postal FROM 1 FOR 3 ), '.
146
						'		SUBSTRING( cs_code_postal FROM 1 FOR 2 ) ) AS id, '.
147
						'	COUNT( cs_id_structure ) AS nbre '.
148
						'FROM coel_structure '.
149
						'WHERE cs_ce_truk_pays = 2654 '.
1581 jpm 150
						(isset($p['projets']) ? "	AND cs_ce_projet IN ({$p['projets']}) " : '').
1497 jpm 151
						'GROUP BY IF ( SUBSTRING( cs_code_postal FROM 1 FOR 2 ) >= 96, '.
152
						'	SUBSTRING( cs_code_postal FROM 1 FOR 3 ), '.
153
						'	SUBSTRING( cs_code_postal FROM 1 FOR 2 ) ) '.
154
						'ORDER BY '.((!is_null($this->orderby)) ? $this->orderby  : 'id ASC').' ';
155
			// Récupération des résultats
156
			try {
157
				$donnees = $this->bdd->query($requete)->fetchAll(PDO::FETCH_ASSOC);
158
				if ($donnees === false) {
159
					$this->messages[] = "La requête a retourné aucun résultat.";
160
				} else {
161
					foreach ($donnees as $donnee) {
162
						$info[$donnee['id']] = $donnee['nbre'];
163
					}
164
				}
165
			} catch (PDOException $e) {
166
				$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage());
167
			}
168
		}
169
		return $info;
170
	}
171
 
172
	/**
173
	 * Méthode appelée pour ajouter un élément.
174
	 */
175
	public function createElement($params) {
176
		// Identification de l'utilisateur
177
		list($id_utilisateur, $id_session) = $this->getIdentification($params);
1648 raphael 178
 
1497 jpm 179
		// Contrôle du non détournement de l'utilisateur
1648 raphael 180
		if (!$this->etreAutorise($id_utilisateur)) {
181
			$this->envoyer();
182
			return;
183
		}
184
		try {
185
			// Vérification des tables à vraiment mettre à jour en fonction des données passées.
1649 raphael 186
			if( (! @$params['cs_latitude'] || ! @$params['cs_longitude']) &&
187
				(@$params['cs_adresse_01'] || @$params['cs_code_postal'] || @$params['cs_ville']) ) {
188
				$lonlat = array();
189
				if(Coel::coordGuess(Coel::addrReStruct($params), $lonlat)) {
190
					$params['cs_latitude'] = $lonlat['lat'];
191
					$params['cs_longitude'] = $lonlat['lon'];
192
				}
193
			}
194
 
1648 raphael 195
			$tables_a_modifier = $this->recupererTablesAModifier($params);
196
			reset($tables_a_modifier);
1649 raphael 197
 
1648 raphael 198
			$id_structure = null;
199
			while (list($table_id, $table) = each($tables_a_modifier)) {
200
				if (is_null($table['champs'])) continue;
201
				if ($this->avoirCleComplete($table)) {
202
					$this->mettreAJourAvecCle($id_utilisateur, $id_session, $table_id, $table);
203
					continue;
204
				}
205
 
206
				// Ajout des données à la table des données
207
				$id_structure = $this->ajouter($table);
208
				if ($id_structure === false) continue;
209
 
210
				$table['champs_valeurs_id']['cs_id_structure'] = $id_structure;
211
				$table['champs_valeurs_brut']['cs_id_structure'] = $id_structure;
212
				$tables_a_modifier[122]['champs_valeurs_id']['csc_id_structure'] = $id_structure;
213
				$tables_a_modifier[122]['champs_valeurs_brut']['csc_id_structure'] = $id_structure;
214
				$tables_a_modifier[122]['champs_valeurs_protege']['csc_id_structure'] = $this->bdd->quote($id_structure);
215
				$tables_a_modifier[123]['champs_valeurs_id']['csv_id_structure'] = $id_structure;
216
				$tables_a_modifier[123]['champs_valeurs_brut']['csv_id_structure'] = $id_structure;
217
				$tables_a_modifier[123]['champs_valeurs_protege']['csv_id_structure'] = $this->bdd->quote($id_structure);
1649 raphael 218
 
1648 raphael 219
				// Historisation (Ajout des méta-données)
220
				$etat = 1; // Ajout
221
				$cle = $this->recupererCle($table);
222
				$info = $this->creerXmlHisto($table['champs_valeurs_brut']);
223
				$id_meta = $this->historiser($table_id, $cle, $info, $id_utilisateur, $etat, $id_session);
1497 jpm 224
 
1648 raphael 225
				// Liaison de la table des données à ses méta-données
226
				$champ_meta = "{$table['prefixe']}_ce_meta";
227
				$table['champs_valeurs_protege'] = array($champ_meta => $id_meta);
228
				$this->modifier($table);
229
			}
230
 
231
			if(isset($params['cpr_abreviation']) && !empty($params['cpr_abreviation'])) {
1497 jpm 232
				$this->ajouterGuid($params['cpr_abreviation'], $id_structure);
233
			}
1648 raphael 234
		} catch (PDOException $e) {
235
			$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage(), $requete);
236
		}
1669 raphael 237
 
238
		$this->envoyer($id_structure);
1497 jpm 239
	}
240
 
241
	/**
242
	 * Méthode appelée pour mettre à jour un élément
243
	 */
244
	public function updateElement($uid, $params) {
245
		// Vérification de la présence des id passés par l'url
246
		if (!isset($uid[0])) {
247
			$this->messages[] = "Identifiant de structure manquant. Vous ne devriez pas avoir accès à ce service.";
1648 raphael 248
			$this->envoyer();
249
			return;
250
		}
251
 
252
		// Identification de l'utilisateur
253
		list($id_utilisateur, $id_session) = $this->getIdentification($params);
254
		// Contrôle du non détournement de l'utilisateur
255
		if (!$this->etreAutorise($id_utilisateur)) {
256
			$this->envoyer();
257
			return;
258
		}
259
		try {
1651 raphael 260
			$form_needs_refresh = FALSE;
261
			if( (! @$params['cs_latitude'] || ! @$params['cs_longitude']) &&
262
				(@$params['cs_adresse_01'] || @$params['cs_code_postal'] || @$params['cs_ville']) ) {
263
				$lonlat = array();
264
				if(Coel::coordGuess(Coel::addrReStruct($params), $lonlat)) {
265
					$params['cs_latitude'] = $lonlat['lat'];
266
					$params['cs_longitude'] = $lonlat['lon'];
267
					$form_needs_refresh = TRUE;
268
				}
269
			}
1685 raphael 270
            if(array_key_exists('cs_nbre_personne', $params) && !is_numeric($params['cs_nbre_personne'])) {
271
                $params['cs_nbre_personne'] = NULL;
272
            }
1651 raphael 273
 
1648 raphael 274
			// Vérification des tables à vraiment mettre à jour en fonction des données passées.
275
			$tables_a_modifier = $this->recupererTablesAModifier($params);
276
			// Pour chaque table du module nous lançons si nécessaire l'historisation puis la mise à jour
277
			foreach ($tables_a_modifier as $table_id => $table) {
1670 raphael 278
				if(@$table['nom'] == 'coel_structure' && !$this->avoirCleComplete($table)) {
279
					error_log("tentative d'UPDATE sans contrainte de WHERE, \$table = " . print_r($table, TRUE));
1669 raphael 280
					continue; // ne pas mettre à jour sans contrainte de WHERE
281
				}
1648 raphael 282
				$this->mettreAJourAvecCle($id_utilisateur, $id_session, $table_id, $table);
283
			}
284
		} catch (PDOException $e) {
285
			$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage(), $requete);
1497 jpm 286
		}
1651 raphael 287
 
1497 jpm 288
		// Envoie sur la sortie standard
1651 raphael 289
 
290
		if($form_needs_refresh) { // coordonnées mises à jour en DB: en informer le formulaire (si resté ouvert)
1673 raphael 291
			$this->envoyer($this->getElementParDefaut(array('id_structure' => $uid[0])));
292
			exit;
1651 raphael 293
		}
294
		$this->envoyer(); // OK par défaut
1497 jpm 295
	}
296
 
297
	/**
298
	 * Méthode appelée pour supprimer un élément
299
	 */
300
	public function deleteElement($uid) {
1669 raphael 301
		// NOTES : une structure ne peut pas être supprimée si elle possède des collections liées.
1497 jpm 302
		// Vérification de la présence des id passés par l'url
303
		if (!isset($uid[0]) || !isset($uid[1])) {
304
				$this->messages[] = "Identifiant de structure ou d'utilisateur manquant. Vous ne devriez pas avoir accès à ce service.";
305
		} else {
306
			// Identification de l'utilisateur
307
			list($id_utilisateur, $id_session) = $this->getIdentification($uid[0]);
308
 
309
			// Contrôle du non détournement de l'utilisateur
1669 raphael 310
			if ($this->etreAutorise($id_utilisateur)) {
1497 jpm 311
				// Récupération des id passés par l'url
312
				$identifiants = explode(',', rtrim($uid[1], ','));
313
 
1669 raphael 314
				try {
315
					if (count($identifiants) == 0) {
316
						$this->messages[] = "Aucun enregistrement n'a été supprimé.";
317
					} else {
318
						foreach ($identifiants as $id_structure) {
319
							// Vérification que la structure ne possède pas de collections liées
1497 jpm 320
							if ($this->verifierPresenceCollection($id_structure) === false) {
321
								$params = array('cs_id_structure' => $id_structure, 'csc_id_structure' => $id_structure, 'csv_id_structure' => $id_structure);
322
								$tables_a_modifier = $this->recupererTablesAModifier($params);
323
 
324
								foreach ($tables_a_modifier as $table_id => $table) {
1669 raphael 325
									if ($this->avoirEnregistrement($table)) {
326
										$resultat = $this->supprimer($table);
1497 jpm 327
										if ($resultat === true) {
328
											// Historisation (Ajout des méta-données)
329
											$cle = $this->recupererCle($table);
330
											$this->historiser($table_id, $cle, 'NULL', $id_utilisateur, 3, $id_session);
331
										}
1669 raphael 332
									}
333
								}
1497 jpm 334
							} else {
335
								$this->messages[] = "La structure '$id_structure' ne peut pas être supprimée car elle possède des collections liées.";
336
							}
1669 raphael 337
						}
338
					}
339
				} catch (PDOException $e) {
1497 jpm 340
					$this->messages[] = sprintf($this->getTxt('sql_erreur'), $e->getFile(), $e->getLine(), $e->getMessage(), $requete);
341
				}
1669 raphael 342
			}
1497 jpm 343
		}
344
 
345
		// Envoie sur la sortie standard
346
		$this->envoyer();
347
	}
348
 
349
	private function verifierPresenceCollection($id_structure) {
1669 raphael 350
		$requete =	'SELECT COUNT(cc_id_collection) AS nbre_collection '.
1497 jpm 351
					'FROM coel_collection '.
352
					"WHERE cc_ce_structure = '$id_structure' ".
1669 raphael 353
					'GROUP BY cc_ce_structure ';
354
 
1497 jpm 355
		// Vérification que la structure ne possède pas de collections liées
356
		$nbre_collection = $this->bdd->query($requete)->fetchColumn();
357
 
358
		$presence = false;
359
		if ($nbre_collection != 0) {
360
			$presence = true;
361
		}
362
		return $presence;
363
	}
364
 
365
	private function ajouterGuid($abr_projet, $id_structure) {
366
		if ($id_structure !== false) {
367
			$table_guid = $this->tables[120];
368
			$table_guid['champs_valeurs_id']['cs_id_structure'] = $id_structure;
369
			$table_guid['champs_valeurs_protege']['cs_guid'] = $this->bdd->quote(sprintf($this->config['coel']['guid'], $abr_projet, 'str'.$id_structure));
370
			$this->modifier($table_guid);
371
		}
372
	}
373
}
374
?>