00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 abstract class Varien_Io_Abstract implements Varien_Io_Interface
00036 {
00037
00038
00039
00040
00041
00042
00043 protected $_allowCreateFolders = false;
00044
00045
00046
00047
00048
00049
00050
00051 public function setAllowCreateFolders($flag)
00052 {
00053 $this->_allowCreateFolders = (bool)$flag;
00054 return $this;
00055 }
00056
00057
00058
00059
00060
00061
00062
00063 public function open(array $args = array())
00064 {
00065 return false;
00066 }
00067
00068 public function dirsep()
00069 {
00070 return '/';
00071 }
00072
00073 public function getCleanPath($path)
00074 {
00075 if (empty($path)) {
00076 return './';
00077 }
00078
00079 $path = trim(preg_replace("/\\\\/", "/", (string)$path));
00080
00081 if (!preg_match("/(\.\w{1,4})$/", $path) && !preg_match("/\?[^\\/]+$/", $path) && !preg_match("/\\/$/", $path)) {
00082 $path .= '/';
00083 }
00084
00085 $matches = array();
00086 $pattern = "/^(\\/|\w:\\/|https?:\\/\\/[^\\/]+\\/)?(.*)$/i";
00087 preg_match_all($pattern, $path, $matches, PREG_SET_ORDER);
00088
00089 $pathTokR = $matches[0][1];
00090 $pathTokP = $matches[0][2];
00091
00092 $pathTokP = preg_replace(array("/^\\/+/", "/\\/+/"), array("", "/"), $pathTokP);
00093
00094 $pathParts = explode("/", $pathTokP);
00095 $realPathParts = array();
00096
00097 for ($i = 0, $realPathParts = array(); $i < count($pathParts); $i++) {
00098 if ($pathParts[$i] == '.') {
00099 continue;
00100 }
00101 elseif ($pathParts[$i] == '..') {
00102 if ((isset($realPathParts[0]) && $realPathParts[0] != '..') || ($pathTokR != "")) {
00103 array_pop($realPathParts);
00104 continue;
00105 }
00106 }
00107
00108 array_push($realPathParts, $pathParts[$i]);
00109 }
00110
00111 return $pathTokR . implode('/', $realPathParts);
00112 }
00113
00114 public function allowedPath($haystackPath, $needlePath)
00115 {
00116 return strpos($this->getCleanPath($haystackPath), $this->getCleanPath($needlePath)) === 0;
00117 }
00118 }