Subversion Repositories Applications.bazar

Rev

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

Rev Author Line No. Line
91 alexandre_ 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
// +------------------------------------------------------------------------------------------------------+
398 alexandre_ 22
// CVS : $Id: bazar.class.php,v 1.11 2008-10-29 10:38:14 alexandre_tb Exp $
91 alexandre_ 23
/**
24
*
25
*@package bazar
26
//Auteur original :
27
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
28
*@author        Florian Schmitt <florian@ecole-et-nature.org>
29
*@copyright     Tela-Botanica 2000-2004
398 alexandre_ 30
*@version       $Revision: 1.11 $
91 alexandre_ 31
// +------------------------------------------------------------------------------------------------------+
32
*/
33
 
34
// +------------------------------------------------------------------------------------------------------+
35
// |                             LES CONSTANTES DES NIVEAUX DE DROIT                                      |
36
// +------------------------------------------------------------------------------------------------------+
37
 
269 alexandre_ 38
define ('BAZ_DROIT_SUPER_ADMINISTRATEUR', 0);
39
define ('BAZ_DROIT_ADMINISTRATEUR', 2);
40
define ('BAZ_DROIT_REDACTEUR', 1);
91 alexandre_ 41
 
42
// +------------------------------------------------------------------------------------------------------+
43
// |                                            ENTETE du PROGRAMME                                       |
44
// +------------------------------------------------------------------------------------------------------+
45
 
269 alexandre_ 46
include_once PAP_CHEMIN_API_PEAR.'PEAR.php';
398 alexandre_ 47
include_once BAZ_CHEMIN_APPLI.'bibliotheque/bazarTemplate.class.php';
91 alexandre_ 48
 
110 alexandre_ 49
class Administrateur_bazar {
91 alexandre_ 50
 
51
	var $_auth ;
110 alexandre_ 52
 
53
	/**
54
	 * Identifiant de l'utilisateur
55
	 */
56
 
57
	var $_id_utilisateur ;
91 alexandre_ 58
 
59
	/**
60
	 * 	Vaut true si l'utilisateur est un administrateur
61
	 */
62
	var $_isSuperAdmin ;
63
 
64
	/**	Constructeur
65
	 *
66
	 * @param	object Un objet authentification
67
	 * @return void
68
	 *
69
	 */
70
 
110 alexandre_ 71
	 function Administrateur_bazar (&$AUTH) {
91 alexandre_ 72
	 	$this->_auth = $AUTH ;
110 alexandre_ 73
	 	if ($AUTH->getAuth())$this->_id_utilisateur = $this->_auth->getAuthData(BAZ_CHAMPS_ID) ;
91 alexandre_ 74
	 }
75
 
76
	/**	isSuperAdmin () - Renvoie true si l'utilisateur est un super administrateur
77
	 *
78
	 */
79
	function isSuperAdmin() {
228 neiluj 80
 
81
		if(empty($this->_id_utilisateur))
82
			return FALSE;
83
 
91 alexandre_ 84
		// On court-circuite si la question a déjà été posé pour ne pas refaire la requete
85
		if (isset ($this->_isSuperAdmin)) return $this->_isSuperAdmin ;
86
 
228 neiluj 87
		// On court-circuite si l'utilisateur n'est pas logué
91 alexandre_ 88
		if (!$this->_auth->getAuth()) return false ;
89
 
90
		// Sinon on interroge la base
205 jp_milcent 91
		$requete = 'SELECT bd_niveau_droit FROM bazar_droits WHERE bd_id_utilisateur='.
110 alexandre_ 92
	 				$this->_id_utilisateur.
91 alexandre_ 93
	           		' AND bd_niveau_droit=0';
94
 
95
		$resultat = $GLOBALS['_BAZAR_']['db']->query ($requete) ;
96
		if (DB::isError($resultat)) {
317 alexandre_ 97
			return ("Echec de la requete<br />".$resultat->getMessage()."<br />".$resultat->getDebugInfo()) ;
91 alexandre_ 98
		}
99
		if ($resultat->numRows() != 0) {
100
			$this->_isSuperAdmin = true ;
101
		} else {
102
			$this->_isSuperAdmin = false ;
103
		}
104
		return $this->_isSuperAdmin;
105
	}
106
 
107
	/**	isAdmin () - Renvoie true si l'utilisateur est administrateur du type de fiche spécifié
108
	 *
109
	 * @param interger type_annonce	Le type de l'annonce
110
	 *
111
	 */
112
 
113
	function isAdmin($id_nature) {
228 neiluj 114
		// on court-circuite si l'utilisateur n'est pas logué
91 alexandre_ 115
		if (!$this->_auth->getAuth()) return false ;
116
 
99 alexandre_ 117
		return $this->_requeteDroit ($id_nature, 2) ;
91 alexandre_ 118
	}
119
 
317 alexandre_ 120
	/**	isRedacteur() - Renvoie true si l'utilisateur est redacteur du type de fiche specifie
91 alexandre_ 121
	 *
122
	 */
123
 
124
	function isRedacteur($id_nature) {
308 alexandre_ 125
		if (isset($GLOBALS['droit_depot']) && $GLOBALS['droit_depot'] == 3) return true;
99 alexandre_ 126
		return $this->_requeteDroit ($id_nature, 1) ;
91 alexandre_ 127
	}
128
 
129
	/** _requeteDroit() - fait une requete sur la table bazar_droit
130
	 *
131
	 */
132
 
133
	function _requeteDroit ($id_nature, $niveau) {
228 neiluj 134
 
135
		if(empty($this->_id_utilisateur))
136
			return false;
137
 
205 jp_milcent 138
		$requete = 'SELECT bd_niveau_droit FROM bazar_droits WHERE bd_id_utilisateur='
110 alexandre_ 139
					.$this->_id_utilisateur.
91 alexandre_ 140
	           		' AND bd_id_nature_offre="'.$id_nature.'" and bd_niveau_droit='.$niveau;
141
 
142
		$resultat = $GLOBALS['_BAZAR_']['db']->query ($requete) ;
143
		if (DB::isError($resultat)) {
317 alexandre_ 144
			return ("Echec de la requete<br />".$resultat->getMessage()."<br />".$resultat->getDebugInfo()) ;
91 alexandre_ 145
		}
146
		if ($resultat->numRows() != 0) {
147
			return true ;
148
		}
149
		return false ;
150
	}
151
}
152
 
