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