Subversion Repositories Applications.bazar

Rev

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

Rev Author Line No. Line
5 florian 1
<?php
2
/** baz_valeur_template() - Renvoi des valeurs inscrite dans le fichier de template
3
*
4
* @param   string nom du fichier de template
5
*
6
* @return   mixed  tableau contenant les champs du fichier template
7
*/
8
function baz_valeurs_template($fichier_template) {
9
	//Parcours du fichier de templates, pour mettre les champs spécifiques
10
	$nblignes=0;
11
	$fichier=file_get_contents(BAZ_CHEMIN_APPLI.'templates/'.$fichier_template);
12
	$chaine = explode ("\n", $fichier);
13
	array_pop($chaine);
14
	foreach ($chaine as $ligne)  {
15
		$souschaine = explode ("***", $ligne) ;
16
		$tableau[$nblignes]['type'] = trim($souschaine[0]) ;
17
		if (isset($souschaine[1])) {$tableau[$nblignes]['nom_bdd'] = trim($souschaine[1]);}
18
		else {$tableau[$nblignes]['nom_bdd'] ='';}
19
		if (isset($souschaine[2])) $tableau[$nblignes]['label'] = trim($souschaine[2]);
20
		else {$tableau[$nblignes]['label'] ='';}
21
		if (isset($souschaine[3])) $tableau[$nblignes]['limite1'] = trim($souschaine[3]);
22
		else {$tableau[$nblignes]['limite1'] ='';}
23
		if (isset($souschaine[4])) $tableau[$nblignes]['limite2'] = trim($souschaine[4]);
24
		else {$tableau[$nblignes]['limite2'] ='';}
25
		if (isset($souschaine[5])) $tableau[$nblignes]['defaut'] = trim($souschaine[5]);
26
		else {$tableau[$nblignes]['defaut'] ='';}
27
		if (isset($souschaine[6])) $tableau[$nblignes]['table_source'] = trim($souschaine[6]);
28
		else {$tableau[$nblignes]['table_source'] ='';}
29
		if (isset($souschaine[7])) $tableau[$nblignes]['id_source'] = trim($souschaine[7]);
30
		else {$tableau[$nblignes]['id_source'] ='';}
31
		if (isset($souschaine[8])) $tableau[$nblignes]['obligatoire'] = trim($souschaine[8]);
32
		else {$tableau[$nblignes]['obligatoire'] ='';}
33
		$nblignes++;
34
	}
35
	return $tableau;
36
}
37
 
33 ddelon 38
/**  baz_voir_fiches() - Permet de visualiser en detail une liste de fiche  au format XHTML
39
*
40
* @global boolean Rajoute des informations internes à l'application (date de modification, lien vers la page de départ de l'appli)
41
* @global integer Tableau d(Identifiant des fiches à afficher
42
*
43
* @return   string  HTML
44
*/
45
function baz_voir_fiches($danslappli, $idfiches=array()) {
46
	$res='';
47
	foreach($idfiches as $idfiche) {
48
			$res.=baz_voir_fiche($danslappli, $idfiche);
49
	}
50
	return $res;
51
}
54 florian 52
 
53
 
5 florian 54
/**  baz_voir_fiche() - Permet de visualiser en détail une fiche  au format XHTML
55
*
56
* @global boolean Rajoute des informations internes à l'application (date de modification, lien vers la page de départ de l'appli) si à 1
57
* @global integer Identifiant de la fiche à afficher
58
*
59
* @return   string  HTML
60
*/
61
function baz_voir_fiche($danslappli, $idfiche='') {
55 florian 62
	$res='';
5 florian 63
	if (isset($_GET['id_fiche'])) $GLOBALS['_BAZAR_']['id_fiche']=$_GET['id_fiche'];
64
	if ($idfiche!='') $GLOBALS['_BAZAR_']['id_fiche']=$idfiche;
65
 
9 florian 66
	$url= $GLOBALS['_BAZAR_']['url'];
67
	$url->addQueryString('action', BAZ_VOIR_FICHE);
68
	$url->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
69
	$url = preg_replace ('/&amp;/', '&', $url->getURL()) ;
7 florian 70
 
15 florian 71
	//cas ou un commentaire a été entré
9 florian 72
	if (isset($_POST['Nom'])) {
38 alexandre_ 73
		$requete = 'INSERT INTO bazar_commentaires VALUES ('.
74
					baz_nextid('bazar_commentaires', 'bc_id_commentaire', $GLOBALS['_BAZAR_']['db']).
75
					', '.$GLOBALS['_BAZAR_']['id_fiche'].', "'.$_POST['Nom'].'", "'.$_POST['Commentaire'].
76
					'", NOW() )';
9 florian 77
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
78
	}
54 florian 79
	//cas ou un commentaire va etre supprime
15 florian 80
	elseif (isset($_GET['id_commentaire'])) {
81
		$requete = 'DELETE FROM bazar_commentaires WHERE bc_id_commentaire='.$_GET['id_commentaire'].' LIMIT 1';
9 florian 82
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
83
	}
15 florian 84
	else {
85
		if (isset($_GET['action'])) {
86
			if ($_GET['action']==BAZ_VOIR_FICHE) {
54 florian 87
				//sinon on met a jour le nb de visites pour la fiche, puisque c'est une simple consultation
15 florian 88
				$requete = 'UPDATE bazar_fiche SET bf_nb_consultations=bf_nb_consultations+1 WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
89
				$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
90
			}
91
		}
92
	}
9 florian 93
 
7 florian 94
	//on cherche le type d'annonce, l'annonceur et les stats
55 florian 95
	$requete = 'SELECT bn_label_nature, bn_commentaire, bn_appropriation, bn_image_titre, bn_image_logo, bf_ce_utilisateur,bf_nb_consultations  FROM bazar_fiche, bazar_nature WHERE bn_id_nature=bf_ce_nature AND bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
7 florian 96
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
5 florian 97
	if (DB::isError($resultat)) {
98
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
99
	}
100
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
101
		$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
7 florian 102
		$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
103
		$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
104
		$GLOBALS['_BAZAR_']['annonceur']=$ligne['bf_ce_utilisateur'];
105
		$GLOBALS['_BAZAR_']['nb_consultations']=$ligne['bf_nb_consultations'];
55 florian 106
		$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
107
		$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];
