Subversion Repositories Applications.projet

Rev

Rev 133 | Rev 208 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 133 Rev 150
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
3
// +------------------------------------------------------------------------------------------------------+
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU General Public                                                  |
9
// | modify it under the terms of the GNU General Public                                                  |
10
// | License as published by the Free Software Foundation; either                                         |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | General Public License for more details.                                                             |
16
// | General Public License for more details.                                                             |
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU General Public                                            |
18
// | You should have received a copy of the GNU 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: resume.php,v 1.10 2006-09-15 12:34:59 alexandre_tb Exp $
22
// CVS : $Id: resume.php,v 1.11 2006-12-11 14:50:57 alexandre_tb Exp $
23
/**
23
/**
24
* Application projet
24
* Application projet
25
*
25
*
26
* Action resume
26
* Action resume
27
*
27
*
28
*@package projet
28
*@package projet
29
//Auteur original :
29
//Auteur original :
30
*@author        Alexandre Granier <alexandre@tela-botanica.org>
30
*@author        Alexandre Granier <alexandre@tela-botanica.org>
31
//Autres auteurs :
31
//Autres auteurs :
32
*@author        Aucun
32
*@author        Aucun
33
*@copyright     Tela-Botanica 2000-2005
33
*@copyright     Tela-Botanica 2000-2005
34
*@version       $Revision: 1.10 $
34
*@version       $Revision: 1.11 $
35
// +------------------------------------------------------------------------------------------------------+
35
// +------------------------------------------------------------------------------------------------------+
36
*/
36
*/
37
 
37
 
38
// +------------------------------------------------------------------------------------------------------+
38
// +------------------------------------------------------------------------------------------------------+
39
// |                                            ENTETE du PROGRAMME                                       |
39
// |                                            ENTETE du PROGRAMME                                       |
40
// +------------------------------------------------------------------------------------------------------+
40
// +------------------------------------------------------------------------------------------------------+
41
 
41
 
42
// RAPPEL IMPORTANT
42
// RAPPEL IMPORTANT
43
// On se situe dans la méthode run() de la classe projetControleur
43
// On se situe dans la méthode run() de la classe projetControleur
44
//
44
//
45
 
45
 
46
$retour = '';
46
$retour = '';
47
 
47
 
48
// création de l'objet projet courant
48
// création de l'objet projet courant
49
$projet = new projet ($this->_db, $this->_id_projet) ;
49
$projet = new projet ($this->_db, $this->_id_projet) ;
50
 
50
 
51
// récupération de la liste des documents associés
51
// récupération de la liste des documents associés
52
$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER, 
52
$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER, 
53
						PROJET_CHEMIN_ICONES, $this->_id_projet) ;
53
						PROJET_CHEMIN_ICONES, $this->_id_projet) ;
54
 
54
 
55
// création de la vue liste de document, on nettoie l'url
55
// création de la vue liste de document, on nettoie l'url
56
//$this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
56
//$this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
57
include_once PROJET_CHEMIN_CLASSES.'HTML_listeDocuments.class.php' ;
57
include_once PROJET_CHEMIN_CLASSES.'HTML_listeDocuments.class.php' ;
58
include_once (PROJET_CHEMIN_CLASSES.'ezmlmAccessObject.class.php') ;
58
include_once (PROJET_CHEMIN_CLASSES.'ezmlmAccessObject.class.php') ;
59
$vue_liste_document = new HTML_listeDocuments($this->_url, false, '', $this->_auth) ;
59
$vue_liste_document = new HTML_listeDocuments($this->_url, false, '', $this->_auth) ;
60
 
60
 
61
// réglage de paramètres de la vue
61
// réglage de paramètres de la vue
62
$vue_liste_document->setAction (array ("couper" => PROJET_ACTION_COUPER, "modifier" => PROJET_ACTION_MODIFIER, "supprimer" => PROJET_SUPPRESSION_FICHIER)) ;
62
$vue_liste_document->setAction (array ("couper" => PROJET_ACTION_COUPER, "modifier" => PROJET_ACTION_MODIFIER, "supprimer" => PROJET_SUPPRESSION_FICHIER)) ;
63
$vue_liste_document->setCheminIcones(PROJET_CHEMIN_ICONES) ;
63
$vue_liste_document->setCheminIcones(PROJET_CHEMIN_ICONES) ;
64
 
64
 
65
 