110 alexandre_ 153
class Utilisateur_bazar extends Administrateur_bazar {
154
 
155
	function Utilisateur_bazar($id_utilisateur) {
156
		$this->_id_utilisateur = $id_utilisateur ;
157
	}
158
 
159
	function isAdmin($id_nature) {
160
		return $this->_requeteDroit ($id_nature, 2) ;
161
	}
162
 
163
	/**	isSuperAdmin () - Renvoie true si l'utilisateur est un super administrateur
164
	 *
165
	 */
166
	function isSuperAdmin() {
228 neiluj 167
 
168
		if(empty($this->_id_utilisateur))
169
			return false;
170
 
110 alexandre_ 171
		// On court-circuite si la question a déjà été posé pour ne pas refaire la requete
172
		if (isset ($this->_isSuperAdmin)) return $this->_isSuperAdmin ;
173
 
174
		// Sinon on interroge la base
205 jp_milcent 175
		$requete = 'SELECT bd_niveau_droit FROM bazar_droits WHERE bd_id_utilisateur='.
110 alexandre_ 176
	 				$this->_id_utilisateur.
177
	           		' AND bd_niveau_droit=0';
178
 
179
		$resultat = $GLOBALS['_BAZAR_']['db']->query ($requete) ;
180
		if (DB::isError($resultat)) {
317 alexandre_ 181
			return ("Echec de la requete<br />".$resultat->getMessage()."<br />".$resultat->getDebugInfo()) ;
110 alexandre_ 182
		}
183
		if ($resultat->numRows() != 0) {
184
			$this->_isSuperAdmin = true ;
185
		} else {
186
			$this->_isSuperAdmin = false ;
187
		}
188
		return $this->_isSuperAdmin;
189
	}
190
 
191
}
269 alexandre_ 192
 
193
 
194
 
398 alexandre_ 195
define ('BAZAR_NOTIFICATION_NOUVELLE_FICHE', 1);
196
define ('BAZAR_NOTIFICATION_MODIFICATION_FICHE', 2);
269 alexandre_ 197
 
398 alexandre_ 198
 
269 alexandre_ 199
class bazar extends PEAR {
200
 
201
	/**
202
	 * 	getMailAdmin	Renvoie un tableau de mail des administrateurs du type
203
	 * 					de fiche passe en parametre
204
	 *
205
	 * 	@global DB Un objet DB de PEAR $GLOBALS['_BAZAR_']['db']
206
	 * 	@param integer L identifiant de la nature
207
	 */
208
	function getMailAdmin($id_nature) {
209
		$requete = 'select '.BAZ_CHAMPS_EMAIL.' from '.BAZ_ANNUAIRE.', bazar_droits ' .
210
				'where bd_id_nature_offre="'.$id_nature.'" and bd_niveau_droit="'.BAZ_DROIT_ADMINISTRATEUR.'"' .
211
						' and '.BAZ_CHAMPS_ID.'= bd_id_utilisateur';
212
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete);
213
		if (DB::isError($resultat)) $this->raiseError();
214
		$tableau_mail = array();
215
		if ($resultat->numRows() == 0) return false;
216
		while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
217
			array_push ($tableau_mail, $ligne[BAZ_CHAMPS_EMAIL]) ;
218
		}
