Skip to content

Commit

Permalink
enh(IMountManager): Add method to get MountPoint from CachedMountInfo
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <jonas@freesources.org>
  • Loading branch information
mejo- committed Oct 20, 2023
1 parent 7d17ecc commit ec31c90
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 3 deletions.
18 changes: 15 additions & 3 deletions apps/workflowengine/lib/Entity/File.php
Expand Up @@ -7,6 +7,7 @@
*
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Jonas Meurer <jonas@freesources.org>
*
* @license GNU AGPL version 3 or any later version
*
Expand All @@ -31,6 +32,7 @@
use OCP\EventDispatcher\GenericEvent;
use OCP\Files\InvalidPathException;
use OCP\Files\IRootFolder;
use OCP\Files\Mount\IMountManager;
use OCP\Files\Node;
use OCP\Files\NotFoundException;
use OCP\IL10N;
Expand Down Expand Up @@ -74,6 +76,8 @@ class File implements IEntity, IDisplayText, IUrl, IIcon, IContextPortation {
private $userManager;
/** @var UserMountCache */
private $userMountCache;
/** @var IMountManager */
private $mountManager;

public function __construct(
IL10N $l10n,
Expand All @@ -82,7 +86,8 @@ public function __construct(
IUserSession $userSession,
ISystemTagManager $tagManager,
IUserManager $userManager,
UserMountCache $userMountCache
UserMountCache $userMountCache,
IMountManager $mountManager
) {
$this->l10n = $l10n;
$this->urlGenerator = $urlGenerator;
Expand All @@ -91,6 +96,7 @@ public function __construct(
$this->tagManager = $tagManager;
$this->userManager = $userManager;
$this->userMountCache = $userMountCache;
$this->mountManager = $mountManager;
}

public function getName(): string {
Expand Down Expand Up @@ -143,12 +149,18 @@ public function isLegitimatedForUserId(string $uid): bool {
$fileId = $node->getId();
}

$mounts = $this->userMountCache->getMountsForFileId($fileId, $uid);
foreach ($mounts as $mount) {
$mountInfos = $this->userMountCache->getMountsForFileId($fileId, $uid);
foreach ($mountInfos as $mountInfo) {
$mount = $this->mountManager->getMountFromMountInfo($mountInfo);
if ($mount && !empty($mount->getStorage()->getCache()->get($fileId))) {

Check notice

Code scanning / Psalm

PossiblyNullReference Note

Cannot call method getCache on possibly null value
return true;
}
/*
$userFolder = $this->root->getUserFolder($uid);
if (!empty($userFolder->getById($fileId))) {
return true;
}
*/
}
return false;
} catch (NotFoundException $e) {
Expand Down
2 changes: 2 additions & 0 deletions apps/workflowengine/tests/ManagerTest.php
Expand Up @@ -35,6 +35,7 @@
use OCP\EventDispatcher\IEventDispatcher;
use OCP\Files\Events\Node\NodeCreatedEvent;
use OCP\Files\IRootFolder;
use OCP\Files\Mount\IMountManager;
use OCP\ICache;
use OCP\ICacheFactory;
use OCP\IConfig;
Expand Down Expand Up @@ -408,6 +409,7 @@ public function testUpdateOperation() {
$this->createMock(ISystemTagManager::class),
$this->createMock(IUserManager::class),
$this->createMock(UserMountCache::class),
$this->createMock(IMountManager::class),
])
->setMethodsExcept(['getEvents'])
->getMock();
Expand Down
18 changes: 18 additions & 0 deletions lib/private/Files/Mount/Manager.php
Expand Up @@ -10,6 +10,7 @@
* @author Robin Appelman <robin@icewind.nl>
* @author Robin McCorkell <robin@mccorkell.me.uk>
* @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Jonas <jonas@freesources.org>
*
* @license AGPL-3.0
*
Expand All @@ -33,6 +34,7 @@
use OC\Files\Filesystem;
use OC\Files\SetupManager;
use OC\Files\SetupManagerFactory;
use OCP\Files\Config\ICachedMountInfo;
use OCP\Files\Mount\IMountManager;
use OCP\Files\Mount\IMountPoint;
use OCP\Files\NotFoundException;
Expand Down Expand Up @@ -226,4 +228,20 @@ public function getMountsByMountProvider(string $path, array $mountProviders) {
});
}
}

/**
* Return the mount matching a cached mount info (or mount file info)
*
* @param ICachedMountInfo $info
*
* @return IMountPoint|null
*/
public function getMountFromMountInfo(ICachedMountInfo $info): ?IMountPoint {
foreach ($this->mounts as $mount) {
if ($mount->getStorageRootId() === $info->getRootId()) {
return $mount;
}
}
return null;
}
}
12 changes: 12 additions & 0 deletions lib/public/Files/Mount/IMountManager.php
Expand Up @@ -26,6 +26,8 @@
*/
namespace OCP\Files\Mount;

use OCP\Files\Config\ICachedMountInfo;

/**
* Interface IMountManager
*
Expand Down Expand Up @@ -106,4 +108,14 @@ public function getAll(): array;
* @since 8.2.0
*/
public function findByNumericId(int $id): array;

/**
* Return the mount matching a cached mount info (or mount file info)
*
* @param ICachedMountInfo $info
*
* @return IMountPoint|null
* @since 28.0.0
*/
public function getMountFromMountInfo(ICachedMountInfo $info): ?IMountPoint;
}

0 comments on commit ec31c90

Please sign in to comment.