65
 
66
// vérification des droits de l'utilisateur
66
// vérification des droits de l'utilisateur
67
$entete_liste = array (PROJET_FICHIERS_NOM, PROJET_FICHIERS_TAILLE, PROJET_FICHIERS_PAR, PROJET_FICHIERS_CREE_LE) ;
67
$entete_liste = array (PROJET_FICHIERS_NOM, PROJET_FICHIERS_TAILLE, PROJET_FICHIERS_PAR, PROJET_FICHIERS_CREE_LE) ;
68
 
68
 
69
if ($this->_auth->getAuth()) {
69
if ($this->_auth->getAuth()) {
70
	$droits = PROJET_DROIT_AUCUN;
70
	$droits = PROJET_DROIT_AUCUN;
71
    $participant = new participe($this->_db) ;
71
    $participant = new participe($this->_db) ;
72
    $id_u = $this->_auth->getAuthData(PROJET_CHAMPS_ID) ;
72
    $id_u = $this->_auth->getAuthData(PROJET_CHAMPS_ID) ;
73
    $isCoord = $participant->isCoordinateur($id_u, $this->_id_projet, $this->_db) ;
73
    $isCoord = $participant->isCoordinateur($id_u, $this->_id_projet, $this->_db) ;
-
 
74
    $isParticipant = $participant->isContributeur($id_u, $this->_id_projet, $this->_db) ;
-
 
75
    if ($isParticipant) $droits = PROJET_DROIT_CONTRIBUTEUR;
74
    if ($isCoord) $droits = PROJET_DROIT_COORDINATEUR ;
76
    if ($isCoord) $droits = PROJET_DROIT_COORDINATEUR ;
75
    $isAdm = participe::isAdministrateur($this->_auth->getAuthData(PROJET_CHAMPS_ID), $this->_db) ;
77
    $isAdm = participe::isAdministrateur($this->_auth->getAuthData(PROJET_CHAMPS_ID), $this->_db) ;
76
    if ($isAdm) $droits = PROJET_DROIT_ADMINISTRATEUR ;
78
    if ($isAdm) $droits = PROJET_DROIT_ADMINISTRATEUR ;
77
    if ($isAdm) $isCoord = true ;
79
    if ($isAdm) $isCoord = true ;
78
    
80
    
79
    $statut = participe::getStatutSurProjetCourant ($this->_auth->getAuthData(PROJET_CHAMPS_ID), $this->_id_projet, $this->_db) ;
81
    $statut = participe::getStatutSurProjetCourant ($this->_auth->getAuthData(PROJET_CHAMPS_ID), $this->_id_projet, $this->_db) ;
80
    // si participant, on ajoute le champs visibilite
82
    // si participant, on ajoute le champs visibilite
81
    
83
    
82
    if ($statut !='' || $isAdm) {
84
    if ($statut !='' || $isAdm) {
83
        array_push ($entete_liste, PROJET_FICHIERS_VISIBILITE) ;
85
        array_push ($entete_liste, PROJET_FICHIERS_VISIBILITE) ;
84
        $visible = true ;
86
        $visible = true ;
85
    } else {
87
    } else {
86
 	   $visible = false ;
88
 	   $visible = false ;
87
    }
89
    }
88
	// récupération de la liste des documents associés
90
	// récupération de la liste des documents associés
89
	$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER, 
91
	$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER, 
90
						PROJET_CHEMIN_ICONES, $this->_id_projet, $visible) ;
92
						PROJET_CHEMIN_ICONES, $this->_id_projet, $visible) ;
91
 
93
 
92
    
94
    
93
    // si chef de projet ou si propriétaire d'au moins 1 document
95
    // si chef de projet ou si propriétaire d'au moins 1 document
94
    $proprietaire_un_document = false ;
96
    $proprietaire_un_document = false ;
95
 
97
 
96
    foreach ($liste_documents as $document) {
98
    foreach ($liste_documents as $document) {
97
        if ($this->_auth->getAuthData(PROJET_CHAMPS_ID) == $document->_id_proprietaire) {
99
        if ($this->_auth->getAuthData(PROJET_CHAMPS_ID) == $document->_id_proprietaire) {
98
            $proprietaire_un_document = true ;
100
            $proprietaire_un_document = true ;
99
            $droits = PROJET_DROIT_PROPRIETAIRE ;
101
            $droits = PROJET_DROIT_PROPRIETAIRE ;
100
        }
102
        }
101
    }
103
    }