5 florian 108
	}
9 florian 109
 
45 florian 110
	//on verifie si l'utilisateur est administrateur
9 florian 111
	$est_admin=0;
112
	if ($GLOBALS['AUTH']->getAuth()) {
113
		$requete='SELECT bn_id_nature FROM bazar_nature WHERE bn_label_nature="'.$GLOBALS['_BAZAR_']['typeannonce'].'"';
114
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
115
		if (DB::isError($resultat)) {
116
			die ($resultat->getMessage().$resultat->getDebugInfo()) ;
117
		}
118
		$result = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
119
		if ((niveau_droit($result['bn_id_nature'],$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='administrateur')
120
		     or(niveau_droit('0',$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))=='superadministrateur'))
121
		{
122
		        $est_admin=1;
123
		}
124
	}
55 florian 125
	if ($GLOBALS['_BAZAR_']['image_titre']!='') {
126
		$res .= '<img src="client/bazar/images/'.$GLOBALS['_BAZAR_']['image_titre'].'" alt="'.$GLOBALS['_BAZAR_']['typeannonce'].'" />'.'<br />'."\n";
127
	} else {
128
		$res .= '<h1>'.$GLOBALS['_BAZAR_']['typeannonce'].'</h1>'."\n";
129
	}
130
	$res .= '<div class="BAZ_cadre_fiche">'."\n";
7 florian 131
	$res .= '<div class="BAZ_cadre_fiche_haut">'."\n";
5 florian 132
	$res .= '&nbsp;</div>'."\n";
7 florian 133
	$res .= '<div class="BAZ_cadre_fiche_corps">'."\n";
55 florian 134
	$requete = 'SELECT * FROM bazar_fiche WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
135
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
136
	if (DB::isError ($resultat)) {
137
		die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
138
	}
139
	$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
45 florian 140
	//si le template existe, on genere le template
