Subversion Repositories eFlore/Applications.cel

Rev

Rev 1229 | Rev 1236 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1229 Rev 1234
Line 15... Line 15...
15
 * @copyright © 2011, Jean-Pascal MILCENT
15
 * @copyright © 2011, Jean-Pascal MILCENT
16
 */
16
 */
17
class CelWidgetSaisie extends CelMotCle {
17
class CelWidgetSaisie extends CelMotCle {
Line 18... Line 18...
18
 
18
 
-
 
19
	private $projet = null;
-
 
20
	private $tagsObs = null;
19
	private $projet = null;
21
	private $tagsImg = null;
20
	private $utilisateur_id = null;
22
	private $utilisateur_id = null;
21
	const DUREE_DE_VIE_IMG = 86400;// 3600 * 24 * 2 = 172 800
23
	const DUREE_DE_VIE_IMG = 86400;// 3600 * 24 * 2 = 172 800
Line 22... Line 24...
22
	const ARRET_SERVICE = false;// Permet de bloquer le service en cas de problème sur le serveur
24
	const ARRET_SERVICE = false;// Permet de bloquer le service en cas de problème sur le serveur
23
 
25
 
24
	public function createElement($requeteDonnees) {
26
	public function createElement($requeteDonnees) {
25
		if (self::ARRET_SERVICE) {
27
		if (self::ARRET_SERVICE) {
26
			$this->messages[] = "Désactivation temporaire du service d'envoi des données au CEL.";
28
			$this->messages[] = "Désactivation temporaire du service d'envoi des données au CEL.";
27
		} else if (array_key_exists('projet', $requeteDonnees)) {
29
		} else if (array_key_exists('projet', $requeteDonnees)) {
-
 
30
			$this->debug[] = 'Projet : ok';
-
 
31
			$this->projet = $requeteDonnees['projet'];
-
 
32
			if (array_key_exists('tag-obs', $requeteDonnees) && $requeteDonnees['tag-obs'] != '') {
-
 
33
				$this->tagsObs = explode(',', $requeteDonnees['tag-obs']);
-
 
34
			}
-
 
35
			$this->tagsObs[] = 'Projets coopératifs>'.$this->projet;
-
 
36
			if (array_key_exists('tag-img', $requeteDonnees) && $requeteDonnees['tag-img'] != '') {
-
 
37
				$this->tagsImg = explode(',', $requeteDonnees['tag-img']);
28
			$this->debug[] = 'Projet : ok';
38
			}
29
			$this->projet = $requeteDonnees['projet'];
39
			$this->tagsImg[] = 'Projets coopératifs>'.$this->projet;
30
			if (array_key_exists('utilisateur', $requeteDonnees)) {
40
			if (array_key_exists('utilisateur', $requeteDonnees)) {
31
				$this->debug[] = 'Utilisateur : ok';
41
				$this->debug[] = 'Utilisateur : ok';
32
				$utilisateur = $requeteDonnees['utilisateur'];
42
				$utilisateur = $requeteDonnees['utilisateur'];
Line 93... Line 103...
93
							}
103
							}
94
						}
104
						}
95
						$this->debug[] = 'Nbre obs ajoutée : '.count($observations);
105
						$this->debug[] = 'Nbre obs ajoutée : '.count($observations);
Line 96... Line 106...
96
 
106
 
97
						// Insertion dans la base
107
						// Insertion dans la base
98
						$ok = true;
108
						$obs_a_taguer = array();
99
						$obs_a_lier = array();
109
						$img_a_taguer = array();
100
						foreach ($observations as $infos) {
110
						foreach ($observations as $infos) {
101
							$obs = $infos['obs'];
111
							$obs = $infos['obs'];
Line 102... Line 112...
102
							$img = $infos['img'];
112
							$img = $infos['img'];
Line 112... Line 122...
112
								}
122
								}
Line 113... Line 123...
113
 
123
 
114
								$this->debug[] = 'Nom fichier img debut :'.$nomFichierImg;
124
								$this->debug[] = 'Nom fichier img debut :'.$nomFichierImg;
115
								$idImg = $this->ajouterImageSurDdEtBdd($img['id_utilisateur'], $cheminImage, $nomFichierImg);
125
								$idImg = $this->ajouterImageSurDdEtBdd($img['id_utilisateur'], $cheminImage, $nomFichierImg);
116
								if ($idImg !== false) {
126
								if ($idImg !== false) {
-
 
127
									$liaisonOk = $this->lierObsEtImg($idImg, $img['id_utilisateur'], $img['id_obs']);
-
 
128
									if ($liaisonOk === true) {
-
 
129
										$img_a_taguer[] = $idImg;
117
									$this->lierObsEtImg($idImg, $img['id_utilisateur'], $img['id_obs']);
130
									}
118
								}
131
								}
Line 119... Line -...
119
							}
-
 
120
 
132
							}
121
							$requete = 'INSERT INTO cel_inventory '.
133
 
122
								'('.implode(', ', array_keys($obs)).') '.
134
							$champs = implode(', ', array_keys($obs));
-
 
135
							$valeurs = implode(', ', $obs);
123
								'VALUES ('.implode(', ', $obs).') ';
136
							$requete = "INSERT INTO cel_inventory ($champs) VALUES ($valeurs) ";
124
							$this->debug[] = $requete;
137
 
125
							if ($this->executerRequeteSimple($requete) === false) {
138
							if ($this->executerRequeteSimple($requete) === false) {
126
								$ok = false;
139
								$this->messages[] = "Un problème est survenu lors de l'insertion de l'obs dans la base de données.";
127
							} else {
-
 
128
								$obs_a_lier[] = trim($obs['ordre'], "'");
-
 
129
							}
-
 
130
						}
-
 
131
 
-
 
132
						if ($ok === true) {
-
 
133
							$this->debug[] = 'AJOUT dans la BDD OK : '.print_r($obs_a_lier, true);
-
 
134
							$liaisonOk = $this->lierObsAMotsCles($obs_a_lier);
-
 
135
							if ($liaisonOk === false) {
-
 
136
								$e = "Toutes les observations n'ont pas pu être liées au mot-clé du projet.";
140
							} else {
137
								$this->messages[] = $e;
-
 
138
							}
-
 
139
						} else {
141
								$obs_a_taguer[] = trim($obs['ordre'], "'");
-
 
142
							}
-
 
143
						}
140
							$this->messages[] = "Un problème est survenu lors de l'insertion dans la base de données.";
144
						$this->taguerObs($obs_a_taguer);
141
						}
