Subversion Repositories Applications.papyrus

Rev

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

Rev Author Line No. Line
1165 jp_milcent 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 5.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 1999-2006 Tela Botanica (accueil@tela-botanica.org)                                    |
7
// +------------------------------------------------------------------------------------------------------+
1283 florian 8
// | This file is part of papyrus_bp.                                                                     |
1165 jp_milcent 9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
1283 florian 24
// CVS : $Id: syndication.php,v 1.4 2007-03-28 15:53:27 florian Exp $
1165 jp_milcent 25
/**
26
* papyrus_bp - syndication.php
27
*
28
* Description :
29
*
30
*@package papyrus_bp
31
//Auteur original :
32
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
33
//Autres auteurs :
34
*@author        Aucun
35
*@copyright     Tela-Botanica 1999-2006
1283 florian 36
*@version       $Revision: 1.4 $ $Date: 2007-03-28 15:53:27 $
1165 jp_milcent 37
// +------------------------------------------------------------------------------------------------------+
38
*/
39
 
40
// +------------------------------------------------------------------------------------------------------+
41
// |                                            ENTÊTE du PROGRAMME                                       |
42
// +------------------------------------------------------------------------------------------------------+
43
$GLOBALS['_GEN_commun']['info_applette_nom_fonction'] = 'afficherSyndication';
44
$GLOBALS['_GEN_commun']['info_applette_balise'] = 	'\{\{[Ss]yndication'.
45
													'(?:\s*'.
46
														'(?:'.
47
															'(url="[^"]*")|'.
48
															'(titre="[^"]*")|'.
49
															'(nb=(?:"|)\d+(?:"|))|'.
50
															'(nouvellefenetre=(?:"|)(?:0|1)(?:"|))|'.
51
															'(formatdate="[^"]*")|'.
52
															'(formatdatepro="[^"]*")|'.
53
															'(template="[^"]*")|'.
54
														')'.
55
													')+'.
56
													'\s*\}\}';
57
// +------------------------------------------------------------------------------------------------------+
58
/** Inclusion du fichier de configuration de cette application.*/
59
require_once GEN_CHEMIN_APPLETTE.'syndication'.GEN_SEP.'configuration'.GEN_SEP.'synd_configuration.inc.php';
60
 
