-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36216 from owncloud/feature/user-sync-api
[API] user-sync OCS API
- Loading branch information
Showing
7 changed files
with
233 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<?php | ||
/** | ||
* @author Thomas Müller <thomas.mueller@tmit.eu> | ||
* | ||
* @copyright Copyright (c) 2019, ownCloud GmbH | ||
* @license AGPL-3.0 | ||
* | ||
* This code is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License, version 3, | ||
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
* | ||
*/ | ||
|
||
declare(strict_types = 1); | ||
|
||
namespace OC\Core\Controller; | ||
|
||
use ArrayIterator; | ||
use OC\OCS\Result; | ||
use OC\User\SyncService; | ||
use OCP\AppFramework\OCSController; | ||
use OCP\IRequest; | ||
use OCP\IUserManager; | ||
|
||
/** | ||
* Class UserSyncController | ||
* | ||
* External systems for user provisioning can use this API to trigger a single-user | ||
* sync to update user settings from an external user management (e.g. LDAP) or even | ||
* to create the account in ownCloud if necessary. | ||
* | ||
* In contrary to the occ user:sync command this API will not disable or delete the | ||
* user if the user no longer exists. The external user provisioning system can use | ||
* existing APIs to disable or delete a user. | ||
* | ||
* @package OC\Core\Controller | ||
*/ | ||
class UserSyncController extends OCSController { | ||
|
||
/** | ||
* @var SyncService | ||
*/ | ||
private $syncService; | ||
/** | ||
* @var IUserManager | ||
*/ | ||
private $userManager; | ||
|
||
/** | ||
* UserSyncController constructor. | ||
* | ||
* @param string $appName | ||
* @param IRequest $request | ||
* @param SyncService $syncService | ||
* @param IUserManager $userManager | ||
*/ | ||
public function __construct($appName, | ||
IRequest $request, | ||
SyncService $syncService, | ||
IUserManager $userManager) { | ||
parent::__construct($appName, $request); | ||
$this->syncService = $syncService; | ||
$this->userManager = $userManager; | ||
} | ||
|
||
/** | ||
* @NoCSRFRequired | ||
* | ||
* @param string $userId | ||
* @return Result | ||
*/ | ||
public function syncUser($userId): Result { | ||
foreach ($this->userManager->getBackends() as $backEnd) { | ||
$users = $backEnd->getUsers($userId, 2); | ||
if (\count($users) > 1) { | ||
$backEndName = \get_class($backEnd); | ||
return new Result([], 409, "Multiple users returned from backend($backEndName) for: $userId. Cancelling sync."); | ||
} | ||
|
||
if (\count($users) === 1) { | ||
// Run the sync using the internal username if mapped | ||
$this->syncService->run($backEnd, new ArrayIterator([$users[0]])); | ||
return new Result(); | ||
} | ||
} | ||
|
||
return new Result([], 404, "User is not known in any user backend: $userId"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<?php | ||
/** | ||
* @author Thomas Müller <thomas.mueller@tmit.eu> | ||
* | ||
* @copyright Copyright (c) 2019, ownCloud GmbH | ||
* @license AGPL-3.0 | ||
* | ||
* This code is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License, version 3, | ||
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
* | ||
*/ | ||
declare(strict_types = 1); | ||
|
||
namespace Tests\Core\Controller; | ||
|
||
use OC\Core\Controller\UserSyncController; | ||
use OC\OCS\Result; | ||
use OC\User\SyncService; | ||
use OCP\IRequest; | ||
use OCP\IUser; | ||
use OCP\IUserManager; | ||
use OCP\UserInterface; | ||
use PHPUnit\Framework\MockObject\MockObject; | ||
use Test\TestCase; | ||
|
||
/** | ||
* Class RolesControllerTest | ||
* | ||
* @package OC\Core\Controller | ||
*/ | ||
class UserSyncControllerTest extends TestCase { | ||
/** | ||
* @var UserSyncController | ||
*/ | ||
private $controller; | ||
/** | ||
* @var MockObject | IUserManager | ||
*/ | ||
private $userManager; | ||
/** | ||
* @var MockObject | SyncService | ||
*/ | ||
private $syncService; | ||
|
||
protected function setUp() { | ||
/** @var IRequest $request */ | ||
$request = $this->createMock(IRequest::class); | ||
$this->syncService = $this->createMock(SyncService::class); | ||
$this->userManager = $this->createMock(IUserManager::class); | ||
$this->controller = new UserSyncController('core', $request, $this->syncService, $this->userManager); | ||
|
||
return parent::setUp(); | ||
} | ||
|
||
public function testSimpleSync() { | ||
$user = $this->createMock(IUser::class); | ||
$userBackend = $this->createMock(UserInterface::class); | ||
$userBackend->method('getUsers')->willReturn([$user]); | ||
$this->userManager->method('getBackends')->willReturn([$userBackend]); | ||
$this->syncService->expects(self::once())->method('run')->with($userBackend, new \ArrayIterator([$user])); | ||
|
||
$result = $this->controller->syncUser('alice'); | ||
|
||
$this->assertEquals([], $result->getData()); | ||
$this->assertEquals(['status' => 'ok', | ||
'statuscode' => 100, | ||
'message' => null | ||
], $result->getMeta()); | ||
} | ||
|
||
public function testUnknownUser() { | ||
$userBackend = $this->createMock(UserInterface::class); | ||
$userBackend->method('getUsers')->willReturn([]); | ||
$this->userManager->method('getBackends')->willReturn([$userBackend]); | ||
$this->syncService->expects(self::never())->method('run'); | ||
|
||
$result = $this->controller->syncUser('alice'); | ||
|
||
$this->assertEquals([], $result->getData()); | ||
$this->assertEquals(['status' => 'failure', | ||
'statuscode' => 404, | ||
'message' => 'User is not known in any user backend: alice' | ||
], $result->getMeta()); | ||
} | ||
|
||
public function testConflict() { | ||
$user = $this->createMock(IUser::class); | ||
$userBackend = $this->createMock(UserInterface::class); | ||
$userBackend->method('getUsers')->willReturn([$user, $user]); | ||
$this->userManager->method('getBackends')->willReturn([$userBackend]); | ||
$this->syncService->expects(self::never())->method('run'); | ||
|
||
$result = $this->controller->syncUser('alice'); | ||
|
||
$this->assertEquals([], $result->getData()); | ||
$backEndClass = \get_class($userBackend); | ||
$this->assertEquals(['status' => 'failure', | ||
'statuscode' => 409, | ||
'message' => "Multiple users returned from backend($backEndClass) for: alice. Cancelling sync." | ||
], $result->getMeta()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters