Subversion Repositories Applications.gtt

Rev

Rev 47 | Rev 56 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
// +------------------------------------------------------------------------------------------------------+
// | PHP version 4.1                                                                                      |
// +------------------------------------------------------------------------------------------------------+
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
// +------------------------------------------------------------------------------------------------------+
// | This library is free software; you can redistribute it and/or                                        |
// | modify it under the terms of the GNU Lesser General Public                                           |
// | License as published by the Free Software Foundation; either                                         |
// | version 2.1 of the License, or (at your option) any later version.                                   |
// |                                                                                                      |
// | This library is distributed in the hope that it will be useful,                                      |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
// | Lesser General Public License for more details.                                                      |
// |                                                                                                      |
// | You should have received a copy of the GNU Lesser General Public                                     |
// | License along with this library; if not, write to the Free Software                                  |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
// +------------------------------------------------------------------------------------------------------+
// |@author ABDOOL RAHEEM shaheen   shaheenar50@hotmail.com                                                 |
// |@version 3                                                                                            |

// +------------------------------------------------------------------------------------------------------+
/*
*fichier contenant le menu principal de l'application de gestion du temps de travail
*@package gtt_general
//Auteur original :
*@author        Dorian Bannier <dbannier@aol.com>
//Autres auteurs :
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
*@copyright     Copyright (C) 2003 Tela-Botanica
*/
// +------------------------------------------------------------------------------------------------------+
// |                                            INCLUSION DE FICHIERS                                       |
// +------------------------------------------------------------------------------------------------------+

// Fichiers de la bibliotheque PEAR
include 'Auth/Auth.php';
include 'DB.php';
include 'gtt_config.inc.php';
include CHEMIN_LANGUES.'gtt_langue_fr.inc.php';

// Test des choix de menu a afficher
$action = 1;
if (!empty($_GET['action'])) {
        $action = $_GET['action'];
}
if (!preg_match('/^\d+$/', $action)) {

        /**
        * La fonction __autoload() charge dynamiquement les classes trouvées dans le code.
        *
        * Cette fonction est appelée par php5 quand il trouve une instanciation de classe dans le code.
        *
        *@param string le nom de la classe appelée.
        *@return void le fichier contenant la classe doit être inclu par la fonction.
        */
        function __autoload($classe)
        {
                $fichier_classe_pear = GTT_CHEMIN_PEAR.str_replace('_', '/', $classe).'.php';
                if (file_exists($fichier_classe_pear)) {
                        require_once $fichier_classe_pear;
                } else {
                        $nom_classe_gtt = $classe.'.class.php';
                        foreach ($GLOBALS['_GTT_']['tab_chemin_autoload'] as $chemin) {
                                $fichier = $chemin.$nom_classe_gtt;
                                if (file_exists($fichier)) {
                                        require_once $fichier;
                                }
                        }
                }
        }

        // Initialisation du gestionnaire d'erreur
        $GLOBALS['_GTT_']['erreur'] = new GestionnaireErreur(GTT_DEBOGAGE_CONTEXTE, GTT_DEBOGAGE_NIVEAU, GTT_DEBOGAGE_PEAR, GTT_DEBOGAGE_PEAR_CHAINE);

        // Connexion a la base de donnees
        $GLOBALS['db'] = DB::connect(GTT_BDD_DSN);
        if (PEAR::isError($GLOBALS['db'])) {
                trigger_error("Echec connexion a la base de donnees : ".$GLOBALS['db']->getMessage(), E_USER_ERROR);
        }

        // Utilisation du mécanisme MVC avec Squelette PHP et objet
        $nom_module_general = 'ControlleurFrontal';
        $fichier_module_general = GTT_CHEMIN_CLASSE.$nom_module_general.'.class.php';
        if (file_exists($fichier_module_general)) {
                require_once $fichier_module_general;
                $Controlleur = new $nom_module_general;
        }
        echo $Controlleur->executer($action);
} else {
        include 'HTML/QuickForm.php';
        include_once CHEMIN_CLASSES.'gtt_authentification.php';
        include_once CHEMIN_PRESENTATION.'gtt_fonctions_generique_affichage.php';
        // Connexion a la base de donnees
        $GLOBALS['db'] = DB::connect($GLOBALS['dsn_v3']);
        if (DB::isError($GLOBALS['db'])) {
                $GLOBALS['db']->getMessage();
                echo "Echec connexion a la base de donnees";
        }

        // Création de l'objet auth
        $params = array('dsn'=>$GLOBALS['dsn_v3'],
                                        'table'=>GEST_UTILISATEUR,
                                        'usernamecol'=>GEST_CHAMPS_EMAIL,
                                        'passwordcol'=>GEST_CHAMPS_PASSWORD,
                                        'cryptype'=>'md5',
                                        'db_fields'=>'*');
        $a = new Auth('DB', $params, 'afficherMenuConnexion', true);
        $a->setSessionname('temps_travail');
        $a->setExpire(3600*24*30);
        $a->start();
        echo $a->getStatus();
        if ($a->getAuth()) {
                // Récuperation de l'identifiant de la personne
                $mail = $a->getUserName();
                $utilisateur = Utilisateur::recupIDUtilisateurMail($mail);
                $GLOBALS['idCurrentUser'] = $utilisateur;

                // Utilisation de l'ancien mécanisme
                switch ($action) {
                        // Cas affichage menu travail 1
                        case GESTION_TRAVAIL :
                                include_once CHEMIN_MENU.'gtt_menu_travail.php';
                                include_once CHEMIN_CONTROLEUR.'gtt_controleur_travail.php';
                        if (!isset($semaine)) {
                                        $semaine = date('W',mktime(0, 0, 0, date('m'), date('d') ,date('Y')));
                                }
                                if (!isset($annee)) {
                                        $annee = date('Y');
                                }
                        $text = traiterAdminTravail($_SERVER['PHP_SELF'], $semaine, $annee, $utilisateur);
                                break;

                        // Cas affichage du menu ajout autilisateurss 13
                        case GESTION_ADMIN_UTILISATEUR :
                                include_once CHEMIN_MENU.'gtt_menu_admin_utilisateur.php';
                                include_once CHEMIN_CONTROLEUR.'gtt_controleur_admin_utilisateur.php';
                                $text = traiterAdminUtilisateur('',0);
                                break;

                        // Cas editer des utilisateurs 14
                        case GESTION_EDITER_UTILISATEUR :
                                include_once CHEMIN_MENU.'gtt_menu_admin_utilisateur.php';
                                include_once CHEMIN_CONTROLEUR.'gtt_controleur_admin_utilisateur.php';
                                $text = traiterAdminUtilisateur(renvoyerDonneesUser(),1);
                                break;

                        // Cas afficher menu administration projet 15
                        case GESTION_ADMIN_PROJET :
                                include_once CHEMIN_CONTROLEUR.'gtt_controleur_admin_projet.php';
                                $text = traiterAdminProjet();
                                break;

                        // Cas afficher menu administration categorie 16
                        case GESTION_ADMIN_CATEGORIE :
                                include_once CHEMIN_CONTROLEUR.'gtt_controleur_admin_categorie.php';
                                $text = traiterAdminCategorie();
                                break;

                        // Cas afficher menu admin motif absence 17
                        case GESTION_ADMIN_MOTIF_ABSENCE :
                                include_once CHEMIN_CONTROLEUR.'gtt_controleur_admin_motif_absence.php';
                                $text = traiterAdminMotif();
                                break;

                        // Cas afficher menu admin statut 18
                        case GESTION_ADMIN_STATUT :
                                include_once CHEMIN_CONTROLEUR.'gtt_controleur_admin_statut.php';
                                $text = traiterAdminStatut();
                                break;

                        // Cas afficher admin editer frais 19
                        case GESTION_ADMIN_FRAIS :

                                $text = '';
                                break;

                        // Cas afficher admin editer taches 20
                        case GESTION_ADMIN_TACHE :
                                $text = '';
                                break;

                        // Cas editer preferences d'un utilisateur 21
                        case GESTION_EDITER_PREFERENCES :
                                include_once CHEMIN_MENU.'gtt_menu_editer_preferences.php';
                                include_once CHEMIN_CONTROLEUR.'gtt_controleur_editer_preferences.php';
                                $text = traiterEditerPreferences($GLOBALS['idCurrentUser']);
                                break;

                        // Cas deconnexion 22
                        case GESTION_DECONNEXION :
                                $a->logout();
                                $text = afficherMenuConnexion();
                                //$GLOBALS['db']->disconnect();
                                break;
                }
                $text .= fermerBalisesFin();
                echo $text;
        } else {
                echo afficherMenuConnexion();
        }
}
?>