Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 195 Rev 245
Line 8... Line 8...
8
 * @author		aurelien <aurelien@tela-botanica.org>
8
 * @author		aurelien <aurelien@tela-botanica.org>
9
 * @author		mathias <mathias@tela-botanica.org>
9
 * @author		mathias <mathias@tela-botanica.org>
10
 * @copyright	2010 Tela-Botanica
10
 * @copyright	2010 Tela-Botanica
11
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
13
 * @version		SVN: $Id: RechercheDao.php 195 2014-01-22 13:29:20Z aurelien $
13
 * @version		SVN: $Id: RechercheDao.php 245 2015-02-27 16:13:22Z delphine $
14
 *
14
 *
15
 */
15
 */
16
class RechercheDao extends Dao {
16
class RechercheDao extends Dao {
17
	const SERVICE = 'CoelRecherche';
17
	const SERVICE = 'CoelRecherche';
Line 40... Line 40...
40
   		$json = $this->envoyerRequeteConsultation($url);
40
   		$json = $this->envoyerRequeteConsultation($url);
41
   		$donnees = json_decode($json, true);
41
   		$donnees = json_decode($json, true);
Line 42... Line 42...
42
 
42
 
43
		return $donnees;
43
		return $donnees;
-
 
44
	}
-
 
45
	
-
 
46
	// recherche du nombre de publications : nouveau
-
 
47
	public function chercherPersonnesNbre($parametres) {
-
 
48
		$url = $this->construireUrlRecherchePublications('NombrePublications', $parametres, false);
-
 
49
		$json = $this->envoyerRequeteConsultation($url);
-
 
50
		$donnees = json_decode($json, true);
-
 
51
	
-
 
52
		return $donnees;
Line 44... Line 53...
44
	}
53
	}
45
 
54
 
46
	// recherche de collections : nouveau 
55
	// recherche de collections : nouveau 
47
	public function chercherCollections($parametres) {
56
	public function chercherCollections($parametres) {
Line 58... Line 67...
58
   		$json = $this->envoyerRequeteConsultation($url);
67
   		$json = $this->envoyerRequeteConsultation($url);
59
   		$donnees = json_decode($json, true);
68
   		$donnees = json_decode($json, true);
Line 60... Line 69...
60
 
69
 
61
		return $donnees;
70
		return $donnees;
-
 
71
	}
-
 
72
	
-
 
73
	// recherche de publications : nouveau
-
 
74
	public function chercherPublications($parametres) {
-
 
75
		$url = $this->construireUrlRecherchePublications('Publications', $parametres);
-
 
76
		$json = $this->envoyerRequeteConsultation($url);
-
 
77
		$donnees = json_decode($json, true);
-
 
78
	
-
 
79
		return $donnees;
Line 62... Line 80...
62
	}
80
	}
63
 
81
 
64
	// construit l'URL du service CoelRecherche pour obtenir des collections
82
	// construit l'URL du service CoelRecherche pour obtenir des collections
65
	// Attention au nombre et à l'ordre des paramètres !
83
	// Attention au nombre et à l'ordre des paramètres !
Line 80... Line 98...
80
			$parametres,
98
			$parametres,
81
			$limitation,
99
			$limitation,
82
			array('nom-famille', 'adresse', 'date-vivant')
100
			array('nom-famille', 'adresse', 'date-vivant')
83
		);
101
		);
84
	}
102
	}
-
 
103
	
-
 
104
	// construit l'URL du service CoelRecherche pour obtenir des publications
-
 
105
	// Attention au nombre et à l'ordre des paramètres !
-
 
106
	private function construireUrlRecherchePublications($type, $parametres, $limitation = true) {
-
 
107
	return $this->construireUrlRecherche(
-
 
108
			$type,
-
 
109
			$parametres,
-
 
110
			$limitation,
-
 
111
			array('titre', 'auteur', 'mot-cle', 'revue', 'date')
-
 
112
		);
-
 
113
	}
Line 85... Line 114...
85
 
114
 
86
	// fabrique une URL pour le service CoelRecherche en collant les paramètres fournis (sinon "*")
115
	// fabrique une URL pour le service CoelRecherche en collant les paramètres fournis (sinon "*")
87
	// dans l'ordre attendu par le service demandé ($type)
116
	// dans l'ordre attendu par le service demandé ($type)