123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- namespace OC\Files\Config;
- use OC\Files\Filesystem;
- use OCP\Files\Config\ICachedMountInfo;
- use OCP\Files\Node;
- use OCP\IUser;
- class CachedMountInfo implements ICachedMountInfo {
- protected IUser $user;
- protected int $storageId;
- protected int $rootId;
- protected string $mountPoint;
- protected ?int $mountId;
- protected string $rootInternalPath;
- protected string $mountProvider;
- protected string $key;
-
- public function __construct(
- IUser $user,
- int $storageId,
- int $rootId,
- string $mountPoint,
- string $mountProvider,
- ?int $mountId = null,
- string $rootInternalPath = '',
- ) {
- $this->user = $user;
- $this->storageId = $storageId;
- $this->rootId = $rootId;
- $this->mountPoint = $mountPoint;
- $this->mountId = $mountId;
- $this->rootInternalPath = $rootInternalPath;
- if (strlen($mountProvider) > 128) {
- throw new \Exception("Mount provider $mountProvider name exceeds the limit of 128 characters");
- }
- $this->mountProvider = $mountProvider;
- $this->key = $rootId . '::' . $mountPoint;
- }
-
- public function getUser(): IUser {
- return $this->user;
- }
-
- public function getStorageId(): int {
- return $this->storageId;
- }
-
- public function getRootId(): int {
- return $this->rootId;
- }
-
- public function getMountPointNode(): ?Node {
-
- Filesystem::initMountPoints($this->getUser()->getUID());
- $userNode = \OC::$server->getUserFolder($this->getUser()->getUID());
- return $userNode->getParent()->getFirstNodeById($this->getRootId());
- }
-
- public function getMountPoint(): string {
- return $this->mountPoint;
- }
-
- public function getMountId(): ?int {
- return $this->mountId;
- }
-
- public function getRootInternalPath(): string {
- return $this->rootInternalPath;
- }
- public function getMountProvider(): string {
- return $this->mountProvider;
- }
- public function getKey(): string {
- return $this->key;
- }
- }
|