aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/filestore.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-20 12:55:04 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-20 12:55:04 +0000
commit9d982e8731a0045632b8fab0ec35b8aeb74182d7 (patch)
tree347d43e05d40aef31f529bc1d41006ff0624edf0 /engine/lib/filestore.php
parent1a3b8f9c9c4fb9c707f7a8eac72babdbb5a8d173 (diff)
downloadelgg-9d982e8731a0045632b8fab0ec35b8aeb74182d7.tar.gz
elgg-9d982e8731a0045632b8fab0ec35b8aeb74182d7.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Revised matrix generation on filestore git-svn-id: https://code.elgg.org/elgg/trunk@660 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/filestore.php')
-rw-r--r--engine/lib/filestore.php41
1 files changed, 18 insertions, 23 deletions
diff --git a/engine/lib/filestore.php b/engine/lib/filestore.php
index ae8a5d127..a509d1a8f 100644
--- a/engine/lib/filestore.php
+++ b/engine/lib/filestore.php
@@ -138,8 +138,7 @@
public function open(ElggFile $file, $mode)
{
- // Full path and filename
- $fullname = $file->getFilename();
+ $fullname = $this->get_systempath_from_file($file);
// Split into path and name
$ls = strrpos($fullname,"/");
@@ -148,17 +147,8 @@
$path = substr($fullname, 0, $ls);
$name = substr($fullname, $ls);
- // Construct matrix out of user
- $owner = $file->getOwnerEntity();
- if (!$owner)
- $owner = $_SESSION['user'];
-
- if ((!$owner) || (!$owner->username)) throw InvalidParameterException("All files must have an owner!");
-
- $matrix = $this->make_file_matrix($owner->username);
-
// Try and create the directory
- try { $this->make_directory_root($this->dir_root . $matrix . $path); } catch (Exception $e){}
+ try { $this->make_directory_root($path); } catch (Exception $e){}
switch ($mode)
{
@@ -168,7 +158,7 @@
default: throw new InvalidParameterException("Unrecognised file mode '$mode'");
}
- return fopen($this->dir_root . $matrix . $fullname, $mode);
+ return fopen($fullname, $mode);
}
public function write($f, $data)
@@ -191,10 +181,7 @@
public function delete(ElggFile $file)
{
- $name = $file->getFilename();
- $matrix = $this->make_file_matrix($name);
-
- $unlink = unlink($this->dir_root . $matrix . $name);
+ $unlink = unlink($this->get_systempath_from_file($file));
if ($unlink)
return $file->delete();
@@ -217,11 +204,8 @@
}
public function getFileSize(ElggFile $file)
- {
- $name = $file->getFilename();
- $matrix = $this->make_file_matrix($name);
-
- return filesize($this->dir_root . $matrix . $name);
+ {
+ return filesize($this->get_systempath_from_file($file));
}
/**
@@ -255,7 +239,18 @@
$matrix .= $filename[$n] . "/";
}
- return $matrix;
+ return $matrix.$filename."/";
+ }
+
+ protected function get_systempath_from_file(ElggFile $file)
+ {
+ $owner = $file->getOwnerEntity();
+ if (!$owner)
+ $owner = $_SESSION['user'];
+
+ if ((!$owner) || (!$owner->username)) throw InvalidParameterException("All files must have an owner!");
+
+ return $this->dir_root . $this->make_file_matrix($owner->username) . $file->getFilename();
}
public function getParameters()