5 florian 141
	if ((file_exists(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php'))) {
142
		include_once(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php');
55 florian 143
		$res .=genere_fiche($ligne);
5 florian 144
	}
145
	//on affiche ligne par ligne sinon
146
	else {
147
 
55 florian 148
		//cas d'une image personalisée
7 florian 149
		if (isset($ligne['bf_url_image'])) {
150
			$res .= '<div id="fiche_image">'."\n";
55 florian 151
			$res .= '<img src="client/bazar/images/'.$ligne['bf_url_image'].'" border=0 alt="'.BAZ_TEXTE_IMG_ALTERNATIF.'" />'."\n";
7 florian 152
			$res .= '</div>'."\n";
153
		}
55 florian 154
		//cas d'une image par défaut
155
		elseif ($GLOBALS['_BAZAR_']['image_logo']!='') {
156
			$res .= '<div id="fiche_image">'."\n";
157
			$res .= '<img src="client/bazar/images/'.$GLOBALS['_BAZAR_']['image_logo'].'" border=0 alt="'.BAZ_TEXTE_IMG_ALTERNATIF.'" />'."\n";
158
			$res .= '</div>'."\n";
7 florian 159
		}
55 florian 160
		$res .= '<h1 id="fiche_titre">'.$ligne['bf_titre'].'</h1>'."\n";
7 florian 161
		$res .= '<div id="BAZ_description">'.$ligne['bf_description'].'</div>'."\n";
5 florian 162
		$tableau=baz_valeurs_template($GLOBALS['_BAZAR_']['typeannonce'].'.tpl');
163
		for ($i=0; $i<count($tableau); $i++) {
164
			if (isset($ligne[$tableau[$i]['nom_bdd']])) {
55 florian 165
				//pour les champs renseignes par une liste, on va chercher le label de la liste, plutot que l'id
5 florian 166
				if ($tableau[$i]['type']=='liste') {
167
					$requete = 'SELECT '.$tableau[$i]['table_source'].'.* FROM bazar_fiche, '.$tableau[$i]['table_source'].
168
					' WHERE '.$tableau[$i]['nom_bdd'].'='.$tableau[$i]['id_source'].' AND bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
169
					$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
170
					if (DB::isError ($resultat)) {
171
						die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
172
					}
55 florian 173
					while ($tab = $resultat->fetchRow()) {
174
							$val=$tab[1];
5 florian 175
					}
176
				}
177
				else {
7 florian 178
					$val=$ligne[$tableau[$i]['nom_bdd']];
5 florian 179
				}
55 florian 180
				if (($tableau[$i]['nom_bdd']!='bf_titre')and($tableau[$i]['nom_bdd']!='bf_description')and($tableau[$i]['nom_bdd']!='bf_date_debut_validite_fiche')and($tableau[$i]['nom_bdd']!='bf_date_fin_validite_fiche')) {
181
					if (($val!='')and($val!=BAZ_CHOISIR)and($val!=BAZ_NON_PRECISE)) {
7 florian 182
						$res .= '<span class="rubrique">'.constant($tableau[$i]['label']).':</span>'."\n";
183
						$res .= '<span class="description"> '.$val.'</span>'."\n".'<br />'."\n";
184
					}
5 florian 185
				}
186
			}
187
		}
7 florian 188
	//afficher les liens pour l'annonce
189
	$requete = 'SELECT  bu_url, bu_descriptif_url FROM bazar_url WHERE bu_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
190
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
191
	if (DB::isError($resultat)) {
192
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
193
	}
194
	if ($resultat->numRows()>0) {
195
		$res .= '<span class="rubrique">'.BAZ_LIEN_INTERNET.':</span>'."\n";
196
		$res .= '<span class="description">'."\n";
197
		$res .= '<ul>'."\n";
198
		while ($ligne1 = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
199
			$res .= '<li><a href="'.$ligne1['bu_url'].'" target="_blank">'.$ligne1['bu_descriptif_url'].'</a></li>'."\n";
5 florian 200
		}
7 florian 201
		$res .= '</ul></span>'."\n";
202
	}
203
 
204
	//afficher les fichiers pour l'annonce
205
	$requete = 'SELECT  bfj_description, bfj_fichier FROM bazar_fichier_joint WHERE bfj_ce_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
206
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
207
	if (DB::isError($resultat)) {
208
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
209
	}
210
	if ($resultat->numRows()>0) {
211
		$res .= '<span class="rubrique">'.BAZ_LISTE_FICHIERS_JOINTS.':</span>'."\n";
212
		$res .= '<span class="description">'."\n";
213
		$res .= '<ul>'."\n";
214
		while ($ligne2 = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
215
			$res .= '<li><a href="http://'.$_SERVER['HTTP_HOST'].'/client/bazar/upload/'.$ligne2['bfj_fichier'].'">'.$ligne2['bfj_description'].'</a></li>'."\n";
216
		}
217
		$res .= '</ul></span>'."\n";
218
	}
9 florian 219
	$res .= '<div class="bulle_haut">&nbsp;</div>'."\n";
220
	$res .= '<div class="bulle_corps">'."\n";
7 florian 221
 
45 florian 222
	//affichage du redacteur de la fiche
7 florian 223
	$requete = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.', '.BAZ_CHAMPS_EMAIL.' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$GLOBALS['_BAZAR_']['annonceur'];
224
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
225
	if (DB::isError($resultat)) {
226
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
227
	}
228
	while ($redacteur = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
229
		$res .= BAZ_FICHE_ECRITE.'<a href="mailto:'.$redacteur[BAZ_CHAMPS_EMAIL].'">'.$redacteur[BAZ_CHAMPS_PRENOM].' '.$redacteur[BAZ_CHAMPS_NOM].'</a><br />'."\n";
230
	}
231
	$res .= BAZ_NB_VUS.'<strong>'.$GLOBALS['_BAZAR_']['nb_consultations'].'</strong>'.BAZ_FOIS.'<br />'."\n";
232
	$res .= '</div>'."\n";
9 florian 233
	$res .= '<div class="bulle_bas">&nbsp;</div>'."\n";
7 florian 234
	$res .= '<div id="BAZ_bas_page">';
55 florian 235
	}
9 florian 236
 
45 florian 237
	//informations complementaires (id fiche, etat publication,... )
7 florian 238
	if ($danslappli==1) {
239
		$res .= '<span class="rubrique">'.BAZ_NUM_FICHE.':</span> '.$GLOBALS['_BAZAR_']['id_fiche'].'<br />'."\n";
240
		if ($ligne['bf_statut_fiche']==1) {
55 florian 241
			$res .= '<span class="rubrique">'.BAZ_PUBLIEE.':</span> '.BAZ_DU.' '.strftime('%d.%m.%Y',strtotime($ligne['bf_date_debut_validite_fiche'])).' '.BAZ_AU.' '.strftime('%d.%m.%Y',strtotime($ligne['bf_date_fin_validite_fiche'])).'<br />'."\n";
7 florian 242
		}
243
		else {
244
			$res .= '<span class="rubrique">'.BAZ_PUBLIEE.':</span> '.BAZ_NON.'<br />'."\n";
245
		}
55 florian 246
		$res .= '<span class="rubrique">'.BAZ_DATE_CREATION.' :</span> '.strftime('%d.%m.%Y &agrave; %H:%M',strtotime($ligne['bf_date_creation_fiche'])).'<br />'."\n";
247
		$res .= '<span class="rubrique">'.BAZ_DATE_MAJ.' :</span> '.strftime('%d.%m.%Y &agrave; %H:%M',strtotime($ligne['bf_date_maj_fiche'])).'<br />'."\n";
248
 
9 florian 249
		if (($est_admin)or($GLOBALS['_BAZAR_']['annonceur']==$GLOBALS['AUTH']->getAuthData(BAZ_CHAMPS_ID))) {
250
			$lien_modifier=$GLOBALS['_BAZAR_']['url'];
251
			$lien_modifier->addQueryString('action', BAZ_ACTION_MODIFIER);
252
			$lien_modifier->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
253
			$lien_modifier->addQueryString('typeannonce', $GLOBALS['_BAZAR_']['typeannonce']);
254
			$res .= '&nbsp;<a href="'.$lien_modifier->getURL().'">'.BAZ_MODIFIER_LA_FICHE.'</a>'."\n";
5 florian 255
		}
7 florian 256
	}
257
	$res .= '</div>'."\n";
258
	$res .= '</div>'."\n";
259
	$res .= '<div class="BAZ_cadre_fiche_bas">&nbsp;</div>'."\n";
260
	$res .= '</div>'."\n";
261
 
39 florian 262
	//on ajoute les appropriations, s'il le faut
263
	if (($danslappli==1)and($GLOBALS['_BAZAR_']['appropriation']==1)) {
264
		$res .= '<br />'."\n".'<div class="BAZ_cadre_fiche">'."\n";
265
		$res .= '<div class="BAZ_cadre_fiche_haut">&nbsp;</div>'."\n";
266
		$res .= '<div class="BAZ_cadre_fiche_corps">'."\n";
267
		$res .= '<h3>'.BAZ_LES_STRUCTURES_POSSEDANT_UNE_RESSOURCE.'</h3>'."\n";
268
 
40 florian 269
		$requete = 'SELECT '.BAZ_CHAMPS_ID.', '.BAZ_CHAMPS_NOM.' FROM bazar_appropriation,'.BAZ_ANNUAIRE.' WHERE ba_ce_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' AND ba_ce_id_structure='.BAZ_CHAMPS_ID.' ORDER BY '.BAZ_CHAMPS_NOM.' ASC';
270
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
271
		if (DB::isError ($resultat)) {
272
			die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
273
		}
274
		if ($resultat->numRows()>0) {
275
			$res .= BAZ_IL_Y_A.$resultat->numRows().' ';
276
			if ($resultat->numRows()==1) $res .= BAZ_COMMENTAIRE.'<br />'."\n";
277
			else $res .= BAZ_COMMENTAIRES.'<br />'."\n";
278
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
279
				$res .= '<div class="bulle_haut">&nbsp;</div>'."\n";
280
				$res .= '<div class="bulle_corps">'."\n";
281
				//affichage du commentaire
282
				$res .= $ligne['bc_commentaire'].'<br />'."\n";
283
				$res .= '</div>'."\n";
284
				$res .= '<div class="bulle_bas">'."\n";
285
				$res .= '<div style="font-size:9px;margin-left:10px;">'.BAZ_PAR.' : <strong>'.$ligne['bc_nom'].'</strong>'.BAZ_ECRIT_LE.$ligne['bc_date'].'</div>'."\n";
286
				//pour les identifiés seulement, administrateurs de la rubrique ou superadmins
287
				if ($est_admin==1) {
288
					$url_comment= $GLOBALS['_BAZAR_']['url'];
289
					$url_comment->addQueryString('action', BAZ_VOIR_FICHE);
290
					$url_comment->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
291
					$url_comment->addQueryString('id_commentaire', $ligne['bc_id_commentaire']);
292
					$res .= '<a href="'.$url_comment->getURL().'" style="font-size:9px;float:right;">'.BAZ_SUPPRIMER.'</a>'."\n";
293
				}
294
				$res .= '</div>'."\n";
295
			}
296
		}
297
		else $res .= BAZ_PAS_D_APPROPRIATION.'<br /><br />'."\n";
298
 
39 florian 299
		$res .= '</div>'."\n";
300
		$res .= '<div class="BAZ_cadre_fiche_bas">&nbsp;</div>'."\n";
301
		$res .= '</div>'."\n";
302
	}
303
 
7 florian 304
	//on ajoute les commentaires, s'il le faut
22 florian 305
	if (($danslappli==1)and($GLOBALS['_BAZAR_']['commentaire']==1)) {
39 florian 306
		$res .= '<br />'."\n".'<div class="BAZ_cadre_fiche">'."\n";
7 florian 307
		$res .= '<div class="BAZ_cadre_fiche_haut">&nbsp;</div>'."\n";
308
		$res .= '<div class="BAZ_cadre_fiche_corps">'."\n";
309
		$res .= '<h3>'.BAZ_LES_COMMENTAIRES.'</h3>'."\n";
310
		$requete = 'SELECT * FROM bazar_commentaires WHERE bc_ce_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'].' ORDER BY bc_date ASC';
5 florian 311
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
7 florian 312
		if (DB::isError ($resultat)) {
313
			die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
5 florian 314
		}
315
		if ($resultat->numRows()>0) {
9 florian 316
			$res .= BAZ_IL_Y_A.$resultat->numRows().' ';
317
			if ($resultat->numRows()==1) $res .= BAZ_COMMENTAIRE.'<br />'."\n";
318
			else $res .= BAZ_COMMENTAIRES.'<br />'."\n";
5 florian 319
			while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
9 florian 320
				$res .= '<div class="bulle_haut">&nbsp;</div>'."\n";
321
				$res .= '<div class="bulle_corps">'."\n";
322
				//affichage du commentaire
323
				$res .= $ligne['bc_commentaire'].'<br />'."\n";
324
				$res .= '</div>'."\n";
325
				$res .= '<div class="bulle_bas">'."\n";
15 florian 326
				$res .= '<div style="font-size:9px;margin-left:10px;">'.BAZ_PAR.' : <strong>'.$ligne['bc_nom'].'</strong>'.BAZ_ECRIT_LE.$ligne['bc_date'].'</div>'."\n";
9 florian 327
				//pour les identifiés seulement, administrateurs de la rubrique ou superadmins
328
				if ($est_admin==1) {
329
					$url_comment= $GLOBALS['_BAZAR_']['url'];
330
					$url_comment->addQueryString('action', BAZ_VOIR_FICHE);
331
					$url_comment->addQueryString('id_fiche', $GLOBALS['_BAZAR_']['id_fiche']);
15 florian 332
					$url_comment->addQueryString('id_commentaire', $ligne['bc_id_commentaire']);
333
					$res .= '<a href="'.$url_comment->getURL().'" style="font-size:9px;float:right;">'.BAZ_SUPPRIMER.'</a>'."\n";
9 florian 334
				}
335
				$res .= '</div>'."\n";
5 florian 336
			}
337
		}
9 florian 338
		else $res .= BAZ_PAS_DE_COMMENTAIRES.'<br /><br />'."\n";
339
 
340
		//formulaire des commentaires
341
		$form_commentaire = new HTML_QuickForm('commentaire', 'post', $url);
342
		$squelette =& $form_commentaire->defaultRenderer();
343
		$squelette->setFormTemplate("\n".'<form {attributes}>'."\n".'{content}'."\n".'</form>'."\n");
344
		$squelette->setElementTemplate( '<label style="width:200px;">{label}&nbsp;</label><br />'."\n".'{element}<br />'."\n");
345
		$squelette->setRequiredNoteTemplate("\n".'{requiredNote} '."\n");
346
		$option=array('style'=>'width:300px;', 'maxlength'=>100);
347
		$form_commentaire->addElement('text', 'Nom', BAZ_ENTREZ_VOTRE_NOM, $option);
348
		$option=array('style'=>'width:100%;height:100px;white-space: pre;padding:3px;');
54 florian 349
		require_once PAP_CHEMIN_RACINE.'api/pear/HTML/QuickForm/textarea.php';
9 florian 350
		$formtexte= new HTML_QuickForm_textarea('Commentaire', BAZ_ENTREZ_VOTRE_COMMENTAIRE, $option);
351
		$form_commentaire->addElement($formtexte) ;
352
		$form_commentaire->addElement('submit', 'Envoyer', BAZ_ENVOYER);
353
		$form_commentaire->addRule('Nom', BAZ_NOM_REQUIS, 'required', '', 'client') ;
354
		$form_commentaire->addRule('Commentaire', BAZ_COMMENTAIRE_REQUIS, 'required', '', 'client') ;
355
		$form_commentaire->setRequiredNote(BAZ_CHAMPS_REQUIS) ;
356
		$res .= $form_commentaire->toHTML();
357
 
7 florian 358
		$res .= '</div>'."\n";
359
		$res .= '<div class="BAZ_cadre_fiche_bas">&nbsp;</div>'."\n";
360
		$res .= '</div>'."\n";
361
	}
