Subversion Repositories Applications.papyrus

Rev

Rev 1606 | Rev 1728 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1606 Rev 1649
Line 17... Line 17...
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
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                                  |
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                            |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: identification.php,v 1.34 2007-09-18 08:40:54 alexandre_tb Exp $
22
// CVS : $Id: identification.php,v 1.35 2007-10-11 14:14:22 florian Exp $
23
/**
23
/**
24
* Applette : identification
24
* Applette : identification
25
*
25
*
26
* Génère un formulaire les champs nécessaires pour s'identifier.
26
* Génère un formulaire les champs nécessaires pour s'identifier.
27
* Nécessite :
27
* Nécessite :
Line 36... Line 36...
36
//Auteur original :
36
//Auteur original :
37
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
37
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
38
//Autres auteurs :
38
//Autres auteurs :
39
*@author        Aucun
39
*@author        Aucun
40
*@copyright     Tela-Botanica 2000-2004
40
*@copyright     Tela-Botanica 2000-2004
41
*@version       $Revision: 1.34 $ $Date: 2007-09-18 08:40:54 $
41
*@version       $Revision: 1.35 $ $Date: 2007-10-11 14:14:22 $
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
43
*/
43
*/
Line 44... Line 44...
44
 
44
 
45
// +------------------------------------------------------------------------------------------------------+
45
// +------------------------------------------------------------------------------------------------------+
Line 143... Line 143...
143
    $objet_pear_auth =& $_GEN_commun['pear_auth'];
143
    $objet_pear_auth =& $_GEN_commun['pear_auth'];
144
    $objet_pear_db =& $_GEN_commun['pear_db'];
144
    $objet_pear_db =& $_GEN_commun['pear_db'];
145
    $InfoAuthBdd =& $_GEN_commun['info_auth_bdd'];
145
    $InfoAuthBdd =& $_GEN_commun['info_auth_bdd'];
146
    $objet_url =& $_GEN_commun['url'];
146
    $objet_url =& $_GEN_commun['url'];
147
    $url = $objet_url->getURL();
147
    $url = $objet_url->getURL();
148
    
-
 
-
 
148
    $objet_url->addQueryString('logout', 1);
-
 
149
    $url_deconnect = $objet_url->getURL();
-
 
150
    $objet_url->removeQueryString('logout');
149
    // Récupération des valeurs pour le login et le mot de passe
151
    // Récupération des valeurs pour le login et le mot de passe
150
    $mot_de_passe = (! isset($_POST['password']))    ? '' : $_POST['password'];
152
    $mot_de_passe = (! isset($_POST['password']))    ? '' : $_POST['password'];
151
    $login        = (! isset($_POST['username']))    ? '' : $_POST['username'];
153
    $login        = (! isset($_POST['username']))    ? '' : $_POST['username'];
Line 152... Line 154...
152
    
154
    
Line 156... Line 158...
156
        verification_mot_de_passe($objet_pear_db, $mot_de_passe, $login);
158
        verification_mot_de_passe($objet_pear_db, $mot_de_passe, $login);
157
        if (isset($_POST['connexion'])) {
159
        if (isset($_POST['connexion'])) {
158
            $objet_pear_auth->login();
160
            $objet_pear_auth->login();
159
        }
161
        }
160
    }
162
    }
161
    
-
 
