2011-07-20 17:53:34 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-02-18 20:28:24 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2015-02-18 20:28:24 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-02-18 20:28:24 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Klaas Freitag <freitag@owncloud.com>
|
|
|
|
* @author Markus Goetz <markus@woboq.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-02-18 20:28:24 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2011-07-20 17:53:34 +04:00
|
|
|
*
|
2015-02-18 20:28:24 +03:00
|
|
|
* @license AGPL-3.0
|
2011-07-22 18:21:29 +04:00
|
|
|
*
|
2015-02-18 20:28:24 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2011-07-22 18:21:29 +04:00
|
|
|
*
|
2015-02-18 20:28:24 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-05-05 20:13:40 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-02-18 20:28:24 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2012-05-05 20:13:40 +04:00
|
|
|
*
|
2015-02-18 20:28:24 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2011-07-22 18:21:29 +04:00
|
|
|
*
|
|
|
|
*/
|
2012-10-02 13:44:55 +04:00
|
|
|
|
2015-08-30 20:13:01 +03:00
|
|
|
namespace OCA\DAV\Connector\Sabre;
|
2015-02-12 14:29:01 +03:00
|
|
|
|
2016-03-31 22:25:23 +03:00
|
|
|
use OC\Files\Mount\MoveableMount;
|
2017-05-05 01:32:22 +03:00
|
|
|
use OC\Files\View;
|
2015-08-30 20:13:01 +03:00
|
|
|
use OCA\DAV\Connector\Sabre\Exception\InvalidPath;
|
2017-05-05 01:32:22 +03:00
|
|
|
use OCP\Files\FileInfo;
|
2016-04-13 18:31:01 +03:00
|
|
|
use OCP\Share\Exceptions\ShareNotFound;
|
|
|
|
use OCP\Share\IManager;
|
2015-02-18 20:28:24 +03:00
|
|
|
|
|
|
|
|
2015-02-12 14:29:01 +03:00
|
|
|
abstract class Node implements \Sabre\DAV\INode {
|
2012-11-07 17:21:34 +04:00
|
|
|
|
2013-09-24 17:35:21 +04:00
|
|
|
/**
|
|
|
|
* @var \OC\Files\View
|
|
|
|
*/
|
2014-02-25 19:23:09 +04:00
|
|
|
protected $fileView;
|
2013-09-24 17:35:21 +04:00
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
/**
|
|
|
|
* The path to the current node
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $path;
|
2013-10-23 18:03:57 +04:00
|
|
|
|
2012-06-15 19:51:56 +04:00
|
|
|
/**
|
|
|
|
* node properties cache
|
2014-02-25 19:23:09 +04:00
|
|
|
*
|
2012-06-15 19:51:56 +04:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $property_cache = null;
|
2011-07-20 17:53:34 +04:00
|
|
|
|
2014-02-25 19:23:09 +04:00
|
|
|
/**
|
|
|
|
* @var \OCP\Files\FileInfo
|
|
|
|
*/
|
|
|
|
protected $info;
|
|
|
|
|
2016-04-13 18:31:01 +03:00
|
|
|
/**
|
|
|
|
* @var IManager
|
|
|
|
*/
|
|
|
|
protected $shareManager;
|
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Sets up the node, expects a full path name
|
2015-07-22 16:12:36 +03:00
|
|
|
*
|
2014-02-25 19:23:09 +04:00
|
|
|
* @param \OC\Files\View $view
|
|
|
|
* @param \OCP\Files\FileInfo $info
|
2016-04-13 18:31:01 +03:00
|
|
|
* @param IManager $shareManager
|
2011-07-20 17:53:34 +04:00
|
|
|
*/
|
2017-05-05 01:32:22 +03:00
|
|
|
public function __construct(View $view, FileInfo $info, IManager $shareManager = null) {
|
2014-02-25 19:23:09 +04:00
|
|
|
$this->fileView = $view;
|
|
|
|
$this->path = $this->fileView->getRelativePath($info->getPath());
|
|
|
|
$this->info = $info;
|
2016-04-13 18:31:01 +03:00
|
|
|
if ($shareManager) {
|
|
|
|
$this->shareManager = $shareManager;
|
|
|
|
} else {
|
|
|
|
$this->shareManager = \OC::$server->getShareManager();
|
|
|
|
}
|
2011-07-20 17:53:34 +04:00
|
|
|
}
|
|
|
|
|
2014-02-25 19:23:09 +04:00
|
|
|
protected function refreshInfo() {
|
|
|
|
$this->info = $this->fileView->getFileInfo($this->path);
|
|
|
|
}
|
2011-07-20 17:53:34 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Returns the name of the node
|
2015-07-22 16:12:36 +03:00
|
|
|
*
|
2011-07-20 17:53:34 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName() {
|
2014-02-25 19:23:09 +04:00
|
|
|
return $this->info->getName();
|
2011-07-20 17:53:34 +04:00
|
|
|
}
|
|
|
|
|
2015-02-12 14:29:01 +03:00
|
|
|
/**
|
|
|
|
* Returns the full path
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPath() {
|
|
|
|
return $this->path;
|
|
|
|
}
|
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Renames the node
|
2015-07-22 16:12:36 +03:00
|
|
|
*
|
2011-07-20 17:53:34 +04:00
|
|
|
* @param string $name The new name
|
2014-01-09 17:25:48 +04:00
|
|
|
* @throws \Sabre\DAV\Exception\BadRequest
|
|
|
|
* @throws \Sabre\DAV\Exception\Forbidden
|
2011-07-20 17:53:34 +04:00
|
|
|
*/
|
|
|
|
public function setName($name) {
|
|
|
|
|
2013-09-24 15:26:12 +04:00
|
|
|
// rename is only allowed if the update privilege is granted
|
2014-02-25 19:23:09 +04:00
|
|
|
if (!$this->info->isUpdateable()) {
|
2014-01-09 17:25:48 +04:00
|
|
|
throw new \Sabre\DAV\Exception\Forbidden();
|
2013-09-24 15:26:12 +04:00
|
|
|
}
|
|
|
|
|
2017-07-20 10:43:23 +03:00
|
|
|
list($parentPath,) = \Sabre\Uri\split($this->path);
|
|
|
|
list(, $newName) = \Sabre\Uri\split($name);
|
2011-07-20 17:53:34 +04:00
|
|
|
|
2015-02-18 19:44:13 +03:00
|
|
|
// verify path of the target
|
|
|
|
$this->verifyPath();
|
2014-01-13 16:14:05 +04:00
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
$newPath = $parentPath . '/' . $newName;
|
2011-07-23 00:30:45 +04:00
|
|
|
|
2014-02-25 19:23:09 +04:00
|
|
|
$this->fileView->rename($this->path, $newPath);
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
$this->path = $newPath;
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2014-02-25 19:23:09 +04:00
|
|
|
$this->refreshInfo();
|
2011-07-20 17:53:34 +04:00
|
|
|
}
|
|
|
|
|
2014-02-25 19:23:09 +04:00
|
|
|
public function setPropertyCache($property_cache) {
|
2012-06-15 19:51:56 +04:00
|
|
|
$this->property_cache = $property_cache;
|
|
|
|
}
|
|
|
|
|
2011-07-20 17:53:34 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Returns the last modification time, as a unix timestamp
|
2015-07-22 16:12:36 +03:00
|
|
|
*
|
2014-04-08 13:57:33 +04:00
|
|
|
* @return int timestamp as integer
|
2011-07-20 17:53:34 +04:00
|
|
|
*/
|
|
|
|
public function getLastModified() {
|
2014-04-15 22:03:00 +04:00
|
|
|
$timestamp = $this->info->getMtime();
|
2014-04-08 13:57:33 +04:00
|
|
|
if (!empty($timestamp)) {
|
|
|
|
return (int)$timestamp;
|
|
|
|
}
|
|
|
|
return $timestamp;
|
2011-07-20 17:53:34 +04:00
|
|
|
}
|
|
|
|
|
2012-08-29 10:38:33 +04:00
|
|
|
/**
|
|
|
|
* sets the last modification time of the file (mtime) to the value given
|
2012-02-10 14:30:38 +04:00
|
|
|
* in the second parameter or to now if the second param is empty.
|
|
|
|
* Even if the modification time is set to a custom value the access time is set to now.
|
|
|
|
*/
|
2012-02-14 12:59:54 +04:00
|
|
|
public function touch($mtime) {
|
2014-02-25 19:23:09 +04:00
|
|
|
$this->fileView->touch($this->path, $mtime);
|
|
|
|
$this->refreshInfo();
|
2012-02-10 14:30:38 +04:00
|
|
|
}
|
|
|
|
|
2011-07-22 18:21:29 +04:00
|
|
|
/**
|
2015-02-12 14:29:01 +03:00
|
|
|
* Returns the ETag for a file
|
|
|
|
*
|
|
|
|
* An ETag is a unique identifier representing the current version of the
|
|
|
|
* file. If the file changes, the ETag MUST change. The ETag is an
|
|
|
|
* arbitrary string, but MUST be surrounded by double-quotes.
|
|
|
|
*
|
|
|
|
* Return null if the ETag can not effectively be determined
|
|
|
|
*
|
|
|
|
* @return string
|
2011-07-22 18:21:29 +04:00
|
|
|
*/
|
2015-02-12 14:29:01 +03:00
|
|
|
public function getETag() {
|
|
|
|
return '"' . $this->info->getEtag() . '"';
|
2011-07-22 18:21:29 +04:00
|
|
|
}
|
|
|
|
|
2013-10-22 21:41:26 +04:00
|
|
|
/**
|
2015-02-12 14:29:01 +03:00
|
|
|
* Sets the ETag
|
|
|
|
*
|
|
|
|
* @param string $etag
|
|
|
|
*
|
|
|
|
* @return int file id of updated file or -1 on failure
|
2013-10-22 21:41:26 +04:00
|
|
|
*/
|
2015-02-12 14:29:01 +03:00
|
|
|
public function setETag($etag) {
|
|
|
|
return $this->fileView->putFileInfo($this->path, array('etag' => $etag));
|
2013-10-22 21:41:26 +04:00
|
|
|
}
|
|
|
|
|
2011-07-22 18:21:29 +04:00
|
|
|
/**
|
2015-02-12 14:29:01 +03:00
|
|
|
* Returns the size of the node, in bytes
|
|
|
|
*
|
2015-11-20 18:42:34 +03:00
|
|
|
* @return integer
|
2011-07-22 18:21:29 +04:00
|
|
|
*/
|
2015-02-12 14:29:01 +03:00
|
|
|
public function getSize() {
|
|
|
|
return $this->info->getSize();
|
2011-07-22 18:21:29 +04:00
|
|
|
}
|
2012-07-21 01:52:47 +04:00
|
|
|
|
2014-12-15 19:49:24 +03:00
|
|
|
/**
|
|
|
|
* Returns the cache's file id
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getId() {
|
|
|
|
return $this->info->getId();
|
|
|
|
}
|
|
|
|
|
2013-10-23 18:03:57 +04:00
|
|
|
/**
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string|null
|
2013-10-23 18:03:57 +04:00
|
|
|
*/
|
2014-02-25 19:23:09 +04:00
|
|
|
public function getFileId() {
|
|
|
|
if ($this->info->getId()) {
|
2015-02-12 14:29:01 +03:00
|
|
|
$instanceId = \OC_Util::getInstanceId();
|
2014-02-25 19:23:09 +04:00
|
|
|
$id = sprintf('%08d', $this->info->getId());
|
2013-10-25 15:20:29 +04:00
|
|
|
return $id . $instanceId;
|
2013-10-23 18:40:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2013-10-23 18:03:57 +04:00
|
|
|
}
|
2014-05-02 19:37:16 +04:00
|
|
|
|
2015-11-18 13:41:04 +03:00
|
|
|
/**
|
2015-11-20 18:42:34 +03:00
|
|
|
* @return integer
|
2015-11-18 13:41:04 +03:00
|
|
|
*/
|
|
|
|
public function getInternalFileId() {
|
|
|
|
return $this->info->getId();
|
|
|
|
}
|
|
|
|
|
2016-03-03 22:58:18 +03:00
|
|
|
/**
|
2016-04-13 18:31:01 +03:00
|
|
|
* @param string $user
|
2016-03-03 22:58:18 +03:00
|
|
|
* @return int
|
|
|
|
*/
|
2016-04-13 18:31:01 +03:00
|
|
|
public function getSharePermissions($user) {
|
|
|
|
|
|
|
|
// check of we access a federated share
|
|
|
|
if ($user !== null) {
|
|
|
|
try {
|
|
|
|
$share = $this->shareManager->getShareByToken($user);
|
|
|
|
return $share->getPermissions();
|
|
|
|
} catch (ShareNotFound $e) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-03 22:58:18 +03:00
|
|
|
$storage = $this->info->getStorage();
|
|
|
|
|
|
|
|
$path = $this->info->getInternalPath();
|
|
|
|
|
2016-06-01 15:29:31 +03:00
|
|
|
if ($storage->instanceOfStorage('\OCA\Files_Sharing\SharedStorage')) {
|
|
|
|
/** @var \OCA\Files_Sharing\SharedStorage $storage */
|
2016-04-15 10:02:01 +03:00
|
|
|
$permissions = (int)$storage->getShare()->getPermissions();
|
2016-03-03 22:58:18 +03:00
|
|
|
} else {
|
|
|
|
$permissions = $storage->getPermissions($path);
|
|
|
|
}
|
|
|
|
|
2016-03-31 21:17:59 +03:00
|
|
|
/*
|
|
|
|
* We can always share non moveable mount points with DELETE and UPDATE
|
|
|
|
* Eventually we need to do this properly
|
|
|
|
*/
|
|
|
|
$mountpoint = $this->info->getMountPoint();
|
|
|
|
if (!($mountpoint instanceof MoveableMount)) {
|
2016-03-31 22:25:23 +03:00
|
|
|
$mountpointpath = $mountpoint->getMountPoint();
|
|
|
|
if (substr($mountpointpath, -1) === '/') {
|
|
|
|
$mountpointpath = substr($mountpointpath, 0, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($mountpointpath === $this->info->getPath()) {
|
|
|
|
$permissions |= \OCP\Constants::PERMISSION_DELETE | \OCP\Constants::PERMISSION_UPDATE;
|
|
|
|
}
|
2016-03-31 21:17:59 +03:00
|
|
|
}
|
|
|
|
|
2016-03-03 22:58:18 +03:00
|
|
|
/*
|
|
|
|
* Files can't have create or delete permissions
|
|
|
|
*/
|
|
|
|
if ($this->info->getType() === \OCP\Files\FileInfo::TYPE_FILE) {
|
|
|
|
$permissions &= ~(\OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_DELETE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $permissions;
|
|
|
|
}
|
|
|
|
|
2014-05-02 19:37:16 +04:00
|
|
|
/**
|
2015-11-20 18:42:34 +03:00
|
|
|
* @return string
|
2014-05-02 19:37:16 +04:00
|
|
|
*/
|
|
|
|
public function getDavPermissions() {
|
2015-07-22 16:12:36 +03:00
|
|
|
$p = '';
|
2014-05-02 19:37:16 +04:00
|
|
|
if ($this->info->isShared()) {
|
|
|
|
$p .= 'S';
|
|
|
|
}
|
|
|
|
if ($this->info->isShareable()) {
|
|
|
|
$p .= 'R';
|
|
|
|
}
|
|
|
|
if ($this->info->isMounted()) {
|
|
|
|
$p .= 'M';
|
|
|
|
}
|
2017-11-02 19:28:58 +03:00
|
|
|
if ($this->info->isReadable()) {
|
|
|
|
$p .= 'G';
|
|
|
|
}
|
2014-05-09 19:18:43 +04:00
|
|
|
if ($this->info->isDeletable()) {
|
|
|
|
$p .= 'D';
|
|
|
|
}
|
2016-03-03 21:47:35 +03:00
|
|
|
if ($this->info->isUpdateable()) {
|
2014-06-05 16:39:06 +04:00
|
|
|
$p .= 'NV'; // Renameable, Moveable
|
2014-05-09 19:18:43 +04:00
|
|
|
}
|
2014-05-02 19:37:16 +04:00
|
|
|
if ($this->info->getType() === \OCP\Files\FileInfo::TYPE_FILE) {
|
|
|
|
if ($this->info->isUpdateable()) {
|
|
|
|
$p .= 'W';
|
|
|
|
}
|
|
|
|
} else {
|
2014-09-24 19:50:33 +04:00
|
|
|
if ($this->info->isCreatable()) {
|
2014-05-02 19:37:16 +04:00
|
|
|
$p .= 'CK';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $p;
|
|
|
|
}
|
2015-02-18 19:44:13 +03:00
|
|
|
|
2015-11-02 17:05:16 +03:00
|
|
|
public function getOwner() {
|
|
|
|
return $this->info->getOwner();
|
|
|
|
}
|
|
|
|
|
2015-02-18 19:44:13 +03:00
|
|
|
protected function verifyPath() {
|
|
|
|
try {
|
|
|
|
$fileName = basename($this->info->getPath());
|
|
|
|
$this->fileView->verifyPath($this->path, $fileName);
|
|
|
|
} catch (\OCP\Files\InvalidPathException $ex) {
|
2015-02-18 20:28:24 +03:00
|
|
|
throw new InvalidPath($ex->getMessage());
|
2015-02-18 19:44:13 +03:00
|
|
|
}
|
|
|
|
}
|
2015-07-22 16:12:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
|
|
|
|
*/
|
|
|
|
public function acquireLock($type) {
|
|
|
|
$this->fileView->lockFile($this->path, $type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
|
|
|
|
*/
|
|
|
|
public function releaseLock($type) {
|
|
|
|
$this->fileView->unlockFile($this->path, $type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
|
|
|
|
*/
|
|
|
|
public function changeLock($type) {
|
|
|
|
$this->fileView->changeLock($this->path, $type);
|
|
|
|
}
|
2016-06-06 18:01:27 +03:00
|
|
|
|
|
|
|
public function getFileInfo() {
|
|
|
|
return $this->info;
|
|
|
|
}
|
2011-07-20 17:53:34 +04:00
|
|
|
}
|