362
 
5 florian 363
	return $res ;
364
}
365
 
366
 
367
/** RSSversHTML () transforme un flux RSS (en XML) en page HTML
368
*
369
*   On passe en paramètre le contenu du flux RSS, on affiche ou non la description,
370
*   et on choisit de format de la date à l'affichage. On a en sortie du code HTML à afficher
371
*
372
*   @param  string   le contenu du flux RSS
373
*   @param  boolean  afficher ou non la description
374
*   @param  string  choisir le format de date: jmah (12/02/2004 12h34) jmh (12/02 12h34) jma (12/02/2004) jm (12/02) ou rien
375
*
376
*   @return  string    le code HTML
377
*/
378
function RSSversHTML($rss, $voirdesc, $formatdate) {
379
	if ($rss!='') {
54 florian 380
		$rawitems='';$title='';$url='';$cat='';$date='';
5 florian 381
		$res='';
382
		if( eregi('<item>(.*)</item>', $rss, $rawitems ) ) {
383
			$items = explode('<item>', $rawitems[0]);
384
			$res.='<ul>'."\n";
385
			for( $i = 0; $i < count($items)-1; $i++ ) {
386
				eregi('<title>(.*)</title>',$items[$i+1], $title );
387
				eregi('<link>(.*)</link>',$items[$i+1], $url );
388
				eregi('<description>(.*)</description>',$items[$i+1], $cat);
389
				eregi('<pubDate>(.*)</pubDate>',$items[$i+1], $date);
390
				$res.='<li>';
391
				if ($formatdate=='jm') {$res.=strftime('%d.%m',strtotime($date[1])).': ';}
392
				if ($formatdate=='jma') {$res.=strftime('%d.%m.%Y',strtotime($date[1])).': ';}
393
				if ($formatdate=='jmh') {$res.=strftime('%d.%m %H:%M',strtotime($date[1])).': ';}
394
				if ($formatdate=='jmah') {$res.=strftime('%d.%m.%Y %H:%M',strtotime($date[1])).': ';}
395
				$res.='<a href="'.preg_replace ('/&amp;/', '&', $url[1]).'">'.$title[1].'</a><br />';
396
				if ($voirdesc) {$res.=$cat[1];}
397
				$res.='</li>'."\n";
398
			}
399
			$res.='</ul>'."\n";
400
		}
401
	}
402
	else $res = BAZ_PAS_D_ANNONCES;
403
	return $res;
404
}
405
 