145
						$this->taguerImg($img_a_taguer);
142
					} else {
146
					} else {
143
						$this->messages[] = "Un nouveau numéro d'ordre d'observation n'a pu être généré.";
147
						$this->messages[] = "Un nouveau numéro d'ordre d'observation n'a pu être généré.";
144
					}
148
					}
Line 188... Line 192...
188
			$dateMysql = implode('-', array_reverse($morceauxDate));
192
			$dateMysql = implode('-', array_reverse($morceauxDate));
189
		}
193
		}
190
		return $dateMysql;
194
		return $dateMysql;
191
	}
195
	}
Line -... Line 196...
-
 
196
 
-
 
197
	private function taguerObs($obs_a_taguer) {
-
 
198
		if (count($obs_a_taguer) > 0) {
-
 
199
			foreach ($this->tagsObs as $hierarchieTag) {
-
 
200
				$tagsALier = explode('>', $hierarchieTag);
-
 
201
				$liaisonOk = $this->lierObsAMotsCles($obs_a_taguer, $tagsALier);
-
 
202
				if ($liaisonOk === false) {
-
 
203
					$e = "Toutes les observations n'ont pas pu être liées aux mots-clés : $hierarchieTag";
-
 
204
					$this->messages[] = $e;
-
 
205
				}
-
 
206
			}
-
 
207
		}
-
 
208
	}
192
 
209
 