61
// Inclusion des fichiers de traduction de l'applette SYND de Papyrus
62
if (file_exists(SYND_CHEMIN_LANGUE.'synd_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php')) {
63
    /** Inclusion du fichier de traduction suite à la transaction avec le navigateur.*/
64
    require_once SYND_CHEMIN_LANGUE.'synd_langue_'.$GLOBALS['_GEN_commun']['i18n'].'.inc.php';
65
} else {
66
    /** Inclusion du fichier de traduction par défaut.*/
67
    require_once SYND_CHEMIN_LANGUE.'synd_langue_'.SYND_I18N_DEFAUT.'.inc.php';
68
}
69
/** Inclusion du fichier de la bibliotheque permettant de manipuler les flux RSS.*/
1283 florian 70
//require_once(MAGPIE_DIR.'rss_fetch.inc');
71
require_once PAP_CHEMIN_API_PEAR.'XML/RSS.php';
1165 jp_milcent 72
// +------------------------------------------------------------------------------------------------------+
73
// |                                            CORPS du PROGRAMME                                        |
74
// +------------------------------------------------------------------------------------------------------+
75
/** Fonction afficherSyndication() - Retourne la liste des pages des sites syndiqués.
76
*
77
* Cette fonction retourne la liste des pages des sites syndiqués.
78
*
79
* @param  array contient les arguments de la fonction.
80
* @param  array  tableau global de Papyrus.
81
* @return string XHTML la liste des pages.
82
*/
83
function afficherSyndication($tab_applette_arguments, $_GEN_commun)
84
{
85
	// Initialisation des variables
86
    $sortie = '';
87
	$GLOBALS['_SYNDICATION_']['erreurs'] = array();
88
	$GLOBALS['_SYNDICATION_']['informations'] = array();
89
	$GLOBALS['_SYNDICATION_']['sites'] = array();
90
 
91
	//+----------------------------------------------------------------------------------------------------------------+
92
	// Gestion des arguments
93
	$balise = $tab_applette_arguments[0];
94
    $tab_arguments = $tab_applette_arguments;
95
	unset($tab_arguments[0]);
96
    foreach($tab_arguments as $argument) {
97
    	if ($argument != '') {
1283 florian 98
	    	$tab_parametres = explode('=', $argument, 2);
1165 jp_milcent 99
	    	$options[$tab_parametres[0]] = trim($tab_parametres[1], '"');
100
    	}
101
    }
102
 
103
	//+----------------------------------------------------------------------------------------------------------------+
1283 florian 104
    // Gestion des erreurs de paramétrage
1165 jp_milcent 105
	if (!isset($options['url'])) {
106
		$GLOBALS['_SYNDICATION_']['erreurs'][] = sprintf(SYND_LG_ERREUR_URL, $balise);
107
	}
108
	if (!isset($options['titre'])) {
109
		$options['titre'] = '';
110
	}
111
	if (!isset($options['nb'])) {
112
		$options['nb'] = SYND_NOMBRE;
113
	}
114
    if (!isset($options['nouvellefenetre'])) {
115
		$options['nouvellefenetre'] = SYND_OUVRIR_LIEN_RSS_NOUVELLE_FENETRE;
116
	}
117
	if (!isset($options['formatdate'])) {
118
		$options['formatdate'] = SYND_FORMAT_DATE;
119
	}
120
	if (!isset($options['formatdatepro'])) {
121
		$options['formatdatepro'] = SYND_FORMAT_DATE;
122
	}
123
	if (!isset($options['template'])) {
124
		$options['template'] = SYND_CHEMIN_SQUELETTE.SYND_SQUELETTE_LISTE;
125
	} else {
126
		if (file_exists(SYND_CHEMIN_SQUELETTE.$options['template'])) {
127
			$options['template'] = SYND_CHEMIN_SQUELETTE.$options['template'];
128
		}
129
	}
130
 
131
    //+----------------------------------------------------------------------------------------------------------------+
1283 florian 132
    // Recuperation des donnees
1165 jp_milcent 133
    if (count($GLOBALS['_SYNDICATION_']['erreurs']) == 0) {
134
		$tab_url = array_map('trim', explode(',', $options['url']));
135
        foreach ($tab_url as $cle => $url) {
136
			if ($url != '') {
137
				$aso_site = array();
138
				$url = str_replace('&amp;', '&', $url) ;
1283 florian 139
				$rss =& new XML_RSS($url);
140
				$rss->parse();
1165 jp_milcent 141
				if ($options['template'] != '' && !file_exists($options['template'])) {
142
					$i = 0 ;
143
					$res= '';
1283 florian 144
					foreach ($rss->getItems() as $item) {
1165 jp_milcent 145
						// Le test suivant pour savoir s il faut reduire l excendent de description
146
						// Si {all} est present dans le template on ne reduit pas
147
						if (preg_match ('/{all}/', $options['template'])) {
148
							$template = str_replace('{all}', '', $options['template']);
149
							$all = true ;
150
						} else {
151
							$all = false;
152
						}
153
						if (isset($item['summary'])) {
154
							$item['description'] = $item['summary'];
155
						} else {
156
							if (strlen($item['description']) > 200 && !$all) {
157
								$item['description'] = 	substr ($item['description'] , 0, 300).
158
														'... <a href="'.$item['link'].'">Lire la suite</a>';
159
							}
160
						}
161
						if (!isset($item['pubdate'])) {
162
							$item['pubdate'] = date('dmY');
163
						}
1204 alexandre_ 164
						// Le code ci-apres est pour rattraper les dates du type 01012005 parsees par magpie
165
						// lorsque les flux donne des dates au format iso
166
						if (preg_match('/^([0-3][0-9])([0-1][0-9])([0-9][0-9][0-9][0-9])$/', $item['pubdate'], $match)) {
167
							$item['pubdate'] = $match[3].'-'.$match[2].'-'.$match[1];
168
							//echo $item['pubdate'];
169
						}
1165 jp_milcent 170
						$res .= str_replace ('{num}', ++$i,
1283 florian 171
								str_replace ('{item}', '<a href="'.$item['link'].'" target="_top">'.htmlentities($item['title']).'</a>',
1165 jp_milcent 172
								str_replace ('{date}', strftime('%d.%m.%Y',strtotime($item['pubdate'])),
173
								str_replace ('{description}', $item['description'], $options['template'])))) ;
174
						$res .= "\n";
175
						if ($i > $options['nb']) {
176
							break;
177
						}
178
					}
179
					return $res;
180
				}
1283 florian 181
				$channel=$rss->getChannelInfo();
1165 jp_milcent 182
				// Gestion du titre
183
				if ( $options['titre'] == '' ) {
1283 florian 184
					$aso_site['titre'] = utf8_decode($channel['title']);
1165 jp_milcent 185
				} else if ( $options['titre'] != '0' ) {
1283 florian 186
					$aso_site['titre'] = utf8_decode($options['titre']);
1165 jp_milcent 187
				}
188
				// Gestion de l'url du site
1283 florian 189
				if (isset($channel['link'])) {
190
					$aso_site['url'] = htmlentities($channel['link']);
1165 jp_milcent 191
				}
1283 florian 192
				// Ouverture du lien dans une nouvelle fenetre
1165 jp_milcent 193
				$aso_site['ext'] = false;
194
				if ($options['nouvellefenetre'] == 1) {
195
					$aso_site['ext'] = true;
196
				}
1283 florian 197
				// Gestion des pages syndiquees
1165 jp_milcent 198
				$i = 0;
1283 florian 199
			    $nb_item = count($rss->getItems());
200
				foreach ($rss->getItems() as $item) {
1170 jp_milcent 201
					if ($options['nb'] != 0 && $nb_item >= $options['nb'] && $i >= $options['nb']) {
202
						break;
203
					}
204
					$i++;
1165 jp_milcent 205
					$aso_page = array();
206
					$aso_page['site'] = $aso_site;
207
					$aso_page['url'] = $item['link'];
1283 florian 208
					$aso_page['titre'] = utf8_decode($item['title']);
1165 jp_milcent 209
					if (isset($item['pubdate'])) {
210
						$aso_page['date'] = $item['pubdate'];
211
					} elseif (isset($item['date'])) {
212
						$aso_page['date'] = $item['date'];
213
					} elseif (isset($item['date_timestamp'])) {
214
						$aso_page['date'] = $item['date_timestamp'];
215
					} else {
216
						$aso_page['date'] = '';
217
					}
218
					if ($options['formatdatepro']) {
1283 florian 219
						switch ($options['formatdatepro']) {
220
							case 'jm' :
221
								$aso_page['date'] = strftime('%d.%m', strtotime($aso_page['date']));
222
								break;
223
							case 'jma' :
224
								$aso_page['date'] = strftime('%d.%m.%Y', strtotime($aso_page['date']));
225
								break;
226
							case 'jmh' :
227
								$aso_page['date'] = strftime('%d.%m %H:%M', strtotime($aso_page['date']));
228
								break;
229
							case 'jmah' :
230
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
231
								break;
232
							default :
233
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
234
						}
1165 jp_milcent 235
					} else {
236
						switch ($options['formatdate']) {
237
							case 'jm' :
238
								$aso_page['date'] = strftime('%d.%m', strtotime($aso_page['date']));
239
								break;
240
							case 'jma' :
241
								$aso_page['date'] = strftime('%d.%m.%Y', strtotime($aso_page['date']));
242
								break;
243
							case 'jmh' :
244
								$aso_page['date'] = strftime('%d.%m %H:%M', strtotime($aso_page['date']));
245
								break;
246
							case 'jmah' :
247
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
248
								break;
249
							default :
250
								$aso_page['date'] = strftime('%d.%m.%Y %H:%M', strtotime($aso_page['date']));
251
						}
252
					}
253
					$aso_site['pages'][] = $aso_page;
254
					$GLOBALS['_SYNDICATION_']['pages'][strtotime($aso_page['date'])] = $aso_page;
255
				}
256
				$GLOBALS['_SYNDICATION_']['sites'][] = $aso_site;
257
			}
258
        }
259
    }
260
	// Trie des pages par date
1283 florian 261
	//var_dump($GLOBALS['_SYNDICATION_']);
1165 jp_milcent 262
	krsort($GLOBALS['_SYNDICATION_']['pages']);
263
 
264
	//+----------------------------------------------------------------------------------------------------------------+
1283 florian 265
    // Extrait les variables et les ajoutes a l'espace de noms local
1165 jp_milcent 266
	// Gestion des squelettes
267
	extract($GLOBALS['_SYNDICATION_']);
1283 florian 268
	// Demarre le buffer
1165 jp_milcent 269
	ob_start();
270
	// Inclusion du fichier
271
	include($options['template']);
1283 florian 272
	// Recuperer le  contenu du buffer
1165 jp_milcent 273
	$sortie = ob_get_contents();
1283 florian 274
	// Arrete et detruit le buffer
1165 jp_milcent 275
	ob_end_clean();
276
 
277
	//+----------------------------------------------------------------------------------------------------------------+
278
	// Sortie
279
    return $sortie;
280
}
281
 
282
/* +--Fin du code ----------------------------------------------------------------------------------------+
283
*
284
* $Log: not supported by cvs2svn $
1283 florian 285
* Revision 1.3  2007/01/23 14:17:19  alexandre_tb
286
* backport : hack pour rattraper les dates du type 01012005 parsees par magpie
287
* lorsque les flux donne des dates au format iso
288
*
1204 alexandre_ 289
* Revision 1.2  2006/12/13 17:20:51  jp_milcent
290
* Correction bogue : paramètre nb non pris en compte
291
*
1170 jp_milcent 292
* Revision 1.1  2006/12/13 17:06:36  jp_milcent
293
* Ajout de l'applette Syndication.
1165 jp_milcent 294
*
1170 jp_milcent 295
*
1165 jp_milcent 296
* +-- Fin du code ----------------------------------------------------------------------------------------+
297
*/
298
?>