Subversion Repositories Applications.projet

Rev

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

Rev Author Line No. Line
2 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 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
// | General Public License for more details.                                                             |
17
// |                                                                                                      |
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                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
294 alexandre_ 22
// CVS : $Id: resume.php,v 1.14 2008-08-25 15:02:49 alexandre_tb Exp $
2 ddelon 23
/**
24
* Application projet
25
*
26
* Action resume
27
*
28
*@package projet
29
//Auteur original :
30
*@author        Alexandre Granier <alexandre@tela-botanica.org>
31
//Autres auteurs :
32
*@author        Aucun
33
*@copyright     Tela-Botanica 2000-2005
294 alexandre_ 34
*@version       $Revision: 1.14 $
2 ddelon 35
// +------------------------------------------------------------------------------------------------------+
36
*/
37
 
38
// +------------------------------------------------------------------------------------------------------+
39
// |                                            ENTETE du PROGRAMME                                       |
40
// +------------------------------------------------------------------------------------------------------+
41
 
42
// RAPPEL IMPORTANT
294 alexandre_ 43
// On se situe dans la methode run() de la classe projetControleur
2 ddelon 44
//
45
 
133 alexandre_ 46
$retour = '';
294 alexandre_ 47
$loggue = false;
2 ddelon 48
 
294 alexandre_ 49
// creation de l'objet projet courant
208 neiluj 50
include_once PROJET_CHEMIN_CLASSES.'projet.class.php' ;
51
include_once PROJET_CHEMIN_CLASSES.'participe.class.php' ;
2 ddelon 52
$projet = new projet ($this->_db, $this->_id_projet) ;
294 alexandre_ 53
 
2 ddelon 54
 
294 alexandre_ 55
/** Bloc resume avec lien resume */
56
$resume = $projet->getResume();
57
$bouton_resume = '';
58
$bouton_s_inscrire_au_projet = '';
59
 
60
 
61
$lien_inscription = '';
62
 
63
// recuperation de la liste des documents associes
97 alexandre_ 64
$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER,
65
						PROJET_CHEMIN_ICONES, $this->_id_projet) ;
2 ddelon 66
 
294 alexandre_ 67
// creation de la vue liste de document, on nettoie l'url
2 ddelon 68
//$this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
69
include_once PROJET_CHEMIN_CLASSES.'HTML_listeDocuments.class.php' ;
113 alexandre_ 70
include_once (PROJET_CHEMIN_CLASSES.'ezmlmAccessObject.class.php') ;
2 ddelon 71
$vue_liste_document = new HTML_listeDocuments($this->_url, false, '', $this->_auth) ;
294 alexandre_ 72
$bouton_deposer_doc = '';
73
// reglage de parametres de la vue
2 ddelon 74
$vue_liste_document->setAction (array ("couper" => PROJET_ACTION_COUPER, "modifier" => PROJET_ACTION_MODIFIER, "supprimer" => PROJET_SUPPRESSION_FICHIER)) ;
75
$vue_liste_document->setCheminIcones(PROJET_CHEMIN_ICONES) ;
76
 
294 alexandre_ 77
$bouton_poster = '';
78
$bouton_desinscription_projet = '';
2 ddelon 79
 
294 alexandre_ 80
// verification des droits de l'utilisateur
2 ddelon 81
$entete_liste = array (PROJET_FICHIERS_NOM, PROJET_FICHIERS_TAILLE, PROJET_FICHIERS_PAR, PROJET_FICHIERS_CREE_LE) ;
82
 