193
	private function lierObsAMotsCles($observations) {
210
	private function lierObsAMotsCles($observations, $tags) {
-
 
211
		$hierarchieIdsTags = array(self::OBS_RACINE_ID);
-
 
212
		$listeIdsTags = array();
-
 
213
		foreach ($tags as $tag) {
-
 
214
			$tag = $this->nettoyerTag($tag);
-
 
215
			$tagTranslit = $this->translitererTag($tag);
-
 
216
			if ($tagTranslit != '') {
-
 
217
				$idTagParent = implode('.', $hierarchieIdsTags);
194
		$categorie =  self::OBS_RACINE_ID.'.projets-cooperatifs';
218
				$hierarchieIdsTags[] = $tagTranslit;
195
		$projet =  $categorie.'.'.strtolower($this->projet);
219
				$idTag = implode('.', $hierarchieIdsTags);
-
 
220
				$ajout_mot_cle_ok = $this->ajouterMotCleObs($this->utilisateur_id, $tag, $idTag, $idTagParent);
-
 
221
				if ($ajout_mot_cle_ok) {
-
 
222
					$listeIdsTags[] = $idTag;
-
 
223
				}
-
 
224
			}
196
		$ajout_mot_cle_1 = $this->ajouterMotCleObs($this->utilisateur_id, 'Projets coopératifs', $categorie, self::OBS_RACINE_ID);
225
		}
197
		$ajout_mot_cle_2 = $this->ajouterMotCleObs($this->utilisateur_id, $this->projet, $projet, $categorie);
226
		$liaison_ok = $this->lierMotCleObs($this->utilisateur_id, $listeIdsTags, $observations);
-
 
227
		return $liaison_ok;
-
 
228
	}
-
 
229
 
198
		$liaison_ok = false;
230
	private function taguerImg($img_a_taguer) {
-
 
231
		if (count($img_a_taguer) > 0) {
-
 
232
			$this->debug[] = "Tags img : ".print_r($this->tagsImg, true);
-
 
233
			foreach ($this->tagsImg as $hierarchieTag) {
199
		if ($ajout_mot_cle_1 && $ajout_mot_cle_2) {
234
				$tagsALier = explode('>', $hierarchieTag);
-
 
235
				$liaisonOk = $this->lierImgAMotsCles($img_a_taguer, $tagsALier);
-
 
236
				if ($liaisonOk === false) {
-
 
237
					$e = "Toutes les images n'ont pas pu être liées aux mots-clés : $hierarchieTag";
-
 
238
					$this->messages[] = $e;
-
 
239
				}
200
			$liaison_ok = $this->lierMotCleObs($this->utilisateur_id, array($projet), $observations);
240
			}
-
 
241
		}
-
 
242
	}
-
 
243
 
-
 
244
	private function lierImgAMotsCles($images, $tags) {
-
 
245
		$hierarchieIdsTags = array(self::IMG_RACINE_ID);
-
 
246
		$listeIdsTags = array();
-
 
247
		foreach ($tags as $tag) {
-
 
248
			$tag = $this->nettoyerTag($tag);
-
 
249
			$tagTranslit = $this->translitererTag($tag);
-
 
250
			if ($tagTranslit != '') {
-
 
251
				$idTagParent = implode('.', $hierarchieIdsTags);
-
 
252
				$hierarchieIdsTags[] = $tagTranslit;
201
		} else {
253
				$idTag = implode('.', $hierarchieIdsTags);
-
 
254
				$ajout_mot_cle_ok = $this->ajouterMotCleImg($this->utilisateur_id, $tag, $idTag, $idTagParent);
-
 
255
				if ($ajout_mot_cle_ok) {
-
 
256
					$listeIdsTags[] = $idTag;
-
 
257
				}
202
			$this->messages[] = "La catégorie du projet et le mot-clé du projet n'ont pas pu être ajouté.";
258
			}
-
 
259
		}
203
		}
260
		$liaison_ok = $this->lierMotCleImg($this->utilisateur_id, $listeIdsTags, $images);
-
 
261
		return $liaison_ok;
-
 
262
	}
-
 
263
 
-
 
264
	private function nettoyerTag($tag) {
-
 
265
		$tag = trim($tag);
-
 
266
		$tag = preg_replace('/(?:\s+|[,]+)/', ' ', $tag);
-
 
267
		return $tag;
-
 
268
	}
-
 
269
 
-
 
270
	private function translitererTag($tag) {
-
 
271
		$tag = mb_strtolower($tag, 'UTF-8');
-
 
272
		$tag = preg_replace('/[:!?]+/', ' ', $tag);
-
 
273
		$tag = str_replace(' ', '-', $tag);
-
 
274
		$caracteres_accentues = array(
-
 
275
				'à', 'á', 'â', 'ã', 'ä', 'å', 'æ', 'ç', 'è', 'é', 'ê', 'ë', 'ì', 'í', 'î', 'ï', 'ñ',
-
 
276
				'ò', 'ó', 'ô', 'õ', 'ö', 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'ÿ', 'ā', 'ă', 'ą', 'ć', 'ĉ', 'ċ', 'č',
-
 
277
				'ď', 'đ', 'ē', 'ĕ', 'ė', 'ę', 'ě', 'ĝ', 'ğ', 'ġ', 'ģ', 'ĥ', 'ħ', 'ĩ', 'ī', 'ĭ', 'į', 'ı', 'ij',
-
 
278
				'ĵ', 'ķ', 'ĺ', 'ļ', 'ľ', 'ŀ', 'ł', 'ń', 'ņ', 'ň', 'ʼn', 'ō', 'ŏ', 'ő', 'œ', 'ŕ', 'ŗ', 'ř',
-
 
279
				'ś', 'ŝ', 'ş', 'š', 'ţ', 'ť', 'ŧ', 'ũ', 'ū', 'ŭ', 'ů', 'ű', 'ų', 'ŵ', 'ŷ', 'ź', 'ż', 'ž', 'ſ',
-
 
280
				'ƒ', 'ơ', 'ư', 'ǎ', 'ǐ', 'ǒ', 'ǔ', 'ǖ', 'ǘ', 'ǚ', 'ǜ', 'ǻ',  'ǽ', 'ǿ');
-
 
281
		$caracteres_normaux = array(
-
 
282
				'a', 'a', 'a', 'a', 'a', 'a', 'ae', 'c', 'e', 'e', 'e', 'e', 'i', 'i', 'i', 'i', 'n',
-
 
283
				'o', 'o', 'o', 'o', 'o', 'o', 'u', 'u', 'u', 'u', 'y', 'y', 'a', 'a', 'a', 'c', 'c', 'c', 'c',
-
 
284
				'd', 'd', 'e', 'e', 'e', 'e', 'e', 'g', 'g', 'g', 'g', 'h', 'h', 'i', 'i', 'i', 'i', 'i', 'ij',
-
 
285
				'j', 'k', 'l', 'l', 'l', 'l', 'l', 'n', 'n', 'n', 'n', 'o', 'o', 'o','oe', 'r', 'r', 'r',
-
 
286
				's', 's', 's', 's', 't', 't', 't', 'u', 'u', 'u', 'u', 'u', 'u', 'w', 'y', 'z', 'z', 'z', 's',
-
 
287
				'f', 'o', 'u', 'a', 'i', 'o', 'u', 'u', 'u', 'u', 'u', 'a', 'ae', 'o');
-
 
288
		$tag = str_replace($caracteres_accentues, $caracteres_normaux, $tag);
204
		return $liaison_ok;
289
		return $tag;
Line 205... Line 290...
205
	}
290
	}
