Subversion Repositories Applications.papyrus

Rev

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

Rev Author Line No. Line
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
// +------------------------------------------------------------------------------------------------------+
67 jpm 24
// CVS : $Id: pap_initialise_auth.inc.php,v 1.3 2004-10-15 18:29:19 jpm Exp $
5 jpm 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
67 jpm 40
*@version           $Revision: 1.3 $ $Date: 2004-10-15 18:29:19 $
5 jpm 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 jpm 67
    $param_bdd = array ('dsn' => PAP_DSN,
5 jpm 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
 
21 jpm 94
$_GEN_commun['pear_auth']->setExpire(3600 * 24 * 30 * 6);// 6 mois
5 jpm 95
 
96
$_GEN_commun['pear_auth']->start();
97
 
98
/* +--Fin du code ---------------------------------------------------------------------------------------+
99
* $Log: not supported by cvs2svn $
67 jpm 100
* Revision 1.2  2004/06/30 07:23:36  jpm
101
* Ajout d'un commentaire.
102
*
21 jpm 103
* Revision 1.1  2004/06/16 08:12:01  jpm
104
* Changement de nom de Génésia en Papyrus.
105
* Changement de l'arborescence.
106
*
5 jpm 107
* Revision 1.6  2004/05/01 11:40:21  jpm
108
* Suppression de code intégré dans le fichier de l'applette Identification.
109
*
110
* Revision 1.5  2004/04/28 12:04:31  jpm
111
* Changement du modèle de la base de données.
112
*
113
* Revision 1.4  2004/04/22 08:29:11  jpm
114
* Transformation de $GS_GLOBAL en $_GEN_commun.
115
*
116
* Revision 1.3  2004/04/09 16:20:33  jpm
117
* Gestion de l'authentification uniquement.
118
* Gestion des tables i18n.
119
*
120
* Revision 1.2  2004/04/02 16:29:58  jpm
121
* Ajout de la gestion de la déconnexion et reconnexion.
122
*
123
* Revision 1.1  2004/04/02 08:54:58  jpm
124
* Création du fichier qui contient l'initialisation des objets Pear, hormis la base de données.
125
*
126
* +--Fin du code ----------------------------------------------------------------------------------------+
127
*/
128
?>