Subversion Repositories Applications.gtt

Rev

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

Rev Author Line No. Line
11 jpm 1
<?php
2
 
3
class GttCtrlActionIdentification extends aControlleurAction {
34 jpm 4
 
11 jpm 5
	public function __construct(Registre $Registre)
6
    {
7
    	$Registre->ajouterEspace('Identification', 'identification');
8
    }
34 jpm 9
 
11 jpm 10
    public function executer()
11
    {
12
    	$aso_identification = array();
34 jpm 13
		$params = array('dsn' => GTT_BDD_DSN,
14
						'table' => 'gestion_utilisateur',
15
						'usernamecol' => 'gu_email',
16
						'passwordcol' => 'gu_password',
17
						'cryptype' => 'md5',
18
						'db_fields' => '*');
19
		// Création de l'objet auth
48 jpm 20
		$GLOBALS['_GTT_']['identification'] = new Auth('DB', $params, null, false);
21
		$GLOBALS['_GTT_']['identification']->setSessionname(GTT_AUTH_SESSION_NOM);
22
		$GLOBALS['_GTT_']['identification']->setExpire(time()+(int)GTT_AUTH_SESSION_DUREE);
23
		$GLOBALS['_GTT_']['identification']->start();
34 jpm 24
		setcookie(session_name(),session_id(), time()+(int)GTT_AUTH_SESSION_DUREE, "/");
48 jpm 25
		if ($GLOBALS['_GTT_']['identification']->getAuth()) {
26
			require_once GTT_CHEMIN_METIER.'Utilisateur.class.php';
27
			$GLOBALS['_GTT_']['Utilisateur'] = new Utilisateur(Utilisateur::GU_MAIL, array($GLOBALS['_GTT_']['identification']->getUserName()));
34 jpm 28
    		$aso_identification['nom'] = $GLOBALS['_GTT_']['Utilisateur']->getNom();
29
    		$aso_identification['prenom'] = $GLOBALS['_GTT_']['Utilisateur']->getPrenom();
73 jpm 30
	    	// Récupération des infos sur l'utilisateur
31
	 		$aso_identification['conges_payes'] = $GLOBALS['_GTT_']['Utilisateur']->getCongesPayes();
32
 			$aso_identification['rtt'] = $GLOBALS['_GTT_']['Utilisateur']->getQuotaHeuresSupp();
33
 			$aso_identification['tps_w'] = $GLOBALS['_GTT_']['Utilisateur']->getTempsDeTravailJour();
34
 
34 jpm 35
			$this->getRegistre()->ajouterSquelette('identification', 'identite.tpl.html');
36
    		//echo '<pre>'.print_r($aso_identification, true).'</pre>';
37
			$this->getRegistre()->ajouterDonnee('identification', $aso_identification);
38
    	} else {
39
    		$this->setSuivant('Deconnexion', 1);
40
    	}
11 jpm 41
    }
34 jpm 42
 
11 jpm 43
    public function executerDeconnexion()
44
    {
45
    	$aso_connexion = array();
46
		$this->getRegistre()->setTitre('Bienvenue sur GTT!');
34 jpm 47
    	$this->getRegistre()->ajouterSquelette('identification', 'connexion.tpl.html');
11 jpm 48
    	// Création de l'url de réponse du formulaire
49
		$aso_connexion['url'] = 'index.php?action='.GTT_ACTION_CONNEXION;
48 jpm 50
    	$GLOBALS['_GTT_']['identification']->logout();
34 jpm 51
 
11 jpm 52
    	//echo '<pre>'.print_r($aso_connexion, true).'</pre>';
53
		$this->getRegistre()->ajouterDonnee('identification', $aso_connexion);
34 jpm 54
		$this->getRegistre()->set('action_finale', true);
11 jpm 55
    }
56
}
57
?>