162
    if (! $objet_pear_auth->getAuth()) {
-
 
163
    	// L'utilisateur a essayé de s'identifier mais a échoué
-
 
164
    	if ($login != '') {
-
 
165
    		$retour .= '<span class="erreur">'.IDEN_ECHEC_AUTH ;
-
 
166
    		$url_erreur = '#';
-
 
167
    		if (isset($InfoAuthBdd->url_erreur)) {
-
 
168
    			$url_erreur = $InfoAuthBdd->url_erreur;
-
 
169
    		} else if (isset($InfoAuthBdd->url_inscription)) {
-
 
170
    			$url_erreur = $InfoAuthBdd->url_inscription;
-
 
171
    		}
-
 
172
   			$retour .= '<a id="lien_inscription" href="'.$url_erreur.'">'.IDEN_ICI.'</a>' ;
-
 
173
    		$retour .= '</span>'."\n";
-
 
174
    	}
-
 
175
    	$url_inscription_aide = '';
-
 
176
    	$url_page_inscription = '';
-
 
177
    	if (isset($InfoAuthBdd->url_inscription)) {
-
 
178
        	$url_page_inscription = $InfoAuthBdd->url_inscription;
-
 
179
    	}
-
 
180
    	if (isset($InfoAuthBdd->url_inscription_aide)) {
-
 
181
    		$url_inscription_aide = $InfoAuthBdd->url_inscription_aide;
-
 
182
    	}
-
 
Line 183... Line -...
183
        
-
 
184
		ob_start();
-
 
185
		include_once $options['template'];
-
 
186
		$retour = ob_get_contents();
-
 
187
		// Arrete et detruit le buffer
-
 
188
		ob_end_clean();
-
 
189
		
163
        
190
        // L'utilisateur n'est pas identifié:
164
	// L'utilisateur a essayé de s'identifier mais a échoué
191
        /*
-
 
192
        $retour .= str_repeat(' ', 16).'<form id="form_connexion" class="form_identification" action="'.$url.'" method="post">'."\n";
165
	if ($login != '') {
193
        $retour .= str_repeat(' ', 16).'<fieldset>'."\n";
-
 
194
        $retour .= str_repeat(' ', 20).'<legend>'.IDEN_LG_FORM_LEGEND.'</legend>'."\n";
-
 
195
        $retour .= str_repeat(' ', 20).''."\n";
-
 
196
        $retour .= str_repeat(' ', 24).'<label for="username">'.IDEN_LG_FORM_LABEL_COURRIEL.'</label>'."\n";
-
 
197
        $retour .= str_repeat(' ', 24).'<input type="text"  id="username" name="username" maxlength="80" tabindex="1" value="'.IDEN_LG_FORM_VALUE_COURRIEL.'" />'."\n";
-
 
198
        $retour .= str_repeat(' ', 20).''."\n";
-
 
199
        $retour .= str_repeat(' ', 20).''."\n";
-
 
200
        $retour .= str_repeat(' ', 24).'<label for="password">'.IDEN_LG_FORM_LABEL_MDP.'</label>'."\n";
-
 
201
        $retour .= str_repeat(' ', 24).'<input type="password" id="password" name="password" maxlength="80" tabindex="2" value="'.IDEN_LG_FORM_VALUE_MDP.'" />'."\n";
-
 
202
        $retour .= str_repeat(' ', 20).''."\n";
166
		$retour .= '<span class="erreur">'.IDEN_ECHEC_AUTH ;
203
        $retour .= str_repeat(' ', 20).''."\n";
167
		$url_erreur = '#';
204
        if (IDEN_AUTH_SESSION_DUREE != 0) {
-
 
205
        	$retour .= str_repeat(' ', 24).'<input type="checkbox" id="persistant" name="persistant" tabindex="3" value="o" />'."\n";
-
 
206
        	$retour .= str_repeat(' ', 24).'<label id="persistant_label" for="persistant">'.'Mémoriser mon compte'.'</label>'."\n";
-
 
207
        }
-
 
208
        $retour .= str_repeat(' ', 20).''."\n";
-
 
209
        $retour .= str_repeat(' ', 20).''."\n";
-
 
210
        $retour .= str_repeat(' ', 24).'<input type="submit" id="connexion" name="connexion" tabindex="4" value="'.IDEN_LG_FORM_VALUE_SUBMIT.'" />'."\n";
168
		if (isset($InfoAuthBdd->url_erreur)) {
211
        $retour .= str_repeat(' ', 20).''."\n";
-
 
212
        // Si l'url de la page d'inscription est stockée dans les paramêtres, nous l'affichons
-
 
213
        if (isset($InfoAuthBdd->url_inscription) || isset($InfoAuthBdd->url_inscription_aide)) {
-
 
214
        	$retour .=  '<p id="inscription_info">';
169
			$url_erreur = $InfoAuthBdd->url_erreur;
215
        	if (isset($InfoAuthBdd->url_inscription)) {
170
		} else if (isset($InfoAuthBdd->url_inscription)) {
216
            	$retour .=  '<a id="lien_inscription" href="'.$InfoAuthBdd->url_inscription.'">'.
-
 
217
                	        IDEN_LG_INSCRIPTION_URL.
-
 
218
                    	    '</a>';
171
			$url_erreur = $InfoAuthBdd->url_inscription;
219
        	}
-
 
220
        	if (isset($InfoAuthBdd->url_inscription_aide)) {
172
		}
221
        		$retour .=  '<a id="inscription_aide" href="'.$InfoAuthBdd->url_inscription_aide.'">'.
-
 
222
                	        IDEN_LG_INSCRIPTION_AIDE.
-
 
223
                    	    '</a>';
-
 
224
        	}
173
		$retour .= '<a id="lien_inscription" href="'.$url_erreur.'">'.IDEN_ICI.'</a>' ;
225
        	$retour .=  '</p>'."\n";
174
		$retour .= '</span>'."\n";
226
        }
-
 
227
        $retour .= str_repeat(' ', 16).'</fieldset>'."\n";
-
 
228
        $retour .= str_repeat(' ', 16).'</form>';
-
 
229
        */
-
 
230
    } else {
-
 
231
        // L'utilisateur est identifié. Nous affichons ses informations.
-
 
232
        // Affichage du prénom et nom d'une personne ou du nom de la structure en fonction des paramêtres 
175
	}
233
        // de l'annuaire utilisé
-
 
234
        $retour .= str_repeat(' ', 16).'<p id="identification_info"><span id="identification_message">'.IDEN_LG_MESSAGE.'</span> ';
