Subversion Repositories eFlore/Archives.herbiers

Rev

Rev 9 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 jp_milcent 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: hb_rss.php,v 1.1 2006-10-30 18:57:17 jp_milcent Exp $
23
/**
24
* Générateur de flux RSS pour les Herbiers
25
*
26
*@package bazar
27
//Auteur original :
28
*@author        Florian SCHMITT <florian@ecole-et-nature.org>
29
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
30
*
31
*@copyright     Tela-Botanica 2000-2006
32
*@version       $Revision: 1.1 $
33
// +------------------------------------------------------------------------------------------------------+
34
*/
35
 
36
//==================================== LES FLUX RSS==================================
37
// Constantes liées aux flux RSS
38
//==================================================================================
39
define('HBR_CREER_FICHIERS_XML',0);//0=ne cree pas le fichier XML dans rss/; 1=cree le fichier XML dans rss/
40
define('HBR_RSS_NOMSITE','tela-botanica.org');//Nom du site indiqué dans les flux rss
41
define('HBR_RSS_ADRESSESITE','http://www.tela-botanica.org');//Adresse Internet du site indiqué dans les flux rss
42
define('HBR_RSS_DESCRIPTIONSITE','www.tela-botanica.org, pour mutualiser l\'information sur les Herbiers.');    //Description du site indiquée dans les flux rss
43
define('HBR_RSS_LOGOSITE','http://www.tela-botanica.org/sites/commun/generique/images/logos/logo_tela_ombre.png');//Logo du site indiqué dans les flux rss
44
define('HBR_RSS_MANAGINGEDITOR', 'accueil@tela-botanica.org') ;//Managing editor du site
45
define('HBR_RSS_WEBMASTER', 'jpm@tela-botanica.org') ; //Mail Webmaster du site
46
define('HBR_RSS_CATEGORIE', 'Botanique, Herbiers'); //catégorie du flux RSS
47
// TODO : à mettre dans le fichier de langue
48
define('HBR_PAS_D_ANNONCES', 'Pas d\'annonce'); //Message pas d'annonce
49
 
50
if (isset($_GET['type'])) {
51
	$annonce = $_GET['type'];
52
} else {
53
	$annonce = '';
54
}
55
 
56
if (isset($_GET['nbitem'])) {
57
	$nbitem = $_GET['nbitem'];
58
} else {
59
	$nbitem = '';
60
}
61
 
62
 
63
 
64
echo html_entity_decode(gen_RSS($annonce, $nbitem));
65
 
66
 
67
/** gen_RSS() - generer un fichier de flux RSS par type d'annonce
68
*
69
* @param   string Le type de l'annonce (laisser vide pour tout type d'annonce)
70
* @param   integer Le nombre d'annonces a regrouper dans le fichier XML (laisser vide pour toutes)
71
* @param   integer L'identifiant de l'emetteur (laisser vide pour tous)
72
* @param   integer L'etat de validation de l'annonce (laisser 1 pour les annonces validees, 0 pour les non-validees)
73
* @param   string La requete SQL personnalisee
74
* @param   integer La categorie des fiches bazar
75
*
76
* @return  string Le code du flux RSS
77
*/
78
function gen_RSS($typeannonce='', $nbitem='') {
79
	// Generation de la requete MySQL personnalisee
80
	$requete = 	'SELECT DISTINCT * '.
81
				'FROM HERBIERS_ORGANISATION '.
82
				'ORDER BY  DATE_DERNIERE_MODIF DESC';
83
	if ($nbitem!='') {
84
		$requete .= ' LIMIT 0,'.$nbitem;
85
	}
86
	$resultat = $GLOBALS['_HERBIER_']['bdd']->query($requete) ;
87
	if (DB::isError($resultat)) {
88
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
89
	}
90
	// Initialisation des variables
91
	$nomflux = 'Flux des '.$typeannonce;
92
 
93
	// En-tete du flux RSS version 2.0
94
	$xml = '<?xml version="1.0" encoding="ISO-8859-1"?>'."\n".'<rss version="2.0">'."\n";
95
	$xml .= '<channel>'."\n".'<title>'.$nomflux.'</title>'."\n".'<link>'.HBR_RSS_ADRESSESITE.'</link>'."\n";
96
	$xml .= '<description>'.HBR_RSS_DESCRIPTIONSITE.'</description>'."\n".'<language>fr-FR</language>'."\n".
97
	'<copyright>Copyright 2005 '.HBR_RSS_NOMSITE.'</copyright>'."\n";
98
	// Ajout de la date actuelle de publication (suivant la DTD RSS)
99
	$xml .= '<lastBuildDate>'.strftime('%d %b %Y %H:%M:%S GMT').'</lastBuildDate>'."\n";
100
	// En-tete suite et fin
101
	$xml .= '<docs>http://www.stervinou.com/projets/rss/</docs>'."\n".'<category>'.HBR_RSS_CATEGORIE.'</category>'."\n".
102
	'<managingEditor>'.HBR_RSS_MANAGINGEDITOR.'</managingEditor>'."\n".'<webMaster>'.HBR_RSS_WEBMASTER.'</webMaster>'."\n";
103
	$xml .= '<ttl>60</ttl>'."\n".'<image>'."\n".'<title>'.HBR_RSS_NOMSITE.'</title>'."\n".'<url>'.HBR_RSS_LOGOSITE.'</url>'."\n".
104
	'<link>'.HBR_RSS_ADRESSESITE.'</link>'."\n".'</image>'."\n";
105
	if ($resultat->numRows() > 0) {
106
		// Creation des items : titre + lien + description + date de publication
107
		while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
108
			$xml .= '<item>'."\n";
109
			$xml .= '<title>'.$ligne['INSTITUTION_NAME'].'</title>'."\n";
110
			$lien = sprintf(HB_URL_COURANTE_CONSULTATION_FICHE_HERBIER_ID, $ligne['ID_ORG']);
111
			$xml .= '<link>'.str_replace('&', '&amp;', $lien).'</link>'."\n";
112
			$xml .= '<description>'."\n".'<![CDATA[' ;
113
			$xml .= $ligne['ZIP'] ;
114
			$xml .= ']]>'."\n".'</description>'."\n";
115
			$xml .= '<pubDate>'.strftime('%d %b %Y %H:%M:%S GMT',strtotime($ligne['DATE_DERNIERE_MODIF'])).'</pubDate>'."\n";
116
			$xml .= '</item>'."\n";
117
		}
118
	} else {//pas d'annonces
119
		$xml .= '<item>'."\n";
120
		$xml .= '<title>'.HBR_PAS_D_ANNONCES.'</title>'."\n";
121
		$xml .= '<link>#</link>'."\n";
122
		$xml .= '<description>'.HBR_PAS_D_ANNONCES.'</description>'."\n";
123
		$xml .= '<pubDate>'.strftime('%d %b %Y %H:%M:%S GMT',strtotime('12/12/2004')).'</pubDate>'."\n";
124
		$xml .= '</item>'."\n";
125
	}
126
	$xml .= '</channel>'."\n".'</rss>'."\n";
127
	return $xml;
128
}
129
/* +--Fin du code ----------------------------------------------------------------------------------------+
130
*
131
* $Log: not supported by cvs2svn $
132
*
133
* +-- Fin du code ----------------------------------------------------------------------------------------+
134
*/
135
 
136
?>