83
if ($this->_auth->getAuth()) {
294 alexandre_ 84
	$loggue = true;
130 alexandre_ 85
	$droits = PROJET_DROIT_AUCUN;
2 ddelon 86
    $participant = new participe($this->_db) ;
87
    $id_u = $this->_auth->getAuthData(PROJET_CHAMPS_ID) ;
88
    $isCoord = $participant->isCoordinateur($id_u, $this->_id_projet, $this->_db) ;
150 alexandre_ 89
    $isParticipant = $participant->isContributeur($id_u, $this->_id_projet, $this->_db) ;
90
    if ($isParticipant) $droits = PROJET_DROIT_CONTRIBUTEUR;
2 ddelon 91
    if ($isCoord) $droits = PROJET_DROIT_COORDINATEUR ;
92
    $isAdm = participe::isAdministrateur($this->_auth->getAuthData(PROJET_CHAMPS_ID), $this->_db) ;
93
    if ($isAdm) $droits = PROJET_DROIT_ADMINISTRATEUR ;
94
    if ($isAdm) $isCoord = true ;
95
 
294 alexandre_ 96
	include_once PROJET_CHEMIN_CLASSES.'inscription_liste.class.php';
97
	$projet->getListesAssociees();
98
	foreach ($projet->_listes_associes as $info_liste) {
99
	    $inscription_liste = new inscription_liste($this->_db) ;
100
	    if ($inscription_liste->getStatutInscrit($info_liste->getId(),  $this->_auth) == 0) {
101
	        $action_inscription = PROJET_ACTION_INSCRIPTION_LISTE ;
102
	        $label_inscription = 'S\'inscrire &agrave; la liste' ;
103
	    } else {
104
	        // L'action envoyer un mail
105
	        $action_inscription = PROJET_ENVOYER_UN_MAIL ;
106
	        $label_inscription = PROJET_ECRIRE_LISTE ;
107
	    }
108
	}
109
 
110
    switch ($participant->getStatut($id_u, $this->_id_projet))
111
    {
112
    	case PROJET_DROIT_AUCUN :
113
    		$this->_url->addQueryString (PROJET_VARIABLE_ACTION, PROJET_ACTION_S_INSCRIRE);
114
    		$lien_inscription = $this->_url->getURL();
115
    		$laius_inscription = PROJET_VOUS_N_ETES_PAS_INSCRIT;
116
    		$label_url_inscription = PROJET_S_INSCRIRE_AU_PROJET;
117
    		$this->_url->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_S_INSCRIRE);
118
    		$lien_inscription = $this->_url->getURL();
119
    		$label_url_inscription = 'S\'inscrire &agrave; ce projet';
120
 
121
    	break;
122
    	case PROJET_DROIT_CONTRIBUTEUR :
123
    		$this->_url->addQueryString(PROJET_VARIABLE_ACTION, PROJET_NOUVEAU_FICHIER);
124
			$bouton_deposer_doc = bouton::toHTML($this->_url->getURL(), 'D&eacute;poser un document', 'document');
125
			$bouton_deposer_doc .= '<br style="clear:both" />';
126
 
127
			$this->_url->addQueryString(PROJET_VARIABLE_ACTION, PROJET_ACTION_DESINSCRIPTION_PROJET);
128
			$bouton_desinscription_projet = bouton::toHTML($this->_url->getURL(), 'Se d&eacute;sinscrire du projet', 'cross');
129
			$bouton_desinscription_projet .= '<br style="clear:both" />';
130
			$this->_url->addQueryString(PROJET_VARIABLE_ACTION, $action_inscription);
131
            $bouton_poster = bouton::toHTML($this->_url->getURL(), $label_inscription,'ecrire');
132
    	break;
133
    	case PROJET_DROIT_COORDINATEUR || PROJET_DROIT_ADMINISTRATEUR :
134
    		$this->_url->addQueryString (PROJET_VARIABLE_ACTION, PROJET_MODIFIER_DESCRIPTION);
135
			$bouton_resume = bouton::toHTML($this->_url->getURL(), PROJET_MODIFIER_PROPRIETES, 'modifier');
136
			$bouton_resume .= '<br style="clear:both" />';
137
			$this->_url->addQueryString(PROJET_VARIABLE_ACTION, PROJET_NOUVEAU_FICHIER);
138
			$bouton_deposer_doc = bouton::toHTML($this->_url->getURL(), 'D&eacute;poser un document', 'document');
139
			$bouton_deposer_doc .= '<br style="clear:both" />';
140
 
141
			if ($projet->avoirListe()) {
142
				$this->_url->addQueryString(PROJET_VARIABLE_ACTION, $action_inscription);
143
            	$bouton_poster = bouton::toHTML($this->_url->getURL(), $label_inscription,'ecrire');
144
 
145
			}
146
 
147
    	break;
148
    	case PROJET_DROIT_EN_ATTENTE : $droits = PROJET_DROIT_EN_ATTENTE;
149
    		GEN_stockerFichierScript('mootools', 'api/js/mootools/mootools-release-1.11.js');
150
			GEN_stockerCodeScript('window.addEvent(\'domready\', function(){'."\n".
151
				'var fx = new Fx.Styles($(\'projet_lien_login\'), {duration:500, wait:false});' ."\n".
152
				'element = $(\'projet_lien_login\');'."\n".
153
				'element.addEvent(
154
					\'click\', function() {
155
						fx.start({
156
							\'height\' : \'320px\'
157
						})
158
					}
159
				)});');
