nextcloud/lib/files/storage/common.php

372 lines
8.6 KiB
PHP
Raw Normal View History

<?php
/**
2012-09-07 20:30:48 +04: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.
*/
namespace OC\Files\Storage;
/**
2012-08-29 10:38:33 +04:00
* Storage backend class for providing common filesystem operation methods
* which are not storage-backend specific.
*
2012-09-07 20:30:48 +04:00
* \OC\Files\Storage\Common is never used directly; it is extended by all other
2012-08-29 10:38:33 +04:00
* storage backends, where its methods may be overridden, and additional
* (backend-specific) methods are defined.
*
2012-09-07 20:30:48 +04:00
* Some \OC\Files\Storage\Common methods call functions which are first defined
* in classes which extend it, e.g. $this->stat() .
*/
abstract class Common implements \OC\Files\Storage\Storage {
private $cache;
private $scanner;
private $permissioncache;
private $watcher;
private $storageCache;
2013-02-26 05:51:57 +04:00
public function __construct($parameters) {
}
2012-09-07 17:22:01 +04:00
public function is_dir($path) {
2013-02-26 05:51:57 +04:00
return $this->filetype($path) == 'dir';
}
2013-02-26 05:51:57 +04:00
2012-09-07 17:22:01 +04:00
public function is_file($path) {
2013-02-26 05:51:57 +04:00
return $this->filetype($path) == 'file';
}
2013-02-26 05:51:57 +04:00
public function filesize($path) {
2013-02-26 05:51:57 +04:00
if ($this->is_dir($path)) {
return 0; //by definition
} else {
$stat = $this->stat($path);
if (isset($stat['size'])) {
return $stat['size'];
} else {
return 0;
}
}
}
2013-02-26 05:51:57 +04:00
public function isCreatable($path) {
2012-12-27 00:36:50 +04:00
if ($this->is_dir($path) && $this->isUpdatable($path)) {
return true;
}
return false;
}
2013-02-26 05:51:57 +04:00
public function isDeletable($path) {
return $this->isUpdatable($path);
}
2013-02-26 05:51:57 +04:00
public function isSharable($path) {
return $this->isReadable($path);
}
2013-02-26 05:51:57 +04:00
public function getPermissions($path) {
$permissions = 0;
2013-02-26 05:51:57 +04:00
if ($this->isCreatable($path)) {
$permissions |= \OCP\PERMISSION_CREATE;
}
2013-02-26 05:51:57 +04:00
if ($this->isReadable($path)) {
$permissions |= \OCP\PERMISSION_READ;
}
2013-02-26 05:51:57 +04:00
if ($this->isUpdatable($path)) {
$permissions |= \OCP\PERMISSION_UPDATE;
}
2013-02-26 05:51:57 +04:00
if ($this->isDeletable($path)) {
$permissions |= \OCP\PERMISSION_DELETE;
}
2013-02-26 05:51:57 +04:00
if ($this->isSharable($path)) {
$permissions |= \OCP\PERMISSION_SHARE;
}
return $permissions;
}
2013-02-26 05:51:57 +04:00
public function filemtime($path) {
$stat = $this->stat($path);
if (isset($stat['mtime'])) {
return $stat['mtime'];
} else {
return 0;
}
}
2013-02-26 05:51:57 +04:00
public function file_get_contents($path) {
$handle = $this->fopen($path, "r");
2013-02-26 05:51:57 +04:00
if (!$handle) {
return false;
}
2013-02-26 05:51:57 +04:00
$size = $this->filesize($path);
if ($size == 0) {
return '';
}
return fread($handle, $size);
}
2013-02-26 05:51:57 +04:00
public function file_put_contents($path, $data) {
$handle = $this->fopen($path, "w");
return fwrite($handle, $data);
}
2013-02-26 05:51:57 +04:00
public function rename($path1, $path2) {
2013-02-26 05:51:57 +04:00
if ($this->copy($path1, $path2)) {
return $this->unlink($path1);
2013-02-26 05:51:57 +04:00
} else {
return false;
}
}
2013-02-26 05:51:57 +04:00
public function copy($path1, $path2) {
2013-02-26 05:51:57 +04:00
$source = $this->fopen($path1, 'r');
$target = $this->fopen($path2, 'w');
list($count, $result) = \OC_Helper::streamCopy($source, $target);
return $result;
}
/**
* @brief Deletes all files and folders recursively within a directory
2012-10-23 18:16:46 +04:00
* @param string $directory The directory whose contents will be deleted
* @param bool $empty Flag indicating whether directory will be emptied
* @returns bool
*
2012-08-29 10:38:33 +04:00
* @note By default the directory specified by $directory will be
* deleted together with its contents. To avoid this set $empty to true
*/
2013-02-26 05:51:57 +04:00
public function deleteAll($directory, $empty = false) {
$directory = trim($directory, '/');
if (!$this->is_dir($directory) || !$this->isReadable($directory)) {
return false;
} else {
$directoryHandle = $this->opendir($directory);
while (($contents = readdir($directoryHandle)) !== false) {
if (!\OC\Files\Filesystem::isIgnoredDir($contents)) {
$path = $directory . '/' . $contents;
2013-02-26 05:51:57 +04:00
if ($this->is_dir($path)) {
$this->deleteAll($path);
} else {
$this->unlink($path);
}
}
}
if ($empty === false) {
2013-02-26 05:51:57 +04:00
if (!$this->rmdir($directory)) {
2013-02-09 20:27:57 +04:00
return false;
}
}
return true;
}
2012-08-29 10:38:33 +04:00
}
2013-02-26 05:51:57 +04:00
2012-09-07 17:22:01 +04:00
public function getMimeType($path) {
2013-02-26 05:51:57 +04:00
if (!$this->file_exists($path)) {
return false;
}
2013-02-26 05:51:57 +04:00
if ($this->is_dir($path)) {
return 'httpd/unix-directory';
}
2013-02-26 05:51:57 +04:00
$source = $this->fopen($path, 'r');
if (!$source) {
return false;
}
2013-02-26 05:51:57 +04:00
$head = fread($source, 8192); //8kb should suffice to determine a mimetype
if ($pos = strrpos($path, '.')) {
$extension = substr($path, $pos);
} else {
$extension = '';
}
2013-02-26 05:51:57 +04:00
$tmpFile = \OC_Helper::tmpFile($extension);
file_put_contents($tmpFile, $head);
2013-02-26 05:51:57 +04:00
$mime = \OC_Helper::getMimeType($tmpFile);
unlink($tmpFile);
return $mime;
}
2013-02-26 05:51:57 +04:00
public function hash($type, $path, $raw = false) {
2013-02-26 05:51:57 +04:00
$tmpFile = $this->getLocalFile($path);
$hash = hash($type, $tmpFile, $raw);
unlink($tmpFile);
return $hash;
}
2013-02-26 05:51:57 +04:00
2012-09-07 17:22:01 +04:00
public function search($query) {
return $this->searchInDir($query);
}
2013-02-26 05:51:57 +04:00
2012-09-07 17:22:01 +04:00
public function getLocalFile($path) {
2012-02-28 15:06:34 +04:00
return $this->toTmpFile($path);
}
2013-02-26 05:51:57 +04:00
private function toTmpFile($path) { //no longer in the storage api, still useful here
$source = $this->fopen($path, 'r');
if (!$source) {
return false;
}
2013-02-26 05:51:57 +04:00
if ($pos = strrpos($path, '.')) {
$extension = substr($path, $pos);
} else {
$extension = '';
}
2013-02-26 05:51:57 +04:00
$tmpFile = \OC_Helper::tmpFile($extension);
$target = fopen($tmpFile, 'w');
\OC_Helper::streamCopy($source, $target);
return $tmpFile;
}
2013-02-26 05:51:57 +04:00
2012-09-07 17:22:01 +04:00
public function getLocalFolder($path) {
2013-02-26 05:51:57 +04:00
$baseDir = \OC_Helper::tmpFolder();
$this->addLocalFolder($path, $baseDir);
2012-08-19 04:30:33 +04:00
return $baseDir;
}
2013-02-26 05:51:57 +04:00
private function addLocalFolder($path, $target) {
2013-02-26 05:51:57 +04:00
if ($dh = $this->opendir($path)) {
while (($file = readdir($dh)) !== false) {
2013-02-26 05:51:57 +04:00
if ($file !== '.' and $file !== '..') {
if ($this->is_dir($path . '/' . $file)) {
mkdir($target . '/' . $file);
$this->addLocalFolder($path . '/' . $file, $target . '/' . $file);
} else {
$tmp = $this->toTmpFile($path . '/' . $file);
rename($tmp, $target . '/' . $file);
2012-08-19 04:30:33 +04:00
}
}
}
}
}
2013-02-26 05:51:57 +04:00
protected function searchInDir($query, $dir = '') {
$files = array();
$dh = $this->opendir($dir);
if ($dh) {
while (($item = readdir($dh)) !== false) {
if ($item == '.' || $item == '..') continue;
2013-02-26 05:51:57 +04:00
if (strstr(strtolower($item), strtolower($query)) !== false) {
$files[] = $dir . '/' . $item;
}
2013-02-26 05:51:57 +04:00
if ($this->is_dir($dir . '/' . $item)) {
$files = array_merge($files, $this->searchInDir($query, $dir . '/' . $item));
}
}
}
return $files;
}
2012-06-15 18:43:24 +04:00
/**
* check if a file or folder has been updated since $time
2013-02-26 05:51:57 +04:00
*
2012-10-23 18:16:46 +04:00
* @param string $path
2012-06-15 18:43:24 +04:00
* @param int $time
* @return bool
*/
public function hasUpdated($path, $time) {
2013-02-26 05:51:57 +04:00
return $this->filemtime($path) > $time;
2012-06-15 18:43:24 +04:00
}
2012-07-06 14:22:21 +04:00
2013-02-26 05:51:57 +04:00
public function getCache($path = '') {
if (!isset($this->cache)) {
$this->cache = new \OC\Files\Cache\Cache($this);
}
return $this->cache;
}
2013-02-26 05:51:57 +04:00
public function getScanner($path = '') {
if (!isset($this->scanner)) {
$this->scanner = new \OC\Files\Cache\Scanner($this);
}
return $this->scanner;
}
2012-10-23 18:16:46 +04:00
2013-02-26 05:51:57 +04:00
public function getPermissionsCache($path = '') {
if (!isset($this->permissioncache)) {
$this->permissioncache = new \OC\Files\Cache\Permissions($this);
}
return $this->permissioncache;
}
2013-02-26 05:51:57 +04:00
public function getWatcher($path = '') {
if (!isset($this->watcher)) {
$this->watcher = new \OC\Files\Cache\Watcher($this);
}
return $this->watcher;
}
public function getStorageCache(){
if (!isset($this->storageCache)) {
$this->storageCache = new \OC\Files\Cache\Storage($this);
}
return $this->storageCache;
}
2012-07-06 14:22:21 +04:00
/**
* get the owner of a path
2013-02-26 05:51:57 +04:00
*
2012-10-23 18:16:46 +04:00
* @param string $path The path to get the owner
2012-07-06 14:22:21 +04:00
* @return string uid or false
*/
public function getOwner($path) {
2012-10-23 18:16:46 +04:00
return \OC_User::getUser();
2012-07-06 14:22:21 +04:00
}
/**
* get the ETag for a file or folder
*
* @param string $path
* @return string
*/
2013-02-26 05:51:57 +04:00
public function getETag($path) {
$ETagFunction = \OC_Connector_Sabre_Node::$ETagFunction;
2013-02-26 05:51:57 +04:00
if ($ETagFunction) {
$hash = call_user_func($ETagFunction, $path);
return $hash;
2013-02-26 05:51:57 +04:00
} else {
2013-01-12 05:56:36 +04:00
return uniqid();
}
2012-07-06 14:22:21 +04:00
}
2013-02-22 20:21:57 +04:00
/**
* clean a path, i.e. remove all redundant '.' and '..'
* making sure that it can't point to higher than '/'
2013-02-26 05:51:57 +04:00
*
* @param $path The path to clean
* @return string cleaned path
*/
public function cleanPath($path) {
if (strlen($path) == 0 or $path[0] != '/') {
$path = '/' . $path;
}
2013-02-22 20:21:57 +04:00
$output = array();
foreach (explode('/', $path) as $chunk) {
if ($chunk == '..') {
array_pop($output);
} else if ($chunk == '.') {
} else {
$output[] = $chunk;
}
}
return implode('/', $output);
}
public function test() {
if ($this->stat('')) {
return true;
}
return false;
}
/**
* get the free space in the storage
2013-02-26 05:51:57 +04:00
*
* @param $path
* @return int
*/
2013-02-26 05:51:57 +04:00
public function free_space($path) {
2013-07-02 18:34:58 +04:00
return \OC\Files\SPACE_UNKNOWN;
}
}