-
 
235
        // Si les intitulés des champs nom et prénoms d'une personne ou le nom d'une structure sont indiqués nous les affichons
-
 
236
        if (isset($InfoAuthBdd->chp_personne_prenom) && isset($InfoAuthBdd->chp_personne_nom)) {
-
 
237
            $retour .=  '<span id="identification_prenom">'.
-
 
238
                        $objet_pear_auth->getAuthData($InfoAuthBdd->chp_personne_prenom).
176
	$url_inscription_aide = '';
239
                        '</span> '.
-
 
240
                        '<span id="identification_nom">'.
-
 
241
                        $objet_pear_auth->getAuthData($InfoAuthBdd->chp_personne_nom).
177
	$url_page_inscription = '';
242
                        '</span>';
178
	$url_page_modif_inscription = '';
243
        } elseif (isset($InfoAuthBdd->chp_structure_nom)) {
-
 
244
            $retour .=  '<span id="identification_structure">'.
179
	if (isset($InfoAuthBdd->url_inscription)) {
245
                        $objet_pear_auth->getAuthData($InfoAuthBdd->chp_structure_nom).
-
 
246
                        '</span>';
180
    	$url_page_inscription = $InfoAuthBdd->url_inscription;
247
        }
-
 
248
        $retour .= '</p>'."\n";
-
 
249
        $retour .= str_repeat(' ', 16).'<p id="iden_action">'."\n";
-
 
250
        // Si l'url de la page de modification de l'inscription est stockée dans les paramêtres, nous l'affichons
181
	}
251
        if (isset($InfoAuthBdd->url_inscription_modif)) {
182
	if (isset($InfoAuthBdd->url_inscription_modif)) {
-
 
183
    	$url_page_modif_inscription = $InfoAuthBdd->url_inscription_modif;
252
            $retour .=  str_repeat(' ', 20).'<a id="lien_inscription_modif" href="'.
184
	}
253
                        $InfoAuthBdd->url_inscription_modif.'">'.
185
	if (isset($InfoAuthBdd->url_inscription_aide)) {
254
                        IDEN_LG_INSCRIPTION_URL_MODIF.
-
 
255
                        '</a>'."\n";
186
		$url_inscription_aide = $InfoAuthBdd->url_inscription_aide;
256
        }
187
	}
257
        // Affichage du bouton de déconnexion
188
	$chp_personne_prenom='';
258
        $objet_url->addQueryString('logout', 1);
189
    if (isset($InfoAuthBdd->chp_personne_prenom)) {
259
        $retour .= str_repeat(' ', 20).'<a id="deconnexion" href="'.$objet_url->getURL().'">'.IDEN_LG_DECONNEXION.'</a>'."\n";
-
 
260
        $objet_url->removeQueryString('logout');
-
 
261
        $retour .= str_repeat(' ', 16).'</p>'."\n";
190
        $chp_personne_prenom = $objet_pear_auth->getAuthData($InfoAuthBdd->chp_personne_prenom);
-
 
191
    }
-
 
192
    $chp_personne_nom='';
-
 
193
    if (isset($InfoAuthBdd->chp_personne_nom)) {
-
 
194
    	$chp_personne_nom = $objet_pear_auth->getAuthData($InfoAuthBdd->chp_personne_nom);
-
 
195
    }                
-
 
196
    $chp_structure='';           
-
 
197
    if (isset($InfoAuthBdd->chp_structure_nom)) {
-
 
198
    	$chp_structure = $objet_pear_auth->getAuthData($InfoAuthBdd->chp_structure_nom);
-
 
199
    }
-
 
200
    if ($objet_pear_auth->getAuth()) { $loggue = true; } else { $loggue = false; }
-
 
201
            
-
 
202
	ob_start();
-
 
203
	include_once $options['template'];
-
 
204
	$retour = ob_get_contents();
-
 
205
	// Arrete et detruit le buffer
-
 
206
	ob_end_clean();		       
262
    }
207
 
263
    return $retour;
208
    return $retour;
Line 264... Line 209...
264
}
209
}
265
 
210
 
Line 270... Line 215...
270
 
215
 
271
 
216
 
272
/* +--Fin du code ----------------------------------------------------------------------------------------+
217
/* +--Fin du code ----------------------------------------------------------------------------------------+
-
 
218
*
-
 
219
* $Log: not supported by cvs2svn $
-
 
220
* Revision 1.34  2007-09-18 08:40:54  alexandre_tb
273
*
221
* modification de la balise identification pour permettre de preciser un template.
274
* $Log: not supported by cvs2svn $
222
*
275
* Revision 1.33  2007-08-28 14:23:35  jp_milcent
223
* Revision 1.33  2007-08-28 14:23:35  jp_milcent
276
* Amélioration de la gestion des mots de passe perdus.
224
* Amélioration de la gestion des mots de passe perdus.
277
*
225
*