448 |
ddelon |
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 |
// +------------------------------------------------------------------------------------------------------+
|
484 |
alexandre_ |
22 |
// CVS : $Id: inscription.php,v 1.3 2005-09-29 16:07:51 alexandre_tb Exp $
|
448 |
ddelon |
23 |
/**
|
|
|
24 |
* Inscription
|
|
|
25 |
*
|
|
|
26 |
* Un module d'inscription, en général ce code est spécifique à
|
|
|
27 |
* un site web
|
|
|
28 |
*
|
|
|
29 |
*@package inscription
|
|
|
30 |
//Auteur original :
|
|
|
31 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
32 |
//Autres auteurs :
|
|
|
33 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
|
|
34 |
*@copyright Tela-Botanica 2000-2004
|
484 |
alexandre_ |
35 |
*@version $Revision: 1.3 $ $Date: 2005-09-29 16:07:51 $
|
448 |
ddelon |
36 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
37 |
*/
|
|
|
38 |
|
|
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
40 |
// | ENTETE du PROGRAMME |
|
|
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
471 |
alexandre_ |
42 |
include_once 'configuration/bottin.config.inc.php';
|
484 |
alexandre_ |
43 |
if (!isset($GLOBALS['lang'])) {
|
|
|
44 |
$GLOBALS['lang'] = INS_LANGUE_DEFAUT ;
|
|
|
45 |
}
|
|
|
46 |
include_once INS_CHEMIN_APPLI."langues/bottin_langue_".$GLOBALS['lang'].".inc.php" ;
|
448 |
ddelon |
47 |
include_once INS_CHEMIN_APPLI.'configuration/inscription.config.inc.php';
|
|
|
48 |
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.fonct.php';
|
|
|
49 |
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.class.php';
|
|
|
50 |
//test pour savoir si on est dans Papyrus
|
|
|
51 |
if (defined('PAP_VERSION')) {
|
|
|
52 |
// Ajout d'une feuille de style externe
|
|
|
53 |
GEN_stockerStyleExterne('inscription', INS_CHEMIN_APPLI.'presentations/inscription.css');
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
57 |
// | LISTE de FONCTIONS |
|
|
|
58 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
59 |
|
|
|
60 |
|
|
|
61 |
function afficherContenuCorps() {
|
|
|
62 |
$url = preg_replace ('/&/', '&', $GLOBALS['ins_url']->getURL()) ;
|
|
|
63 |
$res = '<h1>'.INS_TITRE_INSCRIPTION.'</h1>'."\n" ;
|
|
|
64 |
if (!isset($_REQUEST['action'])) {
|
|
|
65 |
$_REQUEST['action']='';
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
if (isset ($_GET['logout']) && $_GET['logout'] == 1) {
|
|
|
69 |
$GLOBALS['AUTH']->logout() ;
|
|
|
70 |
$_POST['username'] = '' ;
|
|
|
71 |
$_POST['password'] = '' ;
|
|
|
72 |
return AUTH_formulaire_login() ;
|
|
|
73 |
}
|
|
|
74 |
|
|
|
75 |
// L'utilisateur a-t-il cliqué sur Supprimer inscription
|
|
|
76 |
if (isset ($_POST['supprimer'])) {
|
484 |
alexandre_ |
77 |
$id_utilisateur = $GLOBALS['AUTH']->getAuthData(INS_CHAMPS_ID) ;
|
|
|
78 |
$resultat = $GLOBALS['AUTH']->removeUser($GLOBALS['AUTH']->getUsername()) ;
|
448 |
ddelon |
79 |
|
|
|
80 |
if (PEAR::isError($resultat)) {
|
|
|
81 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
82 |
}
|
|
|
83 |
// Suppression dans SPIP
|
|
|
84 |
if (INS_UTILISE_SPIP) {
|
|
|
85 |
desinscription_spip($id_utilisateur) ;
|
|
|
86 |
}
|
484 |
alexandre_ |
87 |
// Suppression dans Wikini
|
448 |
ddelon |
88 |
if (INS_UTILISE_WIKINI) {
|
484 |
alexandre_ |
89 |
$nom_wiki = $GLOBALS['AUTH']->getAuthData(INS_NOM_WIKI) ;
|
|
|
90 |
desinscription_interwikini_users($nom_wiki) ;
|
448 |
ddelon |
91 |
}
|
484 |
alexandre_ |
92 |
|
|
|
93 |
// Appel des actions desinscriptions des applications clientes
|
|
|
94 |
$d = dir(GEN_CHEMIN_CLIENT);
|
|
|
95 |
|
|
|
96 |
while (false !== ($repertoire = $d->read())) {
|
|
|
97 |
if (file_exists(GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.desinscription.inc.php'))
|
|
|
98 |
include_once GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.desinscription.inc.php' ;
|
|
|
99 |
}
|
|
|
100 |
$d->close();
|
|
|
101 |
|
448 |
ddelon |
102 |
$GLOBALS['AUTH']->logout() ;
|
|
|
103 |
return $res.AUTH_formulaire_login() ;
|
|
|
104 |
}
|
|
|
105 |
|
|
|
106 |
// L'utilisateur a-t-il cliqué sur Envoi de mot de passe par mail
|
|
|
107 |
if ($_REQUEST['action'] == 'sendpasswd') {
|
|
|
108 |
return AUTH_formulaire_login(envoie_passe()) ;
|
|
|
109 |
}
|
|
|
110 |
|
|
|
111 |
// L'utilisateur a cliqué sur Inscription ou Inscription structure
|
|
|
112 |
if ($_REQUEST['action'] != '' || isset($_POST['modifier'])) {
|
|
|
113 |
$action = preg_replace ("/&/", "&", $GLOBALS['ins_url']->getURL()) ;
|
|
|
114 |
$formulaire = new HTML_formulaireInscription('formulaire_inscription', 'post', $action, '_self', '', 0) ;
|
|
|
115 |
$formulaire->construitFormulaire($action);
|
|
|
116 |
if (isset($_POST['form_structure'])and($_POST['form_structure']==1)) {
|
|
|
117 |
$formulaire->formulaireStructure() ;
|
|
|
118 |
}
|
484 |
alexandre_ |
119 |
|
448 |
ddelon |
120 |
if (isset($_POST['modifier'])) {
|
|
|
121 |
$formulaire->addElement('hidden', 'action', 'modifier_v') ;
|
|
|
122 |
$formulaire->setDefaults(formulaire_defaults()) ;
|
|
|
123 |
}
|
|
|
124 |
|
|
|
125 |
if ($_REQUEST['action'] == 'inscription') {
|
484 |
alexandre_ |
126 |
if ($GLOBALS['AUTH']->getAuth()) {
|
|
|
127 |
|
|
|
128 |
}else {
|
|
|
129 |
$formulaire->addElement('hidden', 'action', 'inscription_v') ;
|
|
|
130 |
}
|
448 |
ddelon |
131 |
}
|
|
|
132 |
|
|
|
133 |
if ($_REQUEST['action'] == 'inscription_v') {
|
|
|
134 |
if ($formulaire->validate()) {
|
|
|
135 |
if (INS_MAIL_VALIDATION_INSCRIPTION) {
|
|
|
136 |
$formulaire->process('demande_inscription', false) ;
|
|
|
137 |
return $res.INS_MESSAGE_INSCRIPTION;
|
|
|
138 |
} else {
|
|
|
139 |
$formulaire->process('inscription_validee', false) ;
|
|
|
140 |
return $res.info().bouton($url).deconnexion($GLOBALS['ins_url']->getURL()) ;;
|
|
|
141 |
}
|
|
|
142 |
}
|
|
|
143 |
}
|
|
|
144 |
if ($_REQUEST['action'] == 'modifier_v') {
|
|
|
145 |
if ($formulaire->validate()) {
|
|
|
146 |
$lettre = $GLOBALS['AUTH']->getAuthData(INS_CHAMPS_LETTRE) ;
|
|
|
147 |
$formulaire->process('mise_a_jour', false) ;
|
|
|
148 |
}
|
|
|
149 |
if (isset($_POST['lettre'])) {
|
|
|
150 |
if ($lettre == '') {
|
|
|
151 |
inscription_lettre(INS_MAIL_INSCRIPTION_LISTE) ;
|
|
|
152 |
}
|
|
|
153 |
} else {
|
|
|
154 |
if ($lettre == 1) {
|
|
|
155 |
inscription_lettre(INS_MAIL_DESINSCRIPTION_LISTE) ;
|
|
|
156 |
}
|
|
|
157 |
}
|
|
|
158 |
return info($GLOBALS['AUTH']->getAuthData(INS_CHAMPS_ID)).bouton($url).deconnexion($GLOBALS['ins_url']->getURL()) ;
|
|
|
159 |
}
|
|
|
160 |
|
|
|
161 |
return $res.$formulaire->toHTML() ;
|
|
|
162 |
}
|
|
|
163 |
|
|
|
164 |
// L'inscription dans la base si l'utilisateur clique sur le lien du mail
|
|
|
165 |
if ((INS_MAIL_VALIDATION_INSCRIPTION)and(isset($_GET['id']))) {
|
|
|
166 |
$requete = 'select id_donnees from inscription_demande where id_identifiant_session="'.$_GET['id'].'"' ;
|
|
|
167 |
$resultat = $GLOBALS['ins_db']->query($requete) ;
|
|
|
168 |
if (DB::isError ($resultat)) {
|
|
|
169 |
die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
|
|
|
170 |
}
|
|
|
171 |
if ($resultat->numRows() == 0) {
|
|
|
172 |
return $res.INS_MESSAGE_EXPIRATION;
|
|
|
173 |
}
|
|
|
174 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT) ;
|
|
|
175 |
$donnees = unserialize (stripslashes($ligne->id_donnees)) ;
|
|
|
176 |
insertion($donnees) ;
|
|
|
177 |
$GLOBALS['AUTH']->username = $donnees['email'] ;
|
|
|
178 |
$GLOBALS['AUTH']->password = $donnees['mot_de_passe'] ;
|
|
|
179 |
|
|
|
180 |
// On loggue l'utilisateur
|
|
|
181 |
$GLOBALS['AUTH']->login() ;
|
|
|
182 |
|
|
|
183 |
// inscription à la lettre d'information
|
|
|
184 |
if (isset ($donnees['lettre'])) {
|
|
|
185 |
inscription_lettre(INS_MAIL_INSCRIPTION_LISTE) ;
|
|
|
186 |
}
|
|
|
187 |
// On supprime la demande d'inscription
|
|
|
188 |
$requete = 'delete from inscription_demande where id_identifiant_session="'.$_GET['id'].'"' ;
|
|
|
189 |
$resultat = $GLOBALS['ins_db']->query($requete) ;
|
|
|
190 |
if (DB::isError($resultat)) {
|
|
|
191 |
die ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
|
|
|
192 |
}
|
|
|
193 |
envoie_mail() ;
|
|
|
194 |
}
|
|
|
195 |
|
|
|
196 |
if (!$GLOBALS['AUTH']->getAuth() && $_REQUEST['action'] != "inscription" && $_REQUEST['action'] != 'inscription_v') {
|
|
|
197 |
if (isset($_POST['username']) && $_POST['username'] != '') {
|
|
|
198 |
$res .= message_erreur() ;
|
|
|
199 |
} else {
|
|
|
200 |
$res .= AUTH_formulaire_login() ;
|
|
|
201 |
}
|
|
|
202 |
}
|
|
|
203 |
|
|
|
204 |
//cas d'une authentification réussie
|
|
|
205 |
if ($GLOBALS['AUTH']->getAuth() && !isset($_POST['modifier'])) {
|
|
|
206 |
return info().bouton($url).deconnexion($GLOBALS['ins_url']->getURL()) ;
|
|
|
207 |
}
|
|
|
208 |
return $res ;
|
|
|
209 |
}
|
|
|
210 |
|
|
|
211 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
212 |
*
|
|
|
213 |
* $Log: not supported by cvs2svn $
|
484 |
alexandre_ |
214 |
* Revision 1.2 2005/09/27 13:59:24 alexandre_tb
|
|
|
215 |
* correction de bogue, généralisation du code etc.
|
|
|
216 |
*
|
471 |
alexandre_ |
217 |
* Revision 1.1 2005/09/22 14:02:49 ddelon
|
|
|
218 |
* nettoyage annuaire et php5
|
|
|
219 |
*
|
448 |
ddelon |
220 |
* Revision 1.4 2005/09/22 13:30:49 florian
|
|
|
221 |
* modifs pour compatibilité XHTML Strict + corrections de bugs (mais ya encore du boulot!!)
|
|
|
222 |
*
|
|
|
223 |
* Revision 1.4 2005/03/21 16:57:30 florian
|
|
|
224 |
* correction de bug, mise à jour interface
|
|
|
225 |
*
|
|
|
226 |
* Revision 1.3 2005/03/08 17:44:02 alex
|
|
|
227 |
* suppression en utilisant removeUser de Auth plutôt qu'en requete directe
|
|
|
228 |
*
|
|
|
229 |
* Revision 1.2 2005/03/02 12:44:41 alex
|
|
|
230 |
* Correction du bug message d'erreur alors qu'on tente de s'inscrire simplement
|
|
|
231 |
*
|
|
|
232 |
* Revision 1.1 2004/12/15 13:32:15 alex
|
|
|
233 |
* version initiale
|
|
|
234 |
*
|
|
|
235 |
* Revision 1.2 2004/09/01 16:36:37 alex
|
|
|
236 |
* changement du chemin pour les include
|
|
|
237 |
*
|
|
|
238 |
* Revision 1.1 2004/07/06 15:42:28 alex
|
|
|
239 |
* en cours
|
|
|
240 |
*
|
|
|
241 |
* Revision 1.5 2004/07/06 15:28:56 alex
|
|
|
242 |
* en cours
|
|
|
243 |
*
|
|
|
244 |
* Revision 1.4 2004/06/25 14:26:03 alex
|
|
|
245 |
* modification de la suppression
|
|
|
246 |
*
|
|
|
247 |
* Revision 1.3 2004/06/23 12:41:44 alex
|
|
|
248 |
* amélioration de la gestion de la perte de mot de passe
|
|
|
249 |
*
|
|
|
250 |
* Revision 1.2 2004/06/18 09:18:23 alex
|
|
|
251 |
* version initiale
|
|
|
252 |
*
|
|
|
253 |
*
|
|
|
254 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
255 |
*/
|
|
|
256 |
?>
|