219
		return $tableau_mail;
220
	}
392 alexandre_ 221
 
222
	/**
223
	 * 	getMailAdmin	Renvoie un tableau de mail des super administrateurs
224
	 *
225
	 * 	@global DB Un objet DB de PEAR $GLOBALS['_BAZAR_']['db']
226
	 */
227
	function getMailSuperAdmin() {
228
		$requete = 'select '.BAZ_CHAMPS_EMAIL.' from '.BAZ_ANNUAIRE.', bazar_droits ' .
229
				'where bd_niveau_droit="'.BAZ_DROIT_SUPER_ADMINISTRATEUR.'"' .
230
						' and '.BAZ_CHAMPS_ID.'= bd_id_utilisateur';
231
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete);
232
		if (DB::isError($resultat)) $this->raiseError();
233
		$tableau_mail = array();
234
		if ($resultat->numRows() == 0) return false;
235
		while ($ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC)) {
236
			array_push ($tableau_mail, $ligne[BAZ_CHAMPS_EMAIL]) ;
237
		}
238
		return $tableau_mail;
239
	}
398 alexandre_ 240
	/**
241
	 *  notifier() envoie un message aux administrateurs
242
	 *
243
	 * par defaut lors du depot ou de la modification d une fiche
244
	 */
245
	function notifier($type = BAZAR_NOTIFICATION_NOUVELLE_FICHE) {
246
 
247
		switch ($type) {
248
			case BAZAR_NOTIFICATION_NOUVELLE_FICHE :
249
				$id_sujet = BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_SUJET;
250
				$id_corps = BAZ_TEMPLATE_MAIL_NOUVELLE_FICHE_CORPS;
251
			break ;
252
			case BAZAR_NOTIFICATION_MODIFICATION_FICHE :
253
				$id_sujet = BAZ_TEMPLATE_MAIL_MODIFIER_FICHE_SUJET;
254
				$id_corps = BAZ_TEMPLATE_MAIL_MODIFIER_FICHE_CORPS;
255
			break;
256
		}
257
 
258
		$template = new bazarTemplate($GLOBALS['_BAZAR_']['db']);
259
		//print ('toto'.$id_sujet);
260
		$sujet = html_entity_decode($template->getTemplate($id_sujet, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['id_typeannonce']));
261
		$corps = html_entity_decode($template->getTemplate($id_corps, $GLOBALS['_BAZAR_']['langue'], $GLOBALS['_BAZAR_']['id_typeannonce']));
436 aurelien 262
		$corps.= $GLOBALS['_BAZAR_']['id_fiche'].'&typeannonce='.$GLOBALS['_BAZAR_']['id_typeannonce'] ;
263
 
398 alexandre_ 264
		$mails = bazar::getMailSuperAdmin($GLOBALS['_BAZAR_']['id_typeannonce']);
265
		if (is_array ($mails)) {
266
			foreach ($mails as $mail) {
267
				mail ($mail, $sujet, $corps);
268
			}
269
		}
270
	}
271
 
272
	/** Effectue une requete sur bazar_nature pour remplir diverses
273
	 * globales
274
	 *
275
	 * @global string la globale de langue (ex fr-FR)
276
	 * @global	int $GLOBALS['_BAZAR_']['id_typeannonce']
277
	 *
278
	 * @return mixed	true ou PEAR_Error
279
	 */
280
	function chargeNature() {
281
 
282
		$requete = 'SELECT bn_label_nature, bn_condition, bn_template, bn_commentaire, bn_appropriation, bn_image_titre, bn_image_logo';
283
		$requete .= ' FROM bazar_nature WHERE bn_id_nature = '.$GLOBALS['_BAZAR_']['id_typeannonce'];
284
		if (isset($GLOBALS['_BAZAR_']['langue'])) {
285
			$requete .= ' and bn_ce_i18n like "'.$GLOBALS['_BAZAR_']['langue'].'%"';
286
		}
287
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
288
		if (DB::isError($resultat)) {
289
			return $resultat->getMessage().$resultat->getDebugInfo() ;
290
		}
291
		$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC);
