Subversion Repositories Applications.papyrus

Rev

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

Rev Author Line No. Line
220 alex 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
// +------------------------------------------------------------------------------------------------------+
406 alexandre_ 24
// CVS : $Id: pap_initialise_auth.inc.php,v 1.18 2005-07-07 09:15:36 alexandre_tb Exp $
220 alex 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
406 alexandre_ 40
*@version           $Revision: 1.18 $ $Date: 2005-07-07 09:15:36 $
220 alex 41
// +------------------------------------------------------------------------------------------------------+
42
*/
207 jpm 43
 
44
// +------------------------------------------------------------------------------------------------------+
220 alex 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
include_once GEN_CHEMIN_PAP.'bibliotheque/fonctions/pap_site.fonct.php' ;
57
 
58
// +------------------------------------------------------------------------------------------------------+
59
// |                                            CORPS du PROGRAMME                                        |
60
// +------------------------------------------------------------------------------------------------------+
61
 
62
// +------------------------------------------------------------------------------------------------------+
63
// Gestion de l'identification des utilisateurs et des sessions
64
 
65
// +------------------------------------------------------------------------------------------------------+
207 jpm 66
// Récupération des informations d'identification pour le site courant
67
 
68
// Récupération des informations sur le site
208 alex 69
$requete_auth = 'SELECT gen_site_auth.*, gs_id_site '.
207 jpm 70
                'FROM gen_site_auth, gen_site '.
220 alex 71
                'WHERE gs_ce_auth <> 0 '.
207 jpm 72
                'AND gs_ce_auth = gsa_id_auth';
73
 
74
$resultat_auth = $db->query($requete_auth);
75
(DB::isError($resultat_auth))
76
    ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_auth->getMessage(), $requete_auth))
77
    : '';
78
 
79
while ($ligne_auth = $resultat_auth->fetchRow(DB_FETCHMODE_OBJECT)) {
80
    // Ajout des valeurs communes aux différents type d'auth
81
    $GLOBALS['_PAPYRUS_']['auth'][$ligne_auth->gsa_id_auth]['gsa_nom'] = $ligne_auth->gsa_nom;
82
    $GLOBALS['_PAPYRUS_']['auth'][$ligne_auth->gsa_id_auth]['gsa_abreviation'] = $ligne_auth->gsa_abreviation;
220 alex 83
    $GLOBALS['_PAPYRUS_']['auth'][$ligne_auth->gsa_id_auth]['gsa_ce_type_auth'] = $ligne_auth->gsa_ce_type_auth;
207 jpm 84
 
314 jpm 85
    if ($ligne_auth->gsa_id_auth == $GLOBALS['_GEN_commun']['info_site']->gs_ce_auth) {
86
        $GLOBALS['_GEN_commun']['info_auth'] = $ligne_auth;
207 jpm 87
    }
88
 
89
    if ($ligne_auth->gsa_ce_auth_bdd != 0) {
90
        //Identification via une base de donnée :
91
        $requete_auth_bdd = 'SELECT * '.
92
                            'FROM gen_site_auth_bdd '.
93
                            'WHERE gsab_id_auth_bdd = '.$ligne_auth->gsa_ce_auth_bdd;
94
 
95
        $resultat_auth_bdd = $db->query($requete_auth_bdd);
96
        (DB::isError($resultat_auth_bdd))
97
            ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_auth_bdd->getMessage(), $requete_auth_bdd))
98
            : '';
220 alex 99
        $tab_auth_bdd = $resultat_auth_bdd->fetchRow(DB_FETCHMODE_OBJECT) ;
314 jpm 100
        if ($ligne_auth->gsa_id_auth == $GLOBALS['_GEN_commun']['info_site']->gs_ce_auth) {
101
            $GLOBALS['_GEN_commun']['info_auth_bdd'] = $tab_auth_bdd ;
102
            // Gestion des arguments de l'authentification
103
            if (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->gsab_parametres)) {
104
                $arguments = explode(' ', $GLOBALS['_GEN_commun']['info_auth_bdd']->gsab_parametres);
105
                for ($i = 0; $i < count($arguments); $i++) {
106
                    $attr = explode('=', $arguments[$i]);
107
                    if ($attr[0] != '') {
108
                        $GLOBALS['_GEN_commun']['info_auth_bdd']->$attr[0] = (isset($attr[1]) ? $attr[1] : '');
109
                    }
110
                }
111
            }