102
    if ($droits <= PROJET_DROIT_COORDINATEUR || $proprietaire_un_document) {
104
    if ($droits <= PROJET_DROIT_COORDINATEUR || $proprietaire_un_document) {
103
        array_push ($entete_liste, PROJET_ACTION) ;
105
        array_push ($entete_liste, PROJET_ACTION) ;
104
    }
106
    }
105
} else {
107
} else {
106
    $droits = PROJET_DROIT_AUCUN ;
108
    $droits = PROJET_DROIT_AUCUN ;
107
    // récupération de la liste des documents associés
109
    // récupération de la liste des documents associés
108
	$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER, 
110
	$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER, 
109
						PROJET_CHEMIN_ICONES, $this->_id_projet, false) ;
111
						PROJET_CHEMIN_ICONES, $this->_id_projet, false) ;
110
    
112
    
111
}
113
}
112
if (!isset($droits)) $droits = PROJET_DROIT_AUCUN ;
114
if (!isset($droits)) $droits = PROJET_DROIT_AUCUN ;
113
 
115
 
114
$vue_liste_document->construitEntete($entete_liste) ;
116
$vue_liste_document->construitEntete($entete_liste) ;
115
$vue_liste_document->construitListe ($liste_documents, $droits, 'ignore_repertoire', $this->_db) ;
117
$vue_liste_document->construitListe ($liste_documents, $droits, 'ignore_repertoire', $this->_db) ;
116
 
118
 
117
$wiki_res = '' ;
119
$wiki_res = '' ;
118
// Les wikinis associés au projet
120
// Les wikinis associés au projet
119
if ($projet->getWikini()) {
121
if ($projet->getWikini()) {
120
	$url = $GLOBALS['_GEN_commun']['url'] ;
122
	$url = $GLOBALS['_GEN_commun']['url'] ;
121
	
123
	
122
	$this->_url->addQueryString ('act',PROJET_ACTION_VOIR_WIKINI);
124
	$this->_url->addQueryString ('act',PROJET_ACTION_VOIR_WIKINI);
123
	$link=$this->_url->getURL();
125
	$link=$this->_url->getURL();
124
 
126
 
125
    $wiki_res .= '<div><a href="'.$link.'">'.PROJET_ALLER_SUR_WIKINI.'</a> ('.$projet->getWikini().')' ;
127
    $wiki_res .= '<div><a href="'.$link.'">'.PROJET_ALLER_SUR_WIKINI.'</a> ('.$projet->getWikini().')' ;
126
    $wiki_res .= '</div>' ;
128
    $wiki_res .= '</div>' ;
127
} else {
129
} else {
128
    $wiki_res .= '<div>'.PROJET_WIKINI_PAS.'</div>'."\n" ;
130
    $wiki_res .= '<div>'.PROJET_WIKINI_PAS.'</div>'."\n" ;
129
}
131
}
130
// On charge les listes de discussion du projet
132
// On charge les listes de discussion du projet
131
// Pour le moment seul ezmlm est supportée
133
// Pour le moment seul ezmlm est supportée
132
 
134
 
133
$projet->getListesAssociees();
135
$projet->getListesAssociees();
134
$sortie_liste = '' ;
136
$sortie_liste = '' ;
135
 
137
 
