123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2017 Arthur Schiwon <blizzz@arthur-schiwon.de>
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Christopher Ng <chrng8@gmail.com>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Citharel <nextcloud@tcit.fr>
- * @author Vincent Petry <vincent@nextcloud.com>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * 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
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\Settings\Settings\Personal;
- use OCA\FederatedFileSharing\FederatedShareProvider;
- use OCP\Accounts\IAccount;
- use OCP\Accounts\IAccountManager;
- use OCP\App\IAppManager;
- use OCP\AppFramework\Http\TemplateResponse;
- use OCP\Files\FileInfo;
- use OCP\IConfig;
- use OCP\IGroup;
- use OCP\IGroupManager;
- use OCP\IL10N;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\L10N\IFactory;
- use OCP\Settings\ISettings;
- use OCP\Accounts\IAccountProperty;
- use OCP\AppFramework\Services\IInitialState;
- class PersonalInfo implements ISettings {
- /** @var IConfig */
- private $config;
- /** @var IUserManager */
- private $userManager;
- /** @var IAccountManager */
- private $accountManager;
- /** @var IGroupManager */
- private $groupManager;
- /** @var IAppManager */
- private $appManager;
- /** @var IFactory */
- private $l10nFactory;
- /** @var IL10N */
- private $l;
- /** @var IInitialState */
- private $initialStateService;
- public function __construct(
- IConfig $config,
- IUserManager $userManager,
- IGroupManager $groupManager,
- IAccountManager $accountManager,
- IAppManager $appManager,
- IFactory $l10nFactory,
- IL10N $l,
- IInitialState $initialStateService
- ) {
- $this->config = $config;
- $this->userManager = $userManager;
- $this->accountManager = $accountManager;
- $this->groupManager = $groupManager;
- $this->appManager = $appManager;
- $this->l10nFactory = $l10nFactory;
- $this->l = $l;
- $this->initialStateService = $initialStateService;
- }
- public function getForm(): TemplateResponse {
- $federationEnabled = $this->appManager->isEnabledForUser('federation');
- $federatedFileSharingEnabled = $this->appManager->isEnabledForUser('federatedfilesharing');
- $lookupServerUploadEnabled = false;
- if ($federatedFileSharingEnabled) {
- /** @var FederatedShareProvider $shareProvider */
- $shareProvider = \OC::$server->query(FederatedShareProvider::class);
- $lookupServerUploadEnabled = $shareProvider->isLookupServerUploadEnabled();
- }
- $uid = \OC_User::getUser();
- $user = $this->userManager->get($uid);
- $account = $this->accountManager->getAccount($user);
- // make sure FS is setup before querying storage related stuff...
- \OC_Util::setupFS($user->getUID());
- $storageInfo = \OC_Helper::getStorageInfo('/');
- if ($storageInfo['quota'] === FileInfo::SPACE_UNLIMITED) {
- $totalSpace = $this->l->t('Unlimited');
- } else {
- $totalSpace = \OC_Helper::humanFileSize($storageInfo['total']);
- }
- $languageParameters = $this->getLanguages($user);
- $localeParameters = $this->getLocales($user);
- $messageParameters = $this->getMessageParameters($account);
- $parameters = [
- 'total_space' => $totalSpace,
- 'usage' => \OC_Helper::humanFileSize($storageInfo['used']),
- 'usage_relative' => round($storageInfo['relative']),
- 'quota' => $storageInfo['quota'],
- 'avatarChangeSupported' => $user->canChangeAvatar(),
- 'federationEnabled' => $federationEnabled,
- 'lookupServerUploadEnabled' => $lookupServerUploadEnabled,
- 'avatarScope' => $account->getProperty(IAccountManager::PROPERTY_AVATAR)->getScope(),
- 'displayNameChangeSupported' => $user->canChangeDisplayName(),
- 'displayName' => $account->getProperty(IAccountManager::PROPERTY_DISPLAYNAME)->getValue(),
- 'displayNameScope' => $account->getProperty(IAccountManager::PROPERTY_DISPLAYNAME)->getScope(),
- 'email' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getValue(),
- 'emailScope' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getScope(),
- 'emailVerification' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getVerified(),
- 'phone' => $account->getProperty(IAccountManager::PROPERTY_PHONE)->getValue(),
- 'phoneScope' => $account->getProperty(IAccountManager::PROPERTY_PHONE)->getScope(),
- 'address' => $account->getProperty(IAccountManager::PROPERTY_ADDRESS)->getValue(),
- 'addressScope' => $account->getProperty(IAccountManager::PROPERTY_ADDRESS)->getScope(),
- 'website' => $account->getProperty(IAccountManager::PROPERTY_WEBSITE)->getValue(),
- 'websiteScope' => $account->getProperty(IAccountManager::PROPERTY_WEBSITE)->getScope(),
- 'websiteVerification' => $account->getProperty(IAccountManager::PROPERTY_WEBSITE)->getVerified(),
- 'twitter' => $account->getProperty(IAccountManager::PROPERTY_TWITTER)->getValue(),
- 'twitterScope' => $account->getProperty(IAccountManager::PROPERTY_TWITTER)->getScope(),
- 'twitterVerification' => $account->getProperty(IAccountManager::PROPERTY_TWITTER)->getVerified(),
- 'groups' => $this->getGroups($user),
- ] + $messageParameters + $languageParameters + $localeParameters;
- $emails = $this->getEmails($account);
- $accountParameters = [
- 'displayNameChangeSupported' => $user->canChangeDisplayName(),
- 'lookupServerUploadEnabled' => $lookupServerUploadEnabled,
- ];
- $this->initialStateService->provideInitialState('emails', $emails);
- $this->initialStateService->provideInitialState('accountParameters', $accountParameters);
- return new TemplateResponse('settings', 'settings/personal/personal.info', $parameters, '');
- }
- /**
- * @return string the section ID, e.g. 'sharing'
- * @since 9.1
- */
- public function getSection(): string {
- return 'personal-info';
- }
- /**
- * @return int whether the form should be rather on the top or bottom of
- * the admin section. The forms are arranged in ascending order of the
- * priority values. It is required to return a value between 0 and 100.
- *
- * E.g.: 70
- * @since 9.1
- */
- public function getPriority(): int {
- return 10;
- }
- /**
- * returns a sorted list of the user's group GIDs
- *
- * @param IUser $user
- * @return array
- */
- private function getGroups(IUser $user): array {
- $groups = array_map(
- static function (IGroup $group) {
- return $group->getDisplayName();
- },
- $this->groupManager->getUserGroups($user)
- );
- sort($groups);
- return $groups;
- }
- /**
- * returns the primary email and additional emails in an
- * associative array
- *
- * @param IAccount $account
- * @return array
- */
- private function getEmails(IAccount $account): array {
- $systemEmail = [
- 'value' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getValue(),
- 'scope' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getScope(),
- 'verified' => $account->getProperty(IAccountManager::PROPERTY_EMAIL)->getVerified(),
- ];
- $additionalEmails = array_map(
- function (IAccountProperty $property) {
- return [
- 'value' => $property->getValue(),
- 'scope' => $property->getScope(),
- 'verified' => $property->getVerified(),
- 'locallyVerified' => $property->getLocallyVerified(),
- ];
- },
- $account->getPropertyCollection(IAccountManager::COLLECTION_EMAIL)->getProperties()
- );
- $emails = [
- 'primaryEmail' => $systemEmail,
- 'additionalEmails' => $additionalEmails,
- 'notificationEmail' => (string)$account->getUser()->getPrimaryEMailAddress(),
- ];
- return $emails;
- }
- /**
- * returns the user language, common language and other languages in an
- * associative array
- *
- * @param IUser $user
- * @return array
- */
- private function getLanguages(IUser $user): array {
- $forceLanguage = $this->config->getSystemValue('force_language', false);
- if ($forceLanguage !== false) {
- return [];
- }
- $uid = $user->getUID();
- $userConfLang = $this->config->getUserValue($uid, 'core', 'lang', $this->l10nFactory->findLanguage());
- $languages = $this->l10nFactory->getLanguages();
- // associate the user language with the proper array
- $userLangIndex = array_search($userConfLang, array_column($languages['commonlanguages'], 'code'));
- $userLang = $languages['commonlanguages'][$userLangIndex];
- // search in the other languages
- if ($userLangIndex === false) {
- $userLangIndex = array_search($userConfLang, array_column($languages['languages'], 'code'));
- $userLang = $languages['languages'][$userLangIndex];
- }
- // if user language is not available but set somehow: show the actual code as name
- if (!is_array($userLang)) {
- $userLang = [
- 'code' => $userConfLang,
- 'name' => $userConfLang,
- ];
- }
- return array_merge(
- ['activelanguage' => $userLang],
- $languages
- );
- }
- private function getLocales(IUser $user): array {
- $forceLanguage = $this->config->getSystemValue('force_locale', false);
- if ($forceLanguage !== false) {
- return [];
- }
- $uid = $user->getUID();
- $userLocaleString = $this->config->getUserValue($uid, 'core', 'locale', $this->l10nFactory->findLocale());
- $userLang = $this->config->getUserValue($uid, 'core', 'lang', $this->l10nFactory->findLanguage());
- $localeCodes = $this->l10nFactory->findAvailableLocales();
- $userLocale = array_filter($localeCodes, function ($value) use ($userLocaleString) {
- return $userLocaleString === $value['code'];
- });
- if (!empty($userLocale)) {
- $userLocale = reset($userLocale);
- }
- $localesForLanguage = array_filter($localeCodes, function ($localeCode) use ($userLang) {
- return 0 === strpos($localeCode['code'], $userLang);
- });
- if (!$userLocale) {
- $userLocale = [
- 'code' => 'en',
- 'name' => 'English'
- ];
- }
- return [
- 'activelocaleLang' => $userLocaleString,
- 'activelocale' => $userLocale,
- 'locales' => $localeCodes,
- 'localesForLanguage' => $localesForLanguage,
- ];
- }
- /**
- * @param IAccount $account
- * @return array
- */
- private function getMessageParameters(IAccount $account): array {
- $needVerifyMessage = [IAccountManager::PROPERTY_EMAIL, IAccountManager::PROPERTY_WEBSITE, IAccountManager::PROPERTY_TWITTER];
- $messageParameters = [];
- foreach ($needVerifyMessage as $property) {
- switch ($account->getProperty($property)->getVerified()) {
- case IAccountManager::VERIFIED:
- $message = $this->l->t('Verifying');
- break;
- case IAccountManager::VERIFICATION_IN_PROGRESS:
- $message = $this->l->t('Verifying …');
- break;
- default:
- $message = $this->l->t('Verify');
- }
- $messageParameters[$property . 'Message'] = $message;
- }
- return $messageParameters;
- }
- }
|