Subversion Repositories eFlore/Applications.cel

Rev

Rev 1252 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1252 Rev 1259
Line 104... Line 104...
104
							}
104
							}
105
						}
105
						}
106
						$this->debug[] = 'Nbre obs ajoutée : '.count($observations);
106
						$this->debug[] = 'Nbre obs ajoutée : '.count($observations);
Line 107... Line 107...
107
 
107
 
108
						// Insertion dans la base
108
						// Insertion dans la base
109
						$obs_a_taguer = array();
109
						$obs_a_taguer_ordres = array();
110
						$img_a_taguer = array();
110
						$img_a_taguer_ids = array();
111
						foreach ($observations as $infos) {
111
						foreach ($observations as $infos) {
112
							$obs = $infos['obs'];
112
							$obs = $infos['obs'];
Line 113... Line 113...
113
							$img = $infos['img'];
113
							$img = $infos['img'];
Line 125... Line 125...
125
								$this->debug[] = 'Nom fichier img debut :'.$nomFichierImg;
125
								$this->debug[] = 'Nom fichier img debut :'.$nomFichierImg;
126
								$idImg = $this->ajouterImageSurDdEtBdd($img['id_utilisateur'], $cheminImage, $nomFichierImg);
126
								$idImg = $this->ajouterImageSurDdEtBdd($img['id_utilisateur'], $cheminImage, $nomFichierImg);
127
								if ($idImg !== false) {
127
								if ($idImg !== false) {
128
									$liaisonOk = $this->lierObsEtImg($idImg, $img['id_utilisateur'], $img['id_obs']);
128
									$liaisonOk = $this->lierObsEtImg($idImg, $img['id_utilisateur'], $img['id_obs']);
129
									if ($liaisonOk === true) {
129
									if ($liaisonOk === true) {
130
										$img_a_taguer[] = $idImg;
130
										$img_a_taguer_ids[] = $idImg;
131
									}
131
									}
132
								}
132
								}
133
							}
133
							}
Line 134... Line 134...
134
 
134
 
Line 137... Line 137...
137
							$requete = "INSERT INTO cel_inventory ($champs) VALUES ($valeurs) ";
137
							$requete = "INSERT INTO cel_inventory ($champs) VALUES ($valeurs) ";
Line 138... Line 138...
138
 
138
 
139
							if ($this->executerRequeteSimple($requete) === false) {
139
							if ($this->executerRequeteSimple($requete) === false) {
140
								$this->messages[] = "Un problème est survenu lors de l'insertion de l'obs dans la base de données.";
140
								$this->messages[] = "Un problème est survenu lors de l'insertion de l'obs dans la base de données.";
141
							} else {
141
							} else {
142
								$obs_a_taguer[] = trim($obs['ordre'], "'");
142
								$obs_a_taguer_ordres[] = trim($obs['ordre'], "'");
143
							}
143
							}
144
						}
144
						}
145
						$this->taguerObs($obs_a_taguer);
145
						$this->taguerObs($obs_a_taguer_ordres);
146
						$this->taguerImg($img_a_taguer);
146
						$this->taguerImg($img_a_taguer_ids);
147
					} else {
147
					} else {
148
						$this->messages[] = "Un nouveau numéro d'ordre d'observation n'a pu être généré.";
148
						$this->messages[] = "Un nouveau numéro d'ordre d'observation n'a pu être généré.";
149
					}
149
					}
150
				} else {
150
				} else {
Line 193... Line 193...
193
			$dateMysql = implode('-', array_reverse($morceauxDate));
193
			$dateMysql = implode('-', array_reverse($morceauxDate));
194
		}
194
		}
195
		return $dateMysql;
195
		return $dateMysql;
196
	}
196
	}
Line 197... Line 197...
197
 
197
 
198
	private function taguerObs($obs_a_taguer) {
198
	private function taguerObs($obs_a_taguer_ordres) {
199
		if (count($obs_a_taguer) > 0) {
199
		if (count($obs_a_taguer_ordres) > 0) {
200
			foreach ($this->tagsObs as $hierarchieTag) {
200
			foreach ($this->tagsObs as $hierarchieTag) {
201
				$tagsALier = explode('>', $hierarchieTag);
201
				$tagsALier = explode('>', $hierarchieTag);
202
				$liaisonOk = $this->lierObsAMotsCles($obs_a_taguer, $tagsALier);
202
				$liaisonOk = $this->lierObsAMotsCles($obs_a_taguer_ordres, $tagsALier);
203
				if ($liaisonOk === false) {
203
				if ($liaisonOk === false) {
204
					$e = "Toutes les observations n'ont pas pu être liées aux mots-clés : $hierarchieTag";
204
					$e = "Toutes les observations n'ont pas pu être liées aux mots-clés : $hierarchieTag";
205
					$this->messages[] = $e;
205
					$this->messages[] = $e;
206
				}
206
				}
207
			}
207
			}
208
		}
208
		}
Line 209... Line 209...
209
	}
209
	}
