123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Tom Needham <tom@owncloud.com>
- * @author Kate Döen <kate.doeen@nextcloud.com>
- *
- * @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/>
- *
- */
- namespace OCA\Provisioning_API\Controller;
- use OCA\Provisioning_API\ResponseDefinitions;
- use OCP\Accounts\IAccountManager;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\AppFramework\OCS\OCSException;
- use OCP\AppFramework\OCS\OCSForbiddenException;
- use OCP\AppFramework\OCS\OCSNotFoundException;
- use OCP\AppFramework\OCSController;
- use OCP\IConfig;
- use OCP\IGroup;
- use OCP\IGroupManager;
- use OCP\IRequest;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\IUserSession;
- use OCP\L10N\IFactory;
- use Psr\Log\LoggerInterface;
- /**
- * @psalm-import-type Provisioning_APIGroupDetails from ResponseDefinitions
- * @psalm-import-type Provisioning_APIUserDetails from ResponseDefinitions
- */
- class GroupsController extends AUserData {
- /** @var LoggerInterface */
- private $logger;
- public function __construct(string $appName,
- IRequest $request,
- IUserManager $userManager,
- IConfig $config,
- IGroupManager $groupManager,
- IUserSession $userSession,
- IAccountManager $accountManager,
- IFactory $l10nFactory,
- LoggerInterface $logger) {
- parent::__construct($appName,
- $request,
- $userManager,
- $config,
- $groupManager,
- $userSession,
- $accountManager,
- $l10nFactory
- );
- $this->logger = $logger;
- }
- /**
- * @NoAdminRequired
- *
- * Get a list of groups
- *
- * @param string $search Text to search for
- * @param ?int $limit Limit the amount of groups returned
- * @param int $offset Offset for searching for groups
- * @return DataResponse<Http::STATUS_OK, array{groups: string[]}, array{}>
- *
- * 200: Groups returned
- */
- public function getGroups(string $search = '', ?int $limit = null, int $offset = 0): DataResponse {
- $groups = $this->groupManager->search($search, $limit, $offset);
- $groups = array_map(function ($group) {
- /** @var IGroup $group */
- return $group->getGID();
- }, $groups);
- return new DataResponse(['groups' => $groups]);
- }
- /**
- * @NoAdminRequired
- * @AuthorizedAdminSetting(settings=OCA\Settings\Settings\Admin\Sharing)
- *
- * Get a list of groups details
- *
- * @param string $search Text to search for
- * @param ?int $limit Limit the amount of groups returned
- * @param int $offset Offset for searching for groups
- * @return DataResponse<Http::STATUS_OK, array{groups: Provisioning_APIGroupDetails[]}, array{}>
- *
- * 200: Groups details returned
- */
- public function getGroupsDetails(string $search = '', int $limit = null, int $offset = 0): DataResponse {
- $groups = $this->groupManager->search($search, $limit, $offset);
- $groups = array_map(function ($group) {
- /** @var IGroup $group */
- return [
- 'id' => $group->getGID(),
- 'displayname' => $group->getDisplayName(),
- 'usercount' => $group->count(),
- 'disabled' => $group->countDisabled(),
- 'canAdd' => $group->canAddUser(),
- 'canRemove' => $group->canRemoveUser(),
- ];
- }, $groups);
- return new DataResponse(['groups' => $groups]);
- }
- /**
- * @NoAdminRequired
- *
- * Get a list of users in the specified group
- *
- * @param string $groupId ID of the group
- * @return DataResponse<Http::STATUS_OK, array{users: string[]}, array{}>
- * @throws OCSException
- *
- * @deprecated 14 Use getGroupUsers
- *
- * 200: Group users returned
- */
- public function getGroup(string $groupId): DataResponse {
- return $this->getGroupUsers($groupId);
- }
- /**
- * @NoAdminRequired
- *
- * Get a list of users in the specified group
- *
- * @param string $groupId ID of the group
- * @return DataResponse<Http::STATUS_OK, array{users: string[]}, array{}>
- * @throws OCSException
- * @throws OCSNotFoundException Group not found
- * @throws OCSForbiddenException Missing permissions to get users in the group
- *
- * 200: User IDs returned
- */
- public function getGroupUsers(string $groupId): DataResponse {
- $groupId = urldecode($groupId);
- $user = $this->userSession->getUser();
- $isSubadminOfGroup = false;
- // Check the group exists
- $group = $this->groupManager->get($groupId);
- if ($group !== null) {
- $isSubadminOfGroup = $this->groupManager->getSubAdmin()->isSubAdminOfGroup($user, $group);
- } else {
- throw new OCSNotFoundException('The requested group could not be found');
- }
- // Check subadmin has access to this group
- if ($this->groupManager->isAdmin($user->getUID())
- || $isSubadminOfGroup) {
- $users = $this->groupManager->get($groupId)->getUsers();
- $users = array_map(function ($user) {
- /** @var IUser $user */
- return $user->getUID();
- }, $users);
- /** @var string[] $users */
- $users = array_values($users);
- return new DataResponse(['users' => $users]);
- }
- throw new OCSForbiddenException();
- }
- /**
- * @NoAdminRequired
- *
- * Get a list of users details in the specified group
- *
- * @param string $groupId ID of the group
- * @param string $search Text to search for
- * @param int|null $limit Limit the amount of groups returned
- * @param int $offset Offset for searching for groups
- *
- * @return DataResponse<Http::STATUS_OK, array{users: array<string, Provisioning_APIUserDetails|array{id: string}>}, array{}>
- * @throws OCSException
- *
- * 200: Group users details returned
- */
- public function getGroupUsersDetails(string $groupId, string $search = '', int $limit = null, int $offset = 0): DataResponse {
- $groupId = urldecode($groupId);
- $currentUser = $this->userSession->getUser();
- // Check the group exists
- $group = $this->groupManager->get($groupId);
- if ($group !== null) {
- $isSubadminOfGroup = $this->groupManager->getSubAdmin()->isSubAdminOfGroup($currentUser, $group);
- } else {
- throw new OCSException('The requested group could not be found', OCSController::RESPOND_NOT_FOUND);
- }
- // Check subadmin has access to this group
- if ($this->groupManager->isAdmin($currentUser->getUID()) || $isSubadminOfGroup) {
- $users = $group->searchUsers($search, $limit, $offset);
- // Extract required number
- $usersDetails = [];
- foreach ($users as $user) {
- try {
- /** @var IUser $user */
- $userId = (string)$user->getUID();
- $userData = $this->getUserData($userId);
- // Do not insert empty entry
- if ($userData !== null) {
- $usersDetails[$userId] = $userData;
- } else {
- // Logged user does not have permissions to see this user
- // only showing its id
- $usersDetails[$userId] = ['id' => $userId];
- }
- } catch (OCSNotFoundException $e) {
- // continue if a users ceased to exist.
- }
- }
- return new DataResponse(['users' => $usersDetails]);
- }
- throw new OCSException('The requested group could not be found', OCSController::RESPOND_NOT_FOUND);
- }
- /**
- * @PasswordConfirmationRequired
- *
- * Create a new group
- *
- * @param string $groupid ID of the group
- * @param string $displayname Display name of the group
- * @return DataResponse<Http::STATUS_OK, array<empty>, array{}>
- * @throws OCSException
- *
- * 200: Group created successfully
- */
- public function addGroup(string $groupid, string $displayname = ''): DataResponse {
- // Validate name
- if (empty($groupid)) {
- $this->logger->error('Group name not supplied', ['app' => 'provisioning_api']);
- throw new OCSException('Invalid group name', 101);
- }
- // Check if it exists
- if ($this->groupManager->groupExists($groupid)) {
- throw new OCSException('group exists', 102);
- }
- $group = $this->groupManager->createGroup($groupid);
- if ($group === null) {
- throw new OCSException('Not supported by backend', 103);
- }
- if ($displayname !== '') {
- $group->setDisplayName($displayname);
- }
- return new DataResponse();
- }
- /**
- * @PasswordConfirmationRequired
- *
- * Update a group
- *
- * @param string $groupId ID of the group
- * @param string $key Key to update, only 'displayname'
- * @param string $value New value for the key
- * @return DataResponse<Http::STATUS_OK, array<empty>, array{}>
- * @throws OCSException
- *
- * 200: Group updated successfully
- */
- public function updateGroup(string $groupId, string $key, string $value): DataResponse {
- $groupId = urldecode($groupId);
- if ($key === 'displayname') {
- $group = $this->groupManager->get($groupId);
- if ($group === null) {
- throw new OCSException('Group does not exist', OCSController::RESPOND_NOT_FOUND);
- }
- if ($group->setDisplayName($value)) {
- return new DataResponse();
- }
- throw new OCSException('Not supported by backend', 101);
- } else {
- throw new OCSException('', OCSController::RESPOND_UNKNOWN_ERROR);
- }
- }
- /**
- * @PasswordConfirmationRequired
- *
- * Delete a group
- *
- * @param string $groupId ID of the group
- * @return DataResponse<Http::STATUS_OK, array<empty>, array{}>
- * @throws OCSException
- *
- * 200: Group deleted successfully
- */
- public function deleteGroup(string $groupId): DataResponse {
- $groupId = urldecode($groupId);
- // Check it exists
- if (!$this->groupManager->groupExists($groupId)) {
- throw new OCSException('', 101);
- } elseif ($groupId === 'admin' || !$this->groupManager->get($groupId)->delete()) {
- // Cannot delete admin group
- throw new OCSException('', 102);
- }
- return new DataResponse();
- }
- /**
- * Get the list of user IDs that are a subadmin of the group
- *
- * @param string $groupId ID of the group
- * @return DataResponse<Http::STATUS_OK, string[], array{}>
- * @throws OCSException
- *
- * 200: Sub admins returned
- */
- public function getSubAdminsOfGroup(string $groupId): DataResponse {
- // Check group exists
- $targetGroup = $this->groupManager->get($groupId);
- if ($targetGroup === null) {
- throw new OCSException('Group does not exist', 101);
- }
- /** @var IUser[] $subadmins */
- $subadmins = $this->groupManager->getSubAdmin()->getGroupsSubAdmins($targetGroup);
- // New class returns IUser[] so convert back
- /** @var string[] $uids */
- $uids = [];
- foreach ($subadmins as $user) {
- $uids[] = $user->getUID();
- }
- return new DataResponse($uids);
- }
- }
|