207 jpm 112
        }
307 jpm 113
        $GLOBALS['_PAPYRUS_']['auth'][$ligne_auth->gsa_id_auth] = array_merge($GLOBALS['_PAPYRUS_']['auth'][$ligne_auth->gsa_id_auth], $tab_auth_bdd);
207 jpm 114
        $resultat_auth_bdd->free();
115
    } else if ($ligne_auth->gsa_ce_auth_ldap != 0) {
116
        //Identification via LDAP :
117
        $requete_auth_ldap =    'SELECT * '.
118
                                'FROM gen_site_auth_ldap '.
119
                                'WHERE gsal_id_auth_ldap = '.$ligne_auth->gsa_ce_auth_ldap;
120
 
121
        $resultat_auth_ldap = $db->query($requete_auth_ldap);
122
        (DB::isError($resultat_auth_ldap))
123
            ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat_auth_ldap->getMessage(), $requete_auth_ldap))
124
            : '';
220 alex 125
        $tab_auth_ldap = $resultat_auth_ldap->fetchRow(DB_FETCHMODE_OBJECT);
207 jpm 126
        if ($ligne_auth->gsa_id_auth == $_GEN_commun['info_site']->gs_ce_auth) {
314 jpm 127
            $GLOBALS['_GEN_commun']['info_auth_ldap'] = $tab_auth_ldap;
207 jpm 128
        }
220 alex 129
        $GLOBALS['_PAPYRUS_']['auth'][$ligne_auth->gsa_id_auth] = array_merge($GLOBALS['_PAPYRUS_']['auth'][$ligne_auth->gsa_id_auth], $tab_auth_ldap);
207 jpm 130
        $resultat_auth_ldap->free();
131
    } else {
132
        die('ERREUR Papyrus : impossible de trouver les information authentification. <br />'.
133
            'Identifiant auth : '.$ligne_auth->gs_ce_auth.'<br />'.
134
            'Ligne n° : '. __LINE__ .'<br />'.
135
            'Fichier : '. __FILE__ );
136
    }
220 alex 137
 
208 alex 138
    // On teste le type d'authentification
220 alex 139
    $tab_type_site = GEN_retournerTableauTypeSiteExterne($db);
140
    $types_site = '';
141
    foreach ($tab_type_site as $val) {
142
        $types_site .= $val['id'].', ';
143
    }
144
    $types_site = substr($types_site, 0, -2);
145
    $requete =  'SELECT gsr_id_valeur '.
146
                'FROM gen_site_relation '.
147
                'WHERE gsr_id_site_01 = '.$ligne_auth->gs_id_site.' '.
148
                'AND gsr_id_site_01 = gsr_id_site_02 '.
149
                'AND gsr_id_valeur IN ('.$types_site.')';
150
    $type_site_externe = $db->getOne($requete);
151
    (DB::isError($type_site_externe))
152
            ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $type_site_externe->getMessage(), $requete))
153
            : '';
154
    // Type du site de l'authentification
155
    if ($type_site_externe != '') {
156
        $GLOBALS['_PAPYRUS_']['auth'][$ligne_auth->gsa_id_auth]['type_site_externe'] = $type_site_externe;
157
    }
207 jpm 158
}
159
$resultat_auth->free();
112 jpm 160
 
