2005-08-21 06:49:02 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2005-09-17 02:22:07 +00:00
|
|
|
* Convenience class for handling directories.
|
2005-12-27 03:33:44 +00:00
|
|
|
*
|
2005-08-21 06:49:02 +00:00
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2007-02-02 10:39:45 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
2008-01-01 22:18:17 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
2006-05-26 05:29:17 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-23 21:57:26 +00:00
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
2005-08-21 06:49:02 +00:00
|
|
|
*
|
2005-12-27 03:33:44 +00:00
|
|
|
* @filesource
|
2008-01-01 22:18:17 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-02-02 10:39:45 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2007-02-02 10:39:45 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2006-05-26 05:29:17 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-08-21 06:49:02 +00:00
|
|
|
*/
|
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Included libraries.
|
|
|
|
*
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
if (!class_exists('Object')) {
|
2007-05-14 07:09:42 +00:00
|
|
|
uses ('object');
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2005-08-21 06:49:02 +00:00
|
|
|
* Folder structure browser, lists folders and files.
|
|
|
|
*
|
|
|
|
* Long description for class
|
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2005-08-21 06:49:02 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
class Folder extends Object{
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Path to Folder.
|
|
|
|
*
|
|
|
|
* @var string
|
2007-05-22 02:38:12 +00:00
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $path = null;
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Sortedness.
|
|
|
|
*
|
|
|
|
* @var boolean
|
2007-05-22 02:38:12 +00:00
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
var $sort = false;
|
2007-05-14 07:09:42 +00:00
|
|
|
/**
|
|
|
|
* mode to be used on create.
|
|
|
|
*
|
|
|
|
* @var boolean
|
2007-05-22 02:38:12 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
2007-09-30 07:45:34 +00:00
|
|
|
var $mode = '0755';
|
2007-05-14 07:09:42 +00:00
|
|
|
/**
|
|
|
|
* holds messages from last method.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__messages = array();
|
|
|
|
/**
|
|
|
|
* holds errors from last method.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__errors = false;
|
2007-09-17 06:02:44 +00:00
|
|
|
/**
|
|
|
|
* holds array of complete directory paths.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__directories;
|
|
|
|
/**
|
|
|
|
* holds array of complete file paths.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
var $__files;
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Constructor.
|
|
|
|
*
|
2007-05-20 07:03:16 +00:00
|
|
|
* @param string $path Path to folder
|
2007-10-22 16:54:36 +00:00
|
|
|
* @param boolean $create Create folder if not found
|
2007-05-20 07:03:16 +00:00
|
|
|
* @param mixed $mode Mode (CHMOD) to apply to created folder, false to ignore
|
2006-02-18 23:42:21 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function __construct($path = false, $create = false, $mode = false) {
|
|
|
|
parent::__construct();
|
|
|
|
if (empty($path)) {
|
2007-05-27 00:30:43 +00:00
|
|
|
$path = TMP;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-06-20 06:15:35 +00:00
|
|
|
if ($mode) {
|
2007-07-07 19:30:34 +00:00
|
|
|
$this->mode = intval($mode, 8);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
2008-05-18 11:26:00 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
if (!file_exists($path) && $create == true) {
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->create($path, $this->mode);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-09-30 07:45:34 +00:00
|
|
|
if (!$this->isAbsolute($path)) {
|
2007-08-04 05:31:36 +00:00
|
|
|
$path = realpath($path);
|
|
|
|
}
|
2008-03-26 04:05:05 +00:00
|
|
|
if (!empty($path)) {
|
|
|
|
$this->cd($path);
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Return current path.
|
|
|
|
*
|
|
|
|
* @return string Current path
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function pwd() {
|
|
|
|
return $this->path;
|
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Change directory to $desired_path.
|
|
|
|
*
|
|
|
|
* @param string $desired_path Path to the directory to change to
|
|
|
|
* @return string The new path. Returns false on failure
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
*/
|
2007-05-14 07:09:42 +00:00
|
|
|
function cd($path) {
|
2007-06-23 04:48:29 +00:00
|
|
|
$path = $this->realpath($path);
|
2007-06-20 06:15:35 +00:00
|
|
|
if (is_dir($path) && file_exists($path)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
return $this->path = $path;
|
|
|
|
}
|
|
|
|
return false;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Returns an array of the contents of the current directory, or false on failure.
|
|
|
|
* The returned array holds two arrays: one of dirs and one of files.
|
|
|
|
*
|
2007-10-22 16:54:36 +00:00
|
|
|
* @param boolean $sort
|
2007-05-14 07:09:42 +00:00
|
|
|
* @param mixed $exceptions either an array or boolean true will no grab dot files
|
2007-05-20 07:03:16 +00:00
|
|
|
* @return mixed Contents of current directory as an array, false on failure
|
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
*/
|
2007-05-14 07:09:42 +00:00
|
|
|
function read($sort = true, $exceptions = false) {
|
2006-12-12 22:11:24 +00:00
|
|
|
$dirs = $files = array();
|
2008-04-02 19:35:14 +00:00
|
|
|
|
|
|
|
if ($dir = @opendir($this->path)) {
|
2007-06-20 06:15:35 +00:00
|
|
|
while (false !== ($n = readdir($dir))) {
|
2007-05-14 07:09:42 +00:00
|
|
|
$item = false;
|
2007-06-20 06:15:35 +00:00
|
|
|
if (is_array($exceptions)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
if (!in_array($n, $exceptions)) {
|
|
|
|
$item = $n;
|
|
|
|
}
|
2007-10-16 09:05:25 +00:00
|
|
|
} elseif ((!preg_match('/^\\.+$/', $n) && $exceptions == false) || ($exceptions == true && !preg_match('/^\\.(.*)$/', $n))) {
|
2007-05-14 07:09:42 +00:00
|
|
|
$item = $n;
|
|
|
|
}
|
|
|
|
|
2007-09-11 19:41:57 +00:00
|
|
|
if ($item !== false) {
|
2007-06-20 06:15:35 +00:00
|
|
|
if (is_dir($this->addPathElement($this->path, $item))) {
|
2007-05-14 07:09:42 +00:00
|
|
|
$dirs[] = $item;
|
2006-05-26 05:29:17 +00:00
|
|
|
} else {
|
2007-05-14 07:09:42 +00:00
|
|
|
$files[] = $item;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($sort || $this->sort) {
|
|
|
|
sort ($dirs);
|
|
|
|
sort ($files);
|
|
|
|
}
|
|
|
|
closedir ($dir);
|
2006-12-13 04:39:26 +00:00
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
return array($dirs, $files);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Returns an array of all matching files in current directory.
|
|
|
|
*
|
|
|
|
* @param string $pattern Preg_match pattern (Defaults to: .*)
|
2007-05-20 07:03:16 +00:00
|
|
|
* @return array Files that match given pattern
|
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
*/
|
2007-10-20 22:03:58 +00:00
|
|
|
function find($regexp_pattern = '.*', $sort = false) {
|
2007-10-21 15:39:42 +00:00
|
|
|
$data = $this->read($sort);
|
2006-05-26 05:29:17 +00:00
|
|
|
|
|
|
|
if (!is_array($data)) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2006-12-12 22:11:24 +00:00
|
|
|
list($dirs, $files) = $data;
|
2006-05-26 05:29:17 +00:00
|
|
|
$found = array();
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($files as $file) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (preg_match("/^{$regexp_pattern}$/i", $file)) {
|
|
|
|
$found[] = $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $found;
|
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Returns an array of all matching files in and below current directory.
|
|
|
|
*
|
|
|
|
* @param string $pattern Preg_match pattern (Defaults to: .*)
|
|
|
|
* @return array Files matching $pattern
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
*/
|
2007-10-20 22:03:58 +00:00
|
|
|
function findRecursive($pattern = '.*', $sort = false) {
|
2006-05-26 05:29:17 +00:00
|
|
|
$startsOn = $this->path;
|
2007-10-20 22:03:58 +00:00
|
|
|
$out = $this->_findRecursive($pattern, $sort);
|
2006-05-26 05:29:17 +00:00
|
|
|
$this->cd($startsOn);
|
|
|
|
return $out;
|
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Private helper function for findRecursive.
|
|
|
|
*
|
2007-05-20 07:03:16 +00:00
|
|
|
* @param string $pattern Pattern to match against
|
2006-02-18 23:42:21 +00:00
|
|
|
* @return array Files matching pattern
|
|
|
|
* @access private
|
|
|
|
*/
|
2007-10-20 22:03:58 +00:00
|
|
|
function _findRecursive($pattern, $sort = false) {
|
2007-10-21 15:39:42 +00:00
|
|
|
list($dirs, $files) = $this->read($sort);
|
2006-12-13 04:39:26 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
$found = array();
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($files as $file) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (preg_match("/^{$pattern}$/i", $file)) {
|
|
|
|
$found[] = $this->addPathElement($this->path, $file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$start = $this->path;
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($dirs as $dir) {
|
2006-05-26 05:29:17 +00:00
|
|
|
$this->cd($this->addPathElement($start, $dir));
|
|
|
|
$found = array_merge($found, $this->findRecursive($pattern));
|
|
|
|
}
|
|
|
|
return $found;
|
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Returns true if given $path is a Windows path.
|
|
|
|
*
|
|
|
|
* @param string $path Path to check
|
2007-10-22 16:09:35 +00:00
|
|
|
* @return boolean true if windows path, false otherwise
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
* @static
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function isWindowsPath($path) {
|
2007-10-16 09:05:25 +00:00
|
|
|
if (preg_match('/^[A-Z]:\\\\/i', $path)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Returns true if given $path is an absolute path.
|
|
|
|
*
|
|
|
|
* @param string $path Path to check
|
2007-10-22 05:52:20 +00:00
|
|
|
* @return bool
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
* @static
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function isAbsolute($path) {
|
2007-10-16 09:05:25 +00:00
|
|
|
$match = preg_match('/^\\//', $path) || preg_match('/^[A-Z]:\\\\/i', $path);
|
2006-05-26 05:29:17 +00:00
|
|
|
return $match;
|
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
/**
|
|
|
|
* Returns a correct set of slashes for given $path. (\\ for Windows paths and / for other paths.)
|
|
|
|
*
|
|
|
|
* @param string $path Path to check
|
|
|
|
* @return string Set of slashes ("\\" or "/")
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function normalizePath($path) {
|
2007-12-21 02:54:45 +00:00
|
|
|
if (Folder::isWindowsPath($path)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
return '\\';
|
|
|
|
}
|
|
|
|
return '/';
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Returns a correct set of slashes for given $path. (\\ for Windows paths and / for other paths.)
|
|
|
|
*
|
|
|
|
* @param string $path Path to check
|
|
|
|
* @return string Set of slashes ("\\" or "/")
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
* @static
|
|
|
|
*/
|
2007-06-20 07:49:50 +00:00
|
|
|
function correctSlashFor($path) {
|
2008-05-18 11:26:00 +00:00
|
|
|
return Folder::normalizePath($path);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Returns $path with added terminating slash (corrected for Windows or other OS).
|
|
|
|
*
|
|
|
|
* @param string $path Path to check
|
2007-05-20 07:03:16 +00:00
|
|
|
* @return string Path with ending slash
|
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
* @static
|
|
|
|
*/
|
2007-05-14 07:09:42 +00:00
|
|
|
function slashTerm($path) {
|
2007-12-21 02:54:45 +00:00
|
|
|
if (Folder::isSlashTerm($path)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
return $path;
|
|
|
|
}
|
2007-12-21 02:54:45 +00:00
|
|
|
return $path . Folder::correctSlashFor($path);
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
/**
|
2006-02-18 23:42:21 +00:00
|
|
|
* Returns $path with $element added, with correct slash in-between.
|
|
|
|
*
|
2007-05-20 07:03:16 +00:00
|
|
|
* @param string $path Path
|
|
|
|
* @param string $element Element to and at end of path
|
|
|
|
* @return string Combined path
|
|
|
|
* @access public
|
2006-02-18 23:42:21 +00:00
|
|
|
* @static
|
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function addPathElement($path, $element) {
|
|
|
|
return $this->slashTerm($path) . $element;
|
|
|
|
}
|
2005-10-03 04:48:00 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Returns true if the File is in a given CakePath.
|
2005-10-03 04:48:00 +00:00
|
|
|
*
|
2007-10-22 05:52:20 +00:00
|
|
|
* @return bool
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2005-10-03 04:48:00 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function inCakePath($path = '') {
|
|
|
|
$dir = substr($this->slashTerm(ROOT), 0, -1);
|
2007-08-04 05:31:36 +00:00
|
|
|
$newdir = $dir . $path;
|
2008-05-18 11:26:00 +00:00
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
return $this->inPath($newdir);
|
|
|
|
}
|
2005-10-03 04:48:00 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Returns true if the File is in given path.
|
2005-10-03 04:48:00 +00:00
|
|
|
*
|
2007-10-22 05:52:20 +00:00
|
|
|
* @return bool
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2005-10-03 04:48:00 +00:00
|
|
|
*/
|
2007-06-23 04:48:29 +00:00
|
|
|
function inPath($path = '', $reverse = false) {
|
2007-08-04 05:31:36 +00:00
|
|
|
$dir = $this->slashTerm($path);
|
|
|
|
$current = $this->slashTerm($this->pwd());
|
2008-05-18 11:26:00 +00:00
|
|
|
|
2007-06-23 04:48:29 +00:00
|
|
|
if (!$reverse) {
|
2007-08-04 05:31:36 +00:00
|
|
|
$return = preg_match('/^(.*)' . preg_quote($dir, '/') . '(.*)/', $current);
|
2007-06-23 04:48:29 +00:00
|
|
|
} else {
|
2007-08-04 05:31:36 +00:00
|
|
|
$return = preg_match('/^(.*)' . preg_quote($current, '/') . '(.*)/', $dir);
|
2007-06-23 04:48:29 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
if ($return == 1) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2006-12-13 02:28:36 +00:00
|
|
|
/**
|
|
|
|
* Change the mode on a directory structure recursively.
|
|
|
|
*
|
2007-12-21 02:54:45 +00:00
|
|
|
* @param string $path The path to chmod
|
2007-10-22 16:11:12 +00:00
|
|
|
* @param integer $mode octal value 0755
|
2007-10-22 16:54:36 +00:00
|
|
|
* @param boolean $recursive chmod recursively
|
2007-09-17 06:02:44 +00:00
|
|
|
* @param array $exceptions array of files, directories to skip
|
2007-10-22 16:09:35 +00:00
|
|
|
* @return boolean Returns TRUE on success, FALSE on failure
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2006-12-13 02:28:36 +00:00
|
|
|
*/
|
2007-09-17 06:02:44 +00:00
|
|
|
function chmod($path, $mode = false, $recursive = true, $exceptions = array()) {
|
|
|
|
if (!$mode) {
|
|
|
|
$mode = $this->mode;
|
|
|
|
}
|
2006-12-13 02:28:36 +00:00
|
|
|
|
2007-09-17 06:02:44 +00:00
|
|
|
if ($recursive === false && is_dir($path)) {
|
|
|
|
if (chmod($path, intval($mode, 8))) {
|
|
|
|
$this->__messages[] = sprintf(__('%s changed to %s', true), $path, $mode);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
$this->__errors[] = sprintf(__('%s NOT changed to %s', true), $path, $mode);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_dir($path)) {
|
|
|
|
list($paths) = $this->tree($path);
|
|
|
|
|
|
|
|
foreach ($paths as $key => $fullpath) {
|
|
|
|
$check = explode(DS, $fullpath);
|
|
|
|
$count = count($check);
|
|
|
|
|
|
|
|
if (in_array($check[$count - 1], $exceptions)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chmod($fullpath, intval($mode, 8))) {
|
|
|
|
$this->__messages[] = sprintf(__('%s changed to %s', true), $fullpath, $mode);
|
|
|
|
} else {
|
|
|
|
$this->__errors[] = sprintf(__('%s NOT changed to %s', true), $fullpath, $mode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (empty($this->__errors)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Returns an array of nested directories and files in each directory
|
|
|
|
*
|
|
|
|
* @param string $path the directory path to build the tree from
|
Closes #2119 Only define clone() in PHP4 when it hasn't been already defined.
Closes #2213, Support multiple plugin paths.
Closes #2234, filepaths to behavior classes should be cached in class.paths.php also
Closes #2345, ability to group components into subfolders
Closes #2645, Improvement to basic.php for class loading.
Fixes #3526, Cache::write, when using just the config name, it fails.
Fixes #3559, loading plugin model as assoc don't work.
Closes #3567 Controller Folders (Note this does not need routing to work, but controller names can not conflict with others in the same application so naming must still be unique)
Fixes #3579, email.php component: Parse error with php 4.
Adding new class and file importer.
Updated most of the core to use the importer.
Added ClassRegsitry::init() that will create and instance of an object and store it in the registry.
Deprecated most of the load functions in basics.php
Plugin model loading now forces using the dot notation, to use models within a plugin, all the model associations must be in the PluginName.Model syntax, if this is not used, the plugin will look for the models in the main app/models directory first, if not found then it will search the plugin directories recursively until it finds a model.
var $belongsTo = array('SomeModel'); will look for some_model.php in the app/models
var $belongsTo = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $belongsTo = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
The controllers of the plugin will still look for the default models inside the plugin if var $uses is not set:
var $uses = array('SomeModel'); will look for some_model.php in the app/models
var $uses = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $uses = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
All of the above will work between plugins and main app
These changes also allow placing model and controllers is sub directories
Removed old class.paths.php file generation
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6001 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-11-16 09:35:19 +00:00
|
|
|
* @param boolean $hidden return hidden files and directories
|
|
|
|
* @param string $type either file or dir. null returns both files and directories
|
2007-10-16 09:05:25 +00:00
|
|
|
* @return mixed array of nested directories and files in each directory
|
2007-09-17 06:02:44 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
Closes #2119 Only define clone() in PHP4 when it hasn't been already defined.
Closes #2213, Support multiple plugin paths.
Closes #2234, filepaths to behavior classes should be cached in class.paths.php also
Closes #2345, ability to group components into subfolders
Closes #2645, Improvement to basic.php for class loading.
Fixes #3526, Cache::write, when using just the config name, it fails.
Fixes #3559, loading plugin model as assoc don't work.
Closes #3567 Controller Folders (Note this does not need routing to work, but controller names can not conflict with others in the same application so naming must still be unique)
Fixes #3579, email.php component: Parse error with php 4.
Adding new class and file importer.
Updated most of the core to use the importer.
Added ClassRegsitry::init() that will create and instance of an object and store it in the registry.
Deprecated most of the load functions in basics.php
Plugin model loading now forces using the dot notation, to use models within a plugin, all the model associations must be in the PluginName.Model syntax, if this is not used, the plugin will look for the models in the main app/models directory first, if not found then it will search the plugin directories recursively until it finds a model.
var $belongsTo = array('SomeModel'); will look for some_model.php in the app/models
var $belongsTo = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $belongsTo = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
The controllers of the plugin will still look for the default models inside the plugin if var $uses is not set:
var $uses = array('SomeModel'); will look for some_model.php in the app/models
var $uses = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $uses = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
All of the above will work between plugins and main app
These changes also allow placing model and controllers is sub directories
Removed old class.paths.php file generation
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6001 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-11-16 09:35:19 +00:00
|
|
|
function tree($path, $hidden = true, $type = null) {
|
2007-10-14 19:18:24 +00:00
|
|
|
$path = rtrim($path, DS);
|
2007-09-17 06:02:44 +00:00
|
|
|
$this->__files = array();
|
|
|
|
$this->__directories = array($path);
|
|
|
|
$directories = array();
|
|
|
|
|
|
|
|
while (count($this->__directories)) {
|
|
|
|
$dir = array_pop($this->__directories);
|
2007-10-16 09:05:25 +00:00
|
|
|
$this->__tree($dir, $hidden);
|
2007-09-17 06:02:44 +00:00
|
|
|
array_push($directories, $dir);
|
2007-05-27 00:30:43 +00:00
|
|
|
|
2007-05-20 05:25:18 +00:00
|
|
|
}
|
Closes #2119 Only define clone() in PHP4 when it hasn't been already defined.
Closes #2213, Support multiple plugin paths.
Closes #2234, filepaths to behavior classes should be cached in class.paths.php also
Closes #2345, ability to group components into subfolders
Closes #2645, Improvement to basic.php for class loading.
Fixes #3526, Cache::write, when using just the config name, it fails.
Fixes #3559, loading plugin model as assoc don't work.
Closes #3567 Controller Folders (Note this does not need routing to work, but controller names can not conflict with others in the same application so naming must still be unique)
Fixes #3579, email.php component: Parse error with php 4.
Adding new class and file importer.
Updated most of the core to use the importer.
Added ClassRegsitry::init() that will create and instance of an object and store it in the registry.
Deprecated most of the load functions in basics.php
Plugin model loading now forces using the dot notation, to use models within a plugin, all the model associations must be in the PluginName.Model syntax, if this is not used, the plugin will look for the models in the main app/models directory first, if not found then it will search the plugin directories recursively until it finds a model.
var $belongsTo = array('SomeModel'); will look for some_model.php in the app/models
var $belongsTo = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $belongsTo = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
The controllers of the plugin will still look for the default models inside the plugin if var $uses is not set:
var $uses = array('SomeModel'); will look for some_model.php in the app/models
var $uses = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $uses = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
All of the above will work between plugins and main app
These changes also allow placing model and controllers is sub directories
Removed old class.paths.php file generation
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6001 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-11-16 09:35:19 +00:00
|
|
|
if ($type === null) {
|
|
|
|
return array($directories, $this->__files);
|
|
|
|
}
|
|
|
|
if ($type === 'dir') {
|
|
|
|
return $directories;
|
|
|
|
}
|
|
|
|
return $this->__files;
|
2007-09-17 06:02:44 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Private method to list directories and files in each directory
|
|
|
|
*
|
|
|
|
* @param string $path
|
2007-10-16 09:05:25 +00:00
|
|
|
* @param = boolean $hidden
|
2007-09-17 06:02:44 +00:00
|
|
|
* @access private
|
|
|
|
*/
|
2007-10-16 09:05:25 +00:00
|
|
|
function __tree($path, $hidden) {
|
2008-04-02 19:35:14 +00:00
|
|
|
if (is_dir($path) && $dirHandle = @opendir($path)) {
|
2007-09-17 06:02:44 +00:00
|
|
|
while (false !== ($item = @readdir($dirHandle))) {
|
2007-10-16 09:05:25 +00:00
|
|
|
$found = false;
|
2006-12-13 04:39:26 +00:00
|
|
|
|
2007-10-16 09:05:25 +00:00
|
|
|
if (($hidden === true && $item != '.' && $item != '..') || ($hidden === false && !preg_match('/^\\.(.*)$/', $item))) {
|
|
|
|
$found = $path . DS . $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($found !== false) {
|
|
|
|
if (is_dir($found)) {
|
|
|
|
array_push($this->__directories, $found);
|
2007-05-14 07:09:42 +00:00
|
|
|
} else {
|
2007-10-16 09:05:25 +00:00
|
|
|
array_push($this->__files, $found);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
|
|
|
}
|
2006-12-13 02:28:36 +00:00
|
|
|
}
|
Closes #2119 Only define clone() in PHP4 when it hasn't been already defined.
Closes #2213, Support multiple plugin paths.
Closes #2234, filepaths to behavior classes should be cached in class.paths.php also
Closes #2345, ability to group components into subfolders
Closes #2645, Improvement to basic.php for class loading.
Fixes #3526, Cache::write, when using just the config name, it fails.
Fixes #3559, loading plugin model as assoc don't work.
Closes #3567 Controller Folders (Note this does not need routing to work, but controller names can not conflict with others in the same application so naming must still be unique)
Fixes #3579, email.php component: Parse error with php 4.
Adding new class and file importer.
Updated most of the core to use the importer.
Added ClassRegsitry::init() that will create and instance of an object and store it in the registry.
Deprecated most of the load functions in basics.php
Plugin model loading now forces using the dot notation, to use models within a plugin, all the model associations must be in the PluginName.Model syntax, if this is not used, the plugin will look for the models in the main app/models directory first, if not found then it will search the plugin directories recursively until it finds a model.
var $belongsTo = array('SomeModel'); will look for some_model.php in the app/models
var $belongsTo = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $belongsTo = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
The controllers of the plugin will still look for the default models inside the plugin if var $uses is not set:
var $uses = array('SomeModel'); will look for some_model.php in the app/models
var $uses = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $uses = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
All of the above will work between plugins and main app
These changes also allow placing model and controllers is sub directories
Removed old class.paths.php file generation
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6001 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-11-16 09:35:19 +00:00
|
|
|
closedir($dirHandle);
|
2006-12-13 02:28:36 +00:00
|
|
|
}
|
2006-12-13 04:39:26 +00:00
|
|
|
}
|
2005-10-03 04:48:00 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Create a directory structure recursively.
|
2005-10-03 04:48:00 +00:00
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $pathname The directory structure to create
|
2007-10-22 16:11:12 +00:00
|
|
|
* @param integer $mode octal value 0755
|
2007-10-22 16:09:35 +00:00
|
|
|
* @return boolean Returns TRUE on success, FALSE on failure
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2005-10-03 04:48:00 +00:00
|
|
|
*/
|
2007-05-14 07:09:42 +00:00
|
|
|
function create($pathname, $mode = false) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (is_dir($pathname) || empty($pathname)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
if (!$mode) {
|
2007-05-14 07:09:42 +00:00
|
|
|
$mode = $this->mode;
|
|
|
|
}
|
|
|
|
|
2006-05-26 05:29:17 +00:00
|
|
|
if (is_file($pathname)) {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__errors[] = sprintf(__('%s is a file', true), $pathname);
|
2007-05-14 07:09:42 +00:00
|
|
|
return true;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2006-12-13 02:28:36 +00:00
|
|
|
$nextPathname = substr($pathname, 0, strrpos($pathname, DS));
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2007-05-14 07:09:42 +00:00
|
|
|
if ($this->create($nextPathname, $mode)) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (!file_exists($pathname)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
if (mkdir($pathname, intval($mode, 8))) {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__messages[] = sprintf(__('%s created', true), $pathname);
|
2007-05-14 07:09:42 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__errors[] = sprintf(__('%s NOT created', true), $pathname);
|
2007-05-14 07:09:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
2006-12-13 02:28:36 +00:00
|
|
|
return true;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2005-10-03 04:48:00 +00:00
|
|
|
/**
|
2005-10-18 22:27:39 +00:00
|
|
|
* Returns the size in bytes of this Folder.
|
2005-10-03 04:48:00 +00:00
|
|
|
*
|
2006-05-26 05:29:17 +00:00
|
|
|
* @param string $directory Path to directory
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2005-10-03 04:48:00 +00:00
|
|
|
*/
|
2006-05-26 05:29:17 +00:00
|
|
|
function dirsize() {
|
|
|
|
$size = 0;
|
|
|
|
$directory = $this->slashTerm($this->path);
|
|
|
|
$stack = array($directory);
|
|
|
|
$count = count($stack);
|
2007-06-20 06:15:35 +00:00
|
|
|
for ($i = 0, $j = $count; $i < $j; ++$i) {
|
2006-05-26 05:29:17 +00:00
|
|
|
if (is_file($stack[$i])) {
|
|
|
|
$size += filesize($stack[$i]);
|
|
|
|
} elseif (is_dir($stack[$i])) {
|
|
|
|
$dir = dir($stack[$i]);
|
2007-06-20 06:15:35 +00:00
|
|
|
if ($dir) {
|
|
|
|
while (false !== ($entry = $dir->read())) {
|
2007-05-14 07:09:42 +00:00
|
|
|
if ($entry == '.' || $entry == '..') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$add = $stack[$i] . $entry;
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2007-05-14 07:09:42 +00:00
|
|
|
if (is_dir($stack[$i] . $entry)) {
|
|
|
|
$add = $this->slashTerm($add);
|
|
|
|
}
|
|
|
|
$stack[ ]= $add;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
$dir->close();
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$j = count($stack);
|
|
|
|
}
|
|
|
|
return $size;
|
|
|
|
}
|
2006-12-13 04:39:26 +00:00
|
|
|
/**
|
|
|
|
* Recursively Remove directories if system allow.
|
|
|
|
*
|
2007-05-20 07:03:16 +00:00
|
|
|
* @param string $path Path of directory to delete
|
2007-10-22 16:09:35 +00:00
|
|
|
* @return boolean Success
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2006-12-13 04:39:26 +00:00
|
|
|
*/
|
2008-03-09 22:14:12 +00:00
|
|
|
function delete($path = null) {
|
|
|
|
if (!$path) {
|
|
|
|
$path = $this->pwd();
|
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
$path = $this->slashTerm($path);
|
|
|
|
if (is_dir($path) === true) {
|
|
|
|
$files = glob($path . "*", GLOB_NOSORT);
|
|
|
|
$normal_files = glob($path . "*");
|
|
|
|
$hidden_files = glob($path . "\.?*");
|
|
|
|
$files = array_merge($normal_files, $hidden_files);
|
2007-06-20 06:15:35 +00:00
|
|
|
if (is_array($files)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
foreach ($files as $file) {
|
|
|
|
if (preg_match("/(\.|\.\.)$/", $file)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (is_file($file) === true) {
|
2008-04-02 19:35:14 +00:00
|
|
|
if (@unlink($file)) {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__messages[] = sprintf(__('%s removed', true), $path);
|
2007-05-14 07:09:42 +00:00
|
|
|
} else {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__errors[] = sprintf(__('%s NOT removed', true), $path);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
|
|
|
} elseif (is_dir($file) === true) {
|
2007-06-20 06:15:35 +00:00
|
|
|
if ($this->delete($file) === false) {
|
2007-05-14 07:09:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2006-12-13 04:39:26 +00:00
|
|
|
}
|
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
$path = substr($path, 0, strlen($path) - 1);
|
2007-06-20 06:15:35 +00:00
|
|
|
if (rmdir($path) === false) {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__errors[] = sprintf(__('%s NOT removed', true), $path);
|
2006-12-13 04:39:26 +00:00
|
|
|
return false;
|
2007-05-14 07:09:42 +00:00
|
|
|
} else {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__messages[] = sprintf(__('%s removed', true), $path);
|
2006-12-13 04:39:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
/**
|
|
|
|
* Recursive directory copy.
|
|
|
|
*
|
|
|
|
* @param array $options (to, from, chmod, skip)
|
2007-10-22 05:52:20 +00:00
|
|
|
* @return bool
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function copy($options = array()) {
|
|
|
|
$to = null;
|
2007-06-20 06:15:35 +00:00
|
|
|
if (is_string($options)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
$to = $options;
|
|
|
|
$options = array();
|
|
|
|
}
|
2007-12-08 06:08:03 +00:00
|
|
|
$options = array_merge(array('to'=> $to, 'from'=> $this->path, 'mode'=> $this->mode, 'skip'=> array()), $options);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
|
|
|
$fromDir = $options['from'];
|
|
|
|
$toDir = $options['to'];
|
|
|
|
$mode = $options['mode'];
|
|
|
|
|
|
|
|
if (!$this->cd($fromDir)) {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__errors[] = sprintf(__('%s not found', true), $fromDir);
|
2007-05-14 07:09:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
if (!is_dir($toDir)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->mkdir($toDir, $mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_writable($toDir)) {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__errors[] = sprintf(__('%s not writable', true), $toDir);
|
2007-05-14 07:09:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-12-08 06:08:03 +00:00
|
|
|
$exceptions = array_merge(array('.','..','.svn'), $options['skip']);
|
2008-04-02 19:35:14 +00:00
|
|
|
|
|
|
|
if ($handle = @opendir($fromDir)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
while (false !== ($item = readdir($handle))) {
|
|
|
|
if (!in_array($item, $exceptions)) {
|
|
|
|
$from = $this->addPathElement($fromDir, $item);
|
|
|
|
$to = $this->addPathElement($toDir, $item);
|
|
|
|
if (is_file($from)) {
|
|
|
|
if (copy($from, $to)) {
|
|
|
|
chmod($to, intval($mode, 8));
|
|
|
|
touch($to, filemtime($from));
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__messages[] = sprintf(__('%s copied to %s', true), $from, $to);
|
2007-05-14 07:09:42 +00:00
|
|
|
} else {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__errors[] = sprintf(__('%s NOT copied to %s', true), $from, $to);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_dir($from) && !file_exists($to)) {
|
|
|
|
if (mkdir($to, intval($mode, 8))) {
|
|
|
|
chmod($to, intval($mode, 8));
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__messages[] = sprintf(__('%s created', true), $to);
|
2007-12-08 06:08:03 +00:00
|
|
|
$options = array_merge($options, array('to'=> $to, 'from'=> $from));
|
2007-05-14 07:09:42 +00:00
|
|
|
$this->copy($options);
|
|
|
|
} else {
|
2007-05-20 07:03:16 +00:00
|
|
|
$this->__errors[] = sprintf(__('%s not created', true), $to);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($handle);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
if (!empty($this->__errors)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Recursive directory move.
|
|
|
|
*
|
|
|
|
* @param array $options (to, from, chmod, skip)
|
2007-10-22 16:09:35 +00:00
|
|
|
* @return boolean Success
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function move($options) {
|
|
|
|
$to = null;
|
2007-06-20 06:15:35 +00:00
|
|
|
if (is_string($options)) {
|
2007-05-14 07:09:42 +00:00
|
|
|
$to = $options;
|
2007-12-08 06:08:03 +00:00
|
|
|
$options = (array)$options;
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
2007-12-08 06:08:03 +00:00
|
|
|
$options = array_merge(array('to'=> $to, 'from'=> $this->path, 'mode'=> $this->mode, 'skip'=> array()), $options);
|
2007-05-14 07:09:42 +00:00
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
if ($this->copy($options)) {
|
|
|
|
if ($this->delete($options['from'])) {
|
2007-05-14 07:09:42 +00:00
|
|
|
return $this->cd($options['to']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* get messages from latest method
|
|
|
|
*
|
|
|
|
* @return array
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function messages() {
|
|
|
|
return $this->__messages;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* get error from latest method
|
|
|
|
*
|
|
|
|
* @return array
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function errors() {
|
|
|
|
return $this->__errors;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* nix flavored alias
|
2007-05-20 07:03:16 +00:00
|
|
|
*
|
2007-05-14 07:09:42 +00:00
|
|
|
* @see read
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function ls($sort = true, $exceptions = false) {
|
2007-05-14 14:48:35 +00:00
|
|
|
return $this->read($sort, $exceptions);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* nix flavored alias
|
2007-05-20 07:03:16 +00:00
|
|
|
*
|
2007-05-14 07:09:42 +00:00
|
|
|
* @see create
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function mkdir($pathname, $mode = 0755) {
|
2007-05-14 14:48:35 +00:00
|
|
|
return $this->create($pathname, $mode);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* nix flavored alias
|
2007-05-20 07:03:16 +00:00
|
|
|
*
|
2007-05-14 07:09:42 +00:00
|
|
|
* @see copy
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function cp($options) {
|
2007-05-14 14:48:35 +00:00
|
|
|
return $this->copy($options);
|
2007-05-20 07:03:16 +00:00
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
/**
|
|
|
|
* nix flavored alias
|
2007-05-20 07:03:16 +00:00
|
|
|
*
|
2007-05-14 07:09:42 +00:00
|
|
|
* @see move
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function mv($options) {
|
2007-05-14 14:48:35 +00:00
|
|
|
return $this->move($options);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* nix flavored alias
|
2007-05-20 07:03:16 +00:00
|
|
|
*
|
2007-05-14 07:09:42 +00:00
|
|
|
* @see delete
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function rm($path) {
|
2007-05-14 14:48:35 +00:00
|
|
|
return $this->delete($path);
|
2007-05-20 07:03:16 +00:00
|
|
|
}
|
2007-06-23 04:48:29 +00:00
|
|
|
/**
|
|
|
|
* Get the real path (taking ".." and such into account)
|
|
|
|
*
|
|
|
|
* @param string $path Path to resolve
|
|
|
|
* @return string The resolved path
|
|
|
|
*/
|
|
|
|
function realpath($path) {
|
2008-05-19 04:45:39 +00:00
|
|
|
$path = str_replace('/', DS, trim($path));
|
2007-06-23 04:48:29 +00:00
|
|
|
if (strpos($path, '..') === false) {
|
2007-08-04 05:31:36 +00:00
|
|
|
if (!$this->isAbsolute($path)) {
|
|
|
|
$path = $this->addPathElement($this->path, $path);
|
|
|
|
}
|
2007-06-23 04:48:29 +00:00
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
$parts = explode(DS, $path);
|
|
|
|
$newparts = array();
|
2008-05-19 04:45:39 +00:00
|
|
|
$newpath = ife($path[0] == DS, DS, '');
|
2007-06-23 04:48:29 +00:00
|
|
|
|
|
|
|
while (($part = array_shift($parts)) !== NULL) {
|
|
|
|
if ($part == '.' || $part == '') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ($part == '..') {
|
|
|
|
if (count($newparts) > 0) {
|
|
|
|
array_pop($newparts);
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$newparts[] = $part;
|
|
|
|
}
|
|
|
|
$newpath .= implode(DS, $newparts);
|
|
|
|
|
2008-05-19 04:45:39 +00:00
|
|
|
if (strlen($path > 1) && $path[strlen($path)-1] == DS) {
|
2007-06-23 04:48:29 +00:00
|
|
|
$newpath .= DS;
|
|
|
|
}
|
|
|
|
return $newpath;
|
|
|
|
}
|
2007-12-21 02:54:45 +00:00
|
|
|
/**
|
|
|
|
* Returns true if given $path ends in a slash (i.e. is slash-terminated).
|
|
|
|
*
|
|
|
|
* @param string $path Path to check
|
|
|
|
* @return boolean true if path ends with slash, false otherwise
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
function isSlashTerm($path) {
|
|
|
|
if (preg_match('/[\/\\\]$/', $path)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2007-05-14 07:09:42 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @deprecated
|
|
|
|
* @see chmod
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function chmodr($pathname, $mode = 0755) {
|
2007-05-14 14:48:35 +00:00
|
|
|
return $this->chmod($pathname, $mode);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @deprecated
|
|
|
|
* @see mkdir or create
|
2007-05-20 07:03:16 +00:00
|
|
|
* @access public
|
2007-05-14 07:09:42 +00:00
|
|
|
*/
|
|
|
|
function mkdirr($pathname, $mode = 0755) {
|
2007-05-14 14:48:35 +00:00
|
|
|
return $this->create($pathname, $mode);
|
2007-05-14 07:09:42 +00:00
|
|
|
}
|
2005-06-30 02:09:47 +00:00
|
|
|
}
|
2005-05-15 21:41:38 +00:00
|
|
|
?>
|