2012-01-20 03:40:52 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-10-10 13:54:44 +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.
|
2012-05-31 20:02:35 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2012-07-21 23:44:10 +04:00
|
|
|
* Class to provide access to ownCloud filesystem via a "view", and methods for
|
|
|
|
* working with files within that view (e.g. read, write, delete, etc.). Each
|
|
|
|
* view is restricted to a set of directories via a virtual root. The default view
|
|
|
|
* uses the currently logged in user's data directory as root (parts of
|
2014-05-12 18:30:39 +04:00
|
|
|
* OC_Filesystem are merely a wrapper for OC\Files\View).
|
2012-07-21 23:44:10 +04:00
|
|
|
*
|
2012-05-31 20:32:34 +04:00
|
|
|
* Apps that need to access files outside of the user data folders (to modify files
|
|
|
|
* belonging to a user other than the one currently logged in, for example) should
|
|
|
|
* use this class directly rather than using OC_Filesystem, or making use of PHP's
|
2012-07-21 23:44:10 +04:00
|
|
|
* built-in file manipulation functions. This will ensure all hooks and proxies
|
2012-05-31 20:32:34 +04:00
|
|
|
* are triggered correctly.
|
2012-05-31 20:57:34 +04:00
|
|
|
*
|
2012-07-21 23:44:10 +04:00
|
|
|
* Filesystem functions are not called directly; they are passed to the correct
|
2012-09-07 20:30:48 +04:00
|
|
|
* \OC\Files\Storage\Storage object
|
2012-05-31 20:02:35 +04:00
|
|
|
*/
|
2012-01-20 03:40:52 +04:00
|
|
|
|
2012-10-10 13:54:44 +04:00
|
|
|
namespace OC\Files;
|
|
|
|
|
2014-02-26 17:29:13 +04:00
|
|
|
use OC\Files\Cache\Updater;
|
2014-05-22 03:39:24 +04:00
|
|
|
use OC\Files\Mount\MoveableMount;
|
2014-02-26 17:29:13 +04:00
|
|
|
|
2012-10-10 13:54:44 +04:00
|
|
|
class View {
|
|
|
|
private $fakeRoot = '';
|
2012-03-27 04:24:52 +04:00
|
|
|
|
2013-09-01 21:47:48 +04:00
|
|
|
public function __construct($root = '') {
|
2012-10-10 13:54:44 +04:00
|
|
|
$this->fakeRoot = $root;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-03-27 04:24:52 +04:00
|
|
|
|
2012-11-07 20:18:56 +04:00
|
|
|
public function getAbsolutePath($path = '/') {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2014-05-13 16:17:51 +04:00
|
|
|
if ($path === '') {
|
2012-10-10 13:54:44 +04:00
|
|
|
$path = '/';
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($path[0] !== '/') {
|
|
|
|
$path = '/' . $path;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
return $this->fakeRoot . $path;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-01-20 03:40:52 +04:00
|
|
|
/**
|
2012-10-10 14:25:46 +04:00
|
|
|
* change the root to a fake root
|
2012-10-10 13:54:44 +04:00
|
|
|
*
|
2012-10-10 14:25:46 +04:00
|
|
|
* @param string $fakeRoot
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return boolean|null
|
2012-10-10 13:54:44 +04:00
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function chroot($fakeRoot) {
|
2012-10-10 13:54:44 +04:00
|
|
|
if (!$fakeRoot == '') {
|
|
|
|
if ($fakeRoot[0] !== '/') {
|
|
|
|
$fakeRoot = '/' . $fakeRoot;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
$this->fakeRoot = $fakeRoot;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the fake root
|
2012-10-10 13:54:44 +04:00
|
|
|
*
|
2012-01-20 03:40:52 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function getRoot() {
|
2012-01-20 03:40:52 +04:00
|
|
|
return $this->fakeRoot;
|
|
|
|
}
|
|
|
|
|
2012-06-09 19:33:57 +04:00
|
|
|
/**
|
|
|
|
* get path relative to the root of the view
|
2012-10-10 13:54:44 +04:00
|
|
|
*
|
2012-10-10 14:25:46 +04:00
|
|
|
* @param string $path
|
2012-06-09 19:33:57 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function getRelativePath($path) {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($this->fakeRoot == '') {
|
2012-06-09 19:33:57 +04:00
|
|
|
return $path;
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
if (strpos($path, $this->fakeRoot) !== 0) {
|
2012-06-09 19:33:57 +04:00
|
|
|
return null;
|
2012-10-10 13:54:44 +04:00
|
|
|
} else {
|
|
|
|
$path = substr($path, strlen($this->fakeRoot));
|
|
|
|
if (strlen($path) === 0) {
|
2012-08-14 05:07:14 +04:00
|
|
|
return '/';
|
2012-10-10 13:54:44 +04:00
|
|
|
} else {
|
2012-08-14 05:07:14 +04:00
|
|
|
return $path;
|
|
|
|
}
|
2012-06-09 19:33:57 +04:00
|
|
|
}
|
|
|
|
}
|
2012-07-21 23:44:10 +04:00
|
|
|
|
2012-01-20 03:40:52 +04:00
|
|
|
/**
|
2012-10-10 13:54:44 +04:00
|
|
|
* get the mountpoint of the storage object for a path
|
2013-02-11 20:44:02 +04:00
|
|
|
* ( note: because a storage is not always mounted inside the fakeroot, the
|
|
|
|
* returned mountpoint is relative to the absolute root of the filesystem
|
|
|
|
* and doesn't take the chroot into account )
|
2012-10-10 13:54:44 +04:00
|
|
|
*
|
2012-10-10 14:25:46 +04:00
|
|
|
* @param string $path
|
2012-10-10 13:54:44 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function getMountPoint($path) {
|
2012-10-10 14:25:46 +04:00
|
|
|
return Filesystem::getMountPoint($this->getAbsolutePath($path));
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
|
2012-11-08 20:42:26 +04:00
|
|
|
/**
|
|
|
|
* resolve a path to a storage and internal path
|
|
|
|
*
|
|
|
|
* @param string $path
|
2014-05-11 21:13:51 +04:00
|
|
|
* @return array an array consisting of the storage and the internal path
|
2012-11-08 20:42:26 +04:00
|
|
|
*/
|
|
|
|
public function resolvePath($path) {
|
2013-10-10 18:06:26 +04:00
|
|
|
$a = $this->getAbsolutePath($path);
|
|
|
|
$p = Filesystem::normalizePath($a);
|
|
|
|
return Filesystem::resolvePath($p);
|
2012-11-08 20:42:26 +04:00
|
|
|
}
|
|
|
|
|
2012-01-20 03:40:52 +04:00
|
|
|
/**
|
2012-10-10 13:54:44 +04:00
|
|
|
* return the path to a local version of the file
|
2013-02-11 20:44:02 +04:00
|
|
|
* we need this because we can't know if a file is stored local or not from
|
|
|
|
* outside the filestorage and for some purposes a local file is needed
|
2012-10-10 13:54:44 +04:00
|
|
|
*
|
2012-10-10 14:25:46 +04:00
|
|
|
* @param string $path
|
2012-10-10 13:54:44 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function getLocalFile($path) {
|
2012-10-10 13:54:44 +04:00
|
|
|
$parent = substr($path, 0, strrpos($path, '/'));
|
2012-10-27 14:17:35 +04:00
|
|
|
$path = $this->getAbsolutePath($path);
|
2012-10-26 15:23:15 +04:00
|
|
|
list($storage, $internalPath) = Filesystem::resolvePath($path);
|
2012-10-10 19:46:29 +04:00
|
|
|
if (Filesystem::isValidPath($parent) and $storage) {
|
|
|
|
return $storage->getLocalFile($internalPath);
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return null;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-08-19 04:42:15 +04:00
|
|
|
/**
|
2012-10-10 14:25:46 +04:00
|
|
|
* @param string $path
|
2012-08-19 04:42:15 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getLocalFolder($path) {
|
2012-10-10 13:54:44 +04:00
|
|
|
$parent = substr($path, 0, strrpos($path, '/'));
|
2012-10-27 14:17:35 +04:00
|
|
|
$path = $this->getAbsolutePath($path);
|
2012-10-26 15:23:15 +04:00
|
|
|
list($storage, $internalPath) = Filesystem::resolvePath($path);
|
2012-10-10 19:46:29 +04:00
|
|
|
if (Filesystem::isValidPath($parent) and $storage) {
|
|
|
|
return $storage->getLocalFolder($internalPath);
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return null;
|
2012-08-19 04:42:15 +04:00
|
|
|
}
|
|
|
|
}
|
2012-01-20 03:40:52 +04:00
|
|
|
|
|
|
|
/**
|
2012-07-21 23:44:10 +04:00
|
|
|
* the following functions operate with arguments and return values identical
|
|
|
|
* to those of their PHP built-in equivalents. Mostly they are merely wrappers
|
2012-09-07 20:30:48 +04:00
|
|
|
* for \OC\Files\Storage\Storage via basicOperation().
|
2012-01-20 03:40:52 +04:00
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function mkdir($path) {
|
|
|
|
return $this->basicOperation('mkdir', $path, array('create', 'write'));
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2014-06-16 18:24:42 +04:00
|
|
|
protected function removeMount($mount, $path){
|
|
|
|
if ($mount instanceof MoveableMount) {
|
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME, "umount",
|
|
|
|
array(Filesystem::signal_param_path => $path)
|
|
|
|
);
|
|
|
|
$result = $mount->removeMount();
|
|
|
|
if ($result) {
|
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME, "post_umount",
|
|
|
|
array(Filesystem::signal_param_path => $path)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
} else {
|
|
|
|
// do not allow deleting the storage's root / the mount point
|
|
|
|
// because for some storages it might delete the whole contents
|
|
|
|
// but isn't supposed to work that way
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function rmdir($path) {
|
2014-06-16 18:24:42 +04:00
|
|
|
$absolutePath= $this->getAbsolutePath($path);
|
|
|
|
$mount = Filesystem::getMountManager()->find($absolutePath);
|
|
|
|
if ($mount->getInternalPath($absolutePath) === '') {
|
|
|
|
return $this->removeMount($mount, $path);
|
|
|
|
}
|
2013-12-03 01:43:58 +04:00
|
|
|
if ($this->is_dir($path)) {
|
|
|
|
return $this->basicOperation('rmdir', $path, array('delete'));
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2014-05-13 02:56:31 +04:00
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @return resource
|
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function opendir($path) {
|
|
|
|
return $this->basicOperation('opendir', $path, array('read'));
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function readdir($handle) {
|
2012-10-26 15:23:15 +04:00
|
|
|
$fsLocal = new Storage\Local(array('datadir' => '/'));
|
2012-10-10 13:54:44 +04:00
|
|
|
return $fsLocal->readdir($handle);
|
2012-06-19 22:42:40 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function is_dir($path) {
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($path == '/') {
|
2012-01-20 03:40:52 +04:00
|
|
|
return true;
|
|
|
|
}
|
2012-07-21 23:44:10 +04:00
|
|
|
return $this->basicOperation('is_dir', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function is_file($path) {
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($path == '/') {
|
2012-01-20 03:40:52 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 23:44:10 +04:00
|
|
|
return $this->basicOperation('is_file', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function stat($path) {
|
|
|
|
return $this->basicOperation('stat', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function filetype($path) {
|
|
|
|
return $this->basicOperation('filetype', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function filesize($path) {
|
|
|
|
return $this->basicOperation('filesize', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function readfile($path) {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2012-04-25 02:09:14 +04:00
|
|
|
@ob_end_clean();
|
2012-10-10 13:54:44 +04:00
|
|
|
$handle = $this->fopen($path, 'rb');
|
2012-04-01 10:38:26 +04:00
|
|
|
if ($handle) {
|
2013-03-03 21:03:26 +04:00
|
|
|
$chunkSize = 8192; // 8 kB chunks
|
2012-04-01 10:38:26 +04:00
|
|
|
while (!feof($handle)) {
|
|
|
|
echo fread($handle, $chunkSize);
|
|
|
|
flush();
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
$size = $this->filesize($path);
|
2012-04-25 02:09:14 +04:00
|
|
|
return $size;
|
2012-02-26 06:54:21 +04:00
|
|
|
}
|
2012-04-01 10:38:26 +04:00
|
|
|
return false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-25 01:42:07 +04:00
|
|
|
public function isCreatable($path) {
|
|
|
|
return $this->basicOperation('isCreatable', $path);
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-25 01:42:07 +04:00
|
|
|
public function isReadable($path) {
|
|
|
|
return $this->basicOperation('isReadable', $path);
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-25 01:42:07 +04:00
|
|
|
public function isUpdatable($path) {
|
|
|
|
return $this->basicOperation('isUpdatable', $path);
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-25 01:42:07 +04:00
|
|
|
public function isDeletable($path) {
|
|
|
|
return $this->basicOperation('isDeletable', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-25 01:42:07 +04:00
|
|
|
public function isSharable($path) {
|
|
|
|
return $this->basicOperation('isSharable', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function file_exists($path) {
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($path == '/') {
|
2012-01-20 03:40:52 +04:00
|
|
|
return true;
|
|
|
|
}
|
2012-07-21 23:44:10 +04:00
|
|
|
return $this->basicOperation('file_exists', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function filemtime($path) {
|
|
|
|
return $this->basicOperation('filemtime', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
|
|
|
public function touch($path, $mtime = null) {
|
2012-10-23 18:34:58 +04:00
|
|
|
if (!is_null($mtime) and !is_numeric($mtime)) {
|
|
|
|
$mtime = strtotime($mtime);
|
|
|
|
}
|
2013-04-22 23:23:12 +04:00
|
|
|
|
2013-03-07 18:51:44 +04:00
|
|
|
$hooks = array('touch');
|
2013-04-22 23:23:12 +04:00
|
|
|
|
2013-03-07 18:51:44 +04:00
|
|
|
if (!$this->file_exists($path)) {
|
2013-08-29 17:31:03 +04:00
|
|
|
$hooks[] = 'create';
|
2013-03-07 18:51:44 +04:00
|
|
|
$hooks[] = 'write';
|
|
|
|
}
|
2013-03-09 00:28:45 +04:00
|
|
|
$result = $this->basicOperation('touch', $path, $hooks, $mtime);
|
2013-02-10 15:44:27 +04:00
|
|
|
if (!$result) { //if native touch fails, we emulate it by changing the mtime in the cache
|
|
|
|
$this->putFileInfo($path, array('mtime' => $mtime));
|
|
|
|
}
|
|
|
|
return true;
|
2012-02-10 14:30:38 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function file_get_contents($path) {
|
|
|
|
return $this->basicOperation('file_get_contents', $path, array('read'));
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2014-04-28 19:45:03 +04:00
|
|
|
protected function emit_file_hooks_pre($exists, $path, &$run) {
|
|
|
|
if (!$exists) {
|
|
|
|
\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_create, array(
|
|
|
|
Filesystem::signal_param_path => $this->getHookPath($path),
|
|
|
|
Filesystem::signal_param_run => &$run,
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_update, array(
|
|
|
|
Filesystem::signal_param_path => $this->getHookPath($path),
|
|
|
|
Filesystem::signal_param_run => &$run,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_write, array(
|
|
|
|
Filesystem::signal_param_path => $this->getHookPath($path),
|
|
|
|
Filesystem::signal_param_run => &$run,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function emit_file_hooks_post($exists, $path) {
|
|
|
|
if (!$exists) {
|
|
|
|
\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_create, array(
|
|
|
|
Filesystem::signal_param_path => $this->getHookPath($path),
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_update, array(
|
|
|
|
Filesystem::signal_param_path => $this->getHookPath($path),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
\OC_Hook::emit(Filesystem::CLASSNAME, Filesystem::signal_post_write, array(
|
|
|
|
Filesystem::signal_param_path => $this->getHookPath($path),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function file_put_contents($path, $data) {
|
2012-10-10 13:54:44 +04:00
|
|
|
if (is_resource($data)) { //not having to deal with streams in file_put_contents makes life easier
|
2012-10-10 14:25:46 +04:00
|
|
|
$absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
|
2013-02-11 20:44:02 +04:00
|
|
|
if (\OC_FileProxy::runPreProxies('file_put_contents', $absolutePath, $data)
|
2013-05-10 14:00:13 +04:00
|
|
|
and Filesystem::isValidPath($path)
|
2013-08-17 12:57:31 +04:00
|
|
|
and !Filesystem::isFileBlacklisted($path)
|
2013-04-22 23:23:12 +04:00
|
|
|
) {
|
2012-07-27 06:53:55 +04:00
|
|
|
$path = $this->getRelativePath($absolutePath);
|
|
|
|
$exists = $this->file_exists($path);
|
|
|
|
$run = true;
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks($path)) {
|
2014-04-28 19:45:03 +04:00
|
|
|
$this->emit_file_hooks_pre($exists, $path, $run);
|
2012-07-27 06:53:55 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
if (!$run) {
|
2012-07-27 06:53:55 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
$target = $this->fopen($path, 'w');
|
|
|
|
if ($target) {
|
2013-02-22 19:43:11 +04:00
|
|
|
list ($count, $result) = \OC_Helper::streamCopy($data, $target);
|
2012-07-27 06:53:55 +04:00
|
|
|
fclose($target);
|
|
|
|
fclose($data);
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks($path) && $result !== false) {
|
2014-02-28 17:21:33 +04:00
|
|
|
Updater::writeHook(array(
|
|
|
|
'path' => $this->getHookPath($path)
|
|
|
|
));
|
2014-04-28 19:45:03 +04:00
|
|
|
$this->emit_file_hooks_post($exists, $path);
|
2012-07-27 06:53:55 +04:00
|
|
|
}
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_FileProxy::runPostProxies('file_put_contents', $absolutePath, $count);
|
2013-02-22 19:43:11 +04:00
|
|
|
return $result;
|
2012-10-10 13:54:44 +04:00
|
|
|
} else {
|
2012-07-27 06:53:55 +04:00
|
|
|
return false;
|
2012-04-25 02:09:14 +04:00
|
|
|
}
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
2012-02-15 19:23:00 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
} else {
|
2014-04-09 18:42:10 +04:00
|
|
|
$hooks = ($this->file_exists($path)) ? array('update', 'write') : array('create', 'write');
|
2013-10-09 22:34:18 +04:00
|
|
|
return $this->basicOperation('file_put_contents', $path, $hooks, $data);
|
2012-02-15 19:23:00 +04:00
|
|
|
}
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function unlink($path) {
|
2014-01-08 16:17:36 +04:00
|
|
|
if ($path === '' || $path === '/') {
|
|
|
|
// do not allow deleting the root
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$postFix = (substr($path, -1, 1) === '/') ? '/' : '';
|
|
|
|
$absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
|
2014-05-22 03:39:24 +04:00
|
|
|
$mount = Filesystem::getMountManager()->find($absolutePath . $postFix);
|
2014-05-22 03:52:55 +04:00
|
|
|
if ($mount->getInternalPath($absolutePath) === '') {
|
2014-06-16 18:24:42 +04:00
|
|
|
return $this->removeMount($mount, $path);
|
2014-01-08 16:17:36 +04:00
|
|
|
}
|
2012-07-21 23:44:10 +04:00
|
|
|
return $this->basicOperation('unlink', $path, array('delete'));
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $directory
|
|
|
|
*/
|
2012-10-10 13:54:44 +04:00
|
|
|
public function deleteAll($directory, $empty = false) {
|
2013-09-07 16:10:51 +04:00
|
|
|
return $this->rmdir($directory);
|
2012-06-21 21:07:21 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function rename($path1, $path2) {
|
2012-10-10 13:54:44 +04:00
|
|
|
$postFix1 = (substr($path1, -1, 1) === '/') ? '/' : '';
|
|
|
|
$postFix2 = (substr($path2, -1, 1) === '/') ? '/' : '';
|
2012-10-10 14:25:46 +04:00
|
|
|
$absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($path1));
|
|
|
|
$absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($path2));
|
2013-04-22 23:23:12 +04:00
|
|
|
if (
|
|
|
|
\OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2)
|
|
|
|
and Filesystem::isValidPath($path2)
|
|
|
|
and Filesystem::isValidPath($path1)
|
2013-05-29 17:25:42 +04:00
|
|
|
and !Filesystem::isFileBlacklisted($path2)
|
2013-04-22 23:23:12 +04:00
|
|
|
) {
|
2012-07-21 23:44:10 +04:00
|
|
|
$path1 = $this->getRelativePath($absolutePath1);
|
|
|
|
$path2 = $this->getRelativePath($absolutePath2);
|
2014-04-09 18:47:51 +04:00
|
|
|
$exists = $this->file_exists($path2);
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($path1 == null or $path2 == null) {
|
2012-06-09 19:33:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
$run = true;
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks() && (Cache\Scanner::isPartialFile($path1) && !Cache\Scanner::isPartialFile($path2))) {
|
2013-07-01 18:21:31 +04:00
|
|
|
// if it was a rename from a part file to a regular file it was a write and not a rename operation
|
2014-04-28 19:45:03 +04:00
|
|
|
$this->emit_file_hooks_pre($exists, $path2, $run);
|
2013-08-17 12:57:31 +04:00
|
|
|
} elseif ($this->shouldEmitHooks()) {
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME, Filesystem::signal_rename,
|
2012-10-10 13:54:44 +04:00
|
|
|
array(
|
2013-08-17 12:57:31 +04:00
|
|
|
Filesystem::signal_param_oldpath => $this->getHookPath($path1),
|
|
|
|
Filesystem::signal_param_newpath => $this->getHookPath($path2),
|
2012-10-10 14:25:46 +04:00
|
|
|
Filesystem::signal_param_run => &$run
|
2012-10-10 13:54:44 +04:00
|
|
|
)
|
2012-09-18 00:12:17 +04:00
|
|
|
);
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($run) {
|
|
|
|
$mp1 = $this->getMountPoint($path1 . $postFix1);
|
|
|
|
$mp2 = $this->getMountPoint($path2 . $postFix2);
|
2014-05-22 03:39:24 +04:00
|
|
|
$manager = Filesystem::getMountManager();
|
|
|
|
$mount = $manager->find($absolutePath1 . $postFix1);
|
|
|
|
$storage1 = $mount->getStorage();
|
|
|
|
$internalPath1 = $mount->getInternalPath($absolutePath1 . $postFix1);
|
2014-04-04 20:32:49 +04:00
|
|
|
list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2);
|
2014-05-28 15:52:18 +04:00
|
|
|
if ($internalPath1 === '' and $mount instanceof MoveableMount) {
|
2014-05-22 03:39:24 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Mount\Mount | \OC\Files\Mount\MoveableMount $mount
|
|
|
|
*/
|
|
|
|
$sourceMountPoint = $mount->getMountPoint();
|
|
|
|
$result = $mount->moveMount($absolutePath2);
|
|
|
|
$manager->moveMount($sourceMountPoint, $mount->getMountPoint());
|
|
|
|
\OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2);
|
2014-04-16 18:41:23 +04:00
|
|
|
} elseif ($mp1 == $mp2) {
|
2014-04-04 20:32:49 +04:00
|
|
|
if ($storage1) {
|
2014-04-16 18:41:23 +04:00
|
|
|
$result = $storage1->rename($internalPath1, $internalPath2);
|
2013-05-29 17:25:42 +04:00
|
|
|
\OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2);
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
$result = false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-07-21 23:44:10 +04:00
|
|
|
} else {
|
2013-05-19 22:15:49 +04:00
|
|
|
if ($this->is_dir($path1)) {
|
|
|
|
$result = $this->copy($path1, $path2);
|
|
|
|
if ($result === true) {
|
2014-05-06 17:54:48 +04:00
|
|
|
$result = $storage1->rmdir($internalPath1);
|
2013-05-19 22:15:49 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$source = $this->fopen($path1 . $postFix1, 'r');
|
|
|
|
$target = $this->fopen($path2 . $postFix2, 'w');
|
|
|
|
list($count, $result) = \OC_Helper::streamCopy($source, $target);
|
2013-06-10 21:28:55 +04:00
|
|
|
|
|
|
|
// close open handle - especially $source is necessary because unlink below will
|
|
|
|
// throw an exception on windows because the file is locked
|
|
|
|
fclose($source);
|
|
|
|
fclose($target);
|
|
|
|
|
2013-06-05 02:19:08 +04:00
|
|
|
if ($result !== false) {
|
|
|
|
$storage1->unlink($internalPath1);
|
|
|
|
}
|
2013-04-13 23:04:46 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
}
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks() && (Cache\Scanner::isPartialFile($path1) && !Cache\Scanner::isPartialFile($path2)) && $result !== false) {
|
2013-07-01 18:21:31 +04:00
|
|
|
// if it was a rename from a part file to a regular file it was a write and not a rename operation
|
2014-02-26 17:29:13 +04:00
|
|
|
Updater::writeHook(array('path' => $this->getHookPath($path2)));
|
2014-04-28 19:45:03 +04:00
|
|
|
$this->emit_file_hooks_post($exists, $path2);
|
2013-08-17 12:57:31 +04:00
|
|
|
} elseif ($this->shouldEmitHooks() && $result !== false) {
|
2014-02-26 17:29:13 +04:00
|
|
|
Updater::renameHook(array(
|
|
|
|
'oldpath' => $this->getHookPath($path1),
|
|
|
|
'newpath' => $this->getHookPath($path2)
|
|
|
|
));
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_post_rename,
|
2012-09-18 00:12:17 +04:00
|
|
|
array(
|
2013-08-17 12:57:31 +04:00
|
|
|
Filesystem::signal_param_oldpath => $this->getHookPath($path1),
|
|
|
|
Filesystem::signal_param_newpath => $this->getHookPath($path2)
|
2012-09-18 00:12:17 +04:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2012-01-20 03:40:52 +04:00
|
|
|
return $result;
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function copy($path1, $path2) {
|
2012-10-10 13:54:44 +04:00
|
|
|
$postFix1 = (substr($path1, -1, 1) === '/') ? '/' : '';
|
|
|
|
$postFix2 = (substr($path2, -1, 1) === '/') ? '/' : '';
|
2012-10-10 14:25:46 +04:00
|
|
|
$absolutePath1 = Filesystem::normalizePath($this->getAbsolutePath($path1));
|
|
|
|
$absolutePath2 = Filesystem::normalizePath($this->getAbsolutePath($path2));
|
2013-04-22 23:23:12 +04:00
|
|
|
if (
|
|
|
|
\OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2)
|
|
|
|
and Filesystem::isValidPath($path2)
|
|
|
|
and Filesystem::isValidPath($path1)
|
2013-05-29 17:25:42 +04:00
|
|
|
and !Filesystem::isFileBlacklisted($path2)
|
2013-04-22 23:23:12 +04:00
|
|
|
) {
|
2012-07-21 23:44:10 +04:00
|
|
|
$path1 = $this->getRelativePath($absolutePath1);
|
|
|
|
$path2 = $this->getRelativePath($absolutePath2);
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($path1 == null or $path2 == null) {
|
2012-06-09 19:33:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
$run = true;
|
2012-10-10 14:25:46 +04:00
|
|
|
$exists = $this->file_exists($path2);
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks()) {
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_copy,
|
2012-07-21 23:44:10 +04:00
|
|
|
array(
|
2013-08-17 12:57:31 +04:00
|
|
|
Filesystem::signal_param_oldpath => $this->getHookPath($path1),
|
|
|
|
Filesystem::signal_param_newpath => $this->getHookPath($path2),
|
2012-10-10 14:25:46 +04:00
|
|
|
Filesystem::signal_param_run => &$run
|
2012-07-21 23:44:10 +04:00
|
|
|
)
|
|
|
|
);
|
2014-04-28 19:45:03 +04:00
|
|
|
$this->emit_file_hooks_pre($exists, $path2, $run);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($run) {
|
|
|
|
$mp1 = $this->getMountPoint($path1 . $postFix1);
|
|
|
|
$mp2 = $this->getMountPoint($path2 . $postFix2);
|
|
|
|
if ($mp1 == $mp2) {
|
2012-10-27 14:17:35 +04:00
|
|
|
list($storage, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1);
|
|
|
|
list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2);
|
2012-10-10 19:46:29 +04:00
|
|
|
if ($storage) {
|
|
|
|
$result = $storage->copy($internalPath1, $internalPath2);
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
$result = false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-07-21 23:44:10 +04:00
|
|
|
} else {
|
2013-05-19 22:15:49 +04:00
|
|
|
if ($this->is_dir($path1) && ($dh = $this->opendir($path1))) {
|
2013-05-19 23:04:41 +04:00
|
|
|
$result = $this->mkdir($path2);
|
2013-09-22 03:23:18 +04:00
|
|
|
if (is_resource($dh)) {
|
2013-09-04 15:06:04 +04:00
|
|
|
while (($file = readdir($dh)) !== false) {
|
|
|
|
if (!Filesystem::isIgnoredDir($file)) {
|
|
|
|
$result = $this->copy($path1 . '/' . $file, $path2 . '/' . $file);
|
|
|
|
}
|
2013-05-19 22:15:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$source = $this->fopen($path1 . $postFix1, 'r');
|
|
|
|
$target = $this->fopen($path2 . $postFix2, 'w');
|
|
|
|
list($count, $result) = \OC_Helper::streamCopy($source, $target);
|
2014-02-24 16:56:53 +04:00
|
|
|
fclose($source);
|
|
|
|
fclose($target);
|
2013-05-19 22:15:49 +04:00
|
|
|
}
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks() && $result !== false) {
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_post_copy,
|
2012-09-18 00:12:17 +04:00
|
|
|
array(
|
2013-08-17 12:57:31 +04:00
|
|
|
Filesystem::signal_param_oldpath => $this->getHookPath($path1),
|
|
|
|
Filesystem::signal_param_newpath => $this->getHookPath($path2)
|
2012-09-18 00:12:17 +04:00
|
|
|
)
|
|
|
|
);
|
2014-04-28 19:45:03 +04:00
|
|
|
$this->emit_file_hooks_post($exists, $path2);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
return $result;
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2014-05-13 02:27:36 +04:00
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param string $mode
|
|
|
|
* @return resource
|
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function fopen($path, $mode) {
|
2012-10-10 13:54:44 +04:00
|
|
|
$hooks = array();
|
|
|
|
switch ($mode) {
|
2012-01-20 03:40:52 +04:00
|
|
|
case 'r':
|
2012-02-26 18:32:58 +04:00
|
|
|
case 'rb':
|
2012-10-10 13:54:44 +04:00
|
|
|
$hooks[] = 'read';
|
2012-01-20 03:40:52 +04:00
|
|
|
break;
|
|
|
|
case 'r+':
|
2012-02-26 18:32:58 +04:00
|
|
|
case 'rb+':
|
2012-01-20 03:40:52 +04:00
|
|
|
case 'w+':
|
2012-02-26 18:32:58 +04:00
|
|
|
case 'wb+':
|
2012-01-20 03:40:52 +04:00
|
|
|
case 'x+':
|
2012-02-26 18:32:58 +04:00
|
|
|
case 'xb+':
|
2012-01-20 03:40:52 +04:00
|
|
|
case 'a+':
|
2012-02-26 18:32:58 +04:00
|
|
|
case 'ab+':
|
2012-10-10 13:54:44 +04:00
|
|
|
$hooks[] = 'read';
|
|
|
|
$hooks[] = 'write';
|
2012-01-20 03:40:52 +04:00
|
|
|
break;
|
|
|
|
case 'w':
|
2012-02-26 18:32:58 +04:00
|
|
|
case 'wb':
|
2012-01-20 03:40:52 +04:00
|
|
|
case 'x':
|
2012-02-26 18:32:58 +04:00
|
|
|
case 'xb':
|
2012-01-20 03:40:52 +04:00
|
|
|
case 'a':
|
2012-02-26 18:32:58 +04:00
|
|
|
case 'ab':
|
2012-10-10 13:54:44 +04:00
|
|
|
$hooks[] = 'write';
|
2012-01-20 03:40:52 +04:00
|
|
|
break;
|
|
|
|
default:
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_Log::write('core', 'invalid mode (' . $mode . ') for ' . $path, \OC_Log::ERROR);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
return $this->basicOperation('fopen', $path, $hooks, $mode);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function toTmpFile($path) {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2012-10-10 14:25:46 +04:00
|
|
|
if (Filesystem::isValidPath($path)) {
|
2012-07-21 23:44:10 +04:00
|
|
|
$source = $this->fopen($path, 'r');
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($source) {
|
2013-02-09 16:51:44 +04:00
|
|
|
$extension = pathinfo($path, PATHINFO_EXTENSION);
|
2012-10-10 14:25:46 +04:00
|
|
|
$tmpFile = \OC_Helper::tmpFile($extension);
|
2012-07-21 23:44:10 +04:00
|
|
|
file_put_contents($tmpFile, $source);
|
2012-03-27 04:24:52 +04:00
|
|
|
return $tmpFile;
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
2012-02-11 18:48:31 +04:00
|
|
|
}
|
2012-10-10 14:25:46 +04:00
|
|
|
} else {
|
|
|
|
return false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function fromTmpFile($tmpFile, $path) {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2012-10-10 14:25:46 +04:00
|
|
|
if (Filesystem::isValidPath($path)) {
|
2014-02-20 01:28:32 +04:00
|
|
|
|
2014-02-20 01:23:39 +04:00
|
|
|
// Get directory that the file is going into
|
2014-04-08 01:17:35 +04:00
|
|
|
$filePath = dirname($path);
|
2014-02-20 01:28:32 +04:00
|
|
|
|
2014-02-20 01:23:39 +04:00
|
|
|
// Create the directories if any
|
2014-04-08 01:17:35 +04:00
|
|
|
if (!$this->file_exists($filePath)) {
|
|
|
|
$this->mkdir($filePath);
|
2014-02-20 01:23:39 +04:00
|
|
|
}
|
2014-02-20 01:28:32 +04:00
|
|
|
|
2012-10-10 13:54:44 +04:00
|
|
|
if (!$tmpFile) {
|
2012-02-21 23:48:14 +04:00
|
|
|
debug_print_backtrace();
|
|
|
|
}
|
2014-02-20 01:28:32 +04:00
|
|
|
|
2012-10-10 13:54:44 +04:00
|
|
|
$source = fopen($tmpFile, 'r');
|
|
|
|
if ($source) {
|
2012-07-21 23:44:10 +04:00
|
|
|
$this->file_put_contents($path, $source);
|
2012-02-11 18:48:31 +04:00
|
|
|
unlink($tmpFile);
|
|
|
|
return true;
|
2012-07-21 23:44:10 +04:00
|
|
|
} else {
|
2012-10-10 14:25:46 +04:00
|
|
|
return false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-07-21 23:44:10 +04:00
|
|
|
} else {
|
2012-02-21 23:48:14 +04:00
|
|
|
return false;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-21 23:44:10 +04:00
|
|
|
public function getMimeType($path) {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2012-07-21 23:44:10 +04:00
|
|
|
return $this->basicOperation('getMimeType', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
|
2012-07-26 00:54:46 +04:00
|
|
|
public function hash($type, $path, $raw = false) {
|
2012-10-10 13:54:44 +04:00
|
|
|
$postFix = (substr($path, -1, 1) === '/') ? '/' : '';
|
2012-10-10 14:25:46 +04:00
|
|
|
$absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
|
|
|
|
if (\OC_FileProxy::runPreProxies('hash', $absolutePath) && Filesystem::isValidPath($path)) {
|
2012-07-26 00:54:46 +04:00
|
|
|
$path = $this->getRelativePath($absolutePath);
|
|
|
|
if ($path == null) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks($path)) {
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_read,
|
2013-08-17 12:57:31 +04:00
|
|
|
array(Filesystem::signal_param_path => $this->getHookPath($path))
|
2012-07-26 00:54:46 +04:00
|
|
|
);
|
|
|
|
}
|
2012-10-27 14:17:35 +04:00
|
|
|
list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix);
|
2012-10-10 19:46:29 +04:00
|
|
|
if ($storage) {
|
|
|
|
$result = $storage->hash($type, $internalPath, $raw);
|
2012-10-10 14:25:46 +04:00
|
|
|
$result = \OC_FileProxy::runPostProxies('hash', $absolutePath, $result);
|
2012-07-26 00:54:46 +04:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
|
2012-10-10 13:54:44 +04:00
|
|
|
public function free_space($path = '/') {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2012-07-21 23:44:10 +04:00
|
|
|
return $this->basicOperation('free_space', $path);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* abstraction layer for basic filesystem functions: wrapper for \OC\Files\Storage\Storage
|
2014-06-04 19:08:25 +04:00
|
|
|
*
|
2012-01-20 03:40:52 +04:00
|
|
|
* @param string $operation
|
2012-10-10 14:25:46 +04:00
|
|
|
* @param string $path
|
|
|
|
* @param array $hooks (optional)
|
|
|
|
* @param mixed $extraParam (optional)
|
2012-01-20 03:40:52 +04:00
|
|
|
* @return mixed
|
2012-07-21 23:44:10 +04:00
|
|
|
*
|
|
|
|
* This method takes requests for basic filesystem functions (e.g. reading & writing
|
|
|
|
* files), processes hooks and proxies, sanitises paths, and finally passes them on to
|
2012-09-07 20:30:48 +04:00
|
|
|
* \OC\Files\Storage\Storage for delegation to a storage backend for execution
|
2012-01-20 03:40:52 +04:00
|
|
|
*/
|
2012-10-10 13:54:44 +04:00
|
|
|
private function basicOperation($operation, $path, $hooks = array(), $extraParam = null) {
|
|
|
|
$postFix = (substr($path, -1, 1) === '/') ? '/' : '';
|
2012-10-10 14:25:46 +04:00
|
|
|
$absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path));
|
2013-05-10 14:00:13 +04:00
|
|
|
if (\OC_FileProxy::runPreProxies($operation, $absolutePath, $extraParam)
|
|
|
|
and Filesystem::isValidPath($path)
|
2013-08-17 12:57:31 +04:00
|
|
|
and !Filesystem::isFileBlacklisted($path)
|
2013-05-10 14:00:13 +04:00
|
|
|
) {
|
2012-07-21 23:44:10 +04:00
|
|
|
$path = $this->getRelativePath($absolutePath);
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($path == null) {
|
2012-06-09 19:33:57 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-03-08 14:27:25 +04:00
|
|
|
|
2012-10-10 13:54:44 +04:00
|
|
|
$run = $this->runHooks($hooks, $path);
|
2012-10-27 14:17:35 +04:00
|
|
|
list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix);
|
2012-10-10 19:46:29 +04:00
|
|
|
if ($run and $storage) {
|
2012-10-10 13:54:44 +04:00
|
|
|
if (!is_null($extraParam)) {
|
2012-07-21 23:44:10 +04:00
|
|
|
$result = $storage->$operation($internalPath, $extraParam);
|
|
|
|
} else {
|
|
|
|
$result = $storage->$operation($internalPath);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-10-10 14:25:46 +04:00
|
|
|
$result = \OC_FileProxy::runPostProxies($operation, $this->getAbsolutePath($path), $result);
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks($path) && $result !== false) {
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($operation != 'fopen') { //no post hooks for fopen, the file stream is still open
|
|
|
|
$this->runHooks($hooks, $path, true);
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2012-06-15 19:42:39 +04:00
|
|
|
|
2013-08-17 12:57:31 +04:00
|
|
|
/**
|
|
|
|
* get the path relative to the default root for hook usage
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function getHookPath($path) {
|
|
|
|
if (!Filesystem::getView()) {
|
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
return Filesystem::getView()->getRelativePath($this->getAbsolutePath($path));
|
|
|
|
}
|
|
|
|
|
|
|
|
private function shouldEmitHooks($path = '') {
|
|
|
|
if ($path && Cache\Scanner::isPartialFile($path)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!Filesystem::$loaded) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$defaultRoot = Filesystem::getRoot();
|
2013-12-03 01:43:58 +04:00
|
|
|
if ($this->fakeRoot === $defaultRoot) {
|
2013-10-09 22:46:43 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return (strlen($this->fakeRoot) > strlen($defaultRoot)) && (substr($this->fakeRoot, 0, strlen($defaultRoot) + 1) === $defaultRoot . '/');
|
2013-08-17 12:57:31 +04:00
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2014-02-26 17:29:13 +04:00
|
|
|
* @param string[] $hooks
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $path
|
2014-02-26 17:29:13 +04:00
|
|
|
* @param bool $post
|
|
|
|
* @return bool
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2012-10-10 13:54:44 +04:00
|
|
|
private function runHooks($hooks, $path, $post = false) {
|
2013-08-17 12:57:31 +04:00
|
|
|
$path = $this->getHookPath($path);
|
2012-10-10 13:54:44 +04:00
|
|
|
$prefix = ($post) ? 'post_' : '';
|
|
|
|
$run = true;
|
2013-08-17 12:57:31 +04:00
|
|
|
if ($this->shouldEmitHooks($path)) {
|
2012-10-10 13:54:44 +04:00
|
|
|
foreach ($hooks as $hook) {
|
2014-02-26 17:29:13 +04:00
|
|
|
// manually triger updater hooks to ensure they are called first
|
|
|
|
if ($post) {
|
|
|
|
if ($hook == 'write') {
|
|
|
|
Updater::writeHook(array('path' => $path));
|
|
|
|
} elseif ($hook == 'touch') {
|
|
|
|
Updater::touchHook(array('path' => $path));
|
|
|
|
} else if ($hook == 'delete') {
|
|
|
|
Updater::deleteHook(array('path' => $path));
|
|
|
|
}
|
|
|
|
}
|
2012-10-10 13:54:44 +04:00
|
|
|
if ($hook != 'read') {
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME,
|
2012-10-10 13:54:44 +04:00
|
|
|
$prefix . $hook,
|
2012-08-17 03:22:26 +04:00
|
|
|
array(
|
2012-10-10 14:25:46 +04:00
|
|
|
Filesystem::signal_param_run => &$run,
|
|
|
|
Filesystem::signal_param_path => $path
|
2012-08-17 03:22:26 +04:00
|
|
|
)
|
|
|
|
);
|
2012-10-10 13:54:44 +04:00
|
|
|
} elseif (!$post) {
|
2012-10-10 14:25:46 +04:00
|
|
|
\OC_Hook::emit(
|
|
|
|
Filesystem::CLASSNAME,
|
2012-10-10 13:54:44 +04:00
|
|
|
$prefix . $hook,
|
2012-08-17 03:22:26 +04:00
|
|
|
array(
|
2012-10-10 14:25:46 +04:00
|
|
|
Filesystem::signal_param_path => $path
|
2012-08-17 03:22:26 +04:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $run;
|
|
|
|
}
|
|
|
|
|
2012-06-15 19:42:39 +04:00
|
|
|
/**
|
|
|
|
* check if a file or folder has been updated since $time
|
2012-10-10 13:54:44 +04:00
|
|
|
*
|
2012-10-10 14:25:46 +04:00
|
|
|
* @param string $path
|
2012-06-15 19:42:39 +04:00
|
|
|
* @param int $time
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-07-21 23:44:10 +04:00
|
|
|
public function hasUpdated($path, $time) {
|
|
|
|
return $this->basicOperation('hasUpdated', $path, array(), $time);
|
2012-06-15 19:42:39 +04:00
|
|
|
}
|
2012-10-26 14:30:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the filesystem info
|
|
|
|
*
|
|
|
|
* @param string $path
|
2014-03-25 19:37:46 +04:00
|
|
|
* @param boolean|string $includeMountPoints true to add mountpoint sizes,
|
|
|
|
* 'ext' to add only ext storage mount point sizes. Defaults to true.
|
2013-11-18 20:29:30 +04:00
|
|
|
* defaults to true
|
2014-05-11 21:28:45 +04:00
|
|
|
* @return \OC\Files\FileInfo|false
|
2012-10-26 14:30:25 +04:00
|
|
|
*/
|
2013-11-18 20:29:30 +04:00
|
|
|
public function getFileInfo($path, $includeMountPoints = true) {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2012-11-25 01:42:54 +04:00
|
|
|
$data = array();
|
2013-02-04 02:34:27 +04:00
|
|
|
if (!Filesystem::isValidPath($path)) {
|
|
|
|
return $data;
|
|
|
|
}
|
2012-10-26 15:23:15 +04:00
|
|
|
$path = Filesystem::normalizePath($this->fakeRoot . '/' . $path);
|
2014-06-16 18:20:40 +04:00
|
|
|
|
|
|
|
$mount = Filesystem::getMountManager()->find($path);
|
|
|
|
$storage = $mount->getStorage();
|
|
|
|
$internalPath = $mount->getInternalPath($path);
|
2014-01-20 18:21:21 +04:00
|
|
|
$data = null;
|
2012-11-25 01:42:54 +04:00
|
|
|
if ($storage) {
|
2013-01-01 23:19:53 +04:00
|
|
|
$cache = $storage->getCache($internalPath);
|
2012-10-26 14:30:25 +04:00
|
|
|
|
2012-11-25 01:42:54 +04:00
|
|
|
if (!$cache->inCache($internalPath)) {
|
2014-04-04 17:10:07 +04:00
|
|
|
if (!$storage->file_exists($internalPath)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-01-01 23:19:53 +04:00
|
|
|
$scanner = $storage->getScanner($internalPath);
|
2012-11-25 01:42:54 +04:00
|
|
|
$scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW);
|
|
|
|
} else {
|
2013-01-01 23:19:53 +04:00
|
|
|
$watcher = $storage->getWatcher($internalPath);
|
2014-01-20 18:21:21 +04:00
|
|
|
$data = $watcher->checkUpdate($internalPath);
|
2012-11-25 01:42:54 +04:00
|
|
|
}
|
2012-10-26 14:30:25 +04:00
|
|
|
|
2014-01-20 18:21:21 +04:00
|
|
|
if (!is_array($data)) {
|
|
|
|
$data = $cache->get($internalPath);
|
|
|
|
}
|
2012-10-26 14:30:25 +04:00
|
|
|
|
2014-03-06 17:23:27 +04:00
|
|
|
if ($data and isset($data['fileid'])) {
|
2014-06-05 17:45:59 +04:00
|
|
|
if ($data['permissions'] === 0) {
|
|
|
|
$data['permissions'] = $storage->getPermissions($data['path']);
|
|
|
|
$cache->update($data['fileid'], array('permissions' => $data['permissions']));
|
|
|
|
}
|
2013-11-18 20:29:30 +04:00
|
|
|
if ($includeMountPoints and $data['mimetype'] === 'httpd/unix-directory') {
|
2014-06-05 17:45:59 +04:00
|
|
|
//add the sizes of other mount points to the folder
|
2014-03-25 19:37:46 +04:00
|
|
|
$extOnly = ($includeMountPoints === 'ext');
|
2012-12-11 04:06:21 +04:00
|
|
|
$mountPoints = Filesystem::getMountPoints($path);
|
|
|
|
foreach ($mountPoints as $mountPoint) {
|
|
|
|
$subStorage = Filesystem::getStorage($mountPoint);
|
2012-12-16 02:16:26 +04:00
|
|
|
if ($subStorage) {
|
2014-03-25 19:37:46 +04:00
|
|
|
// exclude shared storage ?
|
|
|
|
if ($extOnly && $subStorage instanceof \OC\Files\Storage\Shared) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-01-01 23:19:53 +04:00
|
|
|
$subCache = $subStorage->getCache('');
|
2012-12-16 02:16:26 +04:00
|
|
|
$rootEntry = $subCache->get('');
|
2013-06-25 14:24:14 +04:00
|
|
|
$data['size'] += isset($rootEntry['size']) ? $rootEntry['size'] : 0;
|
2012-12-16 02:16:26 +04:00
|
|
|
}
|
2012-12-11 04:06:21 +04:00
|
|
|
}
|
2012-11-25 01:42:54 +04:00
|
|
|
}
|
2012-12-11 04:06:21 +04:00
|
|
|
}
|
2012-11-25 01:42:54 +04:00
|
|
|
}
|
2014-01-13 17:28:49 +04:00
|
|
|
if (!$data) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-24 00:20:31 +04:00
|
|
|
|
2014-06-16 18:20:40 +04:00
|
|
|
if ($mount instanceof MoveableMount) {
|
|
|
|
$data['permissions'] |= \OCP\PERMISSION_DELETE | \OCP\PERMISSION_UPDATE;
|
|
|
|
}
|
|
|
|
|
2013-05-29 17:25:42 +04:00
|
|
|
$data = \OC_FileProxy::runPostProxies('getFileInfo', $path, $data);
|
2013-04-24 00:20:31 +04:00
|
|
|
|
2014-01-13 17:28:49 +04:00
|
|
|
return new FileInfo($path, $storage, $internalPath, $data);
|
2012-10-26 14:30:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the content of a directory
|
|
|
|
*
|
|
|
|
* @param string $directory path under datadirectory
|
2013-04-09 00:40:03 +04:00
|
|
|
* @param string $mimetype_filter limit returned content to this mimetype or mimepart
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return FileInfo[]
|
2012-10-26 14:30:25 +04:00
|
|
|
*/
|
|
|
|
public function getDirectoryContent($directory, $mimetype_filter = '') {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($directory);
|
2012-11-25 01:42:54 +04:00
|
|
|
$result = array();
|
2013-02-04 16:28:31 +04:00
|
|
|
if (!Filesystem::isValidPath($directory)) {
|
|
|
|
return $result;
|
2013-02-04 02:34:27 +04:00
|
|
|
}
|
2012-10-26 15:23:15 +04:00
|
|
|
$path = Filesystem::normalizePath($this->fakeRoot . '/' . $directory);
|
|
|
|
list($storage, $internalPath) = Filesystem::resolvePath($path);
|
2012-11-25 01:42:54 +04:00
|
|
|
if ($storage) {
|
2013-01-01 23:19:53 +04:00
|
|
|
$cache = $storage->getCache($internalPath);
|
2013-01-07 04:03:11 +04:00
|
|
|
$user = \OC_User::getUser();
|
2012-10-26 14:30:25 +04:00
|
|
|
|
2012-12-15 06:20:50 +04:00
|
|
|
if ($cache->getStatus($internalPath) < Cache\Cache::COMPLETE) {
|
2013-01-01 23:19:53 +04:00
|
|
|
$scanner = $storage->getScanner($internalPath);
|
2012-11-25 01:42:54 +04:00
|
|
|
$scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW);
|
|
|
|
} else {
|
2013-01-01 23:19:53 +04:00
|
|
|
$watcher = $storage->getWatcher($internalPath);
|
2012-11-25 01:42:54 +04:00
|
|
|
$watcher->checkUpdate($internalPath);
|
|
|
|
}
|
|
|
|
|
2014-02-19 13:46:02 +04:00
|
|
|
$folderId = $cache->getId($internalPath);
|
2014-06-05 17:45:59 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\FileInfo[] $files
|
|
|
|
*/
|
2014-01-13 17:28:49 +04:00
|
|
|
$files = array();
|
2014-02-19 13:46:02 +04:00
|
|
|
$contents = $cache->getFolderContents($internalPath, $folderId); //TODO: mimetype_filter
|
2014-01-13 17:28:49 +04:00
|
|
|
foreach ($contents as $content) {
|
2014-06-05 17:45:59 +04:00
|
|
|
if ($content['permissions'] === 0) {
|
|
|
|
$content['permissions'] = $storage->getPermissions($content['path']);
|
|
|
|
$cache->update($content['fileid'], array('permissions' => $content['permissions']));
|
2013-01-07 04:03:11 +04:00
|
|
|
}
|
2014-06-05 17:45:59 +04:00
|
|
|
$files[] = new FileInfo($path . '/' . $content['name'], $storage, $content['path'], $content);
|
2013-01-02 23:40:06 +04:00
|
|
|
}
|
|
|
|
|
2012-11-25 01:42:54 +04:00
|
|
|
//add a folder for any mountpoint in this directory and add the sizes of other mountpoints to the folders
|
2014-05-22 03:39:24 +04:00
|
|
|
$mounts = Filesystem::getMountManager()->findIn($path);
|
2012-11-25 01:42:54 +04:00
|
|
|
$dirLength = strlen($path);
|
2014-05-22 03:39:24 +04:00
|
|
|
foreach ($mounts as $mount) {
|
|
|
|
$mountPoint = $mount->getMountPoint();
|
2012-11-25 01:42:54 +04:00
|
|
|
$subStorage = Filesystem::getStorage($mountPoint);
|
|
|
|
if ($subStorage) {
|
2013-01-01 23:19:53 +04:00
|
|
|
$subCache = $subStorage->getCache('');
|
2012-11-25 01:42:54 +04:00
|
|
|
|
2013-01-11 07:28:50 +04:00
|
|
|
if ($subCache->getStatus('') === Cache\Cache::NOT_FOUND) {
|
2013-01-10 21:09:55 +04:00
|
|
|
$subScanner = $subStorage->getScanner('');
|
2013-01-11 07:28:50 +04:00
|
|
|
$subScanner->scanFile('');
|
2013-01-10 21:09:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$rootEntry = $subCache->get('');
|
|
|
|
if ($rootEntry) {
|
|
|
|
$relativePath = trim(substr($mountPoint, $dirLength), '/');
|
2013-02-11 20:44:02 +04:00
|
|
|
if ($pos = strpos($relativePath, '/')) {
|
|
|
|
//mountpoint inside subfolder add size to the correct folder
|
2013-01-10 21:09:55 +04:00
|
|
|
$entryName = substr($relativePath, 0, $pos);
|
|
|
|
foreach ($files as &$entry) {
|
|
|
|
if ($entry['name'] === $entryName) {
|
|
|
|
$entry['size'] += $rootEntry['size'];
|
|
|
|
}
|
2012-11-25 01:42:54 +04:00
|
|
|
}
|
2013-01-10 21:09:55 +04:00
|
|
|
} else { //mountpoint in this folder, add an entry for it
|
|
|
|
$rootEntry['name'] = $relativePath;
|
|
|
|
$rootEntry['type'] = $rootEntry['mimetype'] === 'httpd/unix-directory' ? 'dir' : 'file';
|
2014-06-03 19:57:56 +04:00
|
|
|
$permissions = $rootEntry['permissions'];
|
2014-04-04 20:32:49 +04:00
|
|
|
// do not allow renaming/deleting the mount point if they are not shared files/folders
|
|
|
|
// for shared files/folders we use the permissions given by the owner
|
2014-05-22 03:39:24 +04:00
|
|
|
if ($mount instanceof MoveableMount) {
|
2014-05-28 16:01:40 +04:00
|
|
|
$rootEntry['permissions'] = $permissions | \OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE;
|
2014-04-04 20:32:49 +04:00
|
|
|
} else {
|
|
|
|
$rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE));
|
|
|
|
}
|
2013-01-22 23:57:15 +04:00
|
|
|
|
|
|
|
//remove any existing entry with the same name
|
|
|
|
foreach ($files as $i => $file) {
|
|
|
|
if ($file['name'] === $rootEntry['name']) {
|
|
|
|
unset($files[$i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-04-25 15:56:45 +04:00
|
|
|
$rootEntry['path'] = substr($path . '/' . $rootEntry['name'], strlen($user) + 2); // full path without /$user/
|
2014-01-13 17:28:49 +04:00
|
|
|
$files[] = new FileInfo($path . '/' . $rootEntry['name'], $subStorage, '', $rootEntry);
|
2012-11-25 01:42:54 +04:00
|
|
|
}
|
2012-10-26 14:30:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-25 01:42:54 +04:00
|
|
|
if ($mimetype_filter) {
|
|
|
|
foreach ($files as $file) {
|
|
|
|
if (strpos($mimetype_filter, '/')) {
|
|
|
|
if ($file['mimetype'] === $mimetype_filter) {
|
|
|
|
$result[] = $file;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($file['mimepart'] === $mimetype_filter) {
|
|
|
|
$result[] = $file;
|
|
|
|
}
|
2012-10-27 14:17:35 +04:00
|
|
|
}
|
|
|
|
}
|
2012-11-25 01:42:54 +04:00
|
|
|
} else {
|
|
|
|
$result = $files;
|
2012-10-27 14:17:35 +04:00
|
|
|
}
|
|
|
|
}
|
2014-01-13 17:28:49 +04:00
|
|
|
|
2012-10-27 14:17:35 +04:00
|
|
|
return $result;
|
2012-10-26 14:30:25 +04:00
|
|
|
}
|
2012-10-26 14:43:23 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* change file metadata
|
|
|
|
*
|
|
|
|
* @param string $path
|
2014-05-11 21:28:45 +04:00
|
|
|
* @param array|\OCP\Files\FileInfo $data
|
2012-10-26 14:43:23 +04:00
|
|
|
* @return int
|
|
|
|
*
|
|
|
|
* returns the fileid of the updated file
|
|
|
|
*/
|
|
|
|
public function putFileInfo($path, $data) {
|
2014-05-08 17:19:54 +04:00
|
|
|
$this->assertPathLength($path);
|
2014-01-13 18:57:49 +04:00
|
|
|
if ($data instanceof FileInfo) {
|
|
|
|
$data = $data->getData();
|
|
|
|
}
|
2012-10-26 15:23:15 +04:00
|
|
|
$path = Filesystem::normalizePath($this->fakeRoot . '/' . $path);
|
2012-10-26 14:43:23 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage $storage
|
|
|
|
* @var string $internalPath
|
|
|
|
*/
|
2012-10-26 15:23:15 +04:00
|
|
|
list($storage, $internalPath) = Filesystem::resolvePath($path);
|
2012-11-25 01:42:54 +04:00
|
|
|
if ($storage) {
|
2013-01-01 23:19:53 +04:00
|
|
|
$cache = $storage->getCache($path);
|
2012-10-26 14:43:23 +04:00
|
|
|
|
2012-11-25 01:42:54 +04:00
|
|
|
if (!$cache->inCache($internalPath)) {
|
2013-01-01 23:19:53 +04:00
|
|
|
$scanner = $storage->getScanner($internalPath);
|
2012-11-25 01:42:54 +04:00
|
|
|
$scanner->scan($internalPath, Cache\Scanner::SCAN_SHALLOW);
|
|
|
|
}
|
2012-10-26 14:43:23 +04:00
|
|
|
|
2012-11-25 01:42:54 +04:00
|
|
|
return $cache->put($internalPath, $data);
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
2012-10-26 14:43:23 +04:00
|
|
|
}
|
2012-10-26 15:23:15 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* search for files with the name matching $query
|
|
|
|
*
|
|
|
|
* @param string $query
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return FileInfo[]
|
2012-10-26 15:23:15 +04:00
|
|
|
*/
|
|
|
|
public function search($query) {
|
2012-10-27 12:34:25 +04:00
|
|
|
return $this->searchCommon('%' . $query . '%', 'search');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* search for files by mimetype
|
|
|
|
*
|
2013-09-22 03:23:18 +04:00
|
|
|
* @param string $mimetype
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return FileInfo[]
|
2012-10-27 12:34:25 +04:00
|
|
|
*/
|
|
|
|
public function searchByMime($mimetype) {
|
|
|
|
return $this->searchCommon($mimetype, 'searchByMime');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $query
|
|
|
|
* @param string $method
|
2014-01-13 17:28:49 +04:00
|
|
|
* @return FileInfo[]
|
2012-10-27 12:34:25 +04:00
|
|
|
*/
|
|
|
|
private function searchCommon($query, $method) {
|
2012-10-26 15:23:15 +04:00
|
|
|
$files = array();
|
|
|
|
$rootLength = strlen($this->fakeRoot);
|
|
|
|
|
|
|
|
$mountPoint = Filesystem::getMountPoint($this->fakeRoot);
|
|
|
|
$storage = Filesystem::getStorage($mountPoint);
|
2012-11-25 01:42:54 +04:00
|
|
|
if ($storage) {
|
2013-01-01 23:19:53 +04:00
|
|
|
$cache = $storage->getCache('');
|
2012-10-26 15:23:15 +04:00
|
|
|
|
2012-10-27 12:34:25 +04:00
|
|
|
$results = $cache->$method($query);
|
2012-10-26 15:23:15 +04:00
|
|
|
foreach ($results as $result) {
|
2013-09-22 03:23:18 +04:00
|
|
|
if (substr($mountPoint . $result['path'], 0, $rootLength + 1) === $this->fakeRoot . '/') {
|
2014-01-13 17:28:49 +04:00
|
|
|
$internalPath = $result['path'];
|
2012-11-25 01:42:54 +04:00
|
|
|
$result['path'] = substr($mountPoint . $result['path'], $rootLength);
|
2014-01-13 17:28:49 +04:00
|
|
|
$files[] = new FileInfo($mountPoint . $result['path'], $storage, $internalPath, $result);
|
2012-11-25 01:42:54 +04:00
|
|
|
}
|
2012-10-26 15:23:15 +04:00
|
|
|
}
|
|
|
|
|
2012-11-25 01:42:54 +04:00
|
|
|
$mountPoints = Filesystem::getMountPoints($this->fakeRoot);
|
|
|
|
foreach ($mountPoints as $mountPoint) {
|
|
|
|
$storage = Filesystem::getStorage($mountPoint);
|
|
|
|
if ($storage) {
|
2013-01-01 23:19:53 +04:00
|
|
|
$cache = $storage->getCache('');
|
2012-11-25 01:42:54 +04:00
|
|
|
|
|
|
|
$relativeMountPoint = substr($mountPoint, $rootLength);
|
|
|
|
$results = $cache->$method($query);
|
2013-09-22 03:23:18 +04:00
|
|
|
if ($results) {
|
|
|
|
foreach ($results as $result) {
|
2014-01-13 17:28:49 +04:00
|
|
|
$internalPath = $result['path'];
|
2014-04-25 14:31:44 +04:00
|
|
|
$result['path'] = rtrim($relativeMountPoint . $result['path'], '/');
|
|
|
|
$path = rtrim($mountPoint . $internalPath, '/');
|
|
|
|
$files[] = new FileInfo($path, $storage, $internalPath, $result);
|
2013-09-22 03:23:18 +04:00
|
|
|
}
|
2012-11-25 01:42:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-10-26 15:23:15 +04:00
|
|
|
return $files;
|
|
|
|
}
|
2012-11-08 20:47:00 +04:00
|
|
|
|
2013-02-03 03:50:40 +04:00
|
|
|
/**
|
2013-04-22 23:23:12 +04:00
|
|
|
* Get the owner for a file or folder
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-02-03 03:50:40 +04:00
|
|
|
public function getOwner($path) {
|
|
|
|
return $this->basicOperation('getOwner', $path);
|
|
|
|
}
|
|
|
|
|
2012-11-08 20:47:00 +04:00
|
|
|
/**
|
|
|
|
* get the ETag for a file or folder
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-12-11 04:06:21 +04:00
|
|
|
public function getETag($path) {
|
2012-11-08 20:47:00 +04:00
|
|
|
/**
|
|
|
|
* @var Storage\Storage $storage
|
|
|
|
* @var string $internalPath
|
|
|
|
*/
|
|
|
|
list($storage, $internalPath) = $this->resolvePath($path);
|
2012-11-25 01:42:54 +04:00
|
|
|
if ($storage) {
|
|
|
|
return $storage->getETag($internalPath);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2012-11-08 20:47:00 +04:00
|
|
|
}
|
2013-01-27 03:13:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the path of a file by id, relative to the view
|
|
|
|
*
|
|
|
|
* Note that the resulting path is not guarantied to be unique for the id, multiple paths can point to the same file
|
|
|
|
*
|
|
|
|
* @param int $id
|
2014-06-06 11:44:34 +04:00
|
|
|
* @return string|null
|
2013-01-27 03:13:16 +04:00
|
|
|
*/
|
|
|
|
public function getPath($id) {
|
2014-03-27 19:43:34 +04:00
|
|
|
$manager = Filesystem::getMountManager();
|
|
|
|
$mounts = $manager->findIn($this->fakeRoot);
|
|
|
|
$mounts[] = $manager->find($this->fakeRoot);
|
|
|
|
// reverse the array so we start with the storage this view is in
|
|
|
|
// which is the most likely to contain the file we're looking for
|
|
|
|
$mounts = array_reverse($mounts);
|
2013-01-28 04:02:04 +04:00
|
|
|
foreach ($mounts as $mount) {
|
|
|
|
/**
|
2014-03-27 19:43:34 +04:00
|
|
|
* @var \OC\Files\Mount\Mount $mount
|
2013-01-28 04:02:04 +04:00
|
|
|
*/
|
2014-06-04 19:08:25 +04:00
|
|
|
if ($mount->getStorage()) {
|
|
|
|
$cache = $mount->getStorage()->getCache();
|
|
|
|
$internalPath = $cache->getPathById($id);
|
|
|
|
if (is_string($internalPath)) {
|
|
|
|
$fullPath = $mount->getMountPoint() . $internalPath;
|
|
|
|
if (!is_null($path = $this->getRelativePath($fullPath))) {
|
|
|
|
return $path;
|
|
|
|
}
|
2014-03-27 19:43:34 +04:00
|
|
|
}
|
2013-01-28 04:02:04 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
2013-01-27 03:13:16 +04:00
|
|
|
}
|
2014-05-08 17:19:54 +04:00
|
|
|
|
|
|
|
private function assertPathLength($path) {
|
|
|
|
$maxLen = min(PHP_MAXPATHLEN, 4000);
|
|
|
|
$pathLen = strlen($path);
|
|
|
|
if ($pathLen > $maxLen) {
|
|
|
|
throw new \OCP\Files\InvalidPathException("Path length($pathLen) exceeds max path length($maxLen): $path");
|
|
|
|
}
|
|
|
|
}
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|