220 alex 161
// Nour regardons à quel type d'identification nous avons à faire:
314 jpm 162
$auth_courante = $GLOBALS['_PAPYRUS_']['auth'][$GLOBALS['_GEN_commun']['info_site']->gs_ce_auth] ;
220 alex 163
if ($auth_courante['gsa_ce_type_auth'] == 1) {
164
    // Authentification via une base de données
271 jpm 165
    $GLOBALS['_PAPYRUS_']['auth']['param_bdd'] = array ('dsn' => $auth_courante['gsab_dsn'],
220 alex 166
                        'table' => $auth_courante['gsab_nom_table'],
167
                        'usernamecol' => $auth_courante['gsab_nom_champ_login'],
168
                        'passwordcol' => $auth_courante['gsab_nom_champ_mdp'],
169
                        'cryptType' => $auth_courante['gsab_cryptage_mdp'],
170
                        'db_fields' => '*');
171
    // L'authentification courrante
314 jpm 172
    $GLOBALS['_GEN_commun']['pear_auth'] = new Auth('DB', $GLOBALS['_PAPYRUS_']['auth']['param_bdd'], 'GEN_afficherInfoIdentification', 1);
220 alex 173
 
174
} else if ($auth_courante['gsa_ce_type_auth'] == 2) {
175
    // Authentification via LDAP
271 jpm 176
    $GLOBALS['_PAPYRUS_']['auth']['param_ldap'] = array (   'host' => $auth_courante['gsal_serveur'],
220 alex 177
                            'port' => $auth_courante['gsal_port'],
178
                            'basedn' => $auth_courante['gsal_base_dn'],
179
                            'userattr' => $auth_courante['gsal_uid']);
314 jpm 180
    $GLOBALS['_GEN_commun']['pear_auth'] = new Auth('LDAP', $GLOBALS['_PAPYRUS_']['auth']['param_ldap'], 'GEN_afficherInfoIdentification', 1);
220 alex 181
} else {
182
    die('ERREUR Papyrus : type identification introuvable. <br />'.
183
        'Type identification : '.$auth_courante['gsa_ce_type_auth'].'<br />'.
184
        'Ligne n° : '. __LINE__ . '<br />'.
185
        'Fichier : '. __FILE__ . '<br />');
186
}
187
 
314 jpm 188
$GLOBALS['_GEN_commun']['pear_auth']->setSessionname( 'gen_'.$GLOBALS['_GEN_commun']['info_auth']->gsa_abreviation);
220 alex 189
 
313 alex 190
// Pour que la session dure même après avoir refermer son navigateur
191
session_set_cookie_params(3600 * 24 * 30 * 6);
192
 
193
// Expiration si l'utilisateur ne referme pas son navigateur
314 jpm 194
$GLOBALS['_GEN_commun']['pear_auth']->setExpire(3600 * 24 * 30 * 6);// 6 mois
220 alex 195
 
314 jpm 196
$GLOBALS['_GEN_commun']['pear_auth']->start();
220 alex 197
 
271 jpm 198
// +------------------------------------------------------------------------------------------------------+
199
// Gestion des sesssion WIKINI
363 alex 200
// Recherche des paramètres de wiki
201
foreach ($GLOBALS['_PAPYRUS_']['auth'] as $cle => $valeur) {
202
    if (isset($valeur['type_site_externe']) && $valeur['type_site_externe'] == 201) {  // 201 = site de type "WIKINI"
203
        $tab_parametre = explode (" ", $valeur['gsab_parametres']) ;
204
        foreach ($tab_parametre as $cle_param => $valeur_param) {
205
            $tab_valeur = explode ('=', $valeur_param) ;
206
            if ($tab_valeur[0] == 'champs_wiki') $nomwikini = $tab_valeur[1] ;
406 alexandre_ 207
            if ($tab_valeur[0] == 'coauth') $coauth= $tab_valeur[1] ;
363 alex 208
        }
209
    }
210
}
406 alexandre_ 211
 
212
if (isset ($nomwikini) && isset ($coauth) && $coauth == $auth_courante['gsab_id_auth_bdd']&& $GLOBALS['_GEN_commun']['pear_auth']->getAuth()) {
213
    unset ($tab_parametre) ; unset ($tab_valeur) ;
214
 
363 alex 215
    // 1. name
226 alex 216
 
406 alexandre_ 217
    setcookie ("name", $GLOBALS['_GEN_commun']['pear_auth']->getAuthData($nomwikini), time () + 3600 * 24 * 30, "/" ) ; // 1 mois
363 alex 218
 
219
    //2. password
220
    // on recherche le mot de passe crypté
406 alexandre_ 221
    $requete_mot_passe = 'select '.$GLOBALS['_PAPYRUS_']['auth'][$coauth]['gsab_nom_champ_mdp'].' from '.
222
                            $GLOBALS['_PAPYRUS_']['auth'][$coauth]['gsab_nom_table'].' where '.
223
                            $GLOBALS['_PAPYRUS_']['auth'][$coauth]['gsab_nom_champ_login'].'='.
224
                            '"'.$GLOBALS['_GEN_commun']['pear_auth']->getUsername().'"' ;
363 alex 225
 
406 alexandre_ 226
    $resultat_mot_passe = $db->query($requete_mot_passe) ;
227
    if (DB::isError($resultat_mot_passe)) {
228
        echo 'erreur de la requete pour identifier sur wikini' ;
229
    }
230
    $ligne_mot_passe = $resultat_mot_passe->fetchRow(DB_FETCHMODE_ASSOC) ;
231
    $mot_de_passe = $ligne_mot_passe[$GLOBALS['_PAPYRUS_']['auth'][$coauth]['gsab_nom_champ_mdp']];
232
 
363 alex 233
    setcookie ("password", $mot_de_passe, time () + 3600 * 24 * 30, "/") ;
234
 
235
    // 3. remember
236
    setcookie ("remember", 1, time () + 3600 * 24 * 30, "/") ;
271 jpm 237
}
238
 