292
		$GLOBALS['_BAZAR_']['typeannonce']=$ligne['bn_label_nature'];
293
		$GLOBALS['_BAZAR_']['condition']=$ligne['bn_condition'];
294
	    $GLOBALS['_BAZAR_']['template']=$ligne['bn_template'];
295
		$GLOBALS['_BAZAR_']['commentaire']=$ligne['bn_commentaire'];
296
		$GLOBALS['_BAZAR_']['appropriation']=$ligne['bn_appropriation'];
297
		$GLOBALS['_BAZAR_']['image_titre']=$ligne['bn_image_titre'];
298
		$GLOBALS['_BAZAR_']['image_logo']=$ligne['bn_image_logo'];
299
		return true;
300
	}
301
	/** Renvoie un element de formulaire de type select ou radio
302
	 *  au vue de filtrer les resultats du bazar
303
	 * @global	mixed	$GLOBALS['_BAZAR_']['db'] identifiant de connexion a la bd
304
	 *
305
	 * @return string	html
306
	 */
307
	function getFiltre($numero_liste, $multiple = false, $type = 'select') {
308
		$type == 'select' ? $balise = 'select' : $balise = 'radio' ;
309
 
310
		// chargement du template
311
		$tableau_template = baz_valeurs_template($GLOBALS['_BAZAR_']['template']);
312
 
313
		$html_filtre = '<select name="bazar_filtre_'.$numero_liste.'" onchange="javascript:this.form.submit();">'."\n";
314
 
315
		// Requete dans bazar_liste_valeurs
316
		$requete = 'select blv_valeur, blv_label from bazar_liste_valeurs where blv_ce_liste="'.$numero_liste.'"';
317
		$resultat = $GLOBALS['_BAZAR_']['db']->query($requete);
318
 
319
		if (DB::isError($resultat)) {
320
			return $resultat->getMessage().$resultat->getDebugInfo() ;
321
		}
322
		$html_filtre .= '<option id="filtre_tous" value="*" ';
323
		if (isset($_POST['bazar_filtre_'.$numero_liste]) && '*' == $_POST['bazar_filtre_'.$numero_liste]) {
324
			$html_filtre .= 'selected="selected" ';
325
		}
326
		$html_filtre .= '>'.'Tout afficher'.'</option>';
327
 
328
		while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) {
329
			$html_filtre .= '<option class="filtre_'.$ligne->blv_valeur.'" value="'.$ligne->blv_valeur.'"';
330
			if (isset($_POST['bazar_filtre_'.$numero_liste]) && $ligne->blv_valeur == $_POST['bazar_filtre_'.$numero_liste]) {
331
				$html_filtre .= 'selected="selected" ';
332
			}
333
			$html_filtre .= '>'.$ligne->blv_label.'</option>'."\n";
334
		}
335
		$html_filtre .= '</select>'."\n";
336
		$resultat->free();
337
		return $html_filtre;
338
	}
339
 
340
	function getFiltrePlageDeDate () {
341
		if (isset ($_POST['date_debut'])) {
342
				$defaut_debut = $_POST['date_debut'];
343
			} else {
344
				$defaut_debut = '';
345
			}
346
			if (isset ($_POST['date_fin'])) {
347
				$defaut_fin = $_POST['date_fin'];
348
			} else {
349
				$defaut_fin = '';
350
			}
351
			$formulaire_filtre .= 'de <input type="text" readonly size="10" name="date_debut" class="inputDate" id="date_debut" value="'.$defaut_debut.'" />';
352
			$formulaire_filtre .= ' &agrave; <input type="text" readonly size="10" name="date_fin" class="inputDate" id="date_fin" value="'.$defaut_fin.'" />';
353
			$formulaire_filtre .= "\n".'<script language="javascript" type="text/javascript">' ."\n".
354
					'$(document).ready(function() { $(\'#date_debut, #date_fin\').datepicker($.extend({}, $.datepicker.regional["fr-FR"],{
355
	dateFormat:\'dd-mm-yy\',
356
	buttonImage: "client/bazar/images/cal.png",
357
	showOn: "both",
358
	beforeShow: customRange,
359
	buttonImageOnly: true'."\n".
360
					'}));})' ."\n".
361
'function customRange(input) { return {minDate: (input.id == "date_fin" ? $("#date_debut").datepicker("getDate") : null),
362
        maxDate: (input.id == "date_debut" ? $("#date_fin").datepicker("getDate") : null)};}' ."\n".