160
			$laius_inscription_modere = str_replace ('nom_du_projet', $projet->getTitre(), PROJET_LAIUS_INSCRIPTION_MODERE);
161
			$lien_login = '#';
162
    	break;
163
    }
164
    $bouton_poster .= '<br style="clear:both" />';
165
 
2 ddelon 166
    $statut = participe::getStatutSurProjetCourant ($this->_auth->getAuthData(PROJET_CHAMPS_ID), $this->_id_projet, $this->_db) ;
167
    // si participant, on ajoute le champs visibilite
168
 
169
    if ($statut !='' || $isAdm) {
170
        array_push ($entete_liste, PROJET_FICHIERS_VISIBILITE) ;
97 alexandre_ 171
        $visible = true ;
172
    } else {
173
 	   $visible = false ;
2 ddelon 174
    }
294 alexandre_ 175
	// recuperation de la liste des documents associes
97 alexandre_ 176
	$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER,
177
						PROJET_CHEMIN_ICONES, $this->_id_projet, $visible) ;
178
 
179
 
294 alexandre_ 180
    // si chef de projet ou si proprietaire d'au moins 1 document
2 ddelon 181
    $proprietaire_un_document = false ;
182
 
183
    foreach ($liste_documents as $document) {
184
        if ($this->_auth->getAuthData(PROJET_CHAMPS_ID) == $document->_id_proprietaire) {
185
            $proprietaire_un_document = true ;
186
            $droits = PROJET_DROIT_PROPRIETAIRE ;
187
        }
188
    }
189
    if ($droits <= PROJET_DROIT_COORDINATEUR || $proprietaire_un_document) {
190
        array_push ($entete_liste, PROJET_ACTION) ;
191
    }
192
} else {
193
    $droits = PROJET_DROIT_AUCUN ;
294 alexandre_ 194
    // recuperation de la liste des documents associes
97 alexandre_ 195
	$liste_documents = document::getDocumentsRecents(4, $this->_db, PROJET_CHEMIN_FICHIER,
196
						PROJET_CHEMIN_ICONES, $this->_id_projet, false) ;
294 alexandre_ 197
	$lien_inscription = 'javascript:animatedcollapse.toggle(\'projet_bloc_inscription\');';
198
	$label_url_inscription = 'S\'inscrire &agrave; ce projet';
199
 
200
	GEN_stockerFichierScript('jquery', 'api/js/jquery/jquery.js');
201
	GEN_stockerFichierScript('animatedcollapse', 'api/js/jquery/animatedcollapse.js');
202
	GEN_stockerCodeScript('animatedcollapse.addDiv(\'projet_bloc_inscription\', \'fade=1, height="100px"\');' ."\n".
203
			'animatedcollapse.init();' ."\n");
204
	$lien_login = '#';
2 ddelon 205
}
206
if (!isset($droits)) $droits = PROJET_DROIT_AUCUN ;
207
 
208
$vue_liste_document->construitEntete($entete_liste) ;
209
$vue_liste_document->construitListe ($liste_documents, $droits, 'ignore_repertoire', $this->_db) ;
210
 
211
$wiki_res = '' ;
294 alexandre_ 212
// Les wikinis associes au projet
2 ddelon 213
if ($projet->getWikini()) {
49 ddelon 214
	$url = $GLOBALS['_GEN_commun']['url'] ;
215
 
70 alexandre_ 216
	$this->_url->addQueryString ('act',PROJET_ACTION_VOIR_WIKINI);
217
	$link=$this->_url->getURL();
81 alexandre_ 218
 
88 alexandre_ 219
    $wiki_res .= '<div><a href="'.$link.'">'.PROJET_ALLER_SUR_WIKINI.'</a> ('.$projet->getWikini().')' ;
2 ddelon 220
    $wiki_res .= '</div>' ;
221
} else {
222
    $wiki_res .= '<div>'.PROJET_WIKINI_PAS.'</div>'."\n" ;
223
}
224
// On charge les listes de discussion du projet
294 alexandre_ 225
// Pour le moment seul ezmlm est supportee
2 ddelon 226
 
227
$projet->getListesAssociees();
228
$sortie_liste = '' ;
229
 
294 alexandre_ 230
 
