2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
2011-08-23 03:40:13 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Christoph Wurst <christoph@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Marvin Thomas Rabe <mrabe@marvinrabe.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-10-26 15:54:55 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Volkan Gezer <volkangezer@gmail.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/>
|
|
|
|
*
|
2011-08-23 03:40:13 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2011-09-18 23:31:56 +04:00
|
|
|
OC_Util::checkLoggedIn();
|
2010-08-12 19:30:20 +04:00
|
|
|
|
2016-07-15 09:46:31 +03:00
|
|
|
$defaults = \OC::$server->getThemingDefaults();
|
2014-08-15 19:18:46 +04:00
|
|
|
$certificateManager = \OC::$server->getCertificateManager();
|
2017-04-21 18:36:03 +03:00
|
|
|
$accountManager = new \OC\Accounts\AccountManager(
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
\OC::$server->getEventDispatcher(),
|
|
|
|
\OC::$server->getJobList()
|
|
|
|
);
|
2014-12-04 18:48:07 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
2015-04-15 15:21:23 +03:00
|
|
|
$urlGenerator = \OC::$server->getURLGenerator();
|
2013-07-03 14:38:20 +04:00
|
|
|
|
2011-04-18 17:07:14 +04:00
|
|
|
// Highlight navigation entry
|
2017-05-19 02:57:26 +03:00
|
|
|
OC_Util::addScript('settings', 'authtoken');
|
2016-05-18 13:03:22 +03:00
|
|
|
OC_Util::addScript('settings', 'authtoken_collection');
|
|
|
|
OC_Util::addScript('settings', 'authtoken_view');
|
2016-04-20 18:03:50 +03:00
|
|
|
OC_Util::addScript('settings', 'usersettings');
|
2016-04-20 13:19:39 +03:00
|
|
|
OC_Util::addScript('settings', 'federationsettingsview');
|
|
|
|
OC_Util::addScript('settings', 'federationscopemenu');
|
|
|
|
OC_Util::addScript('settings', 'personal');
|
2015-12-22 19:42:28 +03:00
|
|
|
OC_Util::addScript('settings', 'certificates');
|
2011-10-02 17:51:24 +04:00
|
|
|
OC_Util::addStyle( 'settings', 'settings' );
|
2014-11-06 16:47:58 +03:00
|
|
|
\OC_Util::addVendorScript('strengthify/jquery.strengthify');
|
|
|
|
\OC_Util::addVendorStyle('strengthify/strengthify');
|
2013-08-19 14:15:48 +04:00
|
|
|
\OC_Util::addScript('files', 'jquery.fileupload');
|
2017-02-14 02:49:05 +03:00
|
|
|
\OC_Util::addVendorScript('jcrop/js/jquery.Jcrop');
|
|
|
|
\OC_Util::addVendorStyle('jcrop/css/jquery.Jcrop');
|
2013-03-13 14:03:52 +04:00
|
|
|
|
2016-04-20 13:30:48 +03:00
|
|
|
\OC::$server->getEventDispatcher()->dispatch('OC\Settings\Personal::loadAdditionalScripts');
|
|
|
|
|
2013-03-13 14:03:52 +04:00
|
|
|
// Highlight navigation entry
|
2015-12-01 14:05:40 +03:00
|
|
|
OC::$server->getNavigationManager()->setActiveEntry('personal');
|
2011-04-18 17:07:14 +04:00
|
|
|
|
2013-08-27 02:59:58 +04:00
|
|
|
$storageInfo=OC_Helper::getStorageInfo('/');
|
2011-04-18 17:07:14 +04:00
|
|
|
|
2015-12-01 14:05:40 +03:00
|
|
|
$user = OC::$server->getUserManager()->get(OC_User::getUser());
|
2011-09-26 23:10:56 +04:00
|
|
|
|
2017-06-21 12:22:05 +03:00
|
|
|
$forceLanguage = $config->getSystemValue('force_language', false);
|
|
|
|
if ($forceLanguage === false) {
|
|
|
|
$userLang=$config->getUserValue( OC_User::getUser(), 'core', 'lang', \OC::$server->getL10NFactory()->findLanguage() );
|
|
|
|
$languageCodes = \OC::$server->getL10NFactory()->findAvailableLanguages();
|
|
|
|
|
|
|
|
// array of common languages
|
|
|
|
$commonLangCodes = array(
|
|
|
|
'en', 'es', 'fr', 'de', 'de_DE', 'ja', 'ar', 'ru', 'nl', 'it', 'pt_BR', 'pt_PT', 'da', 'fi_FI', 'nb_NO', 'sv', 'tr', 'zh_CN', 'ko'
|
|
|
|
);
|
|
|
|
|
|
|
|
$languages=array();
|
|
|
|
$commonLanguages = array();
|
|
|
|
foreach($languageCodes as $lang) {
|
|
|
|
$l = \OC::$server->getL10N('settings', $lang);
|
|
|
|
// TRANSLATORS this is the language name for the language switcher in the personal settings and should be the localized version
|
|
|
|
$potentialName = (string) $l->t('__language_name__');
|
|
|
|
if($l->getLanguageCode() === $lang && substr($potentialName, 0, 1) !== '_') {//first check if the language name is in the translation file
|
|
|
|
$ln = array('code' => $lang, 'name' => $potentialName);
|
|
|
|
} elseif ($lang === 'en') {
|
|
|
|
$ln = ['code' => $lang, 'name' => 'English (US)'];
|
|
|
|
}else{//fallback to language code
|
|
|
|
$ln=array('code'=>$lang, 'name'=>$lang);
|
|
|
|
}
|
|
|
|
|
|
|
|
// put appropriate languages into appropriate arrays, to print them sorted
|
|
|
|
// used language -> common languages -> divider -> other languages
|
|
|
|
if ($lang === $userLang) {
|
|
|
|
$userLang = $ln;
|
|
|
|
} elseif (in_array($lang, $commonLangCodes)) {
|
|
|
|
$commonLanguages[array_search($lang, $commonLangCodes)]=$ln;
|
|
|
|
} else {
|
|
|
|
$languages[]=$ln;
|
|
|
|
}
|
2013-02-15 00:34:15 +04:00
|
|
|
}
|
|
|
|
|
2017-06-21 12:22:05 +03:00
|
|
|
// if user language is not available but set somehow: show the actual code as name
|
|
|
|
if (!is_array($userLang)) {
|
|
|
|
$userLang = [
|
|
|
|
'code' => $userLang,
|
|
|
|
'name' => $userLang,
|
|
|
|
];
|
2012-01-15 18:25:58 +04:00
|
|
|
}
|
2013-02-15 00:34:15 +04:00
|
|
|
|
2017-06-21 12:22:05 +03:00
|
|
|
ksort($commonLanguages);
|
|
|
|
|
|
|
|
// sort now by displayed language not the iso-code
|
|
|
|
usort( $languages, function ($a, $b) {
|
|
|
|
if ($a['code'] === $a['name'] && $b['code'] !== $b['name']) {
|
|
|
|
// If a doesn't have a name, but b does, list b before a
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if ($a['code'] !== $a['name'] && $b['code'] === $b['name']) {
|
|
|
|
// If a does have a name, but b doesn't, list a before b
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// Otherwise compare the names
|
|
|
|
return strcmp($a['name'], $b['name']);
|
|
|
|
});
|
2015-11-06 11:48:05 +03:00
|
|
|
}
|
|
|
|
|
2013-02-06 18:20:43 +04:00
|
|
|
//links to clients
|
|
|
|
$clients = array(
|
2014-12-04 18:48:07 +03:00
|
|
|
'desktop' => $config->getSystemValue('customclient_desktop', $defaults->getSyncClientUrl()),
|
|
|
|
'android' => $config->getSystemValue('customclient_android', $defaults->getAndroidClientUrl()),
|
|
|
|
'ios' => $config->getSystemValue('customclient_ios', $defaults->getiOSClientUrl())
|
2013-02-06 18:20:43 +04:00
|
|
|
);
|
2011-06-20 16:33:02 +04:00
|
|
|
|
2015-08-04 18:50:30 +03:00
|
|
|
// only show root certificate import if external storages are enabled
|
|
|
|
$enableCertImport = false;
|
|
|
|
$externalStorageEnabled = \OC::$server->getAppManager()->isEnabledForUser('files_external');
|
|
|
|
if ($externalStorageEnabled) {
|
2015-10-06 15:06:22 +03:00
|
|
|
/** @var \OCA\Files_External\Service\BackendService $backendService */
|
|
|
|
$backendService = \OC_Mount_Config::$app->getContainer()->query('\OCA\Files_External\Service\BackendService');
|
|
|
|
$enableCertImport = $backendService->isUserMountingAllowed();
|
2015-08-04 18:50:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-18 17:07:14 +04:00
|
|
|
// Return template
|
2016-02-24 12:39:04 +03:00
|
|
|
$l = \OC::$server->getL10N('settings');
|
2011-10-02 17:51:24 +04:00
|
|
|
$tmpl = new OC_Template( 'settings', 'personal', 'user');
|
2013-01-02 17:35:45 +04:00
|
|
|
$tmpl->assign('usage', OC_Helper::humanFileSize($storageInfo['used']));
|
2016-02-24 12:39:04 +03:00
|
|
|
if ($storageInfo['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED) {
|
|
|
|
$totalSpace = $l->t('Unlimited');
|
|
|
|
} else {
|
|
|
|
$totalSpace = OC_Helper::humanFileSize($storageInfo['total']);
|
|
|
|
}
|
2016-11-11 16:36:17 +03:00
|
|
|
|
|
|
|
$uid = $user->getUID();
|
|
|
|
$userData = $accountManager->getUser($user);
|
2016-04-25 17:07:00 +03:00
|
|
|
|
2016-02-24 12:39:04 +03:00
|
|
|
$tmpl->assign('total_space', $totalSpace);
|
2013-01-02 17:35:45 +04:00
|
|
|
$tmpl->assign('usage_relative', $storageInfo['relative']);
|
2017-02-27 15:41:05 +03:00
|
|
|
$tmpl->assign('quota', $storageInfo['quota']);
|
2013-02-06 18:20:43 +04:00
|
|
|
$tmpl->assign('clients', $clients);
|
2016-11-11 16:36:17 +03:00
|
|
|
$tmpl->assign('email', $userData[\OC\Accounts\AccountManager::PROPERTY_EMAIL]['value']);
|
2017-06-21 12:22:05 +03:00
|
|
|
if ($forceLanguage === false) {
|
|
|
|
$tmpl->assign('languages', $languages);
|
|
|
|
$tmpl->assign('commonlanguages', $commonLanguages);
|
|
|
|
$tmpl->assign('activelanguage', $userLang);
|
|
|
|
}
|
2013-02-05 17:58:35 +04:00
|
|
|
$tmpl->assign('passwordChangeSupported', OC_User::canUserChangePassword(OC_User::getUser()));
|
2013-02-06 14:38:03 +04:00
|
|
|
$tmpl->assign('displayNameChangeSupported', OC_User::canUserChangeDisplayName(OC_User::getUser()));
|
2016-11-11 16:36:17 +03:00
|
|
|
$tmpl->assign('displayName', $userData[\OC\Accounts\AccountManager::PROPERTY_DISPLAYNAME]['value']);
|
|
|
|
|
|
|
|
$tmpl->assign('phone', $userData[\OC\Accounts\AccountManager::PROPERTY_PHONE]['value']);
|
|
|
|
$tmpl->assign('website', $userData[\OC\Accounts\AccountManager::PROPERTY_WEBSITE]['value']);
|
|
|
|
$tmpl->assign('twitter', $userData[\OC\Accounts\AccountManager::PROPERTY_TWITTER]['value']);
|
|
|
|
$tmpl->assign('address', $userData[\OC\Accounts\AccountManager::PROPERTY_ADDRESS]['value']);
|
|
|
|
|
|
|
|
$tmpl->assign('avatarScope', $userData[\OC\Accounts\AccountManager::PROPERTY_AVATAR]['scope']);
|
|
|
|
$tmpl->assign('displayNameScope', $userData[\OC\Accounts\AccountManager::PROPERTY_DISPLAYNAME]['scope']);
|
|
|
|
$tmpl->assign('phoneScope', $userData[\OC\Accounts\AccountManager::PROPERTY_PHONE]['scope']);
|
|
|
|
$tmpl->assign('emailScope', $userData[\OC\Accounts\AccountManager::PROPERTY_EMAIL]['scope']);
|
|
|
|
$tmpl->assign('websiteScope', $userData[\OC\Accounts\AccountManager::PROPERTY_WEBSITE]['scope']);
|
|
|
|
$tmpl->assign('twitterScope', $userData[\OC\Accounts\AccountManager::PROPERTY_TWITTER]['scope']);
|
|
|
|
$tmpl->assign('addressScope', $userData[\OC\Accounts\AccountManager::PROPERTY_ADDRESS]['scope']);
|
2016-04-25 17:07:00 +03:00
|
|
|
|
2017-04-24 13:20:36 +03:00
|
|
|
$tmpl->assign('websiteVerification', $userData[\OC\Accounts\AccountManager::PROPERTY_WEBSITE]['verified']);
|
|
|
|
$tmpl->assign('twitterVerification', $userData[\OC\Accounts\AccountManager::PROPERTY_TWITTER]['verified']);
|
|
|
|
$tmpl->assign('emailVerification', $userData[\OC\Accounts\AccountManager::PROPERTY_EMAIL]['verified']);
|
|
|
|
|
2017-04-27 12:44:57 +03:00
|
|
|
$needVerifyMessage = [\OC\Accounts\AccountManager::PROPERTY_EMAIL, \OC\Accounts\AccountManager::PROPERTY_WEBSITE, \OC\Accounts\AccountManager::PROPERTY_TWITTER];
|
|
|
|
|
|
|
|
foreach ($needVerifyMessage as $property) {
|
|
|
|
|
|
|
|
switch ($userData[$property]['verified']) {
|
|
|
|
case \OC\Accounts\AccountManager::VERIFIED:
|
|
|
|
$message = $l->t('Verifying');
|
|
|
|
break;
|
|
|
|
case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS:
|
|
|
|
$message = $l->t('Verifying …');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$message = $l->t('Verify');
|
|
|
|
}
|
|
|
|
|
|
|
|
$tmpl->assign($property . 'Message', $message);
|
|
|
|
}
|
|
|
|
|
2013-11-22 16:24:11 +04:00
|
|
|
$tmpl->assign('avatarChangeSupported', OC_User::canUserChangeAvatar(OC_User::getUser()));
|
2014-08-15 19:18:46 +04:00
|
|
|
$tmpl->assign('certs', $certificateManager->listCertificates());
|
2015-08-04 18:50:30 +03:00
|
|
|
$tmpl->assign('showCertificates', $enableCertImport);
|
2015-04-15 15:21:23 +03:00
|
|
|
$tmpl->assign('urlGenerator', $urlGenerator);
|
2011-08-09 01:32:54 +04:00
|
|
|
|
2017-05-24 10:07:58 +03:00
|
|
|
$federatedFileSharingEnabled = \OC::$server->getAppManager()->isEnabledForUser('federatedfilesharing');
|
|
|
|
$lookupServerUploadEnabled = false;
|
|
|
|
if ($federatedFileSharingEnabled) {
|
|
|
|
$federatedFileSharing = new \OCA\FederatedFileSharing\AppInfo\Application();
|
|
|
|
$shareProvider = $federatedFileSharing->getFederatedShareProvider();
|
|
|
|
$lookupServerUploadEnabled = $shareProvider->isLookupServerUploadEnabled();
|
|
|
|
}
|
|
|
|
|
2017-04-07 12:42:33 +03:00
|
|
|
$tmpl->assign('lookupServerUploadEnabled', $lookupServerUploadEnabled);
|
|
|
|
|
2015-02-04 22:32:41 +03:00
|
|
|
// Get array of group ids for this user
|
|
|
|
$groups = \OC::$server->getGroupManager()->getUserIdGroups(OC_User::getUser());
|
|
|
|
$groups2 = array_map(function($group) { return $group->getGID(); }, $groups);
|
|
|
|
sort($groups2);
|
|
|
|
$tmpl->assign('groups', $groups2);
|
|
|
|
|
2014-10-16 20:01:48 +04:00
|
|
|
// add hardcoded forms from the template
|
2015-03-23 13:34:30 +03:00
|
|
|
$formsAndMore = [];
|
2016-12-16 12:51:01 +03:00
|
|
|
$formsAndMore[]= ['anchor' => 'personal-settings', 'section-name' => $l->t('Personal info')];
|
2017-06-02 12:25:20 +03:00
|
|
|
if (\OC::$server->getAppManager()->isEnabledForUser('firstrunwizard')) {
|
|
|
|
$formsAndMore[]= ['anchor' => 'clientsbox', 'section-name' => $l->t('Sync clients')];
|
|
|
|
}
|
2017-06-06 15:16:53 +03:00
|
|
|
$formsAndMore[]= ['anchor' => 'security', 'section-name' => $l->t('Security')];
|
2014-10-16 20:01:48 +04:00
|
|
|
|
2011-08-09 01:32:54 +04:00
|
|
|
$forms=OC_App::getForms('personal');
|
2014-10-16 20:01:48 +04:00
|
|
|
|
2015-12-22 19:42:28 +03:00
|
|
|
|
|
|
|
// add bottom hardcoded forms from the template
|
|
|
|
if ($enableCertImport) {
|
|
|
|
$certificatesTemplate = new OC_Template('settings', 'certificates');
|
|
|
|
$certificatesTemplate->assign('type', 'personal');
|
|
|
|
$certificatesTemplate->assign('uploadRoute', 'settings.Certificate.addPersonalRootCertificate');
|
|
|
|
$certificatesTemplate->assign('certs', $certificateManager->listCertificates());
|
|
|
|
$certificatesTemplate->assign('urlGenerator', $urlGenerator);
|
|
|
|
$forms[] = $certificatesTemplate->fetchPage();
|
|
|
|
}
|
|
|
|
|
2014-10-16 20:01:48 +04:00
|
|
|
$formsMap = array_map(function($form){
|
2015-07-26 23:56:16 +03:00
|
|
|
if (preg_match('%(<h2(?P<class>[^>]*)>.*?</h2>)%i', $form, $regs)) {
|
|
|
|
$sectionName = str_replace('<h2'.$regs['class'].'>', '', $regs[0]);
|
2014-10-16 20:01:48 +04:00
|
|
|
$sectionName = str_replace('</h2>', '', $sectionName);
|
2017-04-27 23:58:41 +03:00
|
|
|
if (strpos($regs['class'], 'data-anchor-name') !== false) {
|
|
|
|
preg_match('%.*data-anchor-name="(?P<anchor>[^"]*)"%i', $regs['class'], $matches);
|
|
|
|
$anchor = $matches['anchor'];
|
|
|
|
} else {
|
|
|
|
$anchor = strtolower($sectionName);
|
|
|
|
$anchor = str_replace(' ', '-', $anchor);
|
|
|
|
}
|
2014-10-16 20:01:48 +04:00
|
|
|
|
|
|
|
return array(
|
2016-01-04 14:59:32 +03:00
|
|
|
'anchor' => $anchor,
|
2014-10-16 20:01:48 +04:00
|
|
|
'section-name' => $sectionName,
|
|
|
|
'form' => $form
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return array(
|
|
|
|
'form' => $form
|
|
|
|
);
|
|
|
|
}, $forms);
|
|
|
|
|
|
|
|
$formsAndMore = array_merge($formsAndMore, $formsMap);
|
|
|
|
|
|
|
|
$tmpl->assign('forms', $formsAndMore);
|
2011-03-02 01:20:16 +03:00
|
|
|
$tmpl->printPage();
|