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