363 alex 239
 
271 jpm 240
// +------------------------------------------------------------------------------------------------------+
241
// Gestion des sesssion SPIP
242
 
220 alex 243
// Recherche des paramètres de SPIP
244
foreach ($GLOBALS['_PAPYRUS_']['auth'] as $cle => $valeur) {
245
    if (isset($valeur['type_site_externe']) && $valeur['type_site_externe'] == 200) {  // 200 = site de type "SPIP"
246
        $tab_parametre = explode (" ", $valeur['gsab_parametres']) ;
247
        foreach ($tab_parametre as $cle_param => $valeur_param) {
248
            $tab_valeur = explode ('=', $valeur_param) ;
249
            if ($tab_valeur[0] == 'chemin_spip') $chemin_spip = $tab_valeur[1] ;
250
            if ($tab_valeur[0] == 'coauth') $coauth= $tab_valeur[1] ;
227 alex 251
            if ($tab_valeur[0] == 'chemin_cookie_spip') $chemin_cookie_spip = $tab_valeur[1] ;
220 alex 252
        }
208 alex 253
    }
220 alex 254
}
271 jpm 255
// Début initialisation de la gestion SPIP
314 jpm 256
if (isset ($chemin_spip) && isset ($coauth) && $coauth == $auth_courante['gsab_id_auth_bdd']&& $GLOBALS['_GEN_commun']['pear_auth']->getAuth()) {
257
    $login = $GLOBALS['_GEN_commun']['pear_auth']->getUsername() ;
226 alex 258
 
314 jpm 259
    setcookie('spip_admin', '@'.$login, time() + 3600 * 24 * 30, '/'.$chemin_cookie_spip.'/');
260
 
271 jpm 261
    $query = 'SELECT * FROM spip_auteurs WHERE login = "'.$login.'"';
227 alex 262
    $result = $db->query($query);
271 jpm 263
    $GLOBALS['auteur_session'] = $result->fetchRow(DB_FETCHMODE_ASSOC);
264
    $GLOBALS['auteur_session']['statut'] = '1comite';
265
    $GLOBALS['auteur_session']['lang'] = 'fr';
314 jpm 266
 
271 jpm 267
    $userid = $GLOBALS['auteur_session']['id_auteur'];
268
    $GLOBALS['__auteur_session__'] = $GLOBALS['auteur_session'];
220 alex 269
    if (!$HTTP_COOKIE_VARS["spip_session"]) {
226 alex 270
        $id_session = $GLOBALS['auteur_session']['id_auteur']."_".(md5 (uniqid (rand ())));
314 jpm 271
        setcookie("spip_session", $id_session, time() + 3600 * 24 * 30, "/$chemin_cookie_spip/") ;
272
 
221 alex 273
    } else {
274
        $id_session = preg_replace("/[0-9]+_/", $userid."_", $HTTP_COOKIE_VARS["spip_session"]) ;
314 jpm 275
        setcookie('spip_session', $id_session, time() + 3600 * 24 * 30, "/$chemin_cookie_spip/") ;
221 alex 276
    }
227 alex 277
 
314 jpm 278
    set_include_path(get_include_path().':'.$chemin_spip);
227 alex 279
 
314 jpm 280
    include_once 'ecrire/inc_db_mysql.php3';
281
    include_once 'ecrire/inc_version.php3';
282
    ob_flush();// Nécessaire car spip utilise un ob_start() et cela cause un plantage
227 alex 283
 
314 jpm 284
    include_ecrire ('inc_meta.php3');
285
    include_ecrire ('inc_session.php3');
227 alex 286
 
226 alex 287
    $fichier_session = fichier_session($id_session, lire_meta('alea_ephemere'));
314 jpm 288
    $fichier_session = $chemin_spip.'/ecrire/'.$fichier_session ;
271 jpm 289
 
226 alex 290
    $vars = array('id_auteur', 'nom', 'login', 'email', 'statut', 'lang', 'ip_change', 'hash_env');
227 alex 291
 
226 alex 292
    $texte = "<"."?php\n";
227 alex 293
    foreach ($vars as $var) {
294
        $texte .= "\$GLOBALS['auteur_session']['$var'] = '".addslashes($GLOBALS['__auteur_session__'][$var])."';\n";
226 alex 295
    }
227 alex 296
 
226 alex 297
    $texte .= "?".">\n";
271 jpm 298
 
226 alex 299
    if ($f = fopen($fichier_session, "wb")) {
300
        fputs($f, $texte);
301
        fclose($f);
227 alex 302
    } else {
303
        echo 'erreur dans l ecriture de la session SPIP' ;
226 alex 304
    }
271 jpm 305
    //ajouter_session($GLOBALS['auteur_session'], $id_session) ;
220 alex 306
}
307
 
