Blame view

sources/apps/files_sharing/publicwebdav.php 2.56 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  <?php
  /**
   * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  if (OCA\Files_Sharing\Helper::isOutgoingServer2serverShareEnabled() === false) {
  	return false;
  }
  
  // load needed apps
  $RUNTIME_APPTYPES = array('filesystem', 'authentication', 'logging');
  
  OC_App::loadApps($RUNTIME_APPTYPES);
  
  OC_Util::obEnd();
  
  // Backends
  $authBackend = new OCA\Files_Sharing\Connector\PublicAuth(\OC::$server->getConfig());
  $lockBackend = new OC_Connector_Sabre_Locks();
  $requestBackend = new OC_Connector_Sabre_Request();
  
  // Fire up server
  $objectTree = new \OC\Connector\Sabre\ObjectTree();
  $server = new OC_Connector_Sabre_Server($objectTree);
  $server->httpRequest = $requestBackend;
  $server->setBaseUri($baseuri);
  
  // Load plugins
  $defaults = new OC_Defaults();
  $server->addPlugin(new \Sabre\DAV\Auth\Plugin($authBackend, $defaults->getName()));
  $server->addPlugin(new \Sabre\DAV\Locks\Plugin($lockBackend));
  $server->addPlugin(new \Sabre\DAV\Browser\Plugin(false)); // Show something in the Browser, but no upload
  $server->addPlugin(new OC_Connector_Sabre_FilesPlugin());
  $server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin());
  $server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav'));
  
  // wait with registering these until auth is handled and the filesystem is setup
  $server->subscribeEvent('beforeMethod', function () use ($server, $objectTree, $authBackend) {
  	$share = $authBackend->getShare();
  	$owner = $share['uid_owner'];
  	$isWritable = $share['permissions'] & (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_CREATE);
  	$fileId = $share['file_source'];
  
  	if (!$isWritable) {
  		\OC\Files\Filesystem::addStorageWrapper('readonly', function ($mountPoint, $storage) {
  			return new \OCA\Files_Sharing\ReadOnlyWrapper(array('storage' => $storage));
  		});
  	}
  
  	OC_Util::setupFS($owner);
  	$ownerView = \OC\Files\Filesystem::getView();
  	$path = $ownerView->getPath($fileId);
  
  
  	$view = new \OC\Files\View($ownerView->getAbsolutePath($path));
  	$rootInfo = $view->getFileInfo('');
  
  	// Create ownCloud Dir
  	if ($rootInfo->getType() === 'dir') {
  		$root = new OC_Connector_Sabre_Directory($view, $rootInfo);
  	} else {
  		$root = new OC_Connector_Sabre_File($view, $rootInfo);
  	}
  	$mountManager = \OC\Files\Filesystem::getMountManager();
  	$objectTree->init($root, $view, $mountManager);
  
  	$server->addPlugin(new OC_Connector_Sabre_QuotaPlugin($view));
  }, 30); // priority 30: after auth (10) and acl(20), before lock(50) and handling the request
  
  // And off we go!
  $server->exec();