Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
416 aurelien 1
<?php
2
/**
892 aurelien 3
* PHP Version 5
4
*
5
* @category  PHP
6
* @package   jrest
7
* @author    David Delon <david.delon@clapas.net>
8
* @copyright 2010 Tela-Botanica
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
11
* @link      /doc/jrest/
12
*/
416 aurelien 13
 
892 aurelien 14
/**
15
* NameImage.php
16
*
17
* in : utf8
18
* out : 8859
19
*
20
* Cas d'utilisation :
21
* Service recherche d'image a partir d'un numero nomenclatural
22
*
23
* 1: Le service recoit un numero nomenclatural
24
* 2: Le service calcul le numero taxonomique associe
25
* 3: Le service recherche une image disponible pour ce numero taxonomique
26
* 4: Le service redimensionne l'image et la renvoie
27
*/
416 aurelien 28
 
876 aurelien 29
class NameImage extends Cel  {
416 aurelien 30
 
31
	function getElement($uid){
32
 
1426 aurelien 33
		$image = array();
1468 aurelien 34
		$url_photoflora = $this->config['eflore']['url_service_photoflora'];
416 aurelien 35
 
1426 aurelien 36
		if(isset($uid[0])) {
1468 aurelien 37
			$url = $url_photoflora.'?masque.nn='.$uid[0].'&navigation.limite=1';
1426 aurelien 38
			$resultat = @file_get_contents($url);
39
			$resultat = json_decode($resultat);
40
			if(is_object($resultat) && isset($resultat->resultats)) {
41
				$element = (array)$resultat->resultats;
42
				$element = array_pop($element);
43
				$image = array($element->{'binaire.href'}, $element->{'binaire.hrefmax'});
416 aurelien 44
			}
45
		}
46
 
1426 aurelien 47
		$this->envoyerJson($image);
1014 aurelien 48
		return true;
416 aurelien 49
	}
50
}
51
/* +--Fin du code ---------------------------------------------------------------------------------------+
52
* $Log$
53
* Revision 1.4  2008-11-13 11:29:12  ddelon
54
* Reecriture gwt-ext
55
*
56
* Revision 1.2  2008-01-30 08:57:28  ddelon
57
* fin mise en place mygwt
58
*
59
* Revision 1.1  2007-06-06 13:31:16  ddelon
60
* v0.09
61
*
62
*/
876 aurelien 63
?>