406
/** gen_RSS() - générer un fichier de flux RSS par type d'annonce
407
*
408
* @param   string Le type de l'annonce (laisser vide pour tout type d'annonce)
409
* @param   integer Le nombre d'annonces a regrouper dans le fichier XML (laisser vide pour toutes)
410
* @param   integer L'identifiant de l'emetteur (laisser vide pour tous)
411
* @param   integer L'état de validation de l'annonce (laisser 1 pour les annonces validées, 0 pour les non-validées)
15 florian 412
* @param   string La requête SQL personnalisée
5 florian 413
*
414
* @return  string Le code du flux RSS
415
*/
416
function gen_RSS($typeannonce='', $nbitem='', $emetteur='', $valide=1, $requeteSQL='') {
417
	// génération de la requete MySQL personnalisée
418
	$requete = 'SELECT DISTINCT bf_id_fiche, bf_titre, bf_date_debut_validite_fiche, bn_label_nature FROM bazar_fiche, bazar_nature';
51 florian 419
	$requete .= ' WHERE bf_statut_fiche='.$valide;
5 florian 420
	$nomflux=BAZ_DERNIERE_ACTU;
421
	if (($typeannonce!='')and($typeannonce!='toutes')) {
422
		$requete .= ' AND bn_label_nature="'.$typeannonce.'"';
423
		//le nom du flux devient le type d'annonce
424
		$nomflux = $typeannonce;
425
	}
13 alexandre_ 426
	if ($valide!=0) $requete .= ' AND (bf_date_debut_validite_fiche<=NOW() or bf_date_debut_validite_fiche="0000-00-00")'.
427
					' AND (bf_date_fin_validite_fiche>=NOW() or bf_date_fin_validite_fiche="0000-00-00") AND bn_id_nature=bf_ce_nature';
5 florian 428
	else $nomflux .= BAZ_A_MODERER;
429
	if (($emetteur!='')and($emetteur!='tous')) {
430
		$requete .= ' AND bf_ce_utilisateur='.$emetteur;
431
		//requete pour afficher le nom de la structure
432
		$requetenom = 'SELECT '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' FROM '.BAZ_ANNUAIRE.' WHERE '.BAZ_CHAMPS_ID.'='.$emetteur;
433
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requetenom) ;
434
		if (DB::isError($resultat)) {
435
			die ($resultat->getMessage().$resultat->getDebugInfo()) ;
436
		}
437
		$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
438
		$nomflux .= ' ('.$ligne[BAZ_CHAMPS_NOM].' '.$ligne[BAZ_CHAMPS_PRENOM].')';
439
	}
