Consolidate webdav code - move all to one app

This commit is contained in:
Thomas Müller 2015-08-30 19:13:01 +02:00
parent 4b9ec49285
commit f2889dc6e4
56 changed files with 249 additions and 177 deletions

1
.gitignore vendored
View File

@ -9,6 +9,7 @@
# ignore all apps except core ones
/apps*/*
!/apps/dav
!/apps/files
!/apps/files_encryption
!/apps/encryption

22
apps/dav/appinfo/info.xml Normal file
View File

@ -0,0 +1,22 @@
<?xml version="1.0"?>
<info>
<id>dav</id>
<name>WebDAV</name>
<description>ownCloud WebDAV endppint</description>
<licence>AGPL</licence>
<author>owncloud.org</author>
<requiremin>8.2</requiremin>
<shipped>true</shipped>
<standalone/>
<default_enable/>
<types>
<filesystem/>
</types>
<remote>
<files>appinfo/v1/webdav.php</files>
<webdav>appinfo/v1/webdav.php</webdav>
</remote>
<public>
<webdav>appinfo/v1/publicwebdav.php</webdav>
</public>
</info>

View File

@ -23,16 +23,16 @@
*/
// load needed apps
$RUNTIME_APPTYPES = array('filesystem', 'authentication', 'logging');
$RUNTIME_APPTYPES = ['filesystem', 'authentication', 'logging'];
OC_App::loadApps($RUNTIME_APPTYPES);
OC_Util::obEnd();
// Backends
$authBackend = new OCA\Files_Sharing\Connector\PublicAuth(\OC::$server->getConfig());
$authBackend = new OCA\DAV\Connector\PublicAuth(\OC::$server->getConfig());
$serverFactory = new \OC\Connector\Sabre\ServerFactory(
$serverFactory = new OCA\DAV\Connector\Sabre\ServerFactory(
\OC::$server->getConfig(),
\OC::$server->getLogger(),
\OC::$server->getDatabaseConnection(),

View File

@ -0,0 +1,55 @@
<?php
/**
* @author Bart Visscher <bartv@thisnet.nl>
* @author Frank Karlitschek <frank@owncloud.org>
* @author Jakob Sack <mail@jakobsack.de>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Vincent Petry <pvince81@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* 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/>
*
*/
// no php execution timeout for webdav
set_time_limit(0);
// Turn off output buffering to prevent memory problems
\OC_Util::obEnd();
$serverFactory = new \OCA\DAV\Connector\Sabre\ServerFactory(
\OC::$server->getConfig(),
\OC::$server->getLogger(),
\OC::$server->getDatabaseConnection(),
\OC::$server->getUserSession(),
\OC::$server->getMountManager(),
\OC::$server->getTagManager()
);
// Backends
$authBackend = new \OCA\DAV\Connector\Sabre\Auth();
$requestUri = \OC::$server->getRequest()->getRequestUri();
$server = $serverFactory->createServer($baseuri, $requestUri, $authBackend, function() {
// use the view for the logged in user
return \OC\Files\Filesystem::getView();
});
// And off we go!
$server->exec();

View File

@ -24,7 +24,7 @@
*
*/
namespace OCA\Files_Sharing\Connector;
namespace OCA\DAV\Connector;
class PublicAuth extends \Sabre\DAV\Auth\Backend\AbstractBasic {

View File

@ -21,7 +21,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OCP\App\IAppManager;
use Sabre\DAV\Exception\Forbidden;

View File

@ -27,7 +27,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use Exception;
use Sabre\DAV\Auth\Backend\AbstractBasic;

View File

@ -19,7 +19,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OCP\IConfig;
use Sabre\HTTP\RequestInterface;
@ -30,7 +30,7 @@ use Sabre\DAV\Exception;
* Class BlockLegacyClientPlugin is used to detect old legacy sync clients and
* returns a 403 status to those clients
*
* @package OC\Connector\Sabre
* @package OCA\DAV\Connector\Sabre
*/
class BlockLegacyClientPlugin extends ServerPlugin {
/** @var \Sabre\DAV\Server */

View File

@ -19,7 +19,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use \Sabre\HTTP\RequestInterface;
use \Sabre\HTTP\ResponseInterface;

View File

@ -21,7 +21,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OCP\IDBConnection;
use OCP\IUser;

View File

@ -26,15 +26,15 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OC\Connector\Sabre\Exception\InvalidPath;
use OC\Connector\Sabre\Exception\FileLocked;
use OCA\DAV\Connector\Sabre\Exception\InvalidPath;
use OCA\DAV\Connector\Sabre\Exception\FileLocked;
use OCP\Lock\ILockingProvider;
use OCP\Lock\LockedException;
use Sabre\DAV\Exception\Locked;
class Directory extends \OC\Connector\Sabre\Node
class Directory extends \OCA\DAV\Connector\Sabre\Node
implements \Sabre\DAV\ICollection, \Sabre\DAV\IQuota {
/**
@ -110,7 +110,7 @@ class Directory extends \OC\Connector\Sabre\Node
$path = $this->fileView->getAbsolutePath($this->path) . '/' . $name;
// using a dummy FileInfo is acceptable here since it will be refreshed after the put is complete
$info = new \OC\Files\FileInfo($path, null, null, array(), null);
$node = new \OC\Connector\Sabre\File($this->fileView, $info);
$node = new \OCA\DAV\Connector\Sabre\File($this->fileView, $info);
$node->acquireLock(ILockingProvider::LOCK_SHARED);
return $node->put($data);
} catch (\OCP\Files\StorageNotAvailableException $e) {
@ -179,9 +179,9 @@ class Directory extends \OC\Connector\Sabre\Node
}
if ($info['mimetype'] == 'httpd/unix-directory') {
$node = new \OC\Connector\Sabre\Directory($this->fileView, $info);
$node = new \OCA\DAV\Connector\Sabre\Directory($this->fileView, $info);
} else {
$node = new \OC\Connector\Sabre\File($this->fileView, $info);
$node = new \OCA\DAV\Connector\Sabre\File($this->fileView, $info);
}
return $node;
}

View File

@ -19,7 +19,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use Sabre\HTTP\ResponseInterface;
use Sabre\HTTP\RequestInterface;
@ -34,7 +34,7 @@ use Sabre\HTTP\RequestInterface;
*
* FIXME: Remove once clients are all compliant.
*
* @package OC\Connector\Sabre
* @package OCA\DAV\Connector\Sabre
*/
class DummyGetResponsePlugin extends \Sabre\DAV\ServerPlugin {
/** @var \Sabre\DAV\Server */

View File

@ -20,7 +20,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Connector\Sabre\Exception;
namespace OCA\DAV\Connector\Sabre\Exception;
/**
* Entity Too Large

View File

@ -22,7 +22,7 @@
*
*/
namespace OC\Connector\Sabre\Exception;
namespace OCA\DAV\Connector\Sabre\Exception;
use Exception;

View File

@ -19,7 +19,7 @@
*
*/
namespace OC\Connector\Sabre\Exception;
namespace OCA\DAV\Connector\Sabre\Exception;
use Sabre\DAV\Exception;

View File

@ -20,7 +20,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Connector\Sabre\Exception;
namespace OCA\DAV\Connector\Sabre\Exception;
/**
* Unsupported Media Type

View File

@ -22,7 +22,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OCP\ILogger;
use Sabre\DAV\Exception;

View File

@ -30,12 +30,12 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OC\Connector\Sabre\Exception\EntityTooLarge;
use OC\Connector\Sabre\Exception\FileLocked;
use OC\Connector\Sabre\Exception\UnsupportedMediaType;
use OC\Files\Filesystem;
use OCA\DAV\Connector\Sabre\Exception\EntityTooLarge;
use OCA\DAV\Connector\Sabre\Exception\FileLocked;
use OCA\DAV\Connector\Sabre\Exception\UnsupportedMediaType;
use OCP\Encryption\Exceptions\GenericEncryptionException;
use OCP\Files\EntityTooLargeException;
use OCP\Files\InvalidContentException;

View File

@ -24,7 +24,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use Sabre\DAV\IFile;
use \Sabre\DAV\PropFind;
@ -161,7 +161,7 @@ class FilesPlugin extends \Sabre\DAV\ServerPlugin {
*/
public function handleGetProperties(PropFind $propFind, \Sabre\DAV\INode $node) {
if ($node instanceof \OC\Connector\Sabre\Node) {
if ($node instanceof \OCA\DAV\Connector\Sabre\Node) {
$propFind->handle(self::FILEID_PROPERTYNAME, function() use ($node) {
return $node->getFileId();
@ -181,9 +181,9 @@ class FilesPlugin extends \Sabre\DAV\ServerPlugin {
});
}
if ($node instanceof \OC\Connector\Sabre\File) {
if ($node instanceof \OCA\DAV\Connector\Sabre\File) {
$propFind->handle(self::DOWNLOADURL_PROPERTYNAME, function() use ($node) {
/** @var $node \OC\Connector\Sabre\File */
/** @var $node \OCA\DAV\Connector\Sabre\File */
$directDownloadUrl = $node->getDirectDownload();
if (isset($directDownloadUrl['url'])) {
return $directDownloadUrl['url'];
@ -192,7 +192,7 @@ class FilesPlugin extends \Sabre\DAV\ServerPlugin {
});
}
if ($node instanceof \OC\Connector\Sabre\Directory) {
if ($node instanceof \OCA\DAV\Connector\Sabre\Directory) {
$propFind->handle(self::SIZE_PROPERTYNAME, function() use ($node) {
return $node->getSize();
});
@ -254,7 +254,7 @@ class FilesPlugin extends \Sabre\DAV\ServerPlugin {
return;
}
$node = $this->server->tree->getNodeForPath($filePath);
if ($node instanceof \OC\Connector\Sabre\Node) {
if ($node instanceof \OCA\DAV\Connector\Sabre\Node) {
$fileId = $node->getFileId();
if (!is_null($fileId)) {
$this->server->httpResponse->setHeader('OC-FileId', $fileId);

View File

@ -21,16 +21,14 @@
namespace OC\Connector\Sabre;
use OC\Connector\Sabre\Exception\FileLocked;
use OCA\DAV\Connector\Sabre\Exception\FileLocked;
use OCA\DAV\Connector\Sabre\Node;
use OCP\Lock\ILockingProvider;
use OCP\Lock\LockedException;
use Sabre\DAV\Exception\NotFound;
use \Sabre\DAV\PropFind;
use \Sabre\DAV\PropPatch;
use Sabre\DAV\ServerPlugin;
use Sabre\DAV\Tree;
use Sabre\HTTP\RequestInterface;
use Sabre\HTTP\ResponseInterface;
class LockPlugin extends ServerPlugin {
/**

View File

@ -24,7 +24,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OCP\IConfig;
use Sabre\DAV\Exception\ServiceUnavailable;

View File

@ -28,9 +28,9 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OC\Connector\Sabre\Exception\InvalidPath;
use OCA\DAV\Connector\Sabre\Exception\InvalidPath;
abstract class Node implements \Sabre\DAV\INode {

View File

@ -23,10 +23,10 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OC\Connector\Sabre\Exception\InvalidPath;
use OC\Connector\Sabre\Exception\FileLocked;
use OCA\DAV\Connector\Sabre\Exception\InvalidPath;
use OCA\DAV\Connector\Sabre\Exception\FileLocked;
use OC\Files\FileInfo;
use OC\Files\Mount\MoveableMount;
use OCP\Files\StorageInvalidException;
@ -160,9 +160,9 @@ class ObjectTree extends \Sabre\DAV\Tree {
}
if ($info->getType() === 'dir') {
$node = new \OC\Connector\Sabre\Directory($this->fileView, $info);
$node = new \OCA\DAV\Connector\Sabre\Directory($this->fileView, $info);
} else {
$node = new \OC\Connector\Sabre\File($this->fileView, $info);
$node = new \OCA\DAV\Connector\Sabre\File($this->fileView, $info);
}
$this->cache[$path] = $node;

View File

@ -28,7 +28,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OCP\IUserManager;
use OCP\IConfig;

View File

@ -25,7 +25,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
/**
* This plugin check user quota and deny creating files when they exceeds the quota.

View File

@ -22,10 +22,10 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
/**
* Class \OC\Connector\Sabre\Server
* Class \OCA\DAV\Connector\Sabre\Server
*
* This class overrides some methods from @see \Sabre\DAV\Server.
*

View File

@ -20,7 +20,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use OCP\Files\Mount\IMountManager;
use OCP\IConfig;
@ -59,22 +59,22 @@ class ServerFactory {
*/
public function createServer($baseUri, $requestUri, BackendInterface $authBackend, callable $viewCallBack) {
// Fire up server
$objectTree = new \OC\Connector\Sabre\ObjectTree();
$server = new \OC\Connector\Sabre\Server($objectTree);
$objectTree = new \OCA\DAV\Connector\Sabre\ObjectTree();
$server = new \OCA\DAV\Connector\Sabre\Server($objectTree);
// Set URL explicitly due to reverse-proxy situations
$server->httpRequest->setUrl($requestUri);
$server->setBaseUri($baseUri);
// Load plugins
$defaults = new \OC_Defaults();
$server->addPlugin(new \OC\Connector\Sabre\MaintenancePlugin($this->config));
$server->addPlugin(new \OC\Connector\Sabre\BlockLegacyClientPlugin($this->config));
$server->addPlugin(new \OCA\DAV\Connector\Sabre\MaintenancePlugin($this->config));
$server->addPlugin(new \OCA\DAV\Connector\Sabre\BlockLegacyClientPlugin($this->config));
$server->addPlugin(new \Sabre\DAV\Auth\Plugin($authBackend, $defaults->getName()));
// FIXME: The following line is a workaround for legacy components relying on being able to send a GET to /
$server->addPlugin(new \OC\Connector\Sabre\DummyGetResponsePlugin());
$server->addPlugin(new \OC\Connector\Sabre\ExceptionLoggerPlugin('webdav', $this->logger));
$server->addPlugin(new \OC\Connector\Sabre\LockPlugin($objectTree));
$server->addPlugin(new \OC\Connector\Sabre\ListenerPlugin($this->dispatcher));
$server->addPlugin(new \OCA\DAV\Connector\Sabre\DummyGetResponsePlugin());
$server->addPlugin(new \OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin('webdav', $this->logger));
$server->addPlugin(new \OCA\DAV\Connector\Sabre\LockPlugin($objectTree));
$server->addPlugin(new \OCA\DAV\Connector\Sabre\ListenerPlugin($this->dispatcher));
// wait with registering these until auth is handled and the filesystem is setup
$server->on('beforeMethod', function () use ($server, $objectTree, $viewCallBack) {
@ -84,21 +84,21 @@ class ServerFactory {
// Create ownCloud Dir
if ($rootInfo->getType() === 'dir') {
$root = new \OC\Connector\Sabre\Directory($view, $rootInfo);
$root = new \OCA\DAV\Connector\Sabre\Directory($view, $rootInfo);
} else {
$root = new \OC\Connector\Sabre\File($view, $rootInfo);
$root = new \OCA\DAV\Connector\Sabre\File($view, $rootInfo);
}
$objectTree->init($root, $view, $this->mountManager);
$server->addPlugin(new \OC\Connector\Sabre\FilesPlugin($objectTree, $view));
$server->addPlugin(new \OC\Connector\Sabre\QuotaPlugin($view));
$server->addPlugin(new \OCA\DAV\Connector\Sabre\FilesPlugin($objectTree, $view));
$server->addPlugin(new \OCA\DAV\Connector\Sabre\QuotaPlugin($view));
if($this->userSession->isLoggedIn()) {
$server->addPlugin(new \OC\Connector\Sabre\TagsPlugin($objectTree, $this->tagManager));
$server->addPlugin(new \OCA\DAV\Connector\Sabre\TagsPlugin($objectTree, $this->tagManager));
// custom properties plugin must be the last one
$server->addPlugin(
new \Sabre\DAV\PropertyStorage\Plugin(
new \OC\Connector\Sabre\CustomPropertiesBackend(
new \OCA\DAV\Connector\Sabre\CustomPropertiesBackend(
$objectTree,
$this->databaseConnection,
$this->userSession->getUser()
@ -106,7 +106,7 @@ class ServerFactory {
)
);
}
$server->addPlugin(new \OC\Connector\Sabre\CopyEtagHeaderPlugin());
$server->addPlugin(new \OCA\DAV\Connector\Sabre\CopyEtagHeaderPlugin());
}, 30); // priority 30: after auth (10) and acl(20), before lock(50) and handling the request
return $server;
}

View File

@ -20,7 +20,7 @@
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
use Sabre\DAV;
@ -86,7 +86,7 @@ class TagList extends DAV\Property {
*
* @param \DOMElement $dom
* @param array $propertyMap
* @return \OC\Connector\Sabre\TagList
* @return \OCA\DAV\Connector\Sabre\TagList
*/
static function unserialize(\DOMElement $dom, array $propertyMap) {

View File

@ -18,7 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Connector\Sabre;
namespace OCA\DAV\Connector\Sabre;
/**
* ownCloud
@ -206,12 +206,12 @@ class TagsPlugin extends \Sabre\DAV\ServerPlugin
PropFind $propFind,
\Sabre\DAV\INode $node
) {
if (!($node instanceof \OC\Connector\Sabre\Node)) {
if (!($node instanceof \OCA\DAV\Connector\Sabre\Node)) {
return;
}
// need prefetch ?
if ($node instanceof \OC\Connector\Sabre\Directory
if ($node instanceof \OCA\DAV\Connector\Sabre\Directory
&& $propFind->getDepth() !== 0
&& (!is_null($propFind->getStatus(self::TAGS_PROPERTYNAME))
|| !is_null($propFind->getStatus(self::FAVORITE_PROPERTYNAME))

View File

@ -21,7 +21,7 @@
namespace Test\Connector\Sabre;
use OC\Connector\Sabre\BlockLegacyClientPlugin;
use OCA\DAV\Connector\Sabre\BlockLegacyClientPlugin;
use Test\TestCase;
use OCP\IConfig;

View File

@ -21,7 +21,7 @@
namespace Test\Connector\Sabre;
use OC\Connector\Sabre\DummyGetResponsePlugin;
use OCA\DAV\Connector\Sabre\DummyGetResponsePlugin;
use Test\TestCase;
/**

View File

@ -21,7 +21,7 @@
namespace Test\Connector\Sabre;
use OC\Connector\Sabre\MaintenancePlugin;
use OCA\DAV\Connector\Sabre\MaintenancePlugin;
use Test\TestCase;
use OCP\IConfig;

View File

@ -11,14 +11,14 @@ namespace Tests\Connector\Sabre;
class CopyEtagPluginTest extends \Test\TestCase {
/**
* @var \OC\Connector\Sabre\CopyEtagHeaderPlugin
* @var \OCA\DAV\Connector\Sabre\CopyEtagHeaderPlugin
*/
private $plugin;
public function setUp() {
parent::setUp();
$this->server = new \Sabre\DAV\Server();
$this->plugin = new \OC\Connector\Sabre\CopyEtagHeaderPlugin();
$this->plugin = new \OCA\DAV\Connector\Sabre\CopyEtagHeaderPlugin();
$this->plugin->initialize($this->server);
}

View File

@ -21,7 +21,7 @@ class CustomPropertiesBackend extends \Test\TestCase {
private $tree;
/**
* @var \OC\Connector\Sabre\CustomPropertiesBackend
* @var \OCA\DAV\Connector\Sabre\CustomPropertiesBackend
*/
private $plugin;
@ -44,7 +44,7 @@ class CustomPropertiesBackend extends \Test\TestCase {
->method('getUID')
->will($this->returnValue($userId));
$this->plugin = new \OC\Connector\Sabre\CustomPropertiesBackend(
$this->plugin = new \OCA\DAV\Connector\Sabre\CustomPropertiesBackend(
$this->tree,
\OC::$server->getDatabaseConnection(),
$this->user
@ -143,7 +143,7 @@ class CustomPropertiesBackend extends \Test\TestCase {
* Test setting/getting properties
*/
public function testSetGetPropertiesForFile() {
$node = $this->createTestNode('\OC\Connector\Sabre\File');
$node = $this->createTestNode('\OCA\DAV\Connector\Sabre\File');
$this->tree->expects($this->any())
->method('getNodeForPath')
->with('/dummypath')
@ -175,9 +175,9 @@ class CustomPropertiesBackend extends \Test\TestCase {
* Test getting properties from directory
*/
public function testGetPropertiesForDirectory() {
$rootNode = $this->createTestNode('\OC\Connector\Sabre\Directory');
$rootNode = $this->createTestNode('\OCA\DAV\Connector\Sabre\Directory');
$nodeSub = $this->getMockBuilder('\OC\Connector\Sabre\File')
$nodeSub = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\File')
->disableOriginalConstructor()
->getMock();
$nodeSub->expects($this->any())
@ -259,7 +259,7 @@ class CustomPropertiesBackend extends \Test\TestCase {
* Test delete property
*/
public function testDeleteProperty() {
$node = $this->createTestNode('\OC\Connector\Sabre\File');
$node = $this->createTestNode('\OCA\DAV\Connector\Sabre\File');
$this->tree->expects($this->any())
->method('getNodeForPath')
->with('/dummypath')

View File

@ -29,7 +29,7 @@ class Test_OC_Connector_Sabre_Directory extends \Test\TestCase {
->method('getPath')
->will($this->returnValue($path));
return new \OC\Connector\Sabre\Directory($this->view, $this->info);
return new \OCA\DAV\Connector\Sabre\Directory($this->view, $this->info);
}
/**
@ -124,7 +124,7 @@ class Test_OC_Connector_Sabre_Directory extends \Test\TestCase {
->method('getRelativePath')
->will($this->returnValue(''));
$dir = new \OC\Connector\Sabre\Directory($this->view, $this->info);
$dir = new \OCA\DAV\Connector\Sabre\Directory($this->view, $this->info);
$nodes = $dir->getChildren();
$this->assertEquals(2, count($nodes));
@ -142,12 +142,12 @@ class Test_OC_Connector_Sabre_Directory extends \Test\TestCase {
->method('getFileInfo')
->willThrowException(new \OCP\Files\StorageNotAvailableException());
$dir = new \OC\Connector\Sabre\Directory($this->view, $this->info);
$dir = new \OCA\DAV\Connector\Sabre\Directory($this->view, $this->info);
$dir->getChild('.');
}
/**
* @expectedException \OC\Connector\Sabre\Exception\InvalidPath
* @expectedException \OCA\DAV\Connector\Sabre\Exception\InvalidPath
*/
public function testGetChildThrowInvalidPath() {
$this->view->expects($this->once())
@ -156,7 +156,7 @@ class Test_OC_Connector_Sabre_Directory extends \Test\TestCase {
$this->view->expects($this->never())
->method('getFileInfo');
$dir = new \OC\Connector\Sabre\Directory($this->view, $this->info);
$dir = new \OCA\DAV\Connector\Sabre\Directory($this->view, $this->info);
$dir->getChild('.');
}
@ -186,7 +186,7 @@ class Test_OC_Connector_Sabre_Directory extends \Test\TestCase {
->method('getStorage')
->will($this->returnValue($storage));
$dir = new \OC\Connector\Sabre\Directory($this->view, $this->info);
$dir = new \OCA\DAV\Connector\Sabre\Directory($this->view, $this->info);
$this->assertEquals([200, 800], $dir->getQuotaInfo()); //200 used, 800 free
}
}

View File

@ -2,7 +2,7 @@
namespace Test\Connector\Sabre\Exception;
use OC\Connector\Sabre\Exception\InvalidPath;
use OCA\DAV\Connector\Sabre\Exception\InvalidPath;
/**
* Copyright (c) 2015 Thomas Müller <deepdiver@owncloud.com>

View File

@ -9,8 +9,8 @@
namespace Test\Connector\Sabre;
use OC\Connector\Sabre\Exception\InvalidPath;
use OC\Connector\Sabre\ExceptionLoggerPlugin as PluginToTest;
use OCA\DAV\Connector\Sabre\Exception\InvalidPath;
use OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin as PluginToTest;
use OC\Log;
use OCP\ILogger;
use PHPUnit_Framework_MockObject_MockObject;

View File

@ -61,11 +61,11 @@ class File extends \Test\TestCase {
],
[
new \OCP\Files\EntityTooLargeException(),
'OC\Connector\Sabre\Exception\EntityTooLarge'
'OCA\DAV\Connector\Sabre\Exception\EntityTooLarge'
],
[
new \OCP\Files\InvalidContentException(),
'OC\Connector\Sabre\Exception\UnsupportedMediaType'
'OCA\DAV\Connector\Sabre\Exception\UnsupportedMediaType'
],
[
new \OCP\Files\InvalidPathException(),
@ -73,11 +73,11 @@ class File extends \Test\TestCase {
],
[
new \OCP\Files\LockNotAcquiredException('/test.txt', 1),
'OC\Connector\Sabre\Exception\FileLocked'
'OCA\DAV\Connector\Sabre\Exception\FileLocked'
],
[
new \OCP\Lock\LockedException('/test.txt'),
'OC\Connector\Sabre\Exception\FileLocked'
'OCA\DAV\Connector\Sabre\Exception\FileLocked'
],
[
new \OCP\Encryption\Exceptions\GenericEncryptionException(),
@ -137,7 +137,7 @@ class File extends \Test\TestCase {
'permissions' => \OCP\Constants::PERMISSION_ALL
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$caughtException = null;
@ -196,7 +196,7 @@ class File extends \Test\TestCase {
$info = new \OC\Files\FileInfo('/test.txt-chunking-12345-2-0', null, null, [
'permissions' => \OCP\Constants::PERMISSION_ALL
], null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// put first chunk
$this->assertNull($file->put('test data one'));
@ -204,7 +204,7 @@ class File extends \Test\TestCase {
$info = new \OC\Files\FileInfo('/test.txt-chunking-12345-2-1', null, null, [
'permissions' => \OCP\Constants::PERMISSION_ALL
], null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$caughtException = null;
@ -249,7 +249,7 @@ class File extends \Test\TestCase {
null
);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// beforeMethod locks
$view->lockFile($path, ILockingProvider::LOCK_SHARED);
@ -436,7 +436,7 @@ class File extends \Test\TestCase {
'permissions' => \OCP\Constants::PERMISSION_ALL
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$thrown = false;
@ -469,7 +469,7 @@ class File extends \Test\TestCase {
'permissions' => \OCP\Constants::PERMISSION_ALL
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$thrown = false;
@ -481,7 +481,7 @@ class File extends \Test\TestCase {
// afterMethod unlocks
$view->unlockFile($info->getPath(), ILockingProvider::LOCK_SHARED);
} catch (\OC\Connector\Sabre\Exception\FileLocked $e) {
} catch (\OCA\DAV\Connector\Sabre\Exception\FileLocked $e) {
$thrown = true;
}
@ -503,19 +503,19 @@ class File extends \Test\TestCase {
$info = new \OC\Files\FileInfo('/' . $this->user . '/files/test.txt-chunking-12345-2-0', null, null, [
'permissions' => \OCP\Constants::PERMISSION_ALL
], null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
$this->assertNull($file->put('test data one'));
$info = new \OC\Files\FileInfo('/' . $this->user . '/files/test.txt-chunking-12345-2-1', null, null, [
'permissions' => \OCP\Constants::PERMISSION_ALL
], null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$thrown = false;
try {
$file->put($this->getStream('test data'));
} catch (\OC\Connector\Sabre\Exception\FileLocked $e) {
} catch (\OCA\DAV\Connector\Sabre\Exception\FileLocked $e) {
$thrown = true;
}
@ -536,7 +536,7 @@ class File extends \Test\TestCase {
$info = new \OC\Files\FileInfo('/*', null, null, array(
'permissions' => \OCP\Constants::PERMISSION_ALL
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$thrown = false;
@ -548,7 +548,7 @@ class File extends \Test\TestCase {
// afterMethod unlocks
$view->unlockFile($info->getPath(), ILockingProvider::LOCK_SHARED);
} catch (\OC\Connector\Sabre\Exception\InvalidPath $e) {
} catch (\OCA\DAV\Connector\Sabre\Exception\InvalidPath $e) {
$thrown = true;
}
@ -559,7 +559,7 @@ class File extends \Test\TestCase {
/**
* Test setting name with setName() with invalid chars
*
* @expectedException \OC\Connector\Sabre\Exception\InvalidPath
* @expectedException \OCA\DAV\Connector\Sabre\Exception\InvalidPath
*/
public function testSetNameInvalidChars() {
// setup
@ -572,7 +572,7 @@ class File extends \Test\TestCase {
$info = new \OC\Files\FileInfo('/*', null, null, array(
'permissions' => \OCP\Constants::PERMISSION_ALL
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
$file->setName('/super*star.txt');
}
@ -600,7 +600,7 @@ class File extends \Test\TestCase {
'permissions' => \OCP\Constants::PERMISSION_ALL
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$thrown = false;
@ -636,7 +636,7 @@ class File extends \Test\TestCase {
'permissions' => \OCP\Constants::PERMISSION_ALL
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$file->delete();
@ -654,7 +654,7 @@ class File extends \Test\TestCase {
'permissions' => 0
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$file->delete();
@ -677,7 +677,7 @@ class File extends \Test\TestCase {
'permissions' => \OCP\Constants::PERMISSION_ALL
), null);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
// action
$file->delete();
@ -714,7 +714,7 @@ class File extends \Test\TestCase {
null
);
$file = new \OC\Connector\Sabre\File($view, $info);
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
$this->assertFalse(
$this->isFileLocked($view, $path, \OCP\Lock\ILockingProvider::LOCK_SHARED),

View File

@ -9,12 +9,12 @@ namespace Tests\Connector\Sabre;
* See the COPYING-README file.
*/
class FilesPlugin extends \Test\TestCase {
const GETETAG_PROPERTYNAME = \OC\Connector\Sabre\FilesPlugin::GETETAG_PROPERTYNAME;
const FILEID_PROPERTYNAME = \OC\Connector\Sabre\FilesPlugin::FILEID_PROPERTYNAME;
const SIZE_PROPERTYNAME = \OC\Connector\Sabre\FilesPlugin::SIZE_PROPERTYNAME;
const PERMISSIONS_PROPERTYNAME = \OC\Connector\Sabre\FilesPlugin::PERMISSIONS_PROPERTYNAME;
const LASTMODIFIED_PROPERTYNAME = \OC\Connector\Sabre\FilesPlugin::LASTMODIFIED_PROPERTYNAME;
const DOWNLOADURL_PROPERTYNAME = \OC\Connector\Sabre\FilesPlugin::DOWNLOADURL_PROPERTYNAME;
const GETETAG_PROPERTYNAME = \OCA\DAV\Connector\Sabre\FilesPlugin::GETETAG_PROPERTYNAME;
const FILEID_PROPERTYNAME = \OCA\DAV\Connector\Sabre\FilesPlugin::FILEID_PROPERTYNAME;
const SIZE_PROPERTYNAME = \OCA\DAV\Connector\Sabre\FilesPlugin::SIZE_PROPERTYNAME;
const PERMISSIONS_PROPERTYNAME = \OCA\DAV\Connector\Sabre\FilesPlugin::PERMISSIONS_PROPERTYNAME;
const LASTMODIFIED_PROPERTYNAME = \OCA\DAV\Connector\Sabre\FilesPlugin::LASTMODIFIED_PROPERTYNAME;
const DOWNLOADURL_PROPERTYNAME = \OCA\DAV\Connector\Sabre\FilesPlugin::DOWNLOADURL_PROPERTYNAME;
/**
* @var \Sabre\DAV\Server
@ -22,12 +22,12 @@ class FilesPlugin extends \Test\TestCase {
private $server;
/**
* @var \Sabre\DAV\ObjectTree
* @var \Sabre\DAV\Tree
*/
private $tree;
/**
* @var \OC\Connector\Sabre\FilesPlugin
* @var \OCA\DAV\Connector\Sabre\FilesPlugin
*/
private $plugin;
@ -48,7 +48,7 @@ class FilesPlugin extends \Test\TestCase {
->disableOriginalConstructor()
->getMock();
$this->plugin = new \OC\Connector\Sabre\FilesPlugin($this->tree, $this->view);
$this->plugin = new \OCA\DAV\Connector\Sabre\FilesPlugin($this->tree, $this->view);
$this->plugin->initialize($this->server);
}
@ -81,7 +81,7 @@ class FilesPlugin extends \Test\TestCase {
/**
*/
public function testGetPropertiesForFile() {
$node = $this->createTestNode('\OC\Connector\Sabre\File');
$node = $this->createTestNode('\OCA\DAV\Connector\Sabre\File');
$propFind = new \Sabre\DAV\PropFind(
'/dummyPath',
@ -115,7 +115,7 @@ class FilesPlugin extends \Test\TestCase {
}
public function testGetPublicPermissions() {
$this->plugin = new \OC\Connector\Sabre\FilesPlugin($this->tree, $this->view, true);
$this->plugin = new \OCA\DAV\Connector\Sabre\FilesPlugin($this->tree, $this->view, true);
$this->plugin->initialize($this->server);
$propFind = new \Sabre\DAV\PropFind(
@ -126,7 +126,7 @@ class FilesPlugin extends \Test\TestCase {
0
);
$node = $this->createTestNode('\OC\Connector\Sabre\File');
$node = $this->createTestNode('\OCA\DAV\Connector\Sabre\File');
$node->expects($this->any())
->method('getDavPermissions')
->will($this->returnValue('DWCKMSR'));
@ -140,7 +140,7 @@ class FilesPlugin extends \Test\TestCase {
}
public function testGetPropertiesForDirectory() {
$node = $this->createTestNode('\OC\Connector\Sabre\Directory');
$node = $this->createTestNode('\OCA\DAV\Connector\Sabre\Directory');
$propFind = new \Sabre\DAV\PropFind(
'/dummyPath',
@ -174,7 +174,7 @@ class FilesPlugin extends \Test\TestCase {
}
public function testUpdateProps() {
$node = $this->createTestNode('\OC\Connector\Sabre\File');
$node = $this->createTestNode('\OCA\DAV\Connector\Sabre\File');
$testDate = 'Fri, 13 Feb 2015 00:01:02 GMT';

View File

@ -46,7 +46,7 @@ class Node extends \Test\TestCase {
->will($this->returnValue($type));
$view = $this->getMock('\OC\Files\View');
$node = new \OC\Connector\Sabre\File($view, $info);
$node = new \OCA\DAV\Connector\Sabre\File($view, $info);
$this->assertEquals($expected, $node->getDavPermissions());
}
}

View File

@ -6,11 +6,11 @@
* See the COPYING-README file.
*/
namespace Test\OC\Connector\Sabre;
namespace Test\OCA\DAV\Connector\Sabre;
use OC\Files\FileInfo;
use OC\Connector\Sabre\Directory;
use OCA\DAV\Connector\Sabre\Directory;
use OC\Files\Storage\Temporary;
class TestDoubleFileView extends \OC\Files\View {
@ -62,7 +62,7 @@ class ObjectTree extends \Test\TestCase {
/**
* @dataProvider moveFailedInvalidCharsProvider
* @expectedException \OC\Connector\Sabre\Exception\InvalidPath
* @expectedException \OCA\DAV\Connector\Sabre\Exception\InvalidPath
*/
public function testMoveFailedInvalidChars($source, $destination, $updatables, $deletables) {
$this->moveTest($source, $destination, $updatables, $deletables);
@ -104,7 +104,7 @@ class ObjectTree extends \Test\TestCase {
$info = new FileInfo('', null, null, array(), null);
$rootDir = new Directory($view, $info);
$objectTree = $this->getMock('\OC\Connector\Sabre\ObjectTree',
$objectTree = $this->getMock('\OCA\DAV\Connector\Sabre\ObjectTree',
array('nodeExists', 'getNodeForPath'),
array($rootDir, $view));
@ -113,7 +113,7 @@ class ObjectTree extends \Test\TestCase {
->with($this->identicalTo($source))
->will($this->returnValue(false));
/** @var $objectTree \OC\Connector\Sabre\ObjectTree */
/** @var $objectTree \OCA\DAV\Connector\Sabre\ObjectTree */
$mountManager = \OC\Files\Filesystem::getMountManager();
$objectTree->init($rootDir, $view, $mountManager);
$objectTree->move($source, $destination);
@ -134,7 +134,7 @@ class ObjectTree extends \Test\TestCase {
$_SERVER['HTTP_OC_CHUNKED'] = true;
}
$rootNode = $this->getMockBuilder('\OC\Connector\Sabre\Directory')
$rootNode = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Directory')
->disableOriginalConstructor()
->getMock();
$mountManager = $this->getMock('\OC\Files\Mount\Manager');
@ -152,7 +152,7 @@ class ObjectTree extends \Test\TestCase {
->with($fileInfoQueryPath)
->will($this->returnValue($fileInfo));
$tree = new \OC\Connector\Sabre\ObjectTree();
$tree = new \OCA\DAV\Connector\Sabre\ObjectTree();
$tree->init($rootNode, $view, $mountManager);
$node = $tree->getNodeForPath($inputFileName);
@ -161,9 +161,9 @@ class ObjectTree extends \Test\TestCase {
$this->assertEquals($outputFileName, $node->getName());
if ($type === 'file') {
$this->assertTrue($node instanceof \OC\Connector\Sabre\File);
$this->assertTrue($node instanceof \OCA\DAV\Connector\Sabre\File);
} else {
$this->assertTrue($node instanceof \OC\Connector\Sabre\Directory);
$this->assertTrue($node instanceof \OCA\DAV\Connector\Sabre\Directory);
}
unset($_SERVER['HTTP_OC_CHUNKED']);
@ -239,7 +239,7 @@ class ObjectTree extends \Test\TestCase {
}
/**
* @expectedException \OC\Connector\Sabre\Exception\InvalidPath
* @expectedException \OCA\DAV\Connector\Sabre\Exception\InvalidPath
*/
public function testGetNodeForPathInvalidPath() {
$path = '/foo\bar';
@ -254,12 +254,12 @@ class ObjectTree extends \Test\TestCase {
return [$storage, ltrim($path, '/')];
}));
$rootNode = $this->getMockBuilder('\OC\Connector\Sabre\Directory')
$rootNode = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Directory')
->disableOriginalConstructor()
->getMock();
$mountManager = $this->getMock('\OC\Files\Mount\Manager');
$tree = new \OC\Connector\Sabre\ObjectTree();
$tree = new \OCA\DAV\Connector\Sabre\ObjectTree();
$tree->init($rootNode, $view, $mountManager);
$tree->getNodeForPath($path);
@ -278,12 +278,12 @@ class ObjectTree extends \Test\TestCase {
return [$storage, ltrim($path, '/')];
}));
$rootNode = $this->getMockBuilder('\OC\Connector\Sabre\Directory')
$rootNode = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Directory')
->disableOriginalConstructor()
->getMock();
$mountManager = $this->getMock('\OC\Files\Mount\Manager');
$tree = new \OC\Connector\Sabre\ObjectTree();
$tree = new \OCA\DAV\Connector\Sabre\ObjectTree();
$tree->init($rootNode, $view, $mountManager);
$this->assertInstanceOf('\Sabre\DAV\INode', $tree->getNodeForPath($path));

View File

@ -19,7 +19,7 @@ class Principal extends \Test\TestCase {
private $userManager;
/** @var IConfig */
private $config;
/** @var \OC\Connector\Sabre\Principal */
/** @var \OCA\DAV\Connector\Sabre\Principal */
private $connector;
public function setUp() {
@ -28,7 +28,7 @@ class Principal extends \Test\TestCase {
$this->config = $this->getMockBuilder('\OCP\IConfig')
->disableOriginalConstructor()->getMock();
$this->connector = new \OC\Connector\Sabre\Principal($this->config, $this->userManager);
$this->connector = new \OCA\DAV\Connector\Sabre\Principal($this->config, $this->userManager);
parent::setUp();
}

View File

@ -14,14 +14,14 @@ class Test_OC_Connector_Sabre_QuotaPlugin extends \Test\TestCase {
private $server;
/**
* @var \OC\Connector\Sabre\QuotaPlugin
* @var \OCA\DAV\Connector\Sabre\QuotaPlugin
*/
private $plugin;
private function init($quota) {
$view = $this->buildFileViewMock($quota);
$this->server = new \Sabre\DAV\Server();
$this->plugin = new \OC\Connector\Sabre\QuotaPlugin($view);
$this->plugin = new \OCA\DAV\Connector\Sabre\QuotaPlugin($view);
$this->plugin->initialize($this->server);
}

View File

@ -10,7 +10,7 @@ namespace Test\Connector\Sabre\RequestTest;
use Sabre\DAV\Exception;
class ExceptionPlugin extends \OC\Connector\Sabre\ExceptionLoggerPlugin {
class ExceptionPlugin extends \OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin {
/**
* @var \Exception[]
*/

View File

@ -8,8 +8,8 @@
namespace Test\Connector\Sabre\RequestTest;
use OC\Connector\Sabre\Server;
use OC\Connector\Sabre\ServerFactory;
use OCA\DAV\Connector\Sabre\Server;
use OCA\DAV\Connector\Sabre\ServerFactory;
use OC\Files\Mount\MountPoint;
use OC\Files\Storage\StorageFactory;
use OC\Files\Storage\Temporary;
@ -25,7 +25,7 @@ abstract class RequestTest extends TestCase {
use MountProviderTrait;
/**
* @var \OC\Connector\Sabre\ServerFactory
* @var \OCA\DAV\Connector\Sabre\ServerFactory
*/
protected $serverFactory;

View File

@ -10,9 +10,9 @@ namespace Tests\Connector\Sabre;
*/
class TagsPlugin extends \Test\TestCase {
const TAGS_PROPERTYNAME = \OC\Connector\Sabre\TagsPlugin::TAGS_PROPERTYNAME;
const FAVORITE_PROPERTYNAME = \OC\Connector\Sabre\TagsPlugin::FAVORITE_PROPERTYNAME;
const TAG_FAVORITE = \OC\Connector\Sabre\TagsPlugin::TAG_FAVORITE;
const TAGS_PROPERTYNAME = \OCA\DAV\Connector\Sabre\TagsPlugin::TAGS_PROPERTYNAME;
const FAVORITE_PROPERTYNAME = \OCA\DAV\Connector\Sabre\TagsPlugin::FAVORITE_PROPERTYNAME;
const TAG_FAVORITE = \OCA\DAV\Connector\Sabre\TagsPlugin::TAG_FAVORITE;
/**
* @var \Sabre\DAV\Server
@ -35,7 +35,7 @@ class TagsPlugin extends \Test\TestCase {
private $tagger;
/**
* @var \OC\Connector\Sabre\TagsPlugin
* @var \OCA\DAV\Connector\Sabre\TagsPlugin
*/
private $plugin;
@ -51,7 +51,7 @@ class TagsPlugin extends \Test\TestCase {
->method('load')
->with('files')
->will($this->returnValue($this->tagger));
$this->plugin = new \OC\Connector\Sabre\TagsPlugin($this->tree, $this->tagManager);
$this->plugin = new \OCA\DAV\Connector\Sabre\TagsPlugin($this->tree, $this->tagManager);
$this->plugin->initialize($this->server);
}
@ -59,7 +59,7 @@ class TagsPlugin extends \Test\TestCase {
* @dataProvider tagsGetPropertiesDataProvider
*/
public function testGetProperties($tags, $requestedProperties, $expectedProperties) {
$node = $this->getMockBuilder('\OC\Connector\Sabre\Node')
$node = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Node')
->disableOriginalConstructor()
->getMock();
$node->expects($this->any())
@ -98,13 +98,13 @@ class TagsPlugin extends \Test\TestCase {
* @dataProvider tagsGetPropertiesDataProvider
*/
public function testPreloadThenGetProperties($tags, $requestedProperties, $expectedProperties) {
$node1 = $this->getMockBuilder('\OC\Connector\Sabre\File')
$node1 = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\File')
->disableOriginalConstructor()
->getMock();
$node1->expects($this->any())
->method('getId')
->will($this->returnValue(111));
$node2 = $this->getMockBuilder('\OC\Connector\Sabre\File')
$node2 = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\File')
->disableOriginalConstructor()
->getMock();
$node2->expects($this->any())
@ -119,7 +119,7 @@ class TagsPlugin extends \Test\TestCase {
$expectedCallCount = 1;
}
$node = $this->getMockBuilder('\OC\Connector\Sabre\Directory')
$node = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Directory')
->disableOriginalConstructor()
->getMock();
$node->expects($this->any())
@ -184,7 +184,7 @@ class TagsPlugin extends \Test\TestCase {
array(self::TAGS_PROPERTYNAME, self::FAVORITE_PROPERTYNAME),
array(
200 => array(
self::TAGS_PROPERTYNAME => new \OC\Connector\Sabre\TagList(array('tag1', 'tag2')),
self::TAGS_PROPERTYNAME => new \OCA\DAV\Connector\Sabre\TagList(array('tag1', 'tag2')),
self::FAVORITE_PROPERTYNAME => true,
)
)
@ -195,7 +195,7 @@ class TagsPlugin extends \Test\TestCase {
array(self::TAGS_PROPERTYNAME),
array(
200 => array(
self::TAGS_PROPERTYNAME => new \OC\Connector\Sabre\TagList(array('tag1', 'tag2')),
self::TAGS_PROPERTYNAME => new \OCA\DAV\Connector\Sabre\TagList(array('tag1', 'tag2')),
)
)
),
@ -223,7 +223,7 @@ class TagsPlugin extends \Test\TestCase {
array(self::TAGS_PROPERTYNAME, self::FAVORITE_PROPERTYNAME),
array(
200 => array(
self::TAGS_PROPERTYNAME => new \OC\Connector\Sabre\TagList(array()),
self::TAGS_PROPERTYNAME => new \OCA\DAV\Connector\Sabre\TagList(array()),
self::FAVORITE_PROPERTYNAME => false,
)
)
@ -234,7 +234,7 @@ class TagsPlugin extends \Test\TestCase {
public function testUpdateTags() {
// this test will replace the existing tags "tagremove" with "tag1" and "tag2"
// and keep "tagkeep"
$node = $this->getMockBuilder('\OC\Connector\Sabre\Node')
$node = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Node')
->disableOriginalConstructor()
->getMock();
$node->expects($this->any())
@ -266,7 +266,7 @@ class TagsPlugin extends \Test\TestCase {
// properties to set
$propPatch = new \Sabre\DAV\PropPatch(array(
self::TAGS_PROPERTYNAME => new \OC\Connector\Sabre\TagList(array('tag1', 'tag2', 'tagkeep'))
self::TAGS_PROPERTYNAME => new \OCA\DAV\Connector\Sabre\TagList(array('tag1', 'tag2', 'tagkeep'))
));
$this->plugin->handleUpdateProperties(
@ -285,7 +285,7 @@ class TagsPlugin extends \Test\TestCase {
}
public function testUpdateTagsFromScratch() {
$node = $this->getMockBuilder('\OC\Connector\Sabre\Node')
$node = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Node')
->disableOriginalConstructor()
->getMock();
$node->expects($this->any())
@ -312,7 +312,7 @@ class TagsPlugin extends \Test\TestCase {
// properties to set
$propPatch = new \Sabre\DAV\PropPatch(array(
self::TAGS_PROPERTYNAME => new \OC\Connector\Sabre\TagList(array('tag1', 'tag2', 'tagkeep'))
self::TAGS_PROPERTYNAME => new \OCA\DAV\Connector\Sabre\TagList(array('tag1', 'tag2', 'tagkeep'))
));
$this->plugin->handleUpdateProperties(
@ -333,7 +333,7 @@ class TagsPlugin extends \Test\TestCase {
public function testUpdateFav() {
// this test will replace the existing tags "tagremove" with "tag1" and "tag2"
// and keep "tagkeep"
$node = $this->getMockBuilder('\OC\Connector\Sabre\Node')
$node = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Node')
->disableOriginalConstructor()
->getMock();
$node->expects($this->any())

View File

@ -12,10 +12,6 @@
<types>
<filesystem/>
</types>
<remote>
<files>appinfo/remote.php</files>
<webdav>appinfo/remote.php</webdav>
</remote>
<documentation>
<user>user-files</user>
</documentation>

View File

@ -32,7 +32,7 @@ set_time_limit(0);
// Turn off output buffering to prevent memory problems
\OC_Util::obEnd();
$serverFactory = new \OC\Connector\Sabre\ServerFactory(
$serverFactory = new \OCA\DAV\Connector\Sabre\ServerFactory(
\OC::$server->getConfig(),
\OC::$server->getLogger(),
\OC::$server->getDatabaseConnection(),
@ -43,7 +43,7 @@ $serverFactory = new \OC\Connector\Sabre\ServerFactory(
);
// Backends
$authBackend = new \OC\Connector\Sabre\Auth();
$authBackend = new \OCA\DAV\Connector\Sabre\Auth();
$requestUri = \OC::$server->getRequest()->getRequestUri();
$server = $serverFactory->createServer($baseuri, $requestUri, $authBackend, function() {

View File

@ -17,6 +17,5 @@ Turning the feature off removes shared files and folders on the server for all s
</types>
<public>
<files>public.php</files>
<webdav>publicwebdav.php</webdav>
</public>
</info>

View File

@ -4,6 +4,7 @@
"activity",
"admin_audit",
"encryption",
"dav",
"enterprise_key",
"external",
"files",

View File

@ -372,7 +372,7 @@ abstract class Common implements Storage {
* @return string|false
*/
public function getETag($path) {
$ETagFunction = \OC\Connector\Sabre\Node::$ETagFunction;
$ETagFunction = \OCA\DAV\Connector\Sabre\Node::$ETagFunction;
if ($ETagFunction) {
$hash = call_user_func($ETagFunction, $path);
return $hash;

View File

@ -26,7 +26,7 @@
*
*/
use OC\Connector\Sabre\ExceptionLoggerPlugin;
use OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin;
use Sabre\DAV\Exception\ServiceUnavailable;
use Sabre\DAV\Server;