448 |
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 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
22 |
// CVS : $Id: fichier.class.php,v 1.1 2005-09-22 14:02:47 ddelon Exp $
|
|
|
23 |
/**
|
|
|
24 |
* Application projet
|
|
|
25 |
*
|
|
|
26 |
* La classe fichier
|
|
|
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-2004
|
|
|
34 |
*@version $Revision: 1.1 $
|
|
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
|
|
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
40 |
// | ENTETE du PROGRAMME |
|
|
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
42 |
|
|
|
43 |
include_once PROJET_CHEMIN_CLASSES.'type_fichier_mime.class.php' ;
|
|
|
44 |
|
|
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
46 |
// | ENTETE du PROGRAMME |
|
|
|
47 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
/**
|
|
|
51 |
* class fichier
|
|
|
52 |
* Cette classe représente un fichier au sens physique du terme. Elle fonctionne
|
|
|
53 |
* pour les système UNIX. A faire : adaptation selon les système. L'objectif est de
|
|
|
54 |
* gérer correctement l'upload de fichier.
|
|
|
55 |
*/
|
|
|
56 |
class fichier
|
|
|
57 |
{
|
|
|
58 |
/*** Attributes: ***/
|
|
|
59 |
/**
|
|
|
60 |
* Le nom du fichier, avec son extension.
|
|
|
61 |
* @access private
|
|
|
62 |
*/
|
|
|
63 |
var $_nom;
|
|
|
64 |
/**
|
|
|
65 |
* Le chemin UNIX ou Windows pour accéder au fichier sur le serveur (par ex;
|
|
|
66 |
* /var/www/fichier.txt
|
|
|
67 |
* @access private
|
|
|
68 |
*/
|
|
|
69 |
var $_chemin;
|
|
|
70 |
/**
|
|
|
71 |
* Cet attribut contient une valeur du type 755, indiquant les droits afférent à un
|
|
|
72 |
* fichier selon le système UNIX (propriétaire, groupe, autres)
|
|
|
73 |
* @access private
|
|
|
74 |
*/
|
|
|
75 |
var $_droits_unix;
|
|
|
76 |
/**
|
|
|
77 |
* Le type indique si le fichier est un répertoire, un lien ou un fichier.
|
|
|
78 |
* @access private
|
|
|
79 |
*/
|
|
|
80 |
var $_type = 'fichier';
|
|
|
81 |
|
|
|
82 |
/**
|
|
|
83 |
* l'identifiant du type mime.
|
|
|
84 |
* @access private
|
|
|
85 |
*/
|
|
|
86 |
var $_type_mime;
|
|
|
87 |
|
|
|
88 |
/**
|
|
|
89 |
* Le chemin vers le fichier, en partant du répertoire de travail.
|
|
|
90 |
* @access private
|
|
|
91 |
*/
|
|
|
92 |
var $_prefixe_chemin;
|
|
|
93 |
|
|
|
94 |
/**
|
|
|
95 |
*
|
|
|
96 |
*
|
|
|
97 |
* @return void
|
|
|
98 |
* @access public
|
|
|
99 |
*/
|
|
|
100 |
function fichier( $chemin, $objetDB = "")
|
|
|
101 |
{
|
|
|
102 |
$this->_chemin = $chemin ;
|
|
|
103 |
// On analyse l'extension pour découvrir le type mime
|
|
|
104 |
$partie_chemin = pathinfo ($this->_chemin) ;
|
|
|
105 |
|
|
|
106 |
if (is_object($objetDB) && isset($partie_chemin['extension'])) {
|
|
|
107 |
$this->_type_mime = type_fichier_mime::factory ($partie_chemin['extension'], $objetDB) ;
|
|
|
108 |
}
|
|
|
109 |
// calcul du type
|
|
|
110 |
if (is_dir ($this->_chemin)) $this->_type = 'repertoire' ;
|
|
|
111 |
} // end of member function fichier
|
|
|
112 |
|
|
|
113 |
/**
|
|
|
114 |
* Le constructeur de la classe.
|
|
|
115 |
*
|
|
|
116 |
* @param string chemin Le chemin du fichier sur le serveur.
|
|
|
117 |
* @return fichier
|
|
|
118 |
* @access public
|
|
|
119 |
*/
|
|
|
120 |
function __construct( $chemin )
|
|
|
121 |
{
|
|
|
122 |
|
|
|
123 |
} // end of member function __construct
|
|
|
124 |
|
|
|
125 |
/**
|
|
|
126 |
*
|
|
|
127 |
*
|
|
|
128 |
* @return void
|
|
|
129 |
* @access public
|
|
|
130 |
*/
|
|
|
131 |
function suppression()
|
|
|
132 |
{
|
|
|
133 |
if ($this->_type == 'repertoire') rmdir ($this->_chemin) ;
|
|
|
134 |
if ($this->_type == 'fichier') unlink ($this->_chemin) ;
|
|
|
135 |
} // end of member function suppression
|
|
|
136 |
|
|
|
137 |
/**
|
|
|
138 |
* Réalise l'upload d'un fichier vers chemin_destination.
|
|
|
139 |
*
|
|
|
140 |
* @param string chemin_destination Il s'agit du chemin UNIX de destination du fichier. Le script doit avoir les
|
|
|
141 |
* droits en écriture sur le répertoire.
|
|
|
142 |
* @global mixed une référence vers un objet HTML_QuickForm_File
|
|
|
143 |
* @return void
|
|
|
144 |
* @access public
|
|
|
145 |
*/
|
|
|
146 |
function upload( $chemin_destination )
|
|
|
147 |
{
|
|
|
148 |
if (move_uploaded_file($_FILES['fichier']['tmp_name'], $chemin_destination)) {
|
|
|
149 |
return true ;
|
|
|
150 |
} else {
|
|
|
151 |
return false ;
|
|
|
152 |
}
|
|
|
153 |
} // end of member function upload
|
|
|
154 |
|
|
|
155 |
/**
|
|
|
156 |
* Déplace un fichier, renvoie vrai en cas de succès.
|
|
|
157 |
*
|
|
|
158 |
* @param string origine L'emplacement de départ du fichier.
|
|
|
159 |
* @param string destination Le répertoire d'arrivé.
|
|
|
160 |
* @return bool
|
|
|
161 |
* @access public
|
|
|
162 |
*/
|
|
|
163 |
function deplace( $origine, $destination )
|
|
|
164 |
{
|
|
|
165 |
if (copy ($origine, $destination )) {
|
|
|
166 |
if (unlink($origine)) return true ;
|
|
|
167 |
}
|
|
|
168 |
return false ;
|
|
|
169 |
} // end of member function deplace
|
|
|
170 |
|
|
|
171 |
/**
|
|
|
172 |
*
|
|
|
173 |
*
|
|
|
174 |
* @param int id_type_mime L'identifiant du type mime du document.
|
|
|
175 |
* @return type_fichier_mime
|
|
|
176 |
* @access public
|
|
|
177 |
*/
|
|
|
178 |
function getTypeMime( )
|
|
|
179 |
{
|
|
|
180 |
return $this->_type_mime;
|
|
|
181 |
|
|
|
182 |
} // end of member function getTypeMime
|
|
|
183 |
|
|
|
184 |
/**
|
|
|
185 |
* Renvoie vrai si le document est un répertoire.
|
|
|
186 |
*
|
|
|
187 |
* @return bool
|
|
|
188 |
* @access public
|
|
|
189 |
*/
|
|
|
190 |
function isRepertoire( )
|
|
|
191 |
{
|
|
|
192 |
return is_dir ($this->_chemin) ;
|
|
|
193 |
} // end of member function isRepertoire
|
|
|
194 |
|
|
|
195 |
|
|
|
196 |
/**
|
|
|
197 |
*
|
|
|
198 |
*
|
|
|
199 |
* @param int id_type_mime L'identifiant du type mime.
|
|
|
200 |
* @return void
|
|
|
201 |
* @access public
|
|
|
202 |
*/
|
|
|
203 |
function setTypeMime( $id_type_mime )
|
|
|
204 |
{
|
|
|
205 |
$this->_type_mime = $id_type_mime ;
|
|
|
206 |
} // end of member function set TypeMime
|
|
|
207 |
|
|
|
208 |
|
|
|
209 |
/**
|
|
|
210 |
* Renvoie la taille du fichier en octet. Nécessite un accès au disque.
|
|
|
211 |
*
|
|
|
212 |
* @return int
|
|
|
213 |
* @access public
|
|
|
214 |
*/
|
|
|
215 |
function getTaille( )
|
|
|
216 |
{
|
|
|
217 |
if ($this->isRepertoire()) {
|
|
|
218 |
return $this->_tailleRepertoire($this->_chemin) ;
|
|
|
219 |
}
|
|
|
220 |
return filesize ($this->_chemin) ;
|
|
|
221 |
} // end of member function getTaille
|
|
|
222 |
|
|
|
223 |
/**
|
|
|
224 |
* Renovie le nom du fichier, sur le disque.
|
|
|
225 |
*
|
|
|
226 |
* @return string
|
|
|
227 |
* @access public
|
|
|
228 |
*/
|
|
|
229 |
function getNom( )
|
|
|
230 |
{
|
|
|
231 |
|
|
|
232 |
} // end of member function getNom
|
|
|
233 |
|
|
|
234 |
/**
|
|
|
235 |
* Renvoie le chemin du fichier.
|
|
|
236 |
*
|
|
|
237 |
* @return string
|
|
|
238 |
* @access public
|
|
|
239 |
*/
|
|
|
240 |
function getChemin( )
|
|
|
241 |
{
|
|
|
242 |
return $this->_chemin ;
|
|
|
243 |
} // end of member function getChemin
|
|
|
244 |
|
|
|
245 |
/**
|
|
|
246 |
* Permet de calculer la taille en octet du repertoire courrant
|
|
|
247 |
*
|
|
|
248 |
* @return int
|
|
|
249 |
* @access protected
|
|
|
250 |
*/
|
|
|
251 |
function _tailleRepertoire($rep)
|
|
|
252 |
{
|
|
|
253 |
$taille = 0 ;
|
|
|
254 |
$liste_fichier = scandir ($rep) ;
|
|
|
255 |
foreach ($liste_fichier as $key => $value) {
|
|
|
256 |
if (is_dir ($rep."/".$value) && $value != ".." && $value != ".") {
|
|
|
257 |
|
|
|
258 |
$taille += $this->_tailleRepertoire ($rep.$value."/") ;
|
|
|
259 |
} else {
|
|
|
260 |
if ($value != '..' && $value != '.') $taille += filesize ($rep.$value) ;
|
|
|
261 |
}
|
|
|
262 |
}
|
|
|
263 |
return $taille ;
|
|
|
264 |
} // end of member function _tailleRepertoire
|
|
|
265 |
|
|
|
266 |
|
|
|
267 |
/**
|
|
|
268 |
* initAttributes sets all fichier attributes to its default value make
|
|
|
269 |
* sure to call this method within your class constructor
|
|
|
270 |
*/
|
|
|
271 |
function initAttributes( )
|
|
|
272 |
{
|
|
|
273 |
$this->_type = 'fichier';
|
|
|
274 |
}
|
|
|
275 |
|
|
|
276 |
|
|
|
277 |
} // end of fichier
|
|
|
278 |
|
|
|
279 |
if(!function_exists("scandir"))
|
|
|
280 |
{
|
|
|
281 |
function scandir($dirstr)
|
|
|
282 |
{
|
|
|
283 |
// php.net/scandir (PHP5)
|
|
|
284 |
$files = array();
|
|
|
285 |
$fh = opendir($dirstr);
|
|
|
286 |
while (false !== ($filename = readdir($fh)))
|
|
|
287 |
{
|
|
|
288 |
array_push($files, $filename);
|
|
|
289 |
}
|
|
|
290 |
closedir($fh);
|
|
|
291 |
return $files;
|
|
|
292 |
}
|
|
|
293 |
}
|
|
|
294 |
?>
|