440
	if ($requeteSQL!='') $requete .= ' AND ('.$requeteSQL.')';
22 florian 441
	$requete .= ' ORDER BY  bf_date_debut_validite_fiche DESC, bf_date_fin_validite_fiche DESC, bf_date_maj_fiche DESC';
5 florian 442
	if ($nbitem!='') {$requete .= ' LIMIT 0,'.$nbitem;}
443
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
444
	if (DB::isError($resultat)) {
445
		die ($GLOBALS['_BAZAR_']['db']->getMessage().$GLOBALS["db"]->getDebugInfo()) ;
446
	}
447
	// En-tête du flux RSS version 2.0
448
	$xml = '<?xml version="1.0" encoding="ISO-8859-1"?>'."\n".'<rss version="2.0">'."\n";
449
	$xml .= '<channel>'."\n".'<title>'.$nomflux.'</title>'."\n".'<link>'.BAZ_RSS_ADRESSESITE.'</link>'."\n";
450
	$xml .= '<description>'.BAZ_RSS_DESCRIPTIONSITE.'</description>'."\n".'<language>fr-FR</language>'."\n".
451
	'<copyright>Copyright 2005 '.BAZ_RSS_NOMSITE.'</copyright>'."\n";
452
	// Ajout de la date actuelle de publication (suivant la DTD RSS)