136
$liste_ext_res = '' ;
138
$liste_ext_res = '' ;
137
if ($projet->avoirListe()) {
139
if ($projet->avoirListe()) {
138
    ob_start() ;
140
    ob_start() ;
139
    foreach ($projet->_listes_associes as $info_liste) {
141
    foreach ($projet->_listes_associes as $info_liste) {
140
        $liste = new ezmlm_php() ;
142
        $liste = new ezmlm_php() ;
141
        // Paramétrage de la liste
143
        // Paramétrage de la liste
142
        
144
        
143
        $liste->listdir = PROJET_CHEMIN_LISTES.$info_liste->getDomaine().'/'.$info_liste->getNom();
145
        $liste->listdir = PROJET_CHEMIN_LISTES.$info_liste->getDomaine().'/'.$info_liste->getNom();
144
        
146
        
145
        $liste->listname = $info_liste->getNom() ;
147
        $liste->listname = $info_liste->getNom() ;
146
        $liste->listdomain = $info_liste->getDomaine();
148
        $liste->listdomain = $info_liste->getDomaine();
147
    
149
    
148
        if (isset ($GLOBALS['action']) && $GLOBALS['action'] != '') {
150
        if (isset ($GLOBALS['action']) && $GLOBALS['action'] != '') {
149
            $liste->set_action($GLOBALS['action']) ;
151
            $liste->set_action($GLOBALS['action']) ;
150
            $liste->set_actionargs($GLOBALS['actionargs']) ;
152
            $liste->set_actionargs($GLOBALS['actionargs']) ;
151
        } else {
153
        } else {
152
            $liste->set_action('list_info') ;
154
            $liste->set_action('list_info') ;
153
        }
155
        }
154
        $liste->sendheaders	= false;
156
        $liste->sendheaders	= false;
155
        $liste->sendbody        = false;
157
        $liste->sendbody        = false;
156
        $liste->sendfooters    = false;
158
        $liste->sendfooters    = false;
157
        $liste->forcehref = $this->_url->getURL() ;
159
        $liste->forcehref = $this->_url->getURL() ;
158
        
160
        
159
        
161
        
160
 
162
 
161
        if ($info_liste->isPublic() || $droits <= PROJET_DROIT_CONTRIBUTEUR) {
163
        if ($info_liste->isPublic() || $droits <= PROJET_DROIT_CONTRIBUTEUR) {
162
            $this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
164
            $this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
163
            switch ($liste->action) {
165
            switch ($liste->action) {
164
                case "list_info":
166
                case "list_info":
165
                    $this->_url->addQueryString('act', PROJET_ACTION_VOIR_FORUM);
167
                    $this->_url->addQueryString('act', PROJET_ACTION_VOIR_FORUM);
166
        		    $xml_parser = &new ezmlmAccessObject('calendrier_messages', $info_liste->getDomaine(),
168
        		    $xml_parser = &new ezmlmAccessObject('calendrier_messages', $info_liste->getDomaine(),
167
            									$info_liste->getNom(), $GLOBALS['lang'], 
169
            									$info_liste->getNom(), $GLOBALS['lang'], 
168
            									$this->_url->getURL()) ;
170
            									$this->_url->getURL()) ;
169
			
171
			
170
                    $xml_parser->reset() ;
172
                    $xml_parser->reset() ;
171
					$xml_parser->setAction ('derniers_messages');
173
					$xml_parser->setAction ('derniers_messages');
172
                    $xml_parser->load();
174
                    $xml_parser->load();
173
                    ob_start ();
175
                    ob_start ();
174
                    $xml_parser->parse() ;
176
                    $xml_parser->parse() ;
175
                    $derniers_messages = ob_get_contents() ;
177
                    $derniers_messages = ob_get_contents() ;
176
                    ob_end_clean();
178
                    ob_end_clean();
177
                    echo $derniers_messages ;
179
                    echo $derniers_messages ;
178
                    break;
180
                    break;
179
            }
181
            }
180
        } else {
182
        } else {
181
            print PROJET_MESSAGE_LISTE_PRIVEE;
183
            print PROJET_MESSAGE_LISTE_PRIVEE;
182
        }
184
        }
183
            $sortie_liste = ob_get_contents() ;
185
            $sortie_liste = ob_get_contents() ;
184
            ob_end_clean() ;
186
            ob_end_clean() ;
185
    }
187
    }
186
}
188
}
187
 
189
 
188
// Site internet associé
190
// Site internet associé
189
$sortie_web = '<h2>'.PROJET_ESPACE_INTERNET.'</h2>'."\n" ;
191
$sortie_web = '<h2>'.PROJET_ESPACE_INTERNET.'</h2>'."\n" ;
190
if ($projet->getEspaceInternet() != '') {
192
if ($projet->getEspaceInternet() != '') {
191
    $sortie_web .= '<a href="'.$projet->getEspaceInternet().'" target="_blank">'.$projet->getEspaceInternet().'</a>'."\n" ;
193
    $sortie_web .= '<a href="'.$projet->getEspaceInternet().'" target="_blank">'.$projet->getEspaceInternet().'</a>'."\n" ;
192
} else {
194
} else {
193
    $sortie_web .= PROJET_PAS_DE_SITE ;
195
    $sortie_web .= PROJET_PAS_DE_SITE ;
194
}
196
}
195
 
197
 
