Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev Author Line No. Line
17 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Modèle d'accès à la base de données des Collections pour le module Collections.
5
 *
6
 * @package		Collection
7
 * @category	php 5.2
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @copyright	2010 Tela-Botanica
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @version		SVN: $Id$
13
 *
14
 */
15
class CollectionDao extends ColModele {
19 jpm 16
	const SERVICE_COLLECTION = 'CoelCollection';
17
	const SERVICE_COLLECTION_A_PERSONNE = 'CoelCollectionAPersonne';
18
	const SERVICE_COLLECTION_A_PUBLICATION = 'CoelCollectionAPublication';
19
	const SERVICE_COLLECTION_A_COMMENTAIRE = 'CoelCollectionACommentaire';
17 jpm 20
	/**
21
	 * Retourne l'ensemble des information sur une collection.
22
	 *
23
	 * @param integer l'id de la collection.
24
	 * @return array un tableau contenant les informations sur la collection.
25
	 */
26
	public function getCollection($id) {
27
		$json = file_get_contents("http://www.tela-botanica.org/eflore/coel/jrest/CoelCollection/*/$id/*");
28
		$donnees = json_decode($json, true);
29
		return $donnees[1];
30
	}
31
 
32
	/**
18 jpm 33
	 * Retourne les collection correspondant à un id strucutre précis.
34
	 *
35
	 * @param integer l'id d'une structure.
36
	 * @return array un tableau contenant les collections correspondant à l'id structure.
37
	 */
38
	public function getParIdStructure($id_structure) {
19 jpm 39
		$url = $this->url_jrest.self::SERVICE_COLLECTION."/ParIdStructure/$id_structure";
40
		$json = file_get_contents($url);
18 jpm 41
		$donnees = json_decode($json, true);
42
		$this->nettoyerTableauDeTableauxAssoc($donnees);
43
		return $donnees;
44
	}
45
 
46
	/**
17 jpm 47
	 * Retourne l'ensemble des personnes liées à une collection.
48
	 *
49
	 * @param integer l'id de la collection.
50
	 * @return array un tableau contenant les informations sur les personnes liées à la collection.
51
	 */
52
	public function getCollectionAPersonne($id_collection) {
19 jpm 53
		$url = $this->url_jrest.self::SERVICE_COLLECTION_A_PERSONNE."/$id_collection";
54
		$json = file_get_contents($url);
17 jpm 55
		$donnees = json_decode($json, true);
56
		$this->nettoyerTableauDeTableauxAssoc($donnees);
57
		return $donnees;
58
	}
59
 
60
	/**
61
	 * Retourne l'ensemble des publications liées à une collection.
62
	 *
63
	 * @param integer l'id de la collection.
64
	 * @return array un tableau contenant les informations sur les publications liées à la collection.
65
	 */
66
	public function getCollectionAPublication($id_collection) {
19 jpm 67
		$url = $this->url_jrest.self::SERVICE_COLLECTION_A_PUBLICATION."/$id_collection";
68
		$json = file_get_contents($url);
17 jpm 69
		$donnees = json_decode($json, true);
70
		$this->nettoyerTableauDeTableauxAssoc($donnees);
71
		return $donnees;
72
	}
19 jpm 73
 
74
	/**
75
	 * Retourne l'ensemble des commentaires publics liés à une collection.
76
	 *
77
	 * @param integer l'id de la collection.
78
	 * @return array un tableau contenant les informations sur les publications liées à la collection.
79
	 */
80
	public function getCollectionACommentaire($id_collection) {
81
		$commentaire_public = '1';
82
		$url = $this->url_jrest.self::SERVICE_COLLECTION_A_COMMENTAIRE."/$id_collection/$commentaire_public";
83
		$json = file_get_contents($url);
84
		$donnees = json_decode($json, true);
85
		$this->nettoyerTableauDeTableauxAssoc($donnees);
86
		return $donnees;
87
	}
17 jpm 88
}
89
?>