453
	$xml .= '<lastBuildDate>'.strftime('%d %b %Y %H:%M:%S GMT').'</lastBuildDate>'."\n";
454
	// En-tête suite et fin
455
	$xml .= '<docs>http://www.stervinou.com/projets/rss/</docs>'."\n".'<category>'.BAZ_RSS_CATEGORIE.'</category>'."\n".
456
	'<managingEditor>'.BAZ_RSS_MANAGINGEDITOR.'</managingEditor>'."\n".'<webMaster>'.BAZ_RSS_WEBMASTER.'</webMaster>'."\n";
457
	$xml .= '<ttl>60</ttl>'."\n".'<image>'."\n".'<title>'.BAZ_RSS_NOMSITE.'</title>'."\n".'<url>'.BAZ_RSS_LOGOSITE.'</url>'."\n".
458
	'<link>'.BAZ_RSS_ADRESSESITE.'</link>'."\n".'</image>'."\n";
459
	if ($resultat->numRows()>0) {
460
		// Creation des items : titre + lien + description + date de publication
461
		while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
462
			$xml .= '<item>'."\n";
463
			$xml .= '<title>'.$ligne['bf_titre'].'</title>'."\n";
464
			$lien=$GLOBALS['_BAZAR_']['url'];
465
			$lien->addQueryString('action', BAZ_VOIR_FICHE);
466
			$lien->addQueryString('id_fiche', $ligne['bf_id_fiche']);
467
			$xml .= '<link>'.str_replace ('&', '&amp;', $lien->getURL()).'</link>'."\n";
468
			$xml .= '<description>'."\n".'<![CDATA['.baz_voir_fiche(0,$ligne['bf_id_fiche']).']]>'."\n".'</description>'."\n";
469
			$xml .= '<pubDate>'.strftime('%d %b %Y %H:%M:%S GMT',strtotime($ligne['bf_date_debut_validite_fiche'])).'</pubDate>'."\n";
470
			$xml .= '</item>'."\n";
471
		}
472
	}
473
	else {//pas d'annonces
474
		$xml .= '<item>'."\n";
10 ddelon 475
		$xml .= '<title>'.BAZ_PAS_D_ANNONCES.'</title>'."\n";
22 florian 476
		$xml .= '<link>#</link>'."\n";
10 ddelon 477
		$xml .= '<description>'.BAZ_PAS_D_ANNONCES.'</description>'."\n";
5 florian 478
		$xml .= '<pubDate>'.strftime('%d %b %Y %H:%M:%S GMT',strtotime('12/12/2004')).'</pubDate>'."\n";
479
		$xml .= '</item>'."\n";
480
	}
481
	$xml .= '</channel>'."\n".'</rss>'."\n";
482
	return $xml;
483
}
484
 
485
 
