5 |
jpm |
1 |
<?php
|
|
|
2 |
//vim: set expandtab tabstop=4 shiftwidth=4:
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2003 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | |
|
|
|
9 |
// | This library is free software; you can redistribute it and/or |
|
|
|
10 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
11 |
// | License as published by the Free Software Foundation; either |
|
|
|
12 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
13 |
// | |
|
|
|
14 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
15 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
16 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
17 |
// | Lesser General Public License for more details. |
|
|
|
18 |
// | |
|
|
|
19 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
20 |
// | License along with this library; if not, write to the Free Software |
|
|
|
21 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
22 |
// | |
|
|
|
23 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
24 |
// CVS : $Id: pap_initialise_auth.inc.php,v 1.1 2004-06-16 08:12:01 jpm Exp $
|
|
|
25 |
/**
|
|
|
26 |
* Initialisation de l'authentification.
|
|
|
27 |
*
|
|
|
28 |
* Suite à la recherche des informations depuis la base de données nous initialisons
|
|
|
29 |
* l'authentification des utilisateurs si le site l'utilise.
|
|
|
30 |
* La page contient le code initialisant l'objet PEAR créé par Net_URL contenant l'url
|
|
|
31 |
* courante demandée par l'utilisateur.
|
|
|
32 |
* Nous initialisons aussi l'identification de l'utilisateur et le démarage de la session.
|
|
|
33 |
*
|
|
|
34 |
*@package Papyrus
|
|
|
35 |
//Auteur original :
|
|
|
36 |
*@author Alexandre GRANIER <alex@tela-botanica.org>
|
|
|
37 |
//Autres auteurs :
|
|
|
38 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
39 |
*@copyright Tela-Botanica 2000-2004
|
|
|
40 |
*@version $Revision: 1.1 $ $Date: 2004-06-16 08:12:01 $
|
|
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
42 |
*/
|
|
|
43 |
|
|
|
44 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
45 |
// | ENTÊTE du PROGRAMME |
|
|
|
46 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
47 |
|
|
|
48 |
/** <br> Inclusion de l'authentification de PEAR.*/
|
|
|
49 |
include_once 'Auth/Auth.php';
|
|
|
50 |
|
|
|
51 |
/** Inclusion de la bibliothèque de fonctions d'identification.
|
|
|
52 |
* Contient entre autre la fonction founissant le formulaire d'identification pour Auth de Pear.
|
|
|
53 |
* Cette inclusion n'a lieu que si le site utilise l'identification.
|
|
|
54 |
*/
|
|
|
55 |
include_once GEN_CHEMIN_PAP.'bibliotheque/fonctions/pap_identification.fonct.php' ;
|
|
|
56 |
|
|
|
57 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
58 |
// | CORPS du PROGRAMME |
|
|
|
59 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
60 |
|
|
|
61 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
62 |
// Gestion de l'identification des utilisateurs et des sessions
|
|
|
63 |
|
|
|
64 |
// Nour regardons à quel type d'identification nous avons à faire:
|
|
|
65 |
if ($_GEN_commun['info_auth']->gsa_ce_type_auth == 1) {
|
|
|
66 |
// Authentification via une base de données
|
|
|
67 |
$param_bdd = array ('dsn' => GEN_DSN,
|
|
|
68 |
'table' => $_GEN_commun['info_auth_bdd']->gsab_nom_table,
|
|
|
69 |
'usernamecol' => $_GEN_commun['info_auth_bdd']->gsab_nom_champ_login,
|
|
|
70 |
'passwordcol' => $_GEN_commun['info_auth_bdd']->gsab_nom_champ_mdp,
|
|
|
71 |
'cryptType' => $_GEN_commun['info_auth_bdd']->gsab_cryptage_mdp,
|
|
|
72 |
'db_fields' => '*');
|
|
|
73 |
$_GEN_commun['pear_auth'] = new Auth('DB', $param_bdd, 'GEN_afficherInfoIdentification', 1);
|
|
|
74 |
} else if ($_GEN_commun['info_auth']->gsa_ce_type_auth == 2) {
|
|
|
75 |
// Authentification via LDAP
|
|
|
76 |
$param_ldap = array ( 'host' => $_GEN_commun['info_auth_ldap']->gsal_serveur,
|
|
|
77 |
'port' => $_GEN_commun['info_auth_ldap']->gsal_port,
|
|
|
78 |
'basedn' => $_GEN_commun['info_auth_ldap']->gsal_base_dn,
|
|
|
79 |
'userattr' => $_GEN_commun['info_auth_ldap']->gsal_uid);
|
|
|
80 |
$_GEN_commun['pear_auth'] = new Auth('LDAP', $param_ldap, 'GEN_afficherInfoIdentification', 1);
|
|
|
81 |
} else {
|
|
|
82 |
die('ERREUR Génésia : type identification introuvable. <br />'.
|
|
|
83 |
'Type identification : '.$_GEN_commun['info_auth']->gsa_ce_type_auth.'<br />'.
|
|
|
84 |
'Ligne n° : '. __LINE__ . '<br />'.
|
|
|
85 |
'Fichier : '. __FILE__ . '<br />');
|
|
|
86 |
}
|
|
|
87 |
|
|
|
88 |
$_GEN_commun['pear_auth']->setSessionname( 'gen_'.
|
|
|
89 |
GEN_URL_CLE_SITE.'_'.
|
|
|
90 |
$_GEN_commun['info_site']->gs_id_site.'_'.
|
|
|
91 |
GEN_URL_CLE_I18N.'_'.
|
|
|
92 |
$_GEN_commun['info_site']->gs_ce_i18n);
|
|
|
93 |
|
|
|
94 |
$_GEN_commun['pear_auth']->setExpire(3600 * 24 * 30 * 6);
|
|
|
95 |
|
|
|
96 |
$_GEN_commun['pear_auth']->start();
|
|
|
97 |
|
|
|
98 |
/* +--Fin du code ---------------------------------------------------------------------------------------+
|
|
|
99 |
* $Log: not supported by cvs2svn $
|
|
|
100 |
* Revision 1.6 2004/05/01 11:40:21 jpm
|
|
|
101 |
* Suppression de code intégré dans le fichier de l'applette Identification.
|
|
|
102 |
*
|
|
|
103 |
* Revision 1.5 2004/04/28 12:04:31 jpm
|
|
|
104 |
* Changement du modèle de la base de données.
|
|
|
105 |
*
|
|
|
106 |
* Revision 1.4 2004/04/22 08:29:11 jpm
|
|
|
107 |
* Transformation de $GS_GLOBAL en $_GEN_commun.
|
|
|
108 |
*
|
|
|
109 |
* Revision 1.3 2004/04/09 16:20:33 jpm
|
|
|
110 |
* Gestion de l'authentification uniquement.
|
|
|
111 |
* Gestion des tables i18n.
|
|
|
112 |
*
|
|
|
113 |
* Revision 1.2 2004/04/02 16:29:58 jpm
|
|
|
114 |
* Ajout de la gestion de la déconnexion et reconnexion.
|
|
|
115 |
*
|
|
|
116 |
* Revision 1.1 2004/04/02 08:54:58 jpm
|
|
|
117 |
* Création du fichier qui contient l'initialisation des objets Pear, hormis la base de données.
|
|
|
118 |
*
|
|
|
119 |
* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
120 |
*/
|
|
|
121 |
?>
|