210
 
210
 
211
	private function lierObsAMotsCles($observations, $tags) {
211
	private function lierObsAMotsCles($observations_ordres, $tags) {
212
		$hierarchieIdsTags = array(self::OBS_RACINE_ID);
212
		$idTagParent = self::OBS_RACINE_ID;
213
		$listeIdsTags = array();
213
		$listeIdsTags = array();
214
		foreach ($tags as $tag) {
-
 
215
			$tag = $this->nettoyerTag($tag);
214
		foreach ($tags as $tag) {
216
			$tagTranslit = $this->translitererTag($tag);
-
 
217
			if ($tagTranslit != '') {
-
 
218
				$idTagParent = implode('.', $hierarchieIdsTags);
-
 
219
				$hierarchieIdsTags[] = $tagTranslit;
215
			$tag = $this->nettoyerTag($tag);
220
				$idTag = implode('.', $hierarchieIdsTags);
216
			if ($tag != '') {
221
				$ajout_mot_cle_ok = $this->ajouterMotCleObs($this->utilisateur_id, $tag, $idTag, $idTagParent);
217
				$id_mot_cle = $this->ajouterMotCleObs($this->utilisateur_id, $tag, $idTagParent);
-
 
218
				if ($id_mot_cle !== false) {
222
				if ($ajout_mot_cle_ok) {
219
					$listeIdsTags[] = $id_mot_cle;
223
					$listeIdsTags[] = $idTag;
220
					$idTagParent = $id_mot_cle;
224
				}
221
				}
225
			}
222
			}
226
		}
223
		}
227
		$liaison_ok = $this->lierMotCleObs($this->utilisateur_id, $listeIdsTags, $observations);
224
		$liaison_ok = $this->lierMotCleObs($this->utilisateur_id, $listeIdsTags, $observations_ordres);
Line 228... Line 225...
228
		return $liaison_ok;
225
		return $liaison_ok;
229
	}
226
	}
230
 
227
 
231
	private function taguerImg($img_a_taguer) {
228
	private function taguerImg($img_a_taguer_ids) {
232
		if (count($img_a_taguer) > 0) {
229
		if (count($img_a_taguer_ids) > 0) {
233
			$this->debug[] = "Tags img : ".print_r($this->tagsImg, true);
230
			$this->debug[] = "Tags img : ".print_r($this->tagsImg, true);
234
			foreach ($this->tagsImg as $hierarchieTag) {
231
			foreach ($this->tagsImg as $hierarchieTag) {
235
				$tagsALier = explode('>', $hierarchieTag);
232
				$tagsALier = explode('>', $hierarchieTag);
236
				$liaisonOk = $this->lierImgAMotsCles($img_a_taguer, $tagsALier);
233
				$liaisonOk = $this->lierImgAMotsCles($img_a_taguer_ids, $tagsALier);
237
				if ($liaisonOk === false) {
234
				if ($liaisonOk === false) {
238
					$e = "Toutes les images n'ont pas pu être liées aux mots-clés : $hierarchieTag";
235
					$e = "Toutes les images n'ont pas pu être liées aux mots-clés : $hierarchieTag";
239
					$this->messages[] = $e;
236
					$this->messages[] = $e;
240
				}
237
				}
Line 241... Line 238...
241
			}
238
			}
242
		}
239
		}
243
	}
240
	}
244
 
241
 
