mirror of
https://github.com/nextcloud/server.git
synced 2025-01-30 22:37:01 +00:00
c1555fc33e
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
37 lines
935 B
PHP
37 lines
935 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
\OC_JSON::checkAppEnabled('files_external');
|
|
\OC_JSON::callCheck();
|
|
|
|
\OC_JSON::checkAdminUser();
|
|
|
|
$pattern = '';
|
|
$limit = null;
|
|
$offset = null;
|
|
if (isset($_GET['pattern'])) {
|
|
$pattern = (string)$_GET['pattern'];
|
|
}
|
|
if (isset($_GET['limit'])) {
|
|
$limit = (int)$_GET['limit'];
|
|
}
|
|
if (isset($_GET['offset'])) {
|
|
$offset = (int)$_GET['offset'];
|
|
}
|
|
|
|
$groups = [];
|
|
foreach (\OC::$server->getGroupManager()->search($pattern, $limit, $offset) as $group) {
|
|
$groups[$group->getGID()] = $group->getDisplayName();
|
|
}
|
|
|
|
$users = [];
|
|
foreach (\OC::$server->getUserManager()->searchDisplayName($pattern, $limit, $offset) as $user) {
|
|
$users[$user->getUID()] = $user->getDisplayName();
|
|
}
|
|
|
|
$results = ['groups' => $groups, 'users' => $users];
|
|
|
|
\OC_JSON::success($results);
|