1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
|
<?php
/***************************************************************
* Copyright notice
*
* (c) 1999-2006 Kasper Skaarhoj (kasperYYYY@typo3.com)
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
* A copy is found in the textfile GPL.txt and important notices to the license
* from the author is found in LICENSE.txt distributed with these scripts.
*
*
* This script 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 General Public License for more details.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/**
* Contains class with basic file management functions
*
* $Id: class.t3lib_basicfilefunc.php 1421 2006-04-10 09:27:15Z mundaun $
* Revised for TYPO3 3.6 July/2003 by Kasper Skaarhoj
*
* @author Kasper Skaarhoj <kasperYYYY@typo3.com>
*/
/**
* [CLASS/FUNCTION INDEX of SCRIPT]
*
*
*
* 81: class t3lib_basicFileFunctions
*
* SECTION: Checking functions
* 133: function init($mounts, $f_ext)
* 152: function getTotalFileInfo($wholePath)
* 172: function is_allowed($iconkey,$type)
* 197: function checkIfFullAccess($theDest)
* 211: function is_webpath($path)
* 231: function checkIfAllowed($ext, $theDest, $filename='')
* 241: function checkFileNameLen($fileName)
* 251: function is_directory($theDir)
* 268: function isPathValid($theFile)
* 283: function getUniqueName($theFile, $theDest, $dontCheckForUnique=0)
* 326: function checkPathAgainstMounts($thePath)
* 342: function findFirstWebFolder()
* 362: function blindPath($thePath)
* 378: function findTempFolder()
*
* SECTION: Cleaning functions
* 412: function cleanDirectoryName($theDir)
* 422: function rmDoubleSlash($string)
* 432: function slashPath($path)
* 446: function cleanFileName($fileName,$charset='')
* 480: function formatSize($sizeInBytes)
*
* TOTAL FUNCTIONS: 19
* (This index is automatically created/updated by the extension "extdeveval")
*
*/
require_once(PATH_t3lib.'class.t3lib_cs.php');
/**
* Contains functions for management, validation etc of files in TYPO3, using the concepts of web- and ftp-space. Please see the comment for the init() function
*
* @author Kasper Skaarhoj <kasperYYYY@typo3.com>
* @package TYPO3
* @subpackage t3lib
* @see t3lib_basicFileFunctions::init()
*/
class t3lib_basicFileFunctions {
var $getUniqueNamePrefix = ''; // Prefix which will be prepended the file when using the getUniqueName-function
var $maxNumber = 20; // This number decides the highest allowed appended number used on a filename before we use naming with unique strings
var $uniquePrecision = 6; // This number decides how many characters out of a unique MD5-hash that is appended to a filename if getUniqueName is asked to find an available filename.
var $maxInputNameLen = 60; // This is the maximum length of names treated by cleanFileName()
var $tempFN = '_temp_'; // Temp-foldername. A folder in the root of one of the mounts with this name is regarded a TEMP-folder (used for upload from clipboard)
// internal
var $f_ext = Array(); // See comment in header
var $mounts = Array(); // See comment in header
var $webPath =''; // Set to DOCUMENT_ROOT.
var $isInit = 0; // Set to true after init()/start();
/**********************************
*
* Checking functions
*
**********************************/
/**
* Constructor
* This function should be called to initialise the internal arrays $this->mounts and $this->f_ext
*
* A typical example of the array $mounts is this:
* $mounts[xx][path] = (..a mounted path..)
* the 'xx'-keys is just numerical from zero. There are also a [name] and [type] value that just denotes the mountname and type. Not used for athentication here.
* $this->mounts is traversed in the function checkPathAgainstMounts($thePath), and it is checked that $thePath is actually below one of the mount-paths
* The mountpaths are with a trailing '/'. $thePath must be with a trailing '/' also!
* As you can see, $this->mounts is very critical! This is the array that decides where the user will be allowed to copy files!!
* Typically the global var $WEBMOUNTS would be passed along as $mounts
*
* A typical example of the array $f_ext is this:
* $f_ext['webspace']['allow']='';
* $f_ext['webspace']['deny']='php3,php';
* $f_ext['ftpspace']['allow']='*';
* $f_ext['ftpspace']['deny']='';
* The control of fileextensions goes in two catagories. Webspace and Ftpspace. Webspace is folders accessible from a webbrowser (below TYPO3_DOCUMENT_ROOT) and ftpspace is everything else.
* The control is done like this: If an extension matches 'allow' then the check returns true. If not and an extension matches 'deny' then the check return false. If no match at all, returns true.
* You list extensions comma-separated. If the value is a '*' every extension is allowed
* The list is case-insensitive when used in this class (see init())
* Typically TYPO3_CONF_VARS['BE']['fileExtensions'] would be passed along as $f_ext.
*
* Example:
* $basicff->init($GLOBALS['FILEMOUNTS'],$TYPO3_CONF_VARS['BE']['fileExtensions']);
*
* @param array Contains the paths of the file mounts for the current BE user. Normally $GLOBALS['FILEMOUNTS'] is passed. This variable is set during backend user initialization; $FILEMOUNTS = $BE_USER->returnFilemounts(); (see typo3/init.php)
* @param array Array with information about allowed and denied file extensions. Typically passed: $TYPO3_CONF_VARS['BE']['fileExtensions']
* @return void
* @see typo3/init.php, t3lib_userAuthGroup::returnFilemounts()
*/
function init($mounts, $f_ext) {
$this->f_ext['webspace']['allow'] = t3lib_div::uniqueList(strtolower($f_ext['webspace']['allow']));
$this->f_ext['webspace']['deny'] = t3lib_div::uniqueList(strtolower($f_ext['webspace']['deny']));
$this->f_ext['ftpspace']['allow'] = t3lib_div::uniqueList(strtolower($f_ext['ftpspace']['allow']));
$this->f_ext['ftpspace']['deny'] = t3lib_div::uniqueList(strtolower($f_ext['ftpspace']['deny']));
$this->mounts = $mounts;
$this->webPath = t3lib_div::getIndpEnv('TYPO3_DOCUMENT_ROOT');
$this->isInit = 1;
$this->maxInputNameLen = $GLOBALS['TYPO3_CONF_VARS']['SYS']['maxFileNameLength'] ? $GLOBALS['TYPO3_CONF_VARS']['SYS']['maxFileNameLength'] : $this->maxInputNameLen;
}
/**
* Returns an array with a whole lot of fileinformation.
*
* @param string Filepath to existing file. Should probably be absolute. Filefunctions are performed on this value.
* @return array Information about the file in the filepath
*/
function getTotalFileInfo($wholePath) {
$theuser = getmyuid();
$info = t3lib_div::split_fileref($wholePath);
$info['tstamp'] = @filectime($wholePath);
$info['size'] = @filesize($wholePath);
$info['type'] = @filetype($wholePath);
$info['owner'] = @fileowner($wholePath);
$info['perms'] = @fileperms($wholePath);
$info['writable'] = !@is_writable($wholePath);
$info['readable'] = !@is_readable($wholePath);
return $info;
}
/**
* Checks if a $iconkey (fileextension) is allowed according to $this->f_ext.
*
* @param string The extension to check, eg. "php" or "html" etc.
* @param string Either "webspage" or "ftpspace" - points to a key in $this->f_ext
* @return boolean True if file extension is allowed.
*/
function is_allowed($iconkey,$type) {
if (isset($this->f_ext[$type])) {
$ik = strtolower($iconkey);
if ($ik) {
// If the extension is found amongst the allowed types, we return true immediately
if ($this->f_ext[$type]['allow']=='*' || t3lib_div::inList($this->f_ext[$type]['allow'],$ik)) return true;
// If the extension is found amongst the denied types, we return false immediately
if ($this->f_ext[$type]['deny']=='*' || t3lib_div::inList($this->f_ext[$type]['deny'],$ik)) return false;
// If no match we return true
return true;
} else { // If no extension:
if ($this->f_ext[$type]['allow']=='*') return true;
if ($this->f_ext[$type]['deny']=='*') return false;
return true;
}
}
return false;
}
/**
* Returns true if you can operate of ANY file ('*') in the space $theDest is in ('webspace' / 'ftpspace')
*
* @param string Absolute path
* @return boolean
*/
function checkIfFullAccess($theDest) {
$type = $this->is_webpath($theDest)?'webspace':'ftpspace';
if (isset($this->f_ext[$type])) {
if ((string)$this->f_ext[$type]['deny']=='' || $this->f_ext[$type]['allow']=='*') return true;
}
}
/**
* Checks if $this->webPath (should be TYPO3_DOCUMENT_ROOT) is in the first part of $path
* Returns true also if $this->init is not set or if $path is empty...
*
* @param string Absolute path to check
* @return boolean
*/
function is_webpath($path) {
if ($this->isInit) {
$testPath = $this->slashPath($path);
$testPathWeb = $this->slashPath($this->webPath);
if ($testPathWeb && $testPath) {
return t3lib_div::isFirstPartOfStr($testPath,$testPathWeb);
}
}
return true; // Its more safe to return true (as the webpath is more restricted) if something went wrong...
}
/**
* If the filename is given, check it against the TYPO3_CONF_VARS[BE][fileDenyPattern] +
* Checks if the $ext fileextension is allowed in the path $theDest (this is based on whether $theDest is below the $this->webPath)
*
* @param string File extension, eg. "php" or "html"
* @param string Absolute path for which to test
* @param string Filename to check against TYPO3_CONF_VARS[BE][fileDenyPattern]
* @return boolean True if extension/filename is allowed
*/
function checkIfAllowed($ext, $theDest, $filename='') {
return t3lib_div::verifyFilenameAgainstDenyPattern($filename) && $this->is_allowed($ext,($this->is_webpath($theDest)?'webspace':'ftpspace'));
}
/**
* Returns true if the input filename string is shorter than $this->maxInputNameLen.
*
* @param string Filename, eg "somefile.html"
* @return boolean
*/
function checkFileNameLen($fileName) {
return strlen($fileName) <= $this->maxInputNameLen;
}
/**
* Cleans $theDir for slashes in the end of the string and returns the new path, if it exists on the server.
*
* @param string Directory path to check
* @return string Returns the cleaned up directory name if OK, otherwise false.
*/
function is_directory($theDir) {
if ($this->isPathValid($theDir)) {
$theDir=$this->cleanDirectoryName($theDir);
if (@is_dir($theDir)) {
return $theDir;
}
}
return false;
}
/**
* Wrapper for t3lib_div::validPathStr()
*
* @param string Filepath to evaluate
* @return boolean True, if no '//', '..' or '\' is in the $theFile
* @see t3lib_div::validPathStr()
*/
function isPathValid($theFile) {
return t3lib_div::validPathStr($theFile);
}
/**
* Returns the destination path/filename of a unique filename/foldername in that path.
* If $theFile exists in $theDest (directory) the file have numbers appended up to $this->maxNumber. Hereafter a unique string will be appended.
* This function is used by fx. TCEmain when files are attached to records and needs to be uniquely named in the uploads/* folders
*
* @param string The input filename to check
* @param string The directory for which to return a unique filename for $theFile. $theDest MUST be a valid directory. Should be absolute.
* @param boolean If set the filename is returned with the path prepended without checking whether it already existed!
* @return string The destination absolute filepath (not just the name!) of a unique filename/foldername in that path.
* @see t3lib_TCEmain::checkValue()
*/
function getUniqueName($theFile, $theDest, $dontCheckForUnique=0) {
$theDest = $this->is_directory($theDest); // $theDest is cleaned up
$origFileInfo = t3lib_div::split_fileref($theFile); // Fetches info about path, name, extention of $theFile
if ($theDest) {
if ($this->getUniqueNamePrefix) { // Adds prefix
$origFileInfo['file'] = $this->getUniqueNamePrefix.$origFileInfo['file'];
$origFileInfo['filebody'] = $this->getUniqueNamePrefix.$origFileInfo['filebody'];
}
// Check if the file exists and if not - return the filename...
$fileInfo = $origFileInfo;
$theDestFile = $theDest.'/'.$fileInfo['file']; // The destinations file
if (!@file_exists($theDestFile) || $dontCheckForUnique) { // If the file does NOT exist we return this filename
return $theDestFile;
}
// Well the filename in its pure form existed. Now we try to append numbers / unique-strings and see if we can find an available filename...
$theTempFileBody = preg_replace('/_[0-9][0-9]$/','',$origFileInfo['filebody']); // This removes _xx if appended to the file
$theOrigExt = $origFileInfo['realFileext'] ? '.'.$origFileInfo['realFileext'] : '';
for ($a=1; $a<=($this->maxNumber+1); $a++) {
if ($a<=$this->maxNumber) { // First we try to append numbers
$insert = '_'.sprintf('%02d', $a);
} else { // .. then we try unique-strings...
$insert = '_'.substr(md5(uniqId('')),0,$this->uniquePrecision);
}
$theTestFile = $theTempFileBody.$insert.$theOrigExt;
$theDestFile = $theDest.'/'.$theTestFile; // The destinations file
if (!@file_exists($theDestFile)) { // If the file does NOT exist we return this filename
return $theDestFile;
}
}
}
}
/**
* Checks if $thePath is a path under one of the paths in $this->mounts
* See comment in the header of this class.
*
* @param string $thePath MUST HAVE a trailing '/' in order to match correctly with the mounts
* @return string The key to the first mount found, otherwise nothing is returned.
* @see init()
*/
function checkPathAgainstMounts($thePath) {
if ($thePath && $this->isPathValid($thePath) && is_array($this->mounts)) {
reset ($this->mounts);
while(list($k,$val)=each($this->mounts)) {
if (t3lib_div::isFirstPartOfStr($thePath,$val['path'])) {
return $k;
}
}
}
}
/**
* Find first web folder (relative to PATH_site.'fileadmin') in filemounts array
*
* @return string The key to the first mount inside PATH_site."fileadmin" found, otherwise nothing is returned.
*/
function findFirstWebFolder() {
global $TYPO3_CONF_VARS;
if (is_array($this->mounts)) {
reset ($this->mounts);
while(list($k,$val)=each($this->mounts)) {
if (t3lib_div::isFirstPartOfStr($val['path'], PATH_site.$TYPO3_CONF_VARS['BE']['fileadminDir'])) {
return $k;
}
}
}
}
/**
* Removes filemount part of a path, thus blinding the position.
* Takes a path, $thePath, and removes the part of the path which equals the filemount.
*
* @param string $thePath is a path which MUST be found within one of the internally set filemounts, $this->mounts
* @return string The processed input path
*/
function blindPath($thePath) {
$k=$this->checkPathAgainstMounts($thePath);
if ($k) {
$name='';
$name.='['.$this->mounts[$k]['name'].']: ';
$name.=substr($thePath,strlen($this->mounts[$k]['path']));
return $name;
}
}
/**
* Find temporary folder
* Finds the first $this->tempFN ('_temp_' usually) -folder in the internal array of filemounts, $this->mounts
*
* @return string Returns the path if found, otherwise nothing if error.
*/
function findTempFolder() {
if ($this->tempFN && is_array($this->mounts)) {
reset ($this->mounts);
while(list($k,$val)=each($this->mounts)) {
$tDir = $val['path'].$this->tempFN;
if (@is_dir($tDir)) {
return $tDir;
}
}
}
}
/*********************
*
* Cleaning functions
*
*********************/
/**
* Removes all dots, slashes and spaces after a path...
*
* @param string Input string
* @return string Output string
*/
function cleanDirectoryName($theDir) {
return preg_replace('/[\/\. ]*$/','',$this->rmDoubleSlash($theDir));
}
/**
* Converts any double slashes (//) to a single slash (/)
*
* @param string Input value
* @return string Returns the converted string
*/
function rmDoubleSlash($string) {
return str_replace('//','/',$string);
}
/**
* Returns a string which has a slash '/' appended if it doesn't already have that slash
*
* @param string Input string
* @return string Output string with a slash in the end (if not already there)
*/
function slashPath($path) {
if (substr($path,-1)!='/') {
return $path.'/';
}
return $path;
}
/**
* Returns a string where any character not matching [.a-zA-Z0-9_-] is substituted by '_'
*
* @param string Input string, typically the body of a filename
* @param string Charset of the a filename (defaults to current charset; depending on context)
* @return string Output string with any characters not matching [.a-zA-Z0-9_-] is substituted by '_'
*/
function cleanFileName($fileName,$charset='') {
if (!is_object($this->csConvObj)) {
if (TYPO3_MODE=='FE') {
$this->csConvObj = &$GLOBALS['TSFE']->csConvObj;
} elseif (is_object($GLOBALS['LANG'])) { // BE assumed:
$this->csConvObj = &$GLOBALS['LANG']->csConvObj;
} else { // The object may not exist yet, so we need to create it now. Happens in the Install Tool for example.
$this->csConvObj = &t3lib_div::makeInstance('t3lib_cs');
}
}
if (!$charset) {
if (TYPO3_MODE=='FE') {
$charset = $GLOBALS['TSFE']->renderCharset;
} elseif (is_object($GLOBALS['LANG'])) { // BE assumed:
$charset = $GLOBALS['LANG']->charSet;
} else { // best guess
$charset = $GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset'];
}
}
if ($charset) {
$fileName = $this->csConvObj->specCharsToASCII($charset,$fileName);
}
return preg_replace('/[^.[:alnum:]_-]/','_',trim($fileName));
}
/**
* Formats an integer, $sizeInBytes, to Mb or Kb or just bytes
*
* @param integer Bytes to be formated
* @return string Formatted with M,K or appended.
*/
function formatSize($sizeInBytes) {
if ($sizeInBytes>900) {
if ($sizeInBytes>900000) { // MB
$val = $sizeInBytes/(1024*1024);
return number_format($val, (($val<20)?1:0), '.', '').' M';
} else { // KB
$val = $sizeInBytes/(1024);
return number_format($val, (($val<20)?1:0), '.', '').' K';
}
} else { // Bytes
return $sizeInBytes.' ';
}
}
}
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_basicfilefunc.php']) {
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_basicfilefunc.php']);
}
?>
|