363
'</script>';
364
	return $formulaire_filtre;
365
	}
366
 
367
	/** Renvoie le formulaire d un filtre
368
	 *  utile dans la carte google ou dans le calendrier
369
	 *
370
	 * @param	string	le template avec des filtres ecrits comme {filtre liste="12"}
371
	 * @global	mixed	$GLOBALS['_BAZAR_']['url']
372
	 * @return	string html
373
	 */
374
	function getFormulaireFiltre($template) {
375
		if (preg_match_all ('/{filtre liste="([0-9]+)"}/', $template, $subpattern)) {
376
 
377
			$formulaire_filtre = '<form action="'.$GLOBALS['_BAZAR_']['url']->getURL().'" method="post">'."\n";
378
			$formulaire_filtre .= '<fieldset><legend>Filtrer : </legend>';
379
			for ($i = 0; $i <count($subpattern[1]); $i++) {
380
				$formulaire_filtre .= bazar::getFiltre($subpattern[1][$i]) ;
381
			}
382
			$formulaire_filtre .= bazar::getFiltrePlageDeDate();
383
			$formulaire_filtre .= '<input type="submit" value="Filtrer" />';
384
			$formulaire_filtre .= '</fieldset>';
385
			$formulaire_filtre .= '</form>'."\n";
386
			$html = preg_replace ('/{filtre liste="([0-9]+)"}/', $formulaire_filtre, $template);
387
		}
388
		return $html;
389
	}
269 alexandre_ 390
}
391
 
392 alexandre_ 392
class Bazar_element {
393
 
394
	function &factory($type, $options = false)
395
    {
396
 
397
        if (file_exists (BAZ_CHEMIN_APPLI."bibliotheque/elements/{$type}.php")) include_once BAZ_CHEMIN_APPLI."bibliotheque/elements/{$type}.php";
398
        else return PEAR::raiseError("Impossible d inclure le fichier /{$type}.php", "Impossible d inclure le fichier ".
399
        							BAZ_CHEMIN_APPLI."bibliotheque/elements/{$type}.php<br />", null, null,
400
                                    "Impossible d inclure le fichier /{$type}.php"
401
                                    , 'PEAR_Error', true);;
402
        $classname = "Bazar_{$type}";
403
 
404
        if (!class_exists($classname)) {
405
            $tmp = PEAR::raiseError(null, -2, null, null,
406
                                    "la classe $classname n'existe pas"
407
                                    , 'PEAR_Error', true);
408
            return $tmp;
409
        }
410
 
411
        @$obj =& new $classname($options);
412
 
413
        return $obj;
414
    }
415
}
416
 
91 alexandre_ 417
/* +--Fin du code ----------------------------------------------------------------------------------------+
418
*
419
* $Log: not supported by cvs2svn $
398 alexandre_ 420
* Revision 1.10  2008-09-17 14:08:45  alexandre_tb
421
* merge depuis aha
422
*
392 alexandre_ 423
* Revision 1.9  2007-10-10 13:27:06  alexandre_tb
424
* encodage et remplacement de die en return
425
*
317 alexandre_ 426
* Revision 1.8  2007-10-01 10:35:14  alexandre_tb
427
* petit hack pour tester la presence de $GLOBALS['droit_depot'] qui indique le niveau de droit minimum pour pouvoir deposer une fiche.
428
*
308 alexandre_ 429
* Revision 1.7  2007-07-04 09:59:09  alexandre_tb
430
* ajout de la classe bazar, premices d une structuration du code
431
*
269 alexandre_ 432
* Revision 1.6  2007/04/20 09:58:06  neiluj
433
* correction bug $this->_id_utilisateur
434
*
228 neiluj 435
* Revision 1.5  2007/04/11 08:30:12  neiluj
436
* remise en état du CVS...
437
*
205 jp_milcent 438
* Revision 1.3.2.1  2007/03/07 16:49:21  jp_milcent
439
* Mise  en majuscule de select
440
*
441
* Revision 1.3  2006/03/29 13:05:12  alexandre_tb
442
* ajout de la classe Administrateur_bazar
443
*
110 alexandre_ 444
* Revision 1.2  2006/02/09 11:06:12  alexandre_tb
445
* changement dans les id des droit
446
* 0 => super administrateur
447
* 1 => redacteur
448
* 2 => administrateur
449
*
99 alexandre_ 450
* Revision 1.1  2006/02/07 11:08:06  alexandre_tb
451
* version initiale
452
*
91 alexandre_ 453
* +-- Fin du code ----------------------------------------------------------------------------------------+
454
*/
455
?>