Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 320 | Rev 795 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 320 Rev 362
1
<?php
1
<?php
2
class CbnmedFormateur implements Formateur {
2
class CbnmedFormateur implements Formateur {
3
	public $dest_map = array();
3
	public $dest_map = array();
4
	public $img = array();
4
	public $img = array();
5
	public function __construct($info) {
5
	public function __construct($info) {
6
		$this->info = $info;
6
		$this->info = $info;
7
	}
7
	}
8
	public function img() {
8
	public function img() {
9
		$qualite = 9;
9
		$qualite = 9;
10
		imagepng($this->img['cbnmed'], Config::get('cache.stockageChemin').$this->dest_map['cbnmed'], $qualite);
10
		imagepng($this->img['cbnmed'], Config::get('cache.stockageChemin').$this->dest_map['cbnmed'], $qualite);
11
	}
11
	}
12
	//+----------------------------------------------------------------------------------------------------------------+
12
	//+----------------------------------------------------------------------------------------------------------------+
13
	// Méthodes d'accès aux objets du Framework
13
	// Méthodes d'accès aux objets du Framework
14
	/**
14
	/**
15
	* Méthode de connection à la base de données sur demande.
15
	* Méthode de connection à la base de données sur demande.
16
	* Tous les services web n'ont pas besoin de s'y connecter.
16
	* Tous les services web n'ont pas besoin de s'y connecter.
17
	*/
17
	*/
18
	protected function getBdd() {
18
	protected function getBdd() {
19
	if (! isset($this->Bdd)) {
19
	if (! isset($this->Bdd)) {
20
	$this->Bdd = new Bdd();
20
	$this->Bdd = new Bdd();
21
	}
21
	}
22
	return $this->Bdd;
22
	return $this->Bdd;
23
	}
23
	}
24
	
24
	
25
	public function definirCouleurs() {
25
	public function definirCouleurs() {
26
	// green
26
	// green
27
	$couleur['green'] = imagecolorallocate($this->img['cbnmed'], 0, 255, 0);
27
	$couleur['green'] = imagecolorallocate($this->img['cbnmed'], 0, 255, 0);
28
	// red
28
	// red
29
	$couleur['red'] = imagecolorallocate($this->img['cbnmed'], 255, 0, 0);
29
	$couleur['red'] = imagecolorallocate($this->img['cbnmed'], 255, 0, 0);
30
	// blue
30
	// blue
31
	$couleur['blue'] = imagecolorallocate($this->img['cbnmed'], 0, 0, 255);
31
	$couleur['blue'] = imagecolorallocate($this->img['cbnmed'], 0, 0, 255);
32
	// purple
32
	// purple
33
	$couleur['purple'] = imagecolorallocate($this->img['cbnmed'], 255, 0, 255);
33
	$couleur['purple'] = imagecolorallocate($this->img['cbnmed'], 255, 0, 255);
34
	// black
34
	// black
35
	$couleur['black'] = imagecolorallocate($this->img['cbnmed'], 0, 0, 0);
35
	$couleur['black'] = imagecolorallocate($this->img['cbnmed'], 0, 0, 0);
36
	return $couleur;
36
	return $couleur;
37
	}
37
	}
38
	public function initialiserImage() {
38
	public function initialiserImage() {
39
		// Nom du fichier image en sortie
39
		// Nom du fichier image en sortie
40
		$this->cheminCartesBase = Config::get('Cartes.chemin');
40
		$this->cheminCartesBase = Config::get('Cartes.chemin');
41
		$this->dest_map['cbnmed'] = 'cbnmed_nt'.$this->info['nt'].'_'.$this->info['src_map'];
41
		$this->dest_map['cbnmed'] = 'cbnmed_nt'.$this->info['nt'].'_'.$this->info['src_map'];
42
		$this->img['cbnmed'] = imagecreatefrompng($this->cheminCartesBase.$this->info['src_map']);
42
		$this->img['cbnmed'] = imagecreatefrompng($this->cheminCartesBase.$this->info['src_map']);
43
	}
43
	}
-
 
44
	
-
 
45
	public function testerParametresProjets() {
-
 
46
		$test = true;
-
 
47
		if ($this->info['nom'] == '') {
-
 
48
			$test = false;
-
 
49
		}
-
 
50
		return $test;
-
 
51
	}
44
	
52
	
45
	public function chargerDonnees() {
53
	public function chargerDonnees() {
46
		// Recherche nom correspondant au numero nomenclatural en cours (pour etablir le lien avec les donnees moissonnes).
54
		// Recherche nom correspondant au numero nomenclatural en cours (pour etablir le lien avec les donnees moissonnes).
47
		// Collection code = 'FLORE - VAR' (Cbnmed)
55
		// Collection code = 'FLORE - VAR' (Cbnmed)
48
		$queryCbnmed = "SELECT collection_code, locality as id_location, county as location, ".
56
		$queryCbnmed = "SELECT collection_code, locality as id_location, county as location, ".
49
							"	STR_TO_DATE(concat(ifnull(year,0),'/', ifnull(month,0), '/',ifnull(day,0)), '%Y/%m/%d') as date_observation, ".
57
							"	STR_TO_DATE(concat(ifnull(year,0),'/', ifnull(month,0), '/',ifnull(day,0)), '%Y/%m/%d') as date_observation, ".
50
							"	latitude as y_utm , longitude as x_utm , max_altitude as sector, collector_name as identifiant ".
58
							"	latitude as y_utm , longitude as x_utm , max_altitude as sector, collector_name as identifiant ".
51
							"FROM tb_hit_indexation.raw_occurrence_record ".
59
							"FROM tb_hit_indexation.raw_occurrence_record ".
52
							"WHERE scientific_name = ".$this->getBdd()->proteger($this->info['nom']).
60
							"WHERE scientific_name = ".$this->getBdd()->proteger($this->info['nom']).
53
							"	AND collection_code='FLORE - VAR' ".
61
							"	AND collection_code='FLORE - VAR' ".
54
							"	AND  (deleted IS NULL OR deleted = '0000-00-00 00:00:00')";
62
							"	AND  (deleted IS NULL OR deleted = '0000-00-00 00:00:00')";
55
		$inventoriesCbnmed = $this->getBdd()->recupererTous($queryCbnmed);
63
		$inventoriesCbnmed = $this->getBdd()->recupererTous($queryCbnmed);
56
	
64
	
57
		return $inventoriesCbnmed;
65
		return $inventoriesCbnmed;
58
	}
66
	}
59
	
67
	
60
 
68
 
61
	public function dessinerPoint($text, $merge, $couleurs) {
69
	public function dessinerPoint($text, $merge, $couleurs) {
62
		$usemap['cbnmed'] = '';
70
		$usemap['cbnmed'] = '';
63
	
71
	
64
		foreach ($text as $coord => $origines ) {
72
		foreach ($text as $coord => $origines ) {
65
			foreach ($origines as $origine => $maptext ) {
73
			foreach ($origines as $origine => $maptext ) {
66
				$maptext = preg_replace("/\"/", "\'", $maptext);
74
				$maptext = preg_replace("/\"/", "\'", $maptext);
67
					
75
					
68
				list($x,$y) = explode('|', $coord);
76
				list($x,$y) = explode('|', $coord);
69
	
77
	
70
				$tpl_area = '<area shape="%s" alt="" class="tooltip" coords="%s" title="%s"/>';
78
				$tpl_area = '<area shape="%s" alt="" class="tooltip" coords="%s" title="%s"/>';
71
				$rayon = 2;
79
				$rayon = 2;
72
				$type = 'circle';
80
				$type = 'circle';
73
				$coords = "$x,$y,5";
81
				$coords = "$x,$y,5";
74
				$on_mouseover = "this.ttBgColor='#99C242';this.ttFontColor='#000000';this.T_OFFSETX=-200;this.T_OFFSETY=-50;this.T_STICKY=1;return escape('$maptext')";
82
				$on_mouseover = "this.ttBgColor='#99C242';this.ttFontColor='#000000';this.T_OFFSETX=-200;this.T_OFFSETY=-50;this.T_STICKY=1;return escape('$maptext')";
75
	
83
	
76
				imagefilledellipse($this->img['cbnmed'], $x, $y, 7, 7, $couleurs['blue']);
84
				imagefilledellipse($this->img['cbnmed'], $x, $y, 7, 7, $couleurs['blue']);
77
				$usemap['cbnmed'] = $usemap['cbnmed'].sprintf($tpl_area, $type, $coords, $maptext);	
85
				$usemap['cbnmed'] = $usemap['cbnmed'].sprintf($tpl_area, $type, $coords, $maptext);	
78
			}
86
			}
79
		}
87
		}
80
		return $usemap;
88
		return $usemap;
81
	}
89
	}
82
	
90
	
83
	public function formaterCartes($usemap) {
91
	public function formaterCartes($usemap) {
84
		$retour = Config::get('Cartes.cel_dst').$this->dest_map['cbnmed'];
92
		$retour = Config::get('Cartes.cel_dst').$this->dest_map['cbnmed'];
85
		if ($this->info['retour'] == self::MIME_MAP) {
93
		if ($this->info['retour'] == self::MIME_MAP) {
86
			$retour =  "<img src=\"".$retour."\" style=\"border:none; ".
94
			$retour =  "<img src=\"".$retour."\" style=\"border:none; ".
87
					"cursor:crosshair\" alt=\"\" usemap=\"#themap\" /><br />\n".
95
					"cursor:crosshair\" alt=\"\" usemap=\"#themap\" /><br />\n".
88
					"<map name=\"themap\" id=\"themap\">".utf8_encode($usemap['cbnmed'])."</map>";
96
					"<map name=\"themap\" id=\"themap\">".utf8_encode($usemap['cbnmed'])."</map>";
89
		}
97
		}
90
		return $retour;
98
		return $retour;
91
	}
99
	}
92
	
100
	
93
 
101
 
94
	
102
	
95
	
103
	
96
	//+----------------------------------------------------------------------------------------------------------------+
104
	//+----------------------------------------------------------------------------------------------------------------+
97
	// sous fonction de calculer répartition
105
	// sous fonction de calculer répartition
98
	public function chercherVille($inventory, $tab_code_insee = array()) {
106
	public function chercherVille($inventory, $tab_code_insee = array()) {
99
		$location_protege = $this->getBdd()->proteger($inventory['location']);
107
		$location_protege = $this->getBdd()->proteger($inventory['location']);
100
		$id_location_protege = $this->getBdd()->proteger($inventory['id_location']);
108
		$id_location_protege = $this->getBdd()->proteger($inventory['id_location']);
101
		$utm = '';
109
		$utm = '';
102
		
110
		
103
		if (isset($tab_code_insee[$id_location_protege])) {
111
		if (isset($tab_code_insee[$id_location_protege])) {
104
			$utm = array(0 => $tab_code_insee[$id_location_protege]);
112
			$utm = array(0 => $tab_code_insee[$id_location_protege]);
105
		} else {
113
		} else {
106
			$requete = "SELECT * ".
114
			$requete = "SELECT * ".
107
						"FROM tb_cel.locations ".
115
						"FROM tb_cel.locations ".
108
						"WHERE insee_code = $id_location_protege ";
116
						"WHERE insee_code = $id_location_protege ";
109
			$utm = $this->getBdd()->recupererTous($requete);
117
			$utm = $this->getBdd()->recupererTous($requete);
110
		}
118
		}
111
		return $utm;
119
		return $utm;
112
	}
120
	}
113
 
121
 
114
	public function formerCommentaire($utm, $inventory) {
122
	public function formerCommentaire($utm, $inventory) {
115
		$comment = '';
123
		$comment = '';
116
			
124
			
117
		if ($inventory['date_observation'] != '0000-00-00 00:00:00') {
125
		if ($inventory['date_observation'] != '0000-00-00 00:00:00') {
118
			$comment .= $this->formerDate($inventory);
126
			$comment .= $this->formerDate($inventory);
119
		}
127
		}
120
			
128
			
121
		$comment .= " par ".utf8_decode($inventory['identifiant']);
129
		$comment .= " par ".utf8_decode($inventory['identifiant']);
122
		return $comment;
130
		return $comment;
123
	}
131
	}
124
	
132
	
125
	public function formerDate($inventory) {
133
	public function formerDate($inventory) {
126
		list($year, $month, $day) = explode ('-',$inventory['date_observation']);
134
		list($year, $month, $day) = explode ('-',$inventory['date_observation']);
127
		list($day) = explode (' ',$day);
135
		list($day) = explode (' ',$day);
128
		if ($month == '00') {
136
		if ($month == '00') {
129
			$date = ', en '.$year;
137
			$date = ', en '.$year;
130
		} else {
138
		} else {
131
			$date = ', le '.$day.'/'.$month.'/'.$year;
139
			$date = ', le '.$day.'/'.$month.'/'.$year;
132
		}
140
		}
133
		return $date;
141
		return $date;
134
	}
142
	}
135
	
143
	
136
	public function stockerCommentaire($text, $merge, $name, $comment, $origine, $x, $y) {
144
	public function stockerCommentaire($text, $merge, $name, $comment, $origine, $x, $y) {
137
		$prefix = 'CBN MED : ';
145
		$prefix = 'CBN MED : ';
138
		 
146
		 
139
		// Deja present  pour cette origine ? on ajoute  
147
		// Deja present  pour cette origine ? on ajoute  
140
		if (isset ($text[$x.'|'.$y][$origine]) && ($text[$x.'|'.$y][$origine])) {
148
		if (isset ($text[$x.'|'.$y][$origine]) && ($text[$x.'|'.$y][$origine])) {
141
			$text[$x.'|'.$y][$origine] = $text[$x.'|'.$y][$origine].'<br>'.$name.$comment;
149
			$text[$x.'|'.$y][$origine] = $text[$x.'|'.$y][$origine].'<br>'.$name.$comment;
142
		} else { // Nouveau commentaire
150
		} else { // Nouveau commentaire
143
			$text[$x.'|'.$y][$origine] = $name.$comment;
151
			$text[$x.'|'.$y][$origine] = $name.$comment;
144
		}
152
		}
145
		
153
		
146
		
154
		
147
		// Detection superposition de donnee 
155
		// Detection superposition de donnee 
148
		if ((isset ($text[$x.'|'.$y]['sophy']) && ($text[$x.'|'.$y]['sophy'])) || (isset ($text[$x.'|'.$y]['cel']) && ($text[$x.'|'.$y]['cel'])) || 
156
		if ((isset ($text[$x.'|'.$y]['sophy']) && ($text[$x.'|'.$y]['sophy'])) || (isset ($text[$x.'|'.$y]['cel']) && ($text[$x.'|'.$y]['cel'])) || 
149
			(isset ($text[$x.'|'.$y]['flore']) && ($text[$x.'|'.$y]['flore']))) {
157
			(isset ($text[$x.'|'.$y]['flore']) && ($text[$x.'|'.$y]['flore']))) {
150
				$merge[$x.'|'.$y]=true;
158
				$merge[$x.'|'.$y]=true;
151
		}
159
		}
152
		
160
		
153
		return array($text, $merge);
161
		return array($text, $merge);
154
	}
162
	}
155
	
163
	
156
 
164
 
157
 
165
 
158
}
166
}
159
?>
167
?>