Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-04-20 15:34:28 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-04-20 15:34:28 +0300
commit4004e39f75467497919b78abf0ff13e14c60b8d6 (patch)
tree2cc7f35fff43dbaa9460677a11b051fc505d63c0 /apps/systemtags/lib
parent799b229a68d3478809c084d58b69288061139ab1 (diff)
Move systemtags and comments to new accesslist functions
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/systemtags/lib')
-rw-r--r--apps/systemtags/lib/Activity/Listener.php16
1 files changed, 9 insertions, 7 deletions
diff --git a/apps/systemtags/lib/Activity/Listener.php b/apps/systemtags/lib/Activity/Listener.php
index 152608f7cce..0fb5d4c12be 100644
--- a/apps/systemtags/lib/Activity/Listener.php
+++ b/apps/systemtags/lib/Activity/Listener.php
@@ -34,6 +34,7 @@ use OCP\IGroupManager;
use OCP\IUser;
use OCP\IUserSession;
use OCP\Share;
+use OCP\Share\IShareHelper;
use OCP\SystemTag\ISystemTag;
use OCP\SystemTag\ISystemTagManager;
use OCP\SystemTag\ManagerEvent;
@@ -57,6 +58,8 @@ class Listener {
protected $mountCollection;
/** @var \OCP\Files\IRootFolder */
protected $rootFolder;
+ /** @var IShareHelper */
+ protected $shareHelper;
/**
* Listener constructor.
@@ -69,6 +72,7 @@ class Listener {
* @param IAppManager $appManager
* @param IMountProviderCollection $mountCollection
* @param IRootFolder $rootFolder
+ * @param IShareHelper $shareHelper
*/
public function __construct(IGroupManager $groupManager,
IManager $activityManager,
@@ -77,7 +81,8 @@ class Listener {
ISystemTagManager $tagManager,
IAppManager $appManager,
IMountProviderCollection $mountCollection,
- IRootFolder $rootFolder) {
+ IRootFolder $rootFolder,
+ IShareHelper $shareHelper) {
$this->groupManager = $groupManager;
$this->activityManager = $activityManager;
$this->session = $session;
@@ -86,6 +91,7 @@ class Listener {
$this->appManager = $appManager;
$this->mountCollection = $mountCollection;
$this->rootFolder = $rootFolder;
+ $this->shareHelper = $shareHelper;
}
/**
@@ -177,12 +183,8 @@ class Listener {
if (!empty($nodes)) {
/** @var Node $node */
$node = array_shift($nodes);
- $path = $node->getPath();
- if (strpos($path, '/' . $owner . '/files/') === 0) {
- $path = substr($path, strlen('/' . $owner . '/files'));
- }
- // Get all users that have access to the mount point
- $users = array_merge($users, Share::getUsersSharingFile($path, $owner, true, true));
+ $al = $this->shareHelper->getPathsForAccessList($node);
+ $users = array_merge($users, $al['users']);
}
}