server/lib/private/files/storage/local.php

318 lines
7.5 KiB
PHP
Raw Normal View History

2011-07-27 17:52:24 +00:00
<?php
2012-09-07 16:30:48 +00:00
/**
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
2012-09-07 16:30:48 +00:00
*/
2012-09-07 16:30:48 +00:00
namespace OC\Files\Storage;
if (\OC_Util::runningOnWindows()) {
class Local extends MappedLocal {
}
} else {
2013-04-26 15:30:55 +00:00
/**
* for local filestore, we only have to map the paths
*/
class Local extends \OC\Files\Storage\Common {
protected $datadir;
public function __construct($arguments) {
$this->datadir = $arguments['datadir'];
if (substr($this->datadir, -1) !== '/') {
$this->datadir .= '/';
}
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
public function __destruct() {
2012-03-03 19:45:17 +00:00
}
2013-04-26 15:30:55 +00:00
public function getId() {
return 'local::' . $this->datadir;
}
2013-04-26 15:30:55 +00:00
public function mkdir($path) {
return @mkdir($this->getSourcePath($path), 0777, true);
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
public function rmdir($path) {
if (!$this->isDeletable($path)) {
return false;
}
2013-06-06 18:47:20 +00:00
try {
$it = new \RecursiveIteratorIterator(
new \RecursiveDirectoryIterator($this->getSourcePath($path)),
2013-06-06 18:47:20 +00:00
\RecursiveIteratorIterator::CHILD_FIRST
);
/**
* RecursiveDirectoryIterator on an NFS path isn't iterable with foreach
* This bug is fixed in PHP 5.5.9 or before
* See #8376
*/
$it->rewind();
2014-04-28 08:20:24 +00:00
while ($it->valid()) {
2013-06-06 18:47:20 +00:00
/**
* @var \SplFileInfo $file
*/
2014-04-28 08:20:24 +00:00
$file = $it->current();
2013-06-06 18:47:20 +00:00
if (in_array($file->getBasename(), array('.', '..'))) {
2014-04-28 08:20:24 +00:00
$it->next();
2013-06-06 18:47:20 +00:00
continue;
} elseif ($file->isDir()) {
rmdir($file->getPathname());
} elseif ($file->isFile() || $file->isLink()) {
unlink($file->getPathname());
}
2014-04-28 08:20:24 +00:00
$it->next();
2013-06-06 18:47:20 +00:00
}
return rmdir($this->getSourcePath($path));
2013-06-06 18:47:20 +00:00
} catch (\UnexpectedValueException $e) {
return false;
}
2013-04-26 15:30:55 +00:00
}
public function opendir($path) {
return opendir($this->getSourcePath($path));
2013-04-26 15:30:55 +00:00
}
public function is_dir($path) {
if (substr($path, -1) == '/') {
$path = substr($path, 0, -1);
}
return is_dir($this->getSourcePath($path));
2013-04-26 15:30:55 +00:00
}
2013-04-26 15:30:55 +00:00
public function is_file($path) {
return is_file($this->getSourcePath($path));
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
public function stat($path) {
2014-10-24 14:07:45 +00:00
clearstatcache();
$fullPath = $this->getSourcePath($path);
2013-04-26 15:30:55 +00:00
$statResult = stat($fullPath);
2014-02-12 12:58:07 +00:00
if (PHP_INT_SIZE === 4 && !$this->is_dir($path)) {
2014-02-09 00:25:33 +00:00
$filesize = $this->filesize($path);
$statResult['size'] = $filesize;
$statResult[7] = $filesize;
2013-04-26 15:30:55 +00:00
}
return $statResult;
2013-04-08 20:22:49 +00:00
}
2013-04-26 15:30:55 +00:00
public function filetype($path) {
$filetype = filetype($this->getSourcePath($path));
2013-04-26 15:30:55 +00:00
if ($filetype == 'link') {
$filetype = filetype(realpath($this->getSourcePath($path)));
2013-04-26 15:30:55 +00:00
}
return $filetype;
}
2013-04-26 15:30:55 +00:00
public function filesize($path) {
if ($this->is_dir($path)) {
return 0;
2014-02-09 00:25:33 +00:00
}
$fullPath = $this->getSourcePath($path);
2014-02-09 00:25:33 +00:00
if (PHP_INT_SIZE === 4) {
$helper = new \OC\LargeFileHelper;
return $helper->getFilesize($fullPath);
2013-04-26 15:30:55 +00:00
}
2014-02-09 00:25:33 +00:00
return filesize($fullPath);
}
2012-08-29 06:38:33 +00:00
2013-04-26 15:30:55 +00:00
public function isReadable($path) {
return is_readable($this->getSourcePath($path));
}
2013-04-26 15:30:55 +00:00
public function isUpdatable($path) {
return is_writable($this->getSourcePath($path));
}
2013-04-26 15:30:55 +00:00
public function file_exists($path) {
return file_exists($this->getSourcePath($path));
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
public function filemtime($path) {
clearstatcache($this->getSourcePath($path));
return filemtime($this->getSourcePath($path));
2013-04-26 15:30:55 +00:00
}
public function touch($path, $mtime = null) {
// sets the modification time of the file to the given value.
// If mtime is nil the current time is set.
// note that the access time of the file always changes to the current time.
if ($this->file_exists($path) and !$this->isUpdatable($path)) {
return false;
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
if (!is_null($mtime)) {
$result = touch($this->getSourcePath($path), $mtime);
2013-04-26 15:30:55 +00:00
} else {
$result = touch($this->getSourcePath($path));
2013-04-26 15:30:55 +00:00
}
if ($result) {
clearstatcache(true, $this->getSourcePath($path));
2013-04-26 15:30:55 +00:00
}
return $result;
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
public function file_get_contents($path) {
return file_get_contents($this->getSourcePath($path));
2013-04-26 15:30:55 +00:00
}
public function file_put_contents($path, $data) {
return file_put_contents($this->getSourcePath($path), $data);
2013-04-26 15:30:55 +00:00
}
public function unlink($path) {
if ($this->is_dir($path)) {
return $this->rmdir($path);
} else if ($this->is_file($path)) {
return unlink($this->getSourcePath($path));
} else {
return false;
}
2013-04-26 15:30:55 +00:00
}
public function rename($path1, $path2) {
$srcParent = dirname($path1);
$dstParent = dirname($path2);
if (!$this->isUpdatable($srcParent)) {
\OC_Log::write('core', 'unable to rename, source directory is not writable : ' . $srcParent, \OC_Log::ERROR);
2013-04-26 15:30:55 +00:00
return false;
}
if (!$this->isUpdatable($dstParent)) {
\OC_Log::write('core', 'unable to rename, destination directory is not writable : ' . $dstParent, \OC_Log::ERROR);
return false;
}
2013-04-26 15:30:55 +00:00
if (!$this->file_exists($path1)) {
\OC_Log::write('core', 'unable to rename, file does not exists : ' . $path1, \OC_Log::ERROR);
return false;
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
if ($this->is_dir($path2)) {
$this->rmdir($path2);
} else if ($this->is_file($path2)) {
$this->unlink($path2);
2013-04-26 15:30:55 +00:00
}
return rename($this->getSourcePath($path1), $this->getSourcePath($path2));
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
public function copy($path1, $path2) {
if ($this->is_dir($path1)) {
return parent::copy($path1, $path2);
} else {
return copy($this->getSourcePath($path1), $this->getSourcePath($path2));
2013-04-26 15:30:55 +00:00
}
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
public function fopen($path, $mode) {
return fopen($this->getSourcePath($path), $mode);
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
public function hash($type, $path, $raw = false) {
return hash_file($type, $this->getSourcePath($path), $raw);
2013-04-26 15:30:55 +00:00
}
2013-04-26 15:30:55 +00:00
public function free_space($path) {
$space = @disk_free_space($this->getSourcePath($path));
if ($space === false || is_null($space)) {
2014-08-19 12:05:08 +00:00
return \OCP\Files\FileInfo::SPACE_UNKNOWN;
2013-04-26 15:30:55 +00:00
}
return $space;
}
2011-07-27 17:52:24 +00:00
2013-04-26 15:30:55 +00:00
public function search($query) {
return $this->searchInDir($query);
}
2011-07-27 17:52:24 +00:00
2013-04-26 15:30:55 +00:00
public function getLocalFile($path) {
return $this->getSourcePath($path);
2013-04-26 15:30:55 +00:00
}
2011-07-27 17:52:24 +00:00
2013-04-26 15:30:55 +00:00
public function getLocalFolder($path) {
return $this->getSourcePath($path);
2013-04-26 15:30:55 +00:00
}
/**
* @param string $query
*/
2013-04-26 15:30:55 +00:00
protected function searchInDir($query, $dir = '') {
$files = array();
$physicalDir = $this->getSourcePath($dir);
foreach (scandir($physicalDir) as $item) {
if ($item == '.' || $item == '..')
continue;
$physicalItem = $physicalDir . '/' . $item;
2013-04-26 15:30:55 +00:00
if (strstr(strtolower($item), strtolower($query)) !== false) {
$files[] = $dir . '/' . $item;
}
if (is_dir($physicalItem)) {
2013-04-26 15:30:55 +00:00
$files = array_merge($files, $this->searchInDir($query, $dir . '/' . $item));
}
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
return $files;
2011-07-27 17:52:24 +00:00
}
2013-04-26 15:30:55 +00:00
/**
* check if a file or folder has been updated since $time
*
* @param string $path
* @param int $time
* @return bool
*/
public function hasUpdated($path, $time) {
if ($this->file_exists($path)) {
return $this->filemtime($path) > $time;
} else {
return true;
}
2013-04-26 15:30:55 +00:00
}
/**
* Get the source path (on disk) of a given path
*
* @param string $path
* @return string
*/
protected function getSourcePath($path) {
$fullPath = $this->datadir . $path;
return $fullPath;
}
/**
* {@inheritdoc}
*/
public function isLocal() {
return true;
}
2014-10-24 14:07:45 +00:00
/**
* get the ETag for a file or folder
*
* @param string $path
* @return string
*/
public function getETag($path) {
if ($this->is_file($path)) {
$stat = $this->stat($path);
return md5(
$stat['mtime'] .
$stat['ino'] .
$stat['dev'] .
$stat['size']
);
} else {
return parent::getETag($path);
}
}
2012-06-15 14:43:24 +00:00
}
2011-07-27 17:52:24 +00:00
}