245
	private function lierImgAMotsCles($images, $tags) {
242
	private function lierImgAMotsCles($images_ids, $tags) {
246
		$hierarchieIdsTags = array(self::IMG_RACINE_ID);
-
 
247
		$listeIdsTags = array();
243
		$idTagParent = self::IMG_RACINE_ID;
248
		foreach ($tags as $tag) {
-
 
249
			$tag = $this->nettoyerTag($tag);
-
 
250
			$tagTranslit = $this->translitererTag($tag);
-
 
251
			if ($tagTranslit != '') {
244
		$listeIdsTags = array();
252
				$idTagParent = implode('.', $hierarchieIdsTags);
245
		foreach ($tags as $tag) {
253
				$hierarchieIdsTags[] = $tagTranslit;
246
			$tag = $this->nettoyerTag($tag);
-
 
247
			if ($tag != '') {
254
				$idTag = implode('.', $hierarchieIdsTags);
248
				$id_mot_cle = $this->ajouterMotCleImg($this->utilisateur_id, $tag, $idTagParent);
255
				$ajout_mot_cle_ok = $this->ajouterMotCleImg($this->utilisateur_id, $tag, $idTag, $idTagParent);
249
				if ($id_mot_cle !== false) {
256
				if ($ajout_mot_cle_ok) {
250
					$listeIdsTags[] = $id_mot_cle;
257
					$listeIdsTags[] = $idTag;
251
					$idTagParent = $id_mot_cle;
258
				}
252
				}
259
			}
253
			}
Line 260... Line 254...
260
		}
254
		}
261
		$liaison_ok = $this->lierMotCleImg($this->utilisateur_id, $listeIdsTags, $images);
255
		$liaison_ok = $this->lierMotCleImg($this->utilisateur_id, $listeIdsTags, $images_ids);
262
		return $liaison_ok;
256
		return $liaison_ok;
263
	}
257
	}
264
 
258
 
Line 265... Line -...
265
	private function nettoyerTag($tag) {
-
 
266
		$tag = trim($tag);
-
 
267
		$tag = preg_replace('/(?:\s+|[,]+)/', ' ', $tag);
-
 
268
		return $tag;
-
 
269
	}
-
 
270
 
-
 
271
	private function translitererTag($tag) {
-
 
272
		$tag = mb_strtolower($tag, 'UTF-8');
-
 
273
		$tag = preg_replace('/[:!?]+/', ' ', $tag);
-
 
274
		$tag = str_replace(' ', '-', $tag);
-
 
275
		$caracteres_accentues = array(
-
 
276
				'à', 'á', 'â', 'ã', 'ä', 'å', 'æ', 'ç', 'è', 'é', 'ê', 'ë', 'ì', 'í', 'î', 'ï', 'ñ',
-
 
277
				'ò', 'ó', 'ô', 'õ', 'ö', 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'ÿ', 'ā', 'ă', 'ą', 'ć', 'ĉ', 'ċ', 'č',
-
 
278
				'ď', 'đ', 'ē', 'ĕ', 'ė', 'ę', 'ě', 'ĝ', 'ğ', 'ġ', 'ģ', 'ĥ', 'ħ', 'ĩ', 'ī', 'ĭ', 'į', 'ı', 'ij',
-
 
279
				'ĵ', 'ķ', 'ĺ', 'ļ', 'ľ', 'ŀ', 'ł', 'ń', 'ņ', 'ň', 'ʼn', 'ō', 'ŏ', 'ő', 'œ', 'ŕ', 'ŗ', 'ř',
-
 
280
				'ś', 'ŝ', 'ş', 'š', 'ţ', 'ť', 'ŧ', 'ũ', 'ū', 'ŭ', 'ů', 'ű', 'ų', 'ŵ', 'ŷ', 'ź', 'ż', 'ž', 'ſ',
-
 
281
				'ƒ', 'ơ', 'ư', 'ǎ', 'ǐ', 'ǒ', 'ǔ', 'ǖ', 'ǘ', 'ǚ', 'ǜ', 'ǻ',  'ǽ', 'ǿ');
-
 
282
		$caracteres_normaux = array(
-
 
283
				'a', 'a', 'a', 'a', 'a', 'a', 'ae', 'c', 'e', 'e', 'e', 'e', 'i', 'i', 'i', 'i', 'n',
-
 
284
				'o', 'o', 'o', 'o', 'o', 'o', 'u', 'u', 'u', 'u', 'y', 'y', 'a', 'a', 'a', 'c', 'c', 'c', 'c',
-
 
285
				'd', 'd', 'e', 'e', 'e', 'e', 'e', 'g', 'g', 'g', 'g', 'h', 'h', 'i', 'i', 'i', 'i', 'i', 'ij',
-
 
286
				'j', 'k', 'l', 'l', 'l', 'l', 'l', 'n', 'n', 'n', 'n', 'o', 'o', 'o','oe', 'r', 'r', 'r',
-
 
287
				's', 's', 's', 's', 't', 't', 't', 'u', 'u', 'u', 'u', 'u', 'u', 'w', 'y', 'z', 'z', 'z', 's',
259
	private function nettoyerTag($tag) {
288
				'f', 'o', 'u', 'a', 'i', 'o', 'u', 'u', 'u', 'u', 'u', 'a', 'ae', 'o');
260
		$tag = trim($tag);
289
		$tag = str_replace($caracteres_accentues, $caracteres_normaux, $tag);
261
		$tag = preg_replace('/(?:\s+|[,]+)/', ' ', $tag);
290
		return $tag;
262
		return $tag;