aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/hooks.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-02-25 20:46:01 +0100
committerLukas Reschke <lukas@owncloud.com>2016-02-26 09:26:55 +0100
commit59028cced0a4f7377de9c22012c7624440b14a56 (patch)
treedc209a35e1626309032640459bec268323e51bac /apps/files_sharing/lib/hooks.php
parentcb41b1a86397579d55e0ce96e67b80a83037d1d2 (diff)
downloadnextcloud-server-59028cced0a4f7377de9c22012c7624440b14a56.tar.gz
nextcloud-server-59028cced0a4f7377de9c22012c7624440b14a56.zip
Add autodiscovery support to server-to-server sharing
Adds autodiscovery support to server-to-server sharing as specified in the specification. If no discovery data is found it is using the fallback ownCloud endpoints for legacy support.
Diffstat (limited to 'apps/files_sharing/lib/hooks.php')
-rw-r--r--apps/files_sharing/lib/hooks.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/hooks.php b/apps/files_sharing/lib/hooks.php
index 166905b9aa4..e3f24d02268 100644
--- a/apps/files_sharing/lib/hooks.php
+++ b/apps/files_sharing/lib/hooks.php
@@ -25,16 +25,22 @@
namespace OCA\Files_Sharing;
use OC\Files\Filesystem;
+use OCA\FederatedFileSharing\DiscoveryManager;
class Hooks {
public static function deleteUser($params) {
+ $discoveryManager = new DiscoveryManager(
+ \OC::$server->getMemCacheFactory(),
+ \OC::$server->getHTTPClientService()
+ );
$manager = new External\Manager(
\OC::$server->getDatabaseConnection(),
\OC\Files\Filesystem::getMountManager(),
\OC\Files\Filesystem::getLoader(),
\OC::$server->getHTTPHelper(),
\OC::$server->getNotificationManager(),
+ $discoveryManager,
$params['uid']);
$manager->removeUserShares($params['uid']);