196
include_once PROJET_CHEMIN_CLASSES.'liste_externe.class.php' ;
198
include_once PROJET_CHEMIN_CLASSES.'liste_externe.class.php' ;
197
$listes_ext = new liste_externe ($this->_db) ;
199
$listes_ext = new liste_externe ($this->_db) ;
198
$tableau_liste = $listes_ext->getListesAssociees($this->_id_projet) ;
200
$tableau_liste = $listes_ext->getListesAssociees($this->_id_projet) ;
199
 
201
 
200
if (count ($tableau_liste) != 0) {
202
if (count ($tableau_liste) != 0) {
201
    $liste_ext_res .= '<h2>'.PROJET_LISTES_ASSOCIEES.'</h2>'."\n" ;
203
    $liste_ext_res .= '<h2>'.PROJET_LISTES_ASSOCIEES.'</h2>'."\n" ;
202
    for ($i = 0; $i < count ($tableau_liste); $i++) {
204
    for ($i = 0; $i < count ($tableau_liste); $i++) {
203
        $info_liste = $listes_ext->getInfoListe($tableau_liste[$i]) ;
205
        $info_liste = $listes_ext->getInfoListe($tableau_liste[$i]) ;
204
        //$liste_ext_res .= '<h2>'.$info_liste->AGO_A_NOMGRPLG.'</h2>'."\n" ;
206
        //$liste_ext_res .= '<h2>'.$info_liste->AGO_A_NOMGRPLG.'</h2>'."\n" ;
205
        //$liste_ext_res .= '<p>'.$info_liste->AGO_A_RESUMLG.'</p>'."\n" ;
207
        //$liste_ext_res .= '<p>'.$info_liste->AGO_A_RESUMLG.'</p>'."\n" ;
206
        $liste_ext_res .= '<p><a href="'.$info_liste->AGO_A_URLGRP.'" target="_blank">'.$info_liste->AGO_A_URLGRP.'</a></p>'."\n" ;
208
        $liste_ext_res .= '<p><a href="'.$info_liste->AGO_A_URLGRP.'" target="_blank">'.$info_liste->AGO_A_URLGRP.'</a></p>'."\n" ;
207
        //$liste_ext_res .= '<br />'."\n" ;
209
        //$liste_ext_res .= '<br />'."\n" ;
208
    }
210
    }
209
}
211
}
210
 
212
 
211
$retour .= '<h1>'.PROJET_PROJET.' : '.$projet->getTitre()."</h1>" ;
213
$retour .= '<h1>'.PROJET_PROJET.' : '.$projet->getTitre()."</h1>" ;
212
$retour .= '<h2>'.PROJET_RESUME.'</h2>'."\n" ;
214
$retour .= '<h2>'.PROJET_RESUME.'</h2>'."\n" ;
213
$retour .= '<div>'.$projet->getResume().'</div>'."\n" ;
215
$retour .= '<div>'.$projet->getResume().'</div>'."\n" ;
214
$retour .= '<h2>'.PROJET_WIKI_ASSOCIE.'</h2>' ;
216
$retour .= '<h2>'.PROJET_WIKI_ASSOCIE.'</h2>' ;
215
$retour .= $wiki_res ;
217
$retour .= $wiki_res ;
216
$retour .= $sortie_web ;
218
$retour .= $sortie_web ;
217
$retour .= '<h2>'.PROJET_DERNIERS_MESSAGES.'</h2>'."\n" ;
219
$retour .= '<h2>'.PROJET_DERNIERS_MESSAGES.'</h2>'."\n" ;
218
$retour .= $liste_ext_res.$sortie_liste ;
220
$retour .= $liste_ext_res.$sortie_liste ;
219
$retour .= '<h2>'.PROJET_FICHIERS_RECENTS.'</h2>'."\n" ;
221
$retour .= '<h2>'.PROJET_FICHIERS_RECENTS.'</h2>'."\n" ;
220
$retour .= $vue_liste_document->toHTML() ;
222
$retour .= $vue_liste_document->toHTML() ;
221
//$retour .= '<h2>'.PROJET_LISTES_ASSOCIEES.'</h2>'."\n" ;
223
//$retour .= '<h2>'.PROJET_LISTES_ASSOCIEES.'</h2>'."\n" ;
222
//$retour .= $sortie_liste ;
224
//$retour .= $sortie_liste ;
223
 
225
 
224
 
226
 
225
?>
227
?>