486
/** baz_liste() Formate la liste de toutes les annonces actuelles
487
*
488
*   @return  string    le code HTML à afficher
489
*/
490
function baz_liste($typeannonce='toutes') {
22 florian 491
 
492
	//titre
5 florian 493
	if ($typeannonce=='toutes') $res= '<h2>'.BAZ_TOUTES_LES_ANNONCES.'</h2>'."\n";
22 florian 494
	else $res = '<h2>'.BAZ_TOUTES_LES_ANNONCES_DE_TYPE.$typeannonce.'</h2>'."\n";
495
 
45 florian 496
	//creation du lien pour le formulaire de recherche
22 florian 497
	$GLOBALS['_BAZAR_']['url']->addQueryString('action', BAZ_VOIR_TOUTES_ANNONCES);
498
	$lien_formulaire=preg_replace ('/&amp;/', '&', $GLOBALS['_BAZAR_']['url']->getURL()) ;
499
	$formtemplate = new HTML_QuickForm('formulaire', 'post', $lien_formulaire) ;
500
	$squelette =&$formtemplate->defaultRenderer();
39 florian 501
	$squelette->setFormTemplate("\n".'<form{attributes}>'."\n".'<ul>'."\n".'{content}'."\n".'</ul>'."\n".'</form>'."\n");
502
	$squelette->setElementTemplate( '<li class="enligne">'."\n".'{element}'."\n".'</li>'."\n");
22 florian 503
	//requete pour obtenir l'id et le label des types d'annonces
504
	$requete = 'SELECT bn_label_nature '.
505
	           'FROM bazar_nature WHERE bn_ce_id_menu='.$GLOBALS['_GEN_commun']['info_menu']->gm_id_menu.
506
		   '  or  bn_ce_id_menu=0 ORDER BY bn_label_nature ASC';
507
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
508
	if (DB::isError($resultat)) {
509
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
510
	}
511
	$type_annonce_select['toutes']=BAZ_TOUS_TYPES_FICHES;
512
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
513
		$type_annonce_select[$ligne['bn_label_nature']] = $ligne['bn_label_nature'];
514
	}
45 florian 515
	$option=array('style'=>'width: 160px;');
22 florian 516
	$formtemplate->addElement ('select', 'nature', BAZ_TYPEANNONCE, $type_annonce_select, $option) ;
517
 
518
	//requete pour obtenir l'id, le nom et prénom de toutes les personnes ayant une fiche publiée actuellement
519
	$requete = 'SELECT '.BAZ_CHAMPS_ID.', '.BAZ_CHAMPS_NOM.', '.BAZ_CHAMPS_PRENOM.' '.
520
	           'FROM bazar_fiche,'.BAZ_ANNUAIRE.' '.
521
		   'WHERE bf_statut_fiche=1 AND bf_date_debut_validite_fiche<=NOW() AND bf_date_fin_validite_fiche>=NOW() AND bf_ce_utilisateur='.BAZ_CHAMPS_ID.' '.
522
		   'ORDER BY '.BAZ_CHAMPS_NOM.' ASC';
523
	$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
524
	if (DB::isError($resultat)) {
525
		die ($resultat->getMessage().$resultat->getDebugInfo()) ;
526
	}
527
	$personnes_select['tous']=BAZ_TOUS_LES_EMETTEURS;
528
	while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
529
		$personnes_select[$ligne[BAZ_CHAMPS_ID]] = $ligne[BAZ_CHAMPS_NOM]." ".$ligne[BAZ_CHAMPS_PRENOM] ;
530
	}
45 florian 531
	$option=array('style'=>'width: 160px;');
22 florian 532
	$formtemplate->addElement ('select', 'personnes', BAZ_EMETTEUR, $personnes_select, $option) ;
533
 
534
	//champs texte pour entrer les mots clés
535
	$option=array('size'=>15,'maxlength'=>40);
536
	$formtemplate->addElement('text', 'recherche_mots_cles', BAZ_MOT_CLE, $option) ;
537
	$defauts=array('recherche_mots_cles'=>BAZ_MOT_CLE);
538
	$formtemplate->setDefaults($defauts);
539
	//Bouton de validation du formulaire
540
	$bouton[] = &HTML_QuickForm::createElement('submit', 'valider', BAZ_VALIDER);
541
	$formtemplate->addGroup($bouton, null, null, '');
23 florian 542
	$res.=$formtemplate->toHTML()."\n";
22 florian 543
	$requeteSQL='';
544
	//affichage des résultats de la recherche si le formulaire a été envoyé
545
	if (isset($_POST['nature'])) {
546
		//préparation de la requète pour trouver les mots clés
23 florian 547
		if (($_POST['recherche_mots_cles']!='')and($_POST['recherche_mots_cles']!=BAZ_MOT_CLE)) {
22 florian 548
			//découpage des mots clés
549
			$recherche = split(' ', $_POST['recherche_mots_cles']) ;
550
			$nbmots=count($recherche);
551
			for ($i=0; $i<$nbmots; $i++) {
552
				if ($i>0) $requeteSQL.=' OR ';
553
				$requeteSQL.='bf_titre LIKE "%'.$recherche[$i].'%" OR bf_description LIKE "%'.$recherche[$i].'%" ';
554
			}
555
		}
23 florian 556
		//génération de la liste de flux à afficher
39 florian 557
		$res.=RSSversHTML(gen_RSS($_POST['nature'], '', $_POST['personnes'], 1, $requeteSQL), 1, BAZ_TYPE_AFFICHAGE_LISTE) ;
22 florian 558
	}
559
	else {
23 florian 560
		//on affiche toutes les annonces
561
		$res .= RSSversHTML(gen_RSS($typeannonce, '', '', 1, ''), 0, 'jm') ;
22 florian 562
	}
5 florian 563
	return $res;
564
}
23 florian 565
?>