2 ddelon 231
$liste_ext_res = '' ;
232
if ($projet->avoirListe()) {
233
    ob_start() ;
208 neiluj 234
    include_once PROJET_CHEMIN_CLASSES_LISTES.'ezmlm.php' ;
2 ddelon 235
    foreach ($projet->_listes_associes as $info_liste) {
236
        $liste = new ezmlm_php() ;
237
        // Paramétrage de la liste
238
 
239
        $liste->listdir = PROJET_CHEMIN_LISTES.$info_liste->getDomaine().'/'.$info_liste->getNom();
240
 
241
        $liste->listname = $info_liste->getNom() ;
242
        $liste->listdomain = $info_liste->getDomaine();
243
 
244
        if (isset ($GLOBALS['action']) && $GLOBALS['action'] != '') {
245
            $liste->set_action($GLOBALS['action']) ;
246
            $liste->set_actionargs($GLOBALS['actionargs']) ;
247
        } else {
248
            $liste->set_action('list_info') ;
249
        }
250
        $liste->sendheaders	= false;
251
        $liste->sendbody        = false;
252
        $liste->sendfooters    = false;
253
        $liste->forcehref = $this->_url->getURL() ;
254
 
255
 
256
 
257
        if ($info_liste->isPublic() || $droits <= PROJET_DROIT_CONTRIBUTEUR) {
258
            $this->_url->removeQueryString(PROJET_VARIABLE_ACTION) ;
259
            switch ($liste->action) {
260
                case "list_info":
113 alexandre_ 261
                    $this->_url->addQueryString('act', PROJET_ACTION_VOIR_FORUM);
262
        		    $xml_parser = &new ezmlmAccessObject('calendrier_messages', $info_liste->getDomaine(),
263
            									$info_liste->getNom(), $GLOBALS['lang'],
264
            									$this->_url->getURL()) ;
265
 
266
                    $xml_parser->reset() ;
267
					$xml_parser->setAction ('derniers_messages');
268
                    $xml_parser->load();
269
                    ob_start ();
270
                    $xml_parser->parse() ;
271
                    $derniers_messages = ob_get_contents() ;
272
                    ob_end_clean();
273
                    echo $derniers_messages ;
2 ddelon 274
                    break;
275
            }
276
        } else {
277
            print PROJET_MESSAGE_LISTE_PRIVEE;
278
        }
279
            $sortie_liste = ob_get_contents() ;
280
            ob_end_clean() ;
281
    }
282
}
283
 
294 alexandre_ 284
// Site internet associe
2 ddelon 285
$sortie_web = '<h2>'.PROJET_ESPACE_INTERNET.'</h2>'."\n" ;
286
if ($projet->getEspaceInternet() != '') {
294 alexandre_ 287
    $sortie_web .= '<a href="'.$projet->getEspaceInternet().'">'.$projet->getEspaceInternet().'</a>'."\n" ;
2 ddelon 288
} else {
289
    $sortie_web .= PROJET_PAS_DE_SITE ;
290
}
291
 
292
include_once PROJET_CHEMIN_CLASSES.'liste_externe.class.php' ;
293
$listes_ext = new liste_externe ($this->_db) ;
294
$tableau_liste = $listes_ext->getListesAssociees($this->_id_projet) ;
295
 
296
if (count ($tableau_liste) != 0) {
297
    $liste_ext_res .= '<h2>'.PROJET_LISTES_ASSOCIEES.'</h2>'."\n" ;
298
    for ($i = 0; $i < count ($tableau_liste); $i++) {
299
        $info_liste = $listes_ext->getInfoListe($tableau_liste[$i]) ;
300
        $liste_ext_res .= '<p><a href="'.$info_liste->AGO_A_URLGRP.'" target="_blank">'.$info_liste->AGO_A_URLGRP.'</a></p>'."\n" ;
301
    }
294 alexandre_ 302
    $avoir_liste_externe = true;
303
} else {
304
	$avoir_liste_externe = false;
2 ddelon 305
}
294 alexandre_ 306
$this->_url->removeQueryString(PROJET_VARIABLE_ACTION);
2 ddelon 307
 
294 alexandre_ 308
$GLOBALS['_PAPYRUS_']['rendu']['TITRE_PAGE'] = $projet->getTitre();
309
ob_start();
310
include_once PROJET_CHEMIN_APPLI.'/squelettes/resume.tpl.html';
2 ddelon 311
 
294 alexandre_ 312
$retour .= ob_get_contents();
313
ob_end_clean();
314
/* +--Fin du code ----------------------------------------------------------------------------------------+
315
*
316
* $Log: not supported by cvs2svn $
317
*
318
* +-- Fin du code ----------------------------------------------------------------------------------------+
319
*/
2 ddelon 320
 
321
?>