2014-08-22 20:16:55 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2014-08-22 20:16:55 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-01-20 12:22:44 +03:00
|
|
|
namespace OC\Core\Controller;
|
2014-08-22 20:16:55 +04:00
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCP\AppFramework\Controller;
|
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IUserManager;
|
2014-08-22 20:16:55 +04:00
|
|
|
|
|
|
|
class UserController extends Controller {
|
|
|
|
/**
|
2016-08-29 22:14:50 +03:00
|
|
|
* @var IUserManager
|
2014-08-22 20:16:55 +04:00
|
|
|
*/
|
|
|
|
protected $userManager;
|
|
|
|
|
|
|
|
public function __construct($appName,
|
|
|
|
IRequest $request,
|
2016-08-29 22:14:50 +03:00
|
|
|
IUserManager $userManager
|
2014-08-22 20:16:55 +04:00
|
|
|
) {
|
|
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lookup user display names
|
|
|
|
*
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* @param array $users
|
|
|
|
*
|
|
|
|
* @return JSONResponse
|
|
|
|
*/
|
|
|
|
public function getDisplayNames($users) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$result = [];
|
2014-08-22 20:16:55 +04:00
|
|
|
|
|
|
|
foreach ($users as $user) {
|
|
|
|
$userObject = $this->userManager->get($user);
|
|
|
|
if (is_object($userObject)) {
|
|
|
|
$result[$user] = $userObject->getDisplayName();
|
|
|
|
} else {
|
|
|
|
$result[$user] = $user;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$json = [
|
2014-08-22 20:16:55 +04:00
|
|
|
'users' => $result,
|
|
|
|
'status' => 'success'
|
2020-03-26 11:30:18 +03:00
|
|
|
];
|
2014-08-22 20:16:55 +04:00
|
|
|
|
|
|
|
return new JSONResponse($json);
|
|
|
|
}
|
|
|
|
}
|