206
 
291
 
207
	private function traiterNomFichierImage($fichierNom) {
292
	private function traiterNomFichierImage($fichierNom) {
Line 236... Line 321...
236
		$requete = 'INSERT INTO cel_obs_images '.
321
		$requete = 'INSERT INTO cel_obs_images '.
237
			'	(coi_ce_image, coi_ce_utilisateur, coi_ce_observation, coi_date_liaison) '.
322
			'	(coi_ce_image, coi_ce_utilisateur, coi_ce_observation, coi_date_liaison) '.
238
			"VALUES ($id_image, $id_utilisateur, $id_obs, NOW()) ".
323
			"VALUES ($id_image, $id_utilisateur, $id_obs, NOW()) ".
239
			'	ON DUPLICATE KEY UPDATE coi_ce_image = coi_ce_image';
324
			'	ON DUPLICATE KEY UPDATE coi_ce_image = coi_ce_image';
Line -... Line 325...
-
 
325
 
240
 
326
		$liaison = true;
241
		if ($this->executerRequeteSimple($requete) === false) {
327
		if ($this->executerRequeteSimple($requete) === false) {
-
 
328
			$this->messages[] = "La requête de liaison de l'obs $id_obs à l'image $id_image pour l'utilisateur $id_utilisateur a échouée.";
242
			$this->messages[] = "La requête de liaison de l'obs $id_obs à l'image $id_image pour l'utilisateur $id_utilisateur a échouée.";
329
			$liaison = false;
-
 
330
		}
243
		}
331
		return $liaison;
Line 244... Line 332...
244
	}
332
	}
245
 
333
 
246
	public function nettoyerImagesUploades() {
334
	public function nettoyerImagesUploades() {