1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021 |
- <?php
- // FIXME: disabled for now to be able to inject IGroupManager and also use
- // getSubAdmin()
- //declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@owncloud.com>
- * @author Clark Tomlinson <fallen013@gmail.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Thomas Pulzer <t.pulzer@kniel.de>
- * @author Tobia De Koninck <tobia@ledfan.be>
- * @author Tobias Kaminsky <tobias@kaminsky.me>
- * @author Vincent Petry <pvince81@owncloud.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 OC\Settings\Controller;
- use OC\Accounts\AccountManager;
- use OC\AppFramework\Http;
- use OC\ForbiddenException;
- use OC\HintException;
- use OC\Settings\Mailer\NewUserMailHelper;
- use OC\Security\IdentityProof\Manager;
- use OCP\App\IAppManager;
- use OCP\AppFramework\Controller;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\BackgroundJob\IJobList;
- use OCP\Files\Config\IUserMountCache;
- use OCP\Encryption\IEncryptionModule;
- use OCP\Encryption\IManager;
- use OCP\IConfig;
- use OCP\IGroupManager;
- use OCP\IL10N;
- use OCP\ILogger;
- use OCP\IRequest;
- use OCP\IURLGenerator;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\IUserSession;
- use OCP\Mail\IMailer;
- use OCP\IAvatarManager;
- use OCP\Security\ISecureRandom;
- use OCP\Util;
- use OC\Settings\BackgroundJobs\VerifyUserData;
- /**
- * @package OC\Settings\Controller
- */
- class UsersController extends Controller {
- /** @var IL10N */
- private $l10n;
- /** @var IUserSession */
- private $userSession;
- /** @var bool */
- private $isAdmin;
- /** @var IUserManager */
- private $userManager;
- /** @var IGroupManager */
- private $groupManager;
- /** @var IConfig */
- private $config;
- /** @var ILogger */
- private $log;
- /** @var IMailer */
- private $mailer;
- /** @var bool contains the state of the encryption app */
- private $isEncryptionAppEnabled;
- /** @var bool contains the state of the admin recovery setting */
- private $isRestoreEnabled = false;
- /** @var IAppManager */
- private $appManager;
- /** @var IAvatarManager */
- private $avatarManager;
- /** @var AccountManager */
- private $accountManager;
- /** @var ISecureRandom */
- private $secureRandom;
- /** @var NewUserMailHelper */
- private $newUserMailHelper;
- /** @var Manager */
- private $keyManager;
- /** @var IJobList */
- private $jobList;
- /** @var IUserMountCache */
- private $userMountCache;
- /** @var IManager */
- private $encryptionManager;
- public function __construct(string $appName,
- IRequest $request,
- IUserManager $userManager,
- IGroupManager $groupManager,
- IUserSession $userSession,
- IConfig $config,
- bool $isAdmin,
- IL10N $l10n,
- ILogger $log,
- IMailer $mailer,
- IURLGenerator $urlGenerator,
- IAppManager $appManager,
- IAvatarManager $avatarManager,
- AccountManager $accountManager,
- ISecureRandom $secureRandom,
- NewUserMailHelper $newUserMailHelper,
- Manager $keyManager,
- IJobList $jobList,
- IUserMountCache $userMountCache,
- IManager $encryptionManager) {
- parent::__construct($appName, $request);
- $this->userManager = $userManager;
- $this->groupManager = $groupManager;
- $this->userSession = $userSession;
- $this->config = $config;
- $this->isAdmin = $isAdmin;
- $this->l10n = $l10n;
- $this->log = $log;
- $this->mailer = $mailer;
- $this->appManager = $appManager;
- $this->avatarManager = $avatarManager;
- $this->accountManager = $accountManager;
- $this->secureRandom = $secureRandom;
- $this->newUserMailHelper = $newUserMailHelper;
- $this->keyManager = $keyManager;
- $this->jobList = $jobList;
- $this->userMountCache = $userMountCache;
- $this->encryptionManager = $encryptionManager;
- // check for encryption state - TODO see formatUserForIndex
- $this->isEncryptionAppEnabled = $appManager->isEnabledForUser('encryption');
- if ($this->isEncryptionAppEnabled) {
- // putting this directly in empty is possible in PHP 5.5+
- $result = $config->getAppValue('encryption', 'recoveryAdminEnabled', '0');
- $this->isRestoreEnabled = !empty($result);
- }
- }
- /**
- * @param IUser $user
- * @param array|null $userGroups
- * @return array
- */
- private function formatUserForIndex(IUser $user, array $userGroups = null): array {
- // TODO: eliminate this encryption specific code below and somehow
- // hook in additional user info from other apps
- // recovery isn't possible if admin or user has it disabled and encryption
- // is enabled - so we eliminate the else paths in the conditional tree
- // below
- $restorePossible = false;
- if ($this->isEncryptionAppEnabled) {
- if ($this->isRestoreEnabled) {
- // check for the users recovery setting
- $recoveryMode = $this->config->getUserValue($user->getUID(), 'encryption', 'recoveryEnabled', '0');
- // method call inside empty is possible with PHP 5.5+
- $recoveryModeEnabled = !empty($recoveryMode);
- if ($recoveryModeEnabled) {
- // user also has recovery mode enabled
- $restorePossible = true;
- }
- } else {
- $modules = $this->encryptionManager->getEncryptionModules();
- $restorePossible = true;
- foreach ($modules as $id => $module) {
- /* @var IEncryptionModule $instance */
- $instance = call_user_func($module['callback']);
- if ($instance->needDetailedAccessList()) {
- $restorePossible = false;
- break;
- }
- }
- }
- } else {
- // recovery is possible if encryption is disabled (plain files are
- // available)
- $restorePossible = true;
- }
- $subAdminGroups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($user);
- foreach ($subAdminGroups as $key => $subAdminGroup) {
- $subAdminGroups[$key] = $subAdminGroup->getGID();
- }
- $displayName = $user->getEMailAddress();
- if (is_null($displayName)) {
- $displayName = '';
- }
- $avatarAvailable = false;
- try {
- $avatarAvailable = $this->avatarManager->getAvatar($user->getUID())->exists();
- } catch (\Exception $e) {
- //No avatar yet
- }
- return [
- 'name' => $user->getUID(),
- 'displayname' => $user->getDisplayName(),
- 'groups' => empty($userGroups) ? $this->groupManager->getUserGroupIds($user) : $userGroups,
- 'subadmin' => $subAdminGroups,
- 'quota' => $user->getQuota(),
- 'quota_bytes' => Util::computerFileSize($user->getQuota()),
- 'storageLocation' => $user->getHome(),
- 'lastLogin' => $user->getLastLogin() * 1000,
- 'backend' => $user->getBackendClassName(),
- 'email' => $displayName,
- 'isRestoreDisabled' => !$restorePossible,
- 'isAvatarAvailable' => $avatarAvailable,
- 'isEnabled' => $user->isEnabled(),
- ];
- }
- /**
- * @param array $userIDs Array with schema [$uid => $displayName]
- * @return IUser[]
- */
- private function getUsersForUID(array $userIDs): array {
- $users = [];
- foreach ($userIDs as $uid => $displayName) {
- $users[$uid] = $this->userManager->get($uid);
- }
- return $users;
- }
- /**
- * @NoAdminRequired
- *
- * @param int $offset
- * @param int $limit
- * @param string $gid GID to filter for
- * @param string $pattern Pattern to search for in the username
- * @param string $backend Backend to filter for (class-name)
- * @return DataResponse
- *
- * TODO: Tidy up and write unit tests - code is mainly static method calls
- */
- public function index(int $offset = 0, int $limit = 10, string $gid = '', string $pattern = '', string $backend = ''): DataResponse {
- // Remove backends
- if (!empty($backend)) {
- $activeBackends = $this->userManager->getBackends();
- $this->userManager->clearBackends();
- foreach ($activeBackends as $singleActiveBackend) {
- if ($backend === get_class($singleActiveBackend)) {
- $this->userManager->registerBackend($singleActiveBackend);
- break;
- }
- }
- }
- $userObjects = [];
- $users = [];
- if ($this->isAdmin) {
- if ($gid !== '' && $gid !== '_disabledUsers' && $gid !== '_everyone') {
- $batch = $this->getUsersForUID($this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset));
- } else {
- $batch = $this->userManager->search($pattern, $limit, $offset);
- }
- foreach ($batch as $user) {
- if (($gid !== '_disabledUsers' && $user->isEnabled()) ||
- ($gid === '_disabledUsers' && !$user->isEnabled())
- ) {
- $userObjects[] = $user;
- $users[] = $this->formatUserForIndex($user);
- }
- }
- } else {
- $subAdminOfGroups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($this->userSession->getUser());
- // New class returns IGroup[] so convert back
- $gids = [];
- foreach ($subAdminOfGroups as $group) {
- $gids[] = $group->getGID();
- }
- $subAdminOfGroups = $gids;
- // Set the $gid parameter to an empty value if the subadmin has no rights to access a specific group
- if ($gid !== '' && $gid !== '_disabledUsers' && !in_array($gid, $subAdminOfGroups)) {
- $gid = '';
- }
- // Batch all groups the user is subadmin of when a group is specified
- $batch = [];
- if ($gid !== '' && $gid !== '_disabledUsers' && $gid !== '_everyone') {
- $batch = $this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset);
- } else {
- foreach ($subAdminOfGroups as $group) {
- $groupUsers = $this->groupManager->displayNamesInGroup($group, $pattern, $limit, $offset);
- foreach ($groupUsers as $uid => $displayName) {
- $batch[$uid] = $displayName;
- }
- }
- }
- $batch = $this->getUsersForUID($batch);
- foreach ($batch as $user) {
- // Only add the groups, this user is a subadmin of
- $userGroups = array_values(array_intersect(
- $this->groupManager->getUserGroupIds($user),
- $subAdminOfGroups
- ));
- if (($gid !== '_disabledUsers' && $user->isEnabled()) ||
- ($gid === '_disabledUsers' && !$user->isEnabled())
- ) {
- $userObjects[] = $user;
- $users[] = $this->formatUserForIndex($user, $userGroups);
- }
- }
- }
- $usedSpace = $this->userMountCache->getUsedSpaceForUsers($userObjects);
- foreach ($users as &$userData) {
- $userData['size'] = isset($usedSpace[$userData['name']]) ? $usedSpace[$userData['name']] : 0;
- }
- return new DataResponse($users);
- }
- /**
- * @NoAdminRequired
- * @PasswordConfirmationRequired
- *
- * @param string $username
- * @param string $password
- * @param array $groups
- * @param string $email
- * @return DataResponse
- */
- public function create(string $username, string $password, array $groups = [], $email = ''): DataResponse {
- if ($email !== '' && !$this->mailer->validateMailAddress($email)) {
- return new DataResponse(
- [
- 'message' => $this->l10n->t('Invalid mail address')
- ],
- Http::STATUS_UNPROCESSABLE_ENTITY
- );
- }
- $currentUser = $this->userSession->getUser();
- if (!$this->isAdmin) {
- if (!empty($groups)) {
- foreach ($groups as $key => $group) {
- $groupObject = $this->groupManager->get($group);
- if ($groupObject === null) {
- unset($groups[$key]);
- continue;
- }
- if (!$this->groupManager->getSubAdmin()->isSubAdminOfGroup($currentUser, $groupObject)) {
- unset($groups[$key]);
- }
- }
- }
- if (empty($groups)) {
- return new DataResponse(
- [
- 'message' => $this->l10n->t('No valid group selected'),
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- }
- if ($this->userManager->userExists($username)) {
- return new DataResponse(
- [
- 'message' => $this->l10n->t('A user with that name already exists.')
- ],
- Http::STATUS_CONFLICT
- );
- }
- $generatePasswordResetToken = false;
- if ($password === '') {
- if ($email === '') {
- return new DataResponse(
- [
- 'message' => $this->l10n->t('To send a password link to the user an email address is required.')
- ],
- Http::STATUS_UNPROCESSABLE_ENTITY
- );
- }
- $password = $this->secureRandom->generate(30);
- // Make sure we pass the password_policy
- $password .= $this->secureRandom->generate(2, '$!.,;:-~+*[]{}()');
- $generatePasswordResetToken = true;
- }
- try {
- $user = $this->userManager->createUser($username, $password);
- } catch (\Exception $exception) {
- $message = $exception->getMessage();
- if ($exception instanceof HintException && $exception->getHint()) {
- $message = $exception->getHint();
- }
- if (!$message) {
- $message = $this->l10n->t('Unable to create user.');
- }
- return new DataResponse(
- [
- 'message' => (string)$message,
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- if ($user instanceof IUser) {
- if ($groups !== null) {
- foreach ($groups as $groupName) {
- $group = $this->groupManager->get($groupName);
- if (empty($group)) {
- $group = $this->groupManager->createGroup($groupName);
- }
- $group->addUser($user);
- }
- }
- /**
- * Send new user mail only if a mail is set
- */
- if ($email !== '') {
- $user->setEMailAddress($email);
- try {
- $emailTemplate = $this->newUserMailHelper->generateTemplate($user, $generatePasswordResetToken);
- $this->newUserMailHelper->sendMail($user, $emailTemplate);
- } catch (\Exception $e) {
- $this->log->logException($e, [
- 'message' => "Can't send new user mail to $email",
- 'level' => \OCP\Util::ERROR,
- 'app' => 'settings',
- ]);
- }
- }
- // fetch users groups
- $userGroups = $this->groupManager->getUserGroupIds($user);
- return new DataResponse(
- $this->formatUserForIndex($user, $userGroups),
- Http::STATUS_CREATED
- );
- }
- return new DataResponse(
- [
- 'message' => $this->l10n->t('Unable to create user.')
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- /**
- * @NoAdminRequired
- * @PasswordConfirmationRequired
- *
- * @param string $id
- * @return DataResponse
- */
- public function destroy(string $id): DataResponse {
- $userId = $this->userSession->getUser()->getUID();
- $user = $this->userManager->get($id);
- if ($userId === $id) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Unable to delete user.')
- ]
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- if (!$this->isAdmin && !$this->groupManager->getSubAdmin()->isUserAccessible($this->userSession->getUser(), $user)) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Authentication error')
- ]
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- if ($user && $user->delete()) {
- return new DataResponse(
- [
- 'status' => 'success',
- 'data' => [
- 'username' => $id
- ]
- ],
- Http::STATUS_NO_CONTENT
- );
- }
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Unable to delete user.')
- ]
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- /**
- * @NoAdminRequired
- *
- * @param string $id
- * @param int $enabled
- * @return DataResponse
- */
- public function setEnabled(string $id, int $enabled): DataResponse {
- $enabled = (bool)$enabled;
- if ($enabled) {
- $errorMsgGeneral = $this->l10n->t('Error while enabling user.');
- } else {
- $errorMsgGeneral = $this->l10n->t('Error while disabling user.');
- }
- $userId = $this->userSession->getUser()->getUID();
- $user = $this->userManager->get($id);
- if ($userId === $id) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $errorMsgGeneral
- ]
- ], Http::STATUS_FORBIDDEN
- );
- }
- if ($user) {
- if (!$this->isAdmin && !$this->groupManager->getSubAdmin()->isUserAccessible($this->userSession->getUser(), $user)) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Authentication error')
- ]
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- $user->setEnabled($enabled);
- return new DataResponse(
- [
- 'status' => 'success',
- 'data' => [
- 'username' => $id,
- 'enabled' => $enabled
- ]
- ]
- );
- } else {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $errorMsgGeneral
- ]
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- }
- /**
- * Set the mail address of a user
- *
- * @NoAdminRequired
- * @NoSubadminRequired
- * @PasswordConfirmationRequired
- *
- * @param string $account
- * @param bool $onlyVerificationCode only return verification code without updating the data
- * @return DataResponse
- */
- public function getVerificationCode(string $account, bool $onlyVerificationCode): DataResponse {
- $user = $this->userSession->getUser();
- if ($user === null) {
- return new DataResponse([], Http::STATUS_BAD_REQUEST);
- }
- $accountData = $this->accountManager->getUser($user);
- $cloudId = $user->getCloudId();
- $message = 'Use my Federated Cloud ID to share with me: ' . $cloudId;
- $signature = $this->signMessage($user, $message);
- $code = $message . ' ' . $signature;
- $codeMd5 = $message . ' ' . md5($signature);
- switch ($account) {
- case 'verify-twitter':
- $accountData[AccountManager::PROPERTY_TWITTER]['verified'] = AccountManager::VERIFICATION_IN_PROGRESS;
- $msg = $this->l10n->t('In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):');
- $code = $codeMd5;
- $type = AccountManager::PROPERTY_TWITTER;
- $data = $accountData[AccountManager::PROPERTY_TWITTER]['value'];
- $accountData[AccountManager::PROPERTY_TWITTER]['signature'] = $signature;
- break;
- case 'verify-website':
- $accountData[AccountManager::PROPERTY_WEBSITE]['verified'] = AccountManager::VERIFICATION_IN_PROGRESS;
- $msg = $this->l10n->t('In order to verify your Website, store the following content in your web-root at \'.well-known/CloudIdVerificationCode.txt\' (please make sure that the complete text is in one line):');
- $type = AccountManager::PROPERTY_WEBSITE;
- $data = $accountData[AccountManager::PROPERTY_WEBSITE]['value'];
- $accountData[AccountManager::PROPERTY_WEBSITE]['signature'] = $signature;
- break;
- default:
- return new DataResponse([], Http::STATUS_BAD_REQUEST);
- }
- if ($onlyVerificationCode === false) {
- $this->accountManager->updateUser($user, $accountData);
- $this->jobList->add(VerifyUserData::class,
- [
- 'verificationCode' => $code,
- 'data' => $data,
- 'type' => $type,
- 'uid' => $user->getUID(),
- 'try' => 0,
- 'lastRun' => $this->getCurrentTime()
- ]
- );
- }
- return new DataResponse(['msg' => $msg, 'code' => $code]);
- }
- /**
- * get current timestamp
- *
- * @return int
- */
- protected function getCurrentTime(): int {
- return time();
- }
- /**
- * sign message with users private key
- *
- * @param IUser $user
- * @param string $message
- *
- * @return string base64 encoded signature
- */
- protected function signMessage(IUser $user, string $message): string {
- $privateKey = $this->keyManager->getKey($user)->getPrivate();
- openssl_sign(json_encode($message), $signature, $privateKey, OPENSSL_ALGO_SHA512);
- return base64_encode($signature);
- }
- /**
- * @NoAdminRequired
- * @NoSubadminRequired
- * @PasswordConfirmationRequired
- *
- * @param string $avatarScope
- * @param string $displayname
- * @param string $displaynameScope
- * @param string $phone
- * @param string $phoneScope
- * @param string $email
- * @param string $emailScope
- * @param string $website
- * @param string $websiteScope
- * @param string $address
- * @param string $addressScope
- * @param string $twitter
- * @param string $twitterScope
- * @return DataResponse
- */
- public function setUserSettings($avatarScope,
- $displayname,
- $displaynameScope,
- $phone,
- $phoneScope,
- $email,
- $emailScope,
- $website,
- $websiteScope,
- $address,
- $addressScope,
- $twitter,
- $twitterScope
- ) {
- if (!empty($email) && !$this->mailer->validateMailAddress($email)) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Invalid mail address')
- ]
- ],
- Http::STATUS_UNPROCESSABLE_ENTITY
- );
- }
- $user = $this->userSession->getUser();
- $data = $this->accountManager->getUser($user);
- $data[AccountManager::PROPERTY_AVATAR] = ['scope' => $avatarScope];
- if ($this->config->getSystemValue('allow_user_to_change_display_name', true) !== false) {
- $data[AccountManager::PROPERTY_DISPLAYNAME] = ['value' => $displayname, 'scope' => $displaynameScope];
- $data[AccountManager::PROPERTY_EMAIL] = ['value' => $email, 'scope' => $emailScope];
- }
- if ($this->appManager->isEnabledForUser('federatedfilesharing')) {
- $federatedFileSharing = new \OCA\FederatedFileSharing\AppInfo\Application();
- $shareProvider = $federatedFileSharing->getFederatedShareProvider();
- if ($shareProvider->isLookupServerUploadEnabled()) {
- $data[AccountManager::PROPERTY_WEBSITE] = ['value' => $website, 'scope' => $websiteScope];
- $data[AccountManager::PROPERTY_ADDRESS] = ['value' => $address, 'scope' => $addressScope];
- $data[AccountManager::PROPERTY_PHONE] = ['value' => $phone, 'scope' => $phoneScope];
- $data[AccountManager::PROPERTY_TWITTER] = ['value' => $twitter, 'scope' => $twitterScope];
- }
- }
- try {
- $this->saveUserSettings($user, $data);
- return new DataResponse(
- [
- 'status' => 'success',
- 'data' => [
- 'userId' => $user->getUID(),
- 'avatarScope' => $data[AccountManager::PROPERTY_AVATAR]['scope'],
- 'displayname' => $data[AccountManager::PROPERTY_DISPLAYNAME]['value'],
- 'displaynameScope' => $data[AccountManager::PROPERTY_DISPLAYNAME]['scope'],
- 'email' => $data[AccountManager::PROPERTY_EMAIL]['value'],
- 'emailScope' => $data[AccountManager::PROPERTY_EMAIL]['scope'],
- 'website' => $data[AccountManager::PROPERTY_WEBSITE]['value'],
- 'websiteScope' => $data[AccountManager::PROPERTY_WEBSITE]['scope'],
- 'address' => $data[AccountManager::PROPERTY_ADDRESS]['value'],
- 'addressScope' => $data[AccountManager::PROPERTY_ADDRESS]['scope'],
- 'message' => $this->l10n->t('Settings saved')
- ]
- ],
- Http::STATUS_OK
- );
- } catch (ForbiddenException $e) {
- return new DataResponse([
- 'status' => 'error',
- 'data' => [
- 'message' => $e->getMessage()
- ],
- ]);
- }
- }
- /**
- * update account manager with new user data
- *
- * @param IUser $user
- * @param array $data
- * @throws ForbiddenException
- */
- protected function saveUserSettings(IUser $user, array $data) {
- // keep the user back-end up-to-date with the latest display name and email
- // address
- $oldDisplayName = $user->getDisplayName();
- $oldDisplayName = is_null($oldDisplayName) ? '' : $oldDisplayName;
- if (isset($data[AccountManager::PROPERTY_DISPLAYNAME]['value'])
- && $oldDisplayName !== $data[AccountManager::PROPERTY_DISPLAYNAME]['value']
- ) {
- $result = $user->setDisplayName($data[AccountManager::PROPERTY_DISPLAYNAME]['value']);
- if ($result === false) {
- throw new ForbiddenException($this->l10n->t('Unable to change full name'));
- }
- }
- $oldEmailAddress = $user->getEMailAddress();
- $oldEmailAddress = is_null($oldEmailAddress) ? '' : $oldEmailAddress;
- if (isset($data[AccountManager::PROPERTY_EMAIL]['value'])
- && $oldEmailAddress !== $data[AccountManager::PROPERTY_EMAIL]['value']
- ) {
- // this is the only permission a backend provides and is also used
- // for the permission of setting a email address
- if (!$user->canChangeDisplayName()) {
- throw new ForbiddenException($this->l10n->t('Unable to change email address'));
- }
- $user->setEMailAddress($data[AccountManager::PROPERTY_EMAIL]['value']);
- }
- $this->accountManager->updateUser($user, $data);
- }
- /**
- * Count all unique users visible for the current admin/subadmin.
- *
- * @NoAdminRequired
- *
- * @return DataResponse
- */
- public function stats(): DataResponse {
- $userCount = 0;
- if ($this->isAdmin) {
- $countByBackend = $this->userManager->countUsers();
- if (!empty($countByBackend)) {
- foreach ($countByBackend as $count) {
- $userCount += $count;
- }
- }
- } else {
- $groups = $this->groupManager->getSubAdmin()->getSubAdminsGroups($this->userSession->getUser());
- $uniqueUsers = [];
- foreach ($groups as $group) {
- foreach ($group->getUsers() as $uid => $displayName) {
- $uniqueUsers[$uid] = true;
- }
- }
- $userCount = count($uniqueUsers);
- }
- return new DataResponse(
- [
- 'totalUsers' => $userCount
- ]
- );
- }
- /**
- * Set the displayName of a user
- *
- * @NoAdminRequired
- * @NoSubadminRequired
- * @PasswordConfirmationRequired
- * @todo merge into saveUserSettings
- *
- * @param string $username
- * @param string $displayName
- * @return DataResponse
- */
- public function setDisplayName(string $username, string $displayName) {
- $currentUser = $this->userSession->getUser();
- $user = $this->userManager->get($username);
- if ($user === null ||
- !$user->canChangeDisplayName() ||
- (
- !$this->groupManager->isAdmin($currentUser->getUID()) &&
- !$this->groupManager->getSubAdmin()->isUserAccessible($currentUser, $user) &&
- $currentUser->getUID() !== $username
- )
- ) {
- return new DataResponse([
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Authentication error'),
- ],
- ]);
- }
- $userData = $this->accountManager->getUser($user);
- $userData[AccountManager::PROPERTY_DISPLAYNAME]['value'] = $displayName;
- try {
- $this->saveUserSettings($user, $userData);
- return new DataResponse([
- 'status' => 'success',
- 'data' => [
- 'message' => $this->l10n->t('Your full name has been changed.'),
- 'username' => $username,
- 'displayName' => $displayName,
- ],
- ]);
- } catch (ForbiddenException $e) {
- return new DataResponse([
- 'status' => 'error',
- 'data' => [
- 'message' => $e->getMessage(),
- 'displayName' => $user->getDisplayName(),
- ],
- ]);
- }
- }
- /**
- * Set the mail address of a user
- *
- * @NoAdminRequired
- * @NoSubadminRequired
- * @PasswordConfirmationRequired
- *
- * @param string $id
- * @param string $mailAddress
- * @return DataResponse
- */
- public function setEMailAddress(string $id, string $mailAddress) {
- $user = $this->userManager->get($id);
- if (!$this->isAdmin
- && !$this->groupManager->getSubAdmin()->isUserAccessible($this->userSession->getUser(), $user)
- ) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Forbidden')
- ]
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- if ($mailAddress !== '' && !$this->mailer->validateMailAddress($mailAddress)) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Invalid mail address')
- ]
- ],
- Http::STATUS_UNPROCESSABLE_ENTITY
- );
- }
- if (!$user) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Invalid user')
- ]
- ],
- Http::STATUS_UNPROCESSABLE_ENTITY
- );
- }
- // this is the only permission a backend provides and is also used
- // for the permission of setting a email address
- if (!$user->canChangeDisplayName()) {
- return new DataResponse(
- [
- 'status' => 'error',
- 'data' => [
- 'message' => $this->l10n->t('Unable to change mail address')
- ]
- ],
- Http::STATUS_FORBIDDEN
- );
- }
- $userData = $this->accountManager->getUser($user);
- $userData[AccountManager::PROPERTY_EMAIL]['value'] = $mailAddress;
- try {
- $this->saveUserSettings($user, $userData);
- return new DataResponse(
- [
- 'status' => 'success',
- 'data' => [
- 'username' => $id,
- 'mailAddress' => $mailAddress,
- 'message' => $this->l10n->t('Email saved')
- ]
- ],
- Http::STATUS_OK
- );
- } catch (ForbiddenException $e) {
- return new DataResponse([
- 'status' => 'error',
- 'data' => [
- 'message' => $e->getMessage()
- ],
- ]);
- }
- }
- }
|