308
 
309
/* +--Fin du code ---------------------------------------------------------------------------------------+
5 jpm 310
* $Log: not supported by cvs2svn $
406 alexandre_ 311
* Revision 1.17  2005/04/27 15:06:21  alex
312
* ajout de l'authentification wiki.
313
*
363 alex 314
* Revision 1.16  2005/03/25 13:08:20  jpm
315
* Déplacement de la gestion des arguments de l'authentification.
316
*
314 jpm 317
* Revision 1.15  2005/03/24 15:04:26  alex
318
* ajout d'un appel à session_set_cookie_params pour allonger la durée de la session
319
*
313 alex 320
* Revision 1.14  2005/03/15 14:20:01  jpm
321
* Gestion des arguments de l'identification courante.
322
*
307 jpm 323
* Revision 1.13  2005/02/22 18:27:24  jpm
324
* Changement de nom de variables.
325
*
271 jpm 326
* Revision 1.12  2004/12/15 15:24:45  alex
327
* suppression d'un notice
328
*
232 alex 329
* Revision 1.11  2004/12/13 18:06:52  alex
330
* authentification spip presque parfaite
331
*
227 alex 332
* Revision 1.10  2004/12/07 19:13:51  alex
333
* authentification spip
334
*
220 alex 335
* Revision 1.7  2004/12/07 10:26:27  jpm
336
* Correction for en foreach.
337
*
219 jpm 338
* Revision 1.6  2004/12/06 12:42:02  alex
339
* en cours
340
*
208 alex 341
* Revision 1.5  2004/12/06 12:12:28  jpm
342
* Début de gestion des auth multiples.
343
*
207 jpm 344
* Revision 1.4  2004/10/25 16:28:47  jpm
345
* Ajout de nouvelles balises Papyrus, ajout vérification mise à jour de Papyrus, meilleure gestion des sessions...
346
*
112 jpm 347
* Revision 1.3  2004/10/15 18:29:19  jpm
348
* Modif pour gérer l'appli installateur de Papyrus.
349
*
67 jpm 350
* Revision 1.2  2004/06/30 07:23:36  jpm
351
* Ajout d'un commentaire.
352
*
21 jpm 353
* Revision 1.1  2004/06/16 08:12:01  jpm
354
* Changement de nom de Génésia en Papyrus.
355
* Changement de l'arborescence.
356
*
5 jpm 357
* Revision 1.6  2004/05/01 11:40:21  jpm
358
* Suppression de code intégré dans le fichier de l'applette Identification.
220 alex 359
*
360
* Revision 1.5  2004/04/28 12:04:31  jpm
361
* Changement du modèle de la base de données.
362
*
363
* Revision 1.4  2004/04/22 08:29:11  jpm
364
* Transformation de $GS_GLOBAL en $_GEN_commun.
365
*
366
* Revision 1.3  2004/04/09 16:20:33  jpm
367
* Gestion de l'authentification uniquement.
368
* Gestion des tables i18n.
369
*
370
* Revision 1.2  2004/04/02 16:29:58  jpm
371
* Ajout de la gestion de la déconnexion et reconnexion.
372
*
373
* Revision 1.1  2004/04/02 08:54:58  jpm
374
* Création du fichier qui contient l'initialisation des objets Pear, hormis la base de données.
375
*
376
* +--Fin du code ----------------------------------------------------------------------------------------+
377
*/
378
?>