From bb9f14115cc48c4d6fd7b99ad825980487b3c2c8 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 25 Jul 2019 17:57:22 +0200 Subject: [PATCH] fixes terminology and allows to request an IUser instance Signed-off-by: Arthur Schiwon --- .../files_external/lib/Config/UserContext.php | 27 ++++++++++++++----- apps/files_external/lib/config.php | 3 ++- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/apps/files_external/lib/Config/UserContext.php b/apps/files_external/lib/Config/UserContext.php index bec762358f..12621d22f5 100644 --- a/apps/files_external/lib/Config/UserContext.php +++ b/apps/files_external/lib/Config/UserContext.php @@ -24,6 +24,8 @@ namespace OCA\Files_External\Config; use OCP\IRequest; +use OCP\IUser; +use OCP\IUserManager; use OCP\IUserSession; use OCP\Share\Exceptions\ShareNotFound; use OCP\Share\IManager as ShareManager; @@ -39,25 +41,30 @@ class UserContext { /** @var IRequest */ private $request; - private $user; + /** @var string */ + private $userId; - public function __construct(IUserSession $session, ShareManager $manager, IRequest $request) { + /** @var IUserManager */ + private $userManager; + + public function __construct(IUserSession $session, ShareManager $manager, IRequest $request, IUserManager $userManager) { $this->session = $session; $this->shareManager = $manager; $this->request = $request; + $this->userManager = $userManager; } public function getSession(): IUserSession { return $this->session; } - public function setUser($user): void { - $this->user = $user; + public function setUserId(string $userId): void { + $this->userId = $userId; } protected function getUserId(): ?string { - if ($this->user !== null) { - return $this->user; + if ($this->userId !== null) { + return $this->userId; } if($this->session && $this->session->getUser() !== null) { return $this->session->getUser()->getUID(); @@ -71,4 +78,12 @@ class UserContext { return null; } + protected function getUser(): ?IUser { + $userId = $this->getUserId(); + if($userId !== null) { + return $this->userManager->get($userId); + } + return null; + } + } diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 75ed59418d..fa40be12ff 100644 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -212,11 +212,12 @@ class OC_Mount_Config { /** * @param mixed $input + * @param string|null $userId * @return mixed * @throws \OCP\AppFramework\QueryException * @since 16.0.0 */ - public static function substitutePlaceholdersInConfig($input, $user = null) { + public static function substitutePlaceholdersInConfig($input, string $userId = null) { /** @var BackendService $backendService */ $backendService = self::$app->getContainer()->query(BackendService::class); /** @var IConfigHandler[] $handlers */