]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
Merge pull request #8132 from annando/child-user
[friendica.git] / mod / settings.php
1 <?php
2 /**
3  * @file mod/settings.php
4  */
5
6 use Friendica\App;
7 use Friendica\BaseModule;
8 use Friendica\Content\Feature;
9 use Friendica\Content\Nav;
10 use Friendica\Core\ACL;
11 use Friendica\Core\Config;
12 use Friendica\Core\Hook;
13 use Friendica\Core\L10n;
14 use Friendica\Core\Logger;
15 use Friendica\Core\Renderer;
16 use Friendica\Core\Session;
17 use Friendica\Core\Theme;
18 use Friendica\Core\Worker;
19 use Friendica\Database\DBA;
20 use Friendica\DI;
21 use Friendica\Model\Contact;
22 use Friendica\Model\GContact;
23 use Friendica\Model\Group;
24 use Friendica\Model\User;
25 use Friendica\Module\Security\Login;
26 use Friendica\Protocol\Email;
27 use Friendica\Util\Strings;
28 use Friendica\Util\Temporal;
29 use Friendica\Worker\Delivery;
30
31 function get_theme_config_file($theme)
32 {
33         $theme = Strings::sanitizeFilePathItem($theme);
34
35         $a = DI::app();
36         $base_theme = $a->theme_info['extends'] ?? '';
37
38         if (file_exists("view/theme/$theme/config.php")) {
39                 return "view/theme/$theme/config.php";
40         }
41         if ($base_theme && file_exists("view/theme/$base_theme/config.php")) {
42                 return "view/theme/$base_theme/config.php";
43         }
44         return null;
45 }
46
47 function settings_init(App $a)
48 {
49         if (!local_user()) {
50                 notice(L10n::t('Permission denied.') . EOL);
51                 return;
52         }
53
54         // These lines provide the javascript needed by the acl selector
55
56         $tpl = Renderer::getMarkupTemplate('settings/head.tpl');
57         DI::page()['htmlhead'] .= Renderer::replaceMacros($tpl, [
58                 '$ispublic' => L10n::t('everybody')
59         ]);
60
61         $tabs = [
62                 [
63                         'label' => L10n::t('Account'),
64                         'url'   => 'settings',
65                         'selected'      =>  (($a->argc == 1) && ($a->argv[0] === 'settings')?'active':''),
66                         'accesskey' => 'o',
67                 ],
68         ];
69
70         $tabs[] = [
71                 'label' => L10n::t('Two-factor authentication'),
72                 'url' => 'settings/2fa',
73                 'selected' => (($a->argc > 1) && ($a->argv[1] === '2fa') ? 'active' : ''),
74                 'accesskey' => 'o',
75         ];
76
77         $tabs[] =       [
78                 'label' => L10n::t('Profiles'),
79                 'url'   => 'profiles',
80                 'selected'      => (($a->argc == 1) && ($a->argv[0] === 'profiles')?'active':''),
81                 'accesskey' => 'p',
82         ];
83
84         if (Feature::get()) {
85                 $tabs[] =       [
86                                         'label' => L10n::t('Additional features'),
87                                         'url'   => 'settings/features',
88                                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'features') ? 'active' : ''),
89                                         'accesskey' => 't',
90                                 ];
91         }
92
93         $tabs[] =       [
94                 'label' => L10n::t('Display'),
95                 'url'   => 'settings/display',
96                 'selected'      => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
97                 'accesskey' => 'i',
98         ];
99
100         $tabs[] =       [
101                 'label' => L10n::t('Social Networks'),
102                 'url'   => 'settings/connectors',
103                 'selected'      => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
104                 'accesskey' => 'w',
105         ];
106
107         $tabs[] =       [
108                 'label' => L10n::t('Addons'),
109                 'url'   => 'settings/addon',
110                 'selected'      => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
111                 'accesskey' => 'l',
112         ];
113
114         $tabs[] =       [
115                 'label' => L10n::t('Delegations'),
116                 'url'   => 'settings/delegation',
117                 'selected'      => (($a->argc > 1) && ($a->argv[1] === 'delegation')?'active':''),
118                 'accesskey' => 'd',
119         ];
120
121         $tabs[] =       [
122                 'label' => L10n::t('Connected apps'),
123                 'url' => 'settings/oauth',
124                 'selected' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
125                 'accesskey' => 'b',
126         ];
127
128         $tabs[] =       [
129                 'label' => L10n::t('Export personal data'),
130                 'url' => 'settings/userexport',
131                 'selected' => (($a->argc > 1) && ($a->argv[1] === 'userexport')?'active':''),
132                 'accesskey' => 'e',
133         ];
134
135         $tabs[] =       [
136                 'label' => L10n::t('Remove account'),
137                 'url' => 'removeme',
138                 'selected' => (($a->argc == 1) && ($a->argv[0] === 'removeme')?'active':''),
139                 'accesskey' => 'r',
140         ];
141
142
143         $tabtpl = Renderer::getMarkupTemplate("generic_links_widget.tpl");
144         DI::page()['aside'] = Renderer::replaceMacros($tabtpl, [
145                 '$title' => L10n::t('Settings'),
146                 '$class' => 'settings-widget',
147                 '$items' => $tabs,
148         ]);
149
150 }
151
152 function settings_post(App $a)
153 {
154         if (!local_user()) {
155                 return;
156         }
157
158         if (!empty($_SESSION['submanage'])) {
159                 return;
160         }
161
162         if (count($a->user) && !empty($a->user['uid']) && $a->user['uid'] != local_user()) {
163                 notice(L10n::t('Permission denied.') . EOL);
164                 return;
165         }
166
167         $old_page_flags = $a->user['page-flags'];
168
169         if (($a->argc > 1) && ($a->argv[1] === 'oauth') && !empty($_POST['remove'])) {
170                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth');
171
172                 $key = $_POST['remove'];
173                 DBA::delete('tokens', ['id' => $key, 'uid' => local_user()]);
174                 DI::baseUrl()->redirect('settings/oauth/', true);
175                 return;
176         }
177
178         if (($a->argc > 2) && ($a->argv[1] === 'oauth')  && ($a->argv[2] === 'edit'||($a->argv[2] === 'add')) && !empty($_POST['submit'])) {
179                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth');
180
181                 $name     = $_POST['name']     ?? '';
182                 $key      = $_POST['key']      ?? '';
183                 $secret   = $_POST['secret']   ?? '';
184                 $redirect = $_POST['redirect'] ?? '';
185                 $icon     = $_POST['icon']     ?? '';
186
187                 if ($name == "" || $key == "" || $secret == "") {
188                         notice(L10n::t("Missing some important data!"));
189                 } else {
190                         if ($_POST['submit'] == L10n::t("Update")) {
191                                 q("UPDATE clients SET
192                                                         client_id='%s',
193                                                         pw='%s',
194                                                         name='%s',
195                                                         redirect_uri='%s',
196                                                         icon='%s',
197                                                         uid=%d
198                                                 WHERE client_id='%s'",
199                                         DBA::escape($key),
200                                         DBA::escape($secret),
201                                         DBA::escape($name),
202                                         DBA::escape($redirect),
203                                         DBA::escape($icon),
204                                         local_user(),
205                                         DBA::escape($key)
206                                 );
207                         } else {
208                                 q("INSERT INTO clients
209                                                         (client_id, pw, name, redirect_uri, icon, uid)
210                                                 VALUES ('%s', '%s', '%s', '%s', '%s',%d)",
211                                         DBA::escape($key),
212                                         DBA::escape($secret),
213                                         DBA::escape($name),
214                                         DBA::escape($redirect),
215                                         DBA::escape($icon),
216                                         local_user()
217                                 );
218                         }
219                 }
220                 DI::baseUrl()->redirect('settings/oauth/', true);
221                 return;
222         }
223
224         if (($a->argc > 1) && ($a->argv[1] == 'addon')) {
225                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/addon', 'settings_addon');
226
227                 Hook::callAll('addon_settings_post', $_POST);
228                 return;
229         }
230
231         if (($a->argc > 1) && ($a->argv[1] == 'connectors')) {
232                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/connectors', 'settings_connectors');
233
234                 if (!empty($_POST['general-submit'])) {
235                         DI::pConfig()->set(local_user(), 'system', 'accept_only_sharer', intval($_POST['accept_only_sharer']));
236                         DI::pConfig()->set(local_user(), 'system', 'disable_cw', intval($_POST['disable_cw']));
237                         DI::pConfig()->set(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening']));
238                         DI::pConfig()->set(local_user(), 'system', 'attach_link_title', intval($_POST['attach_link_title']));
239                         DI::pConfig()->set(local_user(), 'system', 'ostatus_autofriend', intval($_POST['snautofollow']));
240                         DI::pConfig()->set(local_user(), 'ostatus', 'default_group', $_POST['group-selection']);
241                         DI::pConfig()->set(local_user(), 'ostatus', 'legacy_contact', $_POST['legacy_contact']);
242                 } elseif (!empty($_POST['imap-submit'])) {
243                         $mail_server       =                 $_POST['mail_server']       ?? '';
244                         $mail_port         =                 $_POST['mail_port']         ?? '';
245                         $mail_ssl          = strtolower(trim($_POST['mail_ssl']          ?? ''));
246                         $mail_user         =                 $_POST['mail_user']         ?? '';
247                         $mail_pass         =            trim($_POST['mail_pass']         ?? '');
248                         $mail_action       =            trim($_POST['mail_action']       ?? '');
249                         $mail_movetofolder =            trim($_POST['mail_movetofolder'] ?? '');
250                         $mail_replyto      =                 $_POST['mail_replyto']      ?? '';
251                         $mail_pubmail      =                 $_POST['mail_pubmail']      ?? '';
252
253                         if (
254                                 !Config::get('system', 'dfrn_only')
255                                 && function_exists('imap_open')
256                                 && !Config::get('system', 'imap_disabled')
257                         ) {
258                                 $failed = false;
259                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
260                                         intval(local_user())
261                                 );
262                                 if (!DBA::isResult($r)) {
263                                         DBA::insert('mailacct', ['uid' => local_user()]);
264                                 }
265                                 if (strlen($mail_pass)) {
266                                         $pass = '';
267                                         openssl_public_encrypt($mail_pass, $pass, $a->user['pubkey']);
268                                         DBA::update('mailacct', ['pass' => bin2hex($pass)], ['uid' => local_user()]);
269                                 }
270                                 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
271                                         `action` = %d, `movetofolder` = '%s',
272                                         `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d",
273                                         DBA::escape($mail_server),
274                                         intval($mail_port),
275                                         DBA::escape($mail_ssl),
276                                         DBA::escape($mail_user),
277                                         intval($mail_action),
278                                         DBA::escape($mail_movetofolder),
279                                         DBA::escape($mail_replyto),
280                                         intval($mail_pubmail),
281                                         intval(local_user())
282                                 );
283                                 Logger::log("mail: updating mailaccount. Response: ".print_r($r, true));
284                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
285                                         intval(local_user())
286                                 );
287                                 if (DBA::isResult($r)) {
288                                         $eacct = $r[0];
289                                         $mb = Email::constructMailboxName($eacct);
290
291                                         if (strlen($eacct['server'])) {
292                                                 $dcrpass = '';
293                                                 openssl_private_decrypt(hex2bin($eacct['pass']), $dcrpass, $a->user['prvkey']);
294                                                 $mbox = Email::connect($mb, $mail_user, $dcrpass);
295                                                 unset($dcrpass);
296                                                 if (!$mbox) {
297                                                         $failed = true;
298                                                         notice(L10n::t('Failed to connect with email account using the settings provided.') . EOL);
299                                                 }
300                                         }
301                                 }
302                                 if (!$failed) {
303                                         info(L10n::t('Email settings updated.') . EOL);
304                                 }
305                         }
306                 }
307
308                 Hook::callAll('connector_settings_post', $_POST);
309                 return;
310         }
311
312         if (($a->argc > 1) && ($a->argv[1] === 'features')) {
313                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/features', 'settings_features');
314                 foreach ($_POST as $k => $v) {
315                         if (strpos($k, 'feature_') === 0) {
316                                 DI::pConfig()->set(local_user(), 'feature', substr($k, 8), ((intval($v)) ? 1 : 0));
317                         }
318                 }
319                 info(L10n::t('Features updated') . EOL);
320                 return;
321         }
322
323         if (($a->argc > 1) && ($a->argv[1] === 'display')) {
324                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/display', 'settings_display');
325
326                 $theme              = !empty($_POST['theme'])              ? Strings::escapeTags(trim($_POST['theme']))        : $a->user['theme'];
327                 $mobile_theme       = !empty($_POST['mobile_theme'])       ? Strings::escapeTags(trim($_POST['mobile_theme'])) : '';
328                 $nosmile            = !empty($_POST['nosmile'])            ? intval($_POST['nosmile'])            : 0;
329                 $first_day_of_week  = !empty($_POST['first_day_of_week'])  ? intval($_POST['first_day_of_week'])  : 0;
330                 $noinfo             = !empty($_POST['noinfo'])             ? intval($_POST['noinfo'])             : 0;
331                 $infinite_scroll    = !empty($_POST['infinite_scroll'])    ? intval($_POST['infinite_scroll'])    : 0;
332                 $no_auto_update     = !empty($_POST['no_auto_update'])     ? intval($_POST['no_auto_update'])     : 0;
333                 $bandwidth_saver    = !empty($_POST['bandwidth_saver'])    ? intval($_POST['bandwidth_saver'])    : 0;
334                 $no_smart_threading = !empty($_POST['no_smart_threading']) ? intval($_POST['no_smart_threading']) : 0;
335                 $nowarn_insecure    = !empty($_POST['nowarn_insecure'])    ? intval($_POST['nowarn_insecure'])    : 0;
336                 $browser_update     = !empty($_POST['browser_update'])     ? intval($_POST['browser_update'])     : 0;
337                 if ($browser_update != -1) {
338                         $browser_update = $browser_update * 1000;
339                         if ($browser_update < 10000) {
340                                 $browser_update = 10000;
341                         }
342                 }
343
344                 $itemspage_network = !empty($_POST['itemspage_network'])  ? intval($_POST['itemspage_network'])  : 40;
345                 if ($itemspage_network > 100) {
346                         $itemspage_network = 100;
347                 }
348                 $itemspage_mobile_network = !empty($_POST['itemspage_mobile_network']) ? intval($_POST['itemspage_mobile_network']) : 20;
349                 if ($itemspage_mobile_network > 100) {
350                         $itemspage_mobile_network = 100;
351                 }
352
353                 if ($mobile_theme !== '') {
354                         DI::pConfig()->set(local_user(), 'system', 'mobile_theme', $mobile_theme);
355                 }
356
357                 DI::pConfig()->set(local_user(), 'system', 'nowarn_insecure'         , $nowarn_insecure);
358                 DI::pConfig()->set(local_user(), 'system', 'update_interval'         , $browser_update);
359                 DI::pConfig()->set(local_user(), 'system', 'itemspage_network'       , $itemspage_network);
360                 DI::pConfig()->set(local_user(), 'system', 'itemspage_mobile_network', $itemspage_mobile_network);
361                 DI::pConfig()->set(local_user(), 'system', 'no_smilies'              , $nosmile);
362                 DI::pConfig()->set(local_user(), 'system', 'first_day_of_week'       , $first_day_of_week);
363                 DI::pConfig()->set(local_user(), 'system', 'ignore_info'             , $noinfo);
364                 DI::pConfig()->set(local_user(), 'system', 'infinite_scroll'         , $infinite_scroll);
365                 DI::pConfig()->set(local_user(), 'system', 'no_auto_update'          , $no_auto_update);
366                 DI::pConfig()->set(local_user(), 'system', 'bandwidth_saver'         , $bandwidth_saver);
367                 DI::pConfig()->set(local_user(), 'system', 'no_smart_threading'      , $no_smart_threading);
368
369                 if (in_array($theme, Theme::getAllowedList())) {
370                         if ($theme == $a->user['theme']) {
371                                 // call theme_post only if theme has not been changed
372                                 if (($themeconfigfile = get_theme_config_file($theme)) !== null) {
373                                         require_once $themeconfigfile;
374                                         theme_post($a);
375                                 }
376                         } else {
377                                 DBA::update('user', ['theme' => $theme], ['uid' => local_user()]);
378                         }
379                 } else {
380                         notice(L10n::t('The theme you chose isn\'t available.'));
381                 }
382
383                 Hook::callAll('display_settings_post', $_POST);
384                 DI::baseUrl()->redirect('settings/display');
385                 return; // NOTREACHED
386         }
387
388         BaseModule::checkFormSecurityTokenRedirectOnError('/settings', 'settings');
389
390         // Import Contacts from CSV file
391         if (!empty($_POST['importcontact-submit'])) {
392                 if (isset($_FILES['importcontact-filename'])) {
393                         // was there an error
394                         if ($_FILES['importcontact-filename']['error'] > 0) {
395                                 Logger::notice('Contact CSV file upload error');
396                                 info(L10n::t('Contact CSV file upload error'));
397                         } else {
398                                 $csvArray = array_map('str_getcsv', file($_FILES['importcontact-filename']['tmp_name']));
399                                 // import contacts
400                                 foreach ($csvArray as $csvRow) {
401                                         // The 1st row may, or may not contain the headers of the table
402                                         // We expect the 1st field of the row to contain either the URL
403                                         // or the handle of the account, therefore we check for either
404                                         // "http" or "@" to be present in the string.
405                                         // All other fields from the row will be ignored
406                                         if ((strpos($csvRow[0],'@') !== false) || (strpos($csvRow[0],'http') !== false)) {
407                                                 $arr = Contact::createFromProbe($_SESSION['uid'], $csvRow[0], '', false);
408                                         }
409                                 }
410                                 info(L10n::t('Importing Contacts done'));
411                                 // delete temp file
412                                 unlink($filename);
413                         }
414                 }
415         }
416
417         if (!empty($_POST['resend_relocate'])) {
418                 Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, local_user());
419                 info(L10n::t("Relocate message has been send to your contacts"));
420                 DI::baseUrl()->redirect('settings');
421         }
422
423         Hook::callAll('settings_post', $_POST);
424
425         if (!empty($_POST['password']) || !empty($_POST['confirm'])) {
426                 $newpass = $_POST['password'];
427                 $confirm = $_POST['confirm'];
428
429                 try {
430                         if ($newpass != $confirm) {
431                                 throw new Exception(L10n::t('Passwords do not match.'));
432                         }
433
434                         //  check if the old password was supplied correctly before changing it to the new value
435                         User::getIdFromPasswordAuthentication(local_user(), $_POST['opassword']);
436
437                         $result = User::updatePassword(local_user(), $newpass);
438                         if (!DBA::isResult($result)) {
439                                 throw new Exception(L10n::t('Password update failed. Please try again.'));
440                         }
441
442                         info(L10n::t('Password changed.'));
443                 } catch (Exception $e) {
444                         notice($e->getMessage());
445                         notice(L10n::t('Password unchanged.'));
446                 }
447         }
448
449         $username         = (!empty($_POST['username'])   ? Strings::escapeTags(trim($_POST['username']))     : '');
450         $email            = (!empty($_POST['email'])      ? Strings::escapeTags(trim($_POST['email']))        : '');
451         $timezone         = (!empty($_POST['timezone'])   ? Strings::escapeTags(trim($_POST['timezone']))     : '');
452         $language         = (!empty($_POST['language'])   ? Strings::escapeTags(trim($_POST['language']))     : '');
453
454         $defloc           = (!empty($_POST['defloc'])     ? Strings::escapeTags(trim($_POST['defloc']))       : '');
455         $maxreq           = (!empty($_POST['maxreq'])     ? intval($_POST['maxreq'])             : 0);
456         $expire           = (!empty($_POST['expire'])     ? intval($_POST['expire'])             : 0);
457         $def_gid          = (!empty($_POST['group-selection']) ? intval($_POST['group-selection']) : 0);
458
459
460         $expire_items     = (!empty($_POST['expire_items']) ? intval($_POST['expire_items'])     : 0);
461         $expire_notes     = (!empty($_POST['expire_notes']) ? intval($_POST['expire_notes'])     : 0);
462         $expire_starred   = (!empty($_POST['expire_starred']) ? intval($_POST['expire_starred']) : 0);
463         $expire_photos    = (!empty($_POST['expire_photos'])? intval($_POST['expire_photos'])    : 0);
464         $expire_network_only    = (!empty($_POST['expire_network_only'])? intval($_POST['expire_network_only'])  : 0);
465
466         $delete_openid    = ((!empty($_POST['delete_openid']) && (intval($_POST['delete_openid']) == 1)) ? 1: 0);
467
468         $allow_location   = ((!empty($_POST['allow_location']) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
469         $publish          = ((!empty($_POST['profile_in_directory']) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
470         $net_publish      = ((!empty($_POST['profile_in_netdirectory']) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
471         $old_visibility   = ((!empty($_POST['visibility']) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
472         $account_type     = ((!empty($_POST['account-type']) && (intval($_POST['account-type']))) ? intval($_POST['account-type']) : 0);
473         $page_flags       = ((!empty($_POST['page-flags']) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
474         $blockwall        = ((!empty($_POST['blockwall']) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
475         $blocktags        = ((!empty($_POST['blocktags']) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
476         $unkmail          = ((!empty($_POST['unkmail']) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
477         $cntunkmail       = (!empty($_POST['cntunkmail']) ? intval($_POST['cntunkmail']) : 0);
478         $suggestme        = (!empty($_POST['suggestme']) ? intval($_POST['suggestme'])  : 0);
479         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
480         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
481
482         $email_textonly   = (($_POST['email_textonly'] == 1) ? 1 : 0);
483         $detailed_notif   = (($_POST['detailed_notif'] == 1) ? 1 : 0);
484
485         $notify = 0;
486
487         if (!empty($_POST['notify1'])) {
488                 $notify += intval($_POST['notify1']);
489         }
490         if (!empty($_POST['notify2'])) {
491                 $notify += intval($_POST['notify2']);
492         }
493         if (!empty($_POST['notify3'])) {
494                 $notify += intval($_POST['notify3']);
495         }
496         if (!empty($_POST['notify4'])) {
497                 $notify += intval($_POST['notify4']);
498         }
499         if (!empty($_POST['notify5'])) {
500                 $notify += intval($_POST['notify5']);
501         }
502         if (!empty($_POST['notify6'])) {
503                 $notify += intval($_POST['notify6']);
504         }
505         if (!empty($_POST['notify7'])) {
506                 $notify += intval($_POST['notify7']);
507         }
508         if (!empty($_POST['notify8'])) {
509                 $notify += intval($_POST['notify8']);
510         }
511
512         // Adjust the page flag if the account type doesn't fit to the page flag.
513         if (($account_type == User::ACCOUNT_TYPE_PERSON) && !in_array($page_flags, [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE])) {
514                 $page_flags = User::PAGE_FLAGS_NORMAL;
515         } elseif (($account_type == User::ACCOUNT_TYPE_ORGANISATION) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
516                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
517         } elseif (($account_type == User::ACCOUNT_TYPE_NEWS) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
518                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
519         } elseif (($account_type == User::ACCOUNT_TYPE_COMMUNITY) && !in_array($page_flags, [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP])) {
520                 $page_flags = User::PAGE_FLAGS_COMMUNITY;
521         }
522
523         $err = '';
524
525         if ($username != $a->user['username']) {
526                 if (strlen($username) > 40) {
527                         $err .= L10n::t(' Please use a shorter name.');
528                 }
529                 if (strlen($username) < 3) {
530                         $err .= L10n::t(' Name too short.');
531                 }
532         }
533
534         if ($email != $a->user['email']) {
535                 //  check for the correct password
536                 if (!User::authenticate(intval(local_user()), $_POST['mpassword'])) {
537                         $err .= L10n::t('Wrong Password') . EOL;
538                         $email = $a->user['email'];
539                 }
540                 //  check the email is valid
541                 if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
542                         $err .= L10n::t('Invalid email.');
543                 }
544                 //  ensure new email is not the admin mail
545                 if (Config::get('config', 'admin_email')) {
546                         $adminlist = explode(",", str_replace(" ", "", strtolower(Config::get('config', 'admin_email'))));
547                         if (in_array(strtolower($email), $adminlist)) {
548                                 $err .= L10n::t('Cannot change to that email.');
549                                 $email = $a->user['email'];
550                         }
551                 }
552         }
553
554         if (strlen($err)) {
555                 notice($err . EOL);
556                 return;
557         }
558
559         if (($timezone != $a->user['timezone']) && strlen($timezone)) {
560                 date_default_timezone_set($timezone);
561         }
562
563         $aclFormatter = DI::aclFormatter();
564
565         $str_group_allow   = !empty($_POST['group_allow'])   ? $aclFormatter->toString($_POST['group_allow'])   : '';
566         $str_contact_allow = !empty($_POST['contact_allow']) ? $aclFormatter->toString($_POST['contact_allow']) : '';
567         $str_group_deny    = !empty($_POST['group_deny'])    ? $aclFormatter->toString($_POST['group_deny'])    : '';
568         $str_contact_deny  = !empty($_POST['contact_deny'])  ? $aclFormatter->toString($_POST['contact_deny'])  : '';
569
570         DI::pConfig()->set(local_user(), 'expire', 'items', $expire_items);
571         DI::pConfig()->set(local_user(), 'expire', 'notes', $expire_notes);
572         DI::pConfig()->set(local_user(), 'expire', 'starred', $expire_starred);
573         DI::pConfig()->set(local_user(), 'expire', 'photos', $expire_photos);
574         DI::pConfig()->set(local_user(), 'expire', 'network_only', $expire_network_only);
575
576         DI::pConfig()->set(local_user(), 'system', 'suggestme', $suggestme);
577
578         DI::pConfig()->set(local_user(), 'system', 'email_textonly', $email_textonly);
579         DI::pConfig()->set(local_user(), 'system', 'detailed_notif', $detailed_notif);
580
581         if ($page_flags == User::PAGE_FLAGS_PRVGROUP) {
582                 $hidewall = 1;
583                 if (!$str_contact_allow && !$str_group_allow && !$str_contact_deny && !$str_group_deny) {
584                         if ($def_gid) {
585                                 info(L10n::t('Private forum has no privacy permissions. Using default privacy group.'). EOL);
586                                 $str_group_allow = '<' . $def_gid . '>';
587                         } else {
588                                 notice(L10n::t('Private forum has no privacy permissions and no default privacy group.') . EOL);
589                         }
590                 }
591         }
592
593         $fields = ['username' => $username, 'email' => $email, 'timezone' => $timezone,
594                 'allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow, 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny,
595                 'notify-flags' => $notify, 'page-flags' => $page_flags, 'account-type' => $account_type, 'default-location' => $defloc,
596                 'allow_location' => $allow_location, 'maxreq' => $maxreq, 'expire' => $expire, 'def_gid' => $def_gid, 'blockwall' => $blockwall,
597                 'hidewall' => $hidewall, 'blocktags' => $blocktags, 'unkmail' => $unkmail, 'cntunkmail' => $cntunkmail, 'language' => $language];
598
599         if ($delete_openid) {
600                 $fields['openid'] = '';
601                 $fields['openidserver'] = '';
602         }
603
604         if (DBA::update('user', $fields, ['uid' => local_user()])) {
605                 info(L10n::t('Settings updated.') . EOL);
606         }
607
608         // clear session language
609         unset($_SESSION['language']);
610
611         q("UPDATE `profile`
612                 SET `publish` = %d,
613                 `name` = '%s',
614                 `net-publish` = %d,
615                 `hide-friends` = %d
616                 WHERE `is-default` = 1 AND `uid` = %d",
617                 intval($publish),
618                 DBA::escape($username),
619                 intval($net_publish),
620                 intval($hide_friends),
621                 intval(local_user())
622         );
623
624         Contact::updateSelfFromUserID(local_user());
625
626         if (($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
627                 // Update global directory in background
628                 $url = $_SESSION['my_url'];
629                 if ($url && strlen(Config::get('system', 'directory'))) {
630                         Worker::add(PRIORITY_LOW, "Directory", $url);
631                 }
632         }
633
634         Worker::add(PRIORITY_LOW, 'ProfileUpdate', local_user());
635
636         // Update the global contact for the user
637         GContact::updateForUser(local_user());
638
639         DI::baseUrl()->redirect('settings');
640         return; // NOTREACHED
641 }
642
643
644 function settings_content(App $a)
645 {
646         $o = '';
647         Nav::setSelected('settings');
648
649         if (!local_user()) {
650                 //notice(L10n::t('Permission denied.') . EOL);
651                 return Login::form();
652         }
653
654         if (!empty($_SESSION['submanage'])) {
655                 notice(L10n::t('Permission denied.') . EOL);
656                 return;
657         }
658
659         if (($a->argc > 1) && ($a->argv[1] === 'oauth')) {
660                 if (($a->argc > 2) && ($a->argv[2] === 'add')) {
661                         $tpl = Renderer::getMarkupTemplate('settings/oauth_edit.tpl');
662                         $o .= Renderer::replaceMacros($tpl, [
663                                 '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
664                                 '$title'        => L10n::t('Add application'),
665                                 '$submit'       => L10n::t('Save Settings'),
666                                 '$cancel'       => L10n::t('Cancel'),
667                                 '$name'         => ['name', L10n::t('Name'), '', ''],
668                                 '$key'          => ['key', L10n::t('Consumer Key'), '', ''],
669                                 '$secret'       => ['secret', L10n::t('Consumer Secret'), '', ''],
670                                 '$redirect'     => ['redirect', L10n::t('Redirect'), '', ''],
671                                 '$icon'         => ['icon', L10n::t('Icon url'), '', ''],
672                         ]);
673                         return $o;
674                 }
675
676                 if (($a->argc > 3) && ($a->argv[2] === 'edit')) {
677                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
678                                         DBA::escape($a->argv[3]),
679                                         local_user());
680
681                         if (!DBA::isResult($r)) {
682                                 notice(L10n::t("You can't edit this application."));
683                                 return;
684                         }
685                         $app = $r[0];
686
687                         $tpl = Renderer::getMarkupTemplate('settings/oauth_edit.tpl');
688                         $o .= Renderer::replaceMacros($tpl, [
689                                 '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
690                                 '$title'        => L10n::t('Add application'),
691                                 '$submit'       => L10n::t('Update'),
692                                 '$cancel'       => L10n::t('Cancel'),
693                                 '$name'         => ['name', L10n::t('Name'), $app['name'] , ''],
694                                 '$key'          => ['key', L10n::t('Consumer Key'), $app['client_id'], ''],
695                                 '$secret'       => ['secret', L10n::t('Consumer Secret'), $app['pw'], ''],
696                                 '$redirect'     => ['redirect', L10n::t('Redirect'), $app['redirect_uri'], ''],
697                                 '$icon'         => ['icon', L10n::t('Icon url'), $app['icon'], ''],
698                         ]);
699                         return $o;
700                 }
701
702                 if (($a->argc > 3) && ($a->argv[2] === 'delete')) {
703                         BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth', 't');
704
705                         DBA::delete('clients', ['client_id' => $a->argv[3], 'uid' => local_user()]);
706                         DI::baseUrl()->redirect('settings/oauth/', true);
707                         return;
708                 }
709
710                 /// @TODO validate result with DBA::isResult()
711                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my
712                                 FROM clients
713                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
714                                 WHERE clients.uid IN (%d, 0)",
715                                 local_user(),
716                                 local_user());
717
718
719                 $tpl = Renderer::getMarkupTemplate('settings/oauth.tpl');
720                 $o .= Renderer::replaceMacros($tpl, [
721                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
722                         '$baseurl'      => DI::baseUrl()->get(true),
723                         '$title'        => L10n::t('Connected Apps'),
724                         '$add'          => L10n::t('Add application'),
725                         '$edit'         => L10n::t('Edit'),
726                         '$delete'               => L10n::t('Delete'),
727                         '$consumerkey' => L10n::t('Client key starts with'),
728                         '$noname'       => L10n::t('No name'),
729                         '$remove'       => L10n::t('Remove authorization'),
730                         '$apps'         => $r,
731                 ]);
732                 return $o;
733         }
734
735         if (($a->argc > 1) && ($a->argv[1] === 'addon')) {
736                 $settings_addons = "";
737
738                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'addon_settings' ");
739                 if (!DBA::isResult($r)) {
740                         $settings_addons = L10n::t('No Addon settings configured');
741                 }
742
743                 Hook::callAll('addon_settings', $settings_addons);
744
745
746                 $tpl = Renderer::getMarkupTemplate('settings/addons.tpl');
747                 $o .= Renderer::replaceMacros($tpl, [
748                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_addon"),
749                         '$title'        => L10n::t('Addon Settings'),
750                         '$settings_addons' => $settings_addons
751                 ]);
752                 return $o;
753         }
754
755         if (($a->argc > 1) && ($a->argv[1] === 'features')) {
756
757                 $arr = [];
758                 $features = Feature::get();
759                 foreach ($features as $fname => $fdata) {
760                         $arr[$fname] = [];
761                         $arr[$fname][0] = $fdata[0];
762                         foreach (array_slice($fdata,1) as $f) {
763                                 $arr[$fname][1][] = ['feature_' .$f[0], $f[1],((intval(Feature::isEnabled(local_user(), $f[0]))) ? "1" : ''), $f[2],[L10n::t('Off'), L10n::t('On')]];
764                         }
765                 }
766
767                 $tpl = Renderer::getMarkupTemplate('settings/features.tpl');
768                 $o .= Renderer::replaceMacros($tpl, [
769                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_features"),
770                         '$title'               => L10n::t('Additional Features'),
771                         '$features'            => $arr,
772                         '$submit'              => L10n::t('Save Settings'),
773                 ]);
774                 return $o;
775         }
776
777         if (($a->argc > 1) && ($a->argv[1] === 'connectors')) {
778                 $accept_only_sharer        = intval(DI::pConfig()->get(local_user(), 'system', 'accept_only_sharer'));
779                 $disable_cw                = intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw'));
780                 $no_intelligent_shortening = intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening'));
781                 $attach_link_title         = intval(DI::pConfig()->get(local_user(), 'system', 'attach_link_title'));
782                 $ostatus_autofriend        = intval(DI::pConfig()->get(local_user(), 'system', 'ostatus_autofriend'));
783                 $default_group             = DI::pConfig()->get(local_user(), 'ostatus', 'default_group');
784                 $legacy_contact            = DI::pConfig()->get(local_user(), 'ostatus', 'legacy_contact');
785
786                 if (!empty($legacy_contact)) {
787                         /// @todo Isn't it supposed to be a $a->internalRedirect() call?
788                         DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl().'/ostatus_subscribe?url=' . urlencode($legacy_contact) . '">';
789                 }
790
791                 $settings_connectors = '';
792                 Hook::callAll('connector_settings', $settings_connectors);
793
794                 if (is_site_admin()) {
795                         $diasp_enabled = L10n::t('Built-in support for %s connectivity is %s', L10n::t('Diaspora'), ((Config::get('system', 'diaspora_enabled')) ? L10n::t('enabled') : L10n::t('disabled')));
796                         $ostat_enabled = L10n::t('Built-in support for %s connectivity is %s', L10n::t("GNU Social \x28OStatus\x29"), ((Config::get('system', 'ostatus_disabled')) ? L10n::t('disabled') : L10n::t('enabled')));
797                 } else {
798                         $diasp_enabled = "";
799                         $ostat_enabled = "";
800                 }
801
802                 $mail_disabled = ((function_exists('imap_open') && (!Config::get('system', 'imap_disabled'))) ? 0 : 1);
803                 if (Config::get('system', 'dfrn_only')) {
804                         $mail_disabled = 1;
805                 }
806                 if (!$mail_disabled) {
807                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
808                                 local_user()
809                         );
810                 } else {
811                         $r = null;
812                 }
813
814                 $mail_server       = ((DBA::isResult($r)) ? $r[0]['server'] : '');
815                 $mail_port         = ((DBA::isResult($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
816                 $mail_ssl          = ((DBA::isResult($r)) ? $r[0]['ssltype'] : '');
817                 $mail_user         = ((DBA::isResult($r)) ? $r[0]['user'] : '');
818                 $mail_replyto      = ((DBA::isResult($r)) ? $r[0]['reply_to'] : '');
819                 $mail_pubmail      = ((DBA::isResult($r)) ? $r[0]['pubmail'] : 0);
820                 $mail_action       = ((DBA::isResult($r)) ? $r[0]['action'] : 0);
821                 $mail_movetofolder = ((DBA::isResult($r)) ? $r[0]['movetofolder'] : '');
822                 $mail_chk          = ((DBA::isResult($r)) ? $r[0]['last_check'] : DBA::NULL_DATETIME);
823
824
825                 $tpl = Renderer::getMarkupTemplate('settings/connectors.tpl');
826
827                 $mail_disabled_message = ($mail_disabled ? L10n::t('Email access is disabled on this site.') : '');
828
829                 $ssl_options = ['TLS' => 'TLS', 'SSL' => 'SSL'];
830
831                 if (Config::get('system', 'insecure_imap')) {
832                         $ssl_options['notls'] = L10n::t('None');
833                 }
834
835                 $o .= Renderer::replaceMacros($tpl, [
836                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_connectors"),
837
838                         '$title'        => L10n::t('Social Networks'),
839
840                         '$diasp_enabled' => $diasp_enabled,
841                         '$ostat_enabled' => $ostat_enabled,
842
843                         '$general_settings' => L10n::t('General Social Media Settings'),
844                         '$accept_only_sharer' => ['accept_only_sharer', L10n::t('Accept only top level posts by contacts you follow'), $accept_only_sharer, L10n::t('The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow.')],
845                         '$disable_cw' => ['disable_cw', L10n::t('Disable Content Warning'), $disable_cw, L10n::t('Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn\'t affect any other content filtering you eventually set up.')],
846                         '$no_intelligent_shortening' => ['no_intelligent_shortening', L10n::t('Disable intelligent shortening'), $no_intelligent_shortening, L10n::t('Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post.')],
847                         '$attach_link_title' => ['attach_link_title', L10n::t('Attach the link title'), $attach_link_title, L10n::t('When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.')],
848                         '$ostatus_autofriend' => ['snautofollow', L10n::t("Automatically follow any GNU Social \x28OStatus\x29 followers/mentioners"), $ostatus_autofriend, L10n::t('If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user.')],
849                         '$default_group' => Group::displayGroupSelection(local_user(), $default_group, L10n::t("Default group for OStatus contacts")),
850                         '$legacy_contact' => ['legacy_contact', L10n::t('Your legacy GNU Social account'), $legacy_contact, L10n::t("If you enter your old GNU Social/Statusnet account name here \x28in the format user@domain.tld\x29, your contacts will be added automatically. The field will be emptied when done.")],
851
852                         '$repair_ostatus_url' => DI::baseUrl() . '/repair_ostatus',
853                         '$repair_ostatus_text' => L10n::t('Repair OStatus subscriptions'),
854
855                         '$settings_connectors' => $settings_connectors,
856
857                         '$h_imap' => L10n::t('Email/Mailbox Setup'),
858                         '$imap_desc' => L10n::t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
859                         '$imap_lastcheck' => ['imap_lastcheck', L10n::t('Last successful email check:'), $mail_chk, ''],
860                         '$mail_disabled' => $mail_disabled_message,
861                         '$mail_server'  => ['mail_server',      L10n::t('IMAP server name:'), $mail_server, ''],
862                         '$mail_port'    => ['mail_port',        L10n::t('IMAP port:'), $mail_port, ''],
863                         '$mail_ssl'     => ['mail_ssl',         L10n::t('Security:'), strtoupper($mail_ssl), '', $ssl_options],
864                         '$mail_user'    => ['mail_user',        L10n::t('Email login name:'), $mail_user, ''],
865                         '$mail_pass'    => ['mail_pass',        L10n::t('Email password:'), '', ''],
866                         '$mail_replyto' => ['mail_replyto',     L10n::t('Reply-to address:'), $mail_replyto, 'Optional'],
867                         '$mail_pubmail' => ['mail_pubmail',     L10n::t('Send public posts to all email contacts:'), $mail_pubmail, ''],
868                         '$mail_action'  => ['mail_action',      L10n::t('Action after import:'), $mail_action, '', [0 => L10n::t('None'), 1 => L10n::t('Delete'), 2 => L10n::t('Mark as seen'), 3 => L10n::t('Move to folder')]],
869                         '$mail_movetofolder' => ['mail_movetofolder', L10n::t('Move to folder:'), $mail_movetofolder, ''],
870                         '$submit' => L10n::t('Save Settings'),
871                 ]);
872
873                 Hook::callAll('display_settings', $o);
874                 return $o;
875         }
876
877         /*
878          * DISPLAY SETTINGS
879          */
880         if (($a->argc > 1) && ($a->argv[1] === 'display')) {
881                 $default_theme = Config::get('system', 'theme');
882                 if (!$default_theme) {
883                         $default_theme = 'default';
884                 }
885                 $default_mobile_theme = Config::get('system', 'mobile-theme');
886                 if (!$default_mobile_theme) {
887                         $default_mobile_theme = 'none';
888                 }
889
890                 $allowed_themes = Theme::getAllowedList();
891
892                 $themes = [];
893                 $mobile_themes = ["---" => L10n::t('No special theme for mobile devices')];
894                 foreach ($allowed_themes as $theme) {
895                         $is_experimental = file_exists('view/theme/' . $theme . '/experimental');
896                         $is_unsupported  = file_exists('view/theme/' . $theme . '/unsupported');
897                         $is_mobile       = file_exists('view/theme/' . $theme . '/mobile');
898                         if (!$is_experimental || ($is_experimental && (Config::get('experimentals', 'exp_themes')==1 || is_null(Config::get('experimentals', 'exp_themes'))))) {
899                                 $theme_name = ucfirst($theme);
900                                 if ($is_unsupported) {
901                                         $theme_name = L10n::t('%s - (Unsupported)', $theme_name);
902                                 } elseif ($is_experimental) {
903                                         $theme_name = L10n::t('%s - (Experimental)', $theme_name);
904                                 }
905
906                                 if ($is_mobile) {
907                                         $mobile_themes[$theme] = $theme_name;
908                                 } else {
909                                         $themes[$theme] = $theme_name;
910                                 }
911                         }
912                 }
913
914                 $theme_selected        = $a->user['theme'] ?: $default_theme;
915                 $mobile_theme_selected = Session::get('mobile-theme', $default_mobile_theme);
916
917                 $nowarn_insecure = intval(DI::pConfig()->get(local_user(), 'system', 'nowarn_insecure'));
918
919                 $browser_update = intval(DI::pConfig()->get(local_user(), 'system', 'update_interval'));
920                 if (intval($browser_update) != -1) {
921                         $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
922                 }
923
924                 $itemspage_network = intval(DI::pConfig()->get(local_user(), 'system', 'itemspage_network'));
925                 $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
926                 $itemspage_mobile_network = intval(DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network'));
927                 $itemspage_mobile_network = (($itemspage_mobile_network > 0 && $itemspage_mobile_network < 101) ? $itemspage_mobile_network : 20); // default if not set: 20 items
928
929                 $nosmile = DI::pConfig()->get(local_user(), 'system', 'no_smilies', 0);
930                 $first_day_of_week = DI::pConfig()->get(local_user(), 'system', 'first_day_of_week', 0);
931                 $weekdays = [0 => L10n::t("Sunday"), 1 => L10n::t("Monday")];
932
933                 $noinfo = DI::pConfig()->get(local_user(), 'system', 'ignore_info', 0);
934                 $infinite_scroll = DI::pConfig()->get(local_user(), 'system', 'infinite_scroll', 0);
935                 $no_auto_update = DI::pConfig()->get(local_user(), 'system', 'no_auto_update', 0);
936                 $bandwidth_saver = DI::pConfig()->get(local_user(), 'system', 'bandwidth_saver', 0);
937                 $no_smart_threading = DI::pConfig()->get(local_user(), 'system', 'no_smart_threading', 0);
938
939                 $theme_config = "";
940                 if (($themeconfigfile = get_theme_config_file($theme_selected)) !== null) {
941                         require_once $themeconfigfile;
942                         $theme_config = theme_content($a);
943                 }
944
945                 $tpl = Renderer::getMarkupTemplate('settings/display.tpl');
946                 $o = Renderer::replaceMacros($tpl, [
947                         '$ptitle'       => L10n::t('Display Settings'),
948                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_display"),
949                         '$submit'       => L10n::t('Save Settings'),
950                         '$baseurl' => DI::baseUrl()->get(true),
951                         '$uid' => local_user(),
952
953                         '$theme'        => ['theme', L10n::t('Display Theme:'), $theme_selected, '', $themes, true],
954                         '$mobile_theme' => ['mobile_theme', L10n::t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false],
955                         '$nowarn_insecure' => ['nowarn_insecure',  L10n::t('Suppress warning of insecure networks'), $nowarn_insecure, L10n::t("Should the system suppress the warning that the current group contains members of networks that can't receive non public postings.")],
956                         '$ajaxint'   => ['browser_update',  L10n::t("Update browser every xx seconds"), $browser_update, L10n::t('Minimum of 10 seconds. Enter -1 to disable it.')],
957                         '$itemspage_network'   => ['itemspage_network',  L10n::t("Number of items to display per page:"), $itemspage_network, L10n::t('Maximum of 100 items')],
958                         '$itemspage_mobile_network'   => ['itemspage_mobile_network',  L10n::t("Number of items to display per page when viewed from mobile device:"), $itemspage_mobile_network, L10n::t('Maximum of 100 items')],
959                         '$nosmile'      => ['nosmile', L10n::t("Don't show emoticons"), $nosmile, ''],
960                         '$calendar_title' => L10n::t('Calendar'),
961                         '$first_day_of_week'    => ['first_day_of_week', L10n::t('Beginning of week:'), $first_day_of_week, '', $weekdays, false],
962                         '$noinfo'       => ['noinfo', L10n::t("Don't show notices"), $noinfo, ''],
963                         '$infinite_scroll'      => ['infinite_scroll', L10n::t("Infinite scroll"), $infinite_scroll, ''],
964                         '$no_auto_update'       => ['no_auto_update', L10n::t("Automatic updates only at the top of the network page"), $no_auto_update, L10n::t('When disabled, the network page is updated all the time, which could be confusing while reading.')],
965                         '$bandwidth_saver' => ['bandwidth_saver', L10n::t('Bandwidth Saver Mode'), $bandwidth_saver, L10n::t('When enabled, embedded content is not displayed on automatic updates, they only show on page reload.')],
966                         '$no_smart_threading' => ['no_smart_threading', L10n::t('Disable Smart Threading'), $no_smart_threading, L10n::t('Disable the automatic suppression of extraneous thread indentation.')],
967
968                         '$d_tset' => L10n::t('General Theme Settings'),
969                         '$d_ctset' => L10n::t('Custom Theme Settings'),
970                         '$d_cset' => L10n::t('Content Settings'),
971                         'stitle' => L10n::t('Theme settings'),
972                         '$theme_config' => $theme_config,
973                 ]);
974
975                 return $o;
976         }
977
978
979         /*
980          * ACCOUNT SETTINGS
981          */
982
983         $profile = DBA::selectFirst('profile', [], ['is-default' => true, 'uid' => local_user()]);
984         if (!DBA::isResult($profile)) {
985                 notice(L10n::t('Unable to find your profile. Please contact your admin.') . EOL);
986                 return;
987         }
988
989         $username   = $a->user['username'];
990         $email      = $a->user['email'];
991         $nickname   = $a->user['nickname'];
992         $timezone   = $a->user['timezone'];
993         $language   = $a->user['language'];
994         $notify     = $a->user['notify-flags'];
995         $defloc     = $a->user['default-location'];
996         $openid     = $a->user['openid'];
997         $maxreq     = $a->user['maxreq'];
998         $expire     = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
999         $unkmail    = $a->user['unkmail'];
1000         $cntunkmail = $a->user['cntunkmail'];
1001
1002         $expire_items = DI::pConfig()->get(local_user(), 'expire', 'items', true);
1003         $expire_notes = DI::pConfig()->get(local_user(), 'expire', 'notes', true);
1004         $expire_starred = DI::pConfig()->get(local_user(), 'expire', 'starred', true);
1005         $expire_photos = DI::pConfig()->get(local_user(), 'expire', 'photos', false);
1006         $expire_network_only = DI::pConfig()->get(local_user(), 'expire', 'network_only', false);
1007         $suggestme = DI::pConfig()->get(local_user(), 'system', 'suggestme', false);
1008
1009         // nowarn_insecure
1010
1011         if (!strlen($a->user['timezone'])) {
1012                 $timezone = date_default_timezone_get();
1013         }
1014
1015         // Set the account type to "Community" when the page is a community page but the account type doesn't fit
1016         // This is only happening on the first visit after the update
1017         if (in_array($a->user['page-flags'], [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]) &&
1018                 ($a->user['account-type'] != User::ACCOUNT_TYPE_COMMUNITY))
1019                 $a->user['account-type'] = User::ACCOUNT_TYPE_COMMUNITY;
1020
1021         $pageset_tpl = Renderer::getMarkupTemplate('settings/pagetypes.tpl');
1022
1023         $pagetype = Renderer::replaceMacros($pageset_tpl, [
1024                 '$account_types'        => L10n::t("Account Types"),
1025                 '$user'                 => L10n::t("Personal Page Subtypes"),
1026                 '$community'            => L10n::t("Community Forum Subtypes"),
1027                 '$account_type'         => $a->user['account-type'],
1028                 '$type_person'          => User::ACCOUNT_TYPE_PERSON,
1029                 '$type_organisation'    => User::ACCOUNT_TYPE_ORGANISATION,
1030                 '$type_news'            => User::ACCOUNT_TYPE_NEWS,
1031                 '$type_community'       => User::ACCOUNT_TYPE_COMMUNITY,
1032
1033                 '$account_person'       => ['account-type', L10n::t('Personal Page'), User::ACCOUNT_TYPE_PERSON,
1034                                                                         L10n::t('Account for a personal profile.'),
1035                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_PERSON)],
1036
1037                 '$account_organisation' => ['account-type', L10n::t('Organisation Page'), User::ACCOUNT_TYPE_ORGANISATION,
1038                                                                         L10n::t('Account for an organisation that automatically approves contact requests as "Followers".'),
1039                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_ORGANISATION)],
1040
1041                 '$account_news'         => ['account-type', L10n::t('News Page'), User::ACCOUNT_TYPE_NEWS,
1042                                                                         L10n::t('Account for a news reflector that automatically approves contact requests as "Followers".'),
1043                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_NEWS)],
1044
1045                 '$account_community'    => ['account-type', L10n::t('Community Forum'), User::ACCOUNT_TYPE_COMMUNITY,
1046                                                                         L10n::t('Account for community discussions.'),
1047                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY)],
1048
1049                 '$page_normal'          => ['page-flags', L10n::t('Normal Account Page'), User::PAGE_FLAGS_NORMAL,
1050                                                                         L10n::t('Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'),
1051                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_NORMAL)],
1052
1053                 '$page_soapbox'         => ['page-flags', L10n::t('Soapbox Page'), User::PAGE_FLAGS_SOAPBOX,
1054                                                                         L10n::t('Account for a public profile that automatically approves contact requests as "Followers".'),
1055                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_SOAPBOX)],
1056
1057                 '$page_community'       => ['page-flags', L10n::t('Public Forum'), User::PAGE_FLAGS_COMMUNITY,
1058                                                                         L10n::t('Automatically approves all contact requests.'),
1059                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_COMMUNITY)],
1060
1061                 '$page_freelove'        => ['page-flags', L10n::t('Automatic Friend Page'), User::PAGE_FLAGS_FREELOVE,
1062                                                                         L10n::t('Account for a popular profile that automatically approves contact requests as "Friends".'),
1063                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_FREELOVE)],
1064
1065                 '$page_prvgroup'        => ['page-flags', L10n::t('Private Forum [Experimental]'), User::PAGE_FLAGS_PRVGROUP,
1066                                                                         L10n::t('Requires manual approval of contact requests.'),
1067                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_PRVGROUP)],
1068
1069
1070         ]);
1071
1072         $noid = Config::get('system', 'no_openid');
1073
1074         if ($noid) {
1075                 $openid_field = false;
1076         } else {
1077                 $openid_field = ['openid_url', L10n::t('OpenID:'), $openid, L10n::t("\x28Optional\x29 Allow this OpenID to login to this account."), "", "readonly", "url"];
1078         }
1079
1080         $opt_tpl = Renderer::getMarkupTemplate("field_yesno.tpl");
1081         if (Config::get('system', 'publish_all')) {
1082                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
1083         } else {
1084                 $profile_in_dir = Renderer::replaceMacros($opt_tpl, [
1085                         '$field' => ['profile_in_directory', L10n::t('Publish your default profile in your local site directory?'), $profile['publish'], L10n::t('Your profile will be published in this node\'s <a href="%s">local directory</a>. Your profile details may be publicly visible depending on the system settings.', DI::baseUrl().'/directory'), [L10n::t('No'), L10n::t('Yes')]]
1086                 ]);
1087         }
1088
1089         if (strlen(Config::get('system', 'directory'))) {
1090                 $profile_in_net_dir = Renderer::replaceMacros($opt_tpl, [
1091                         '$field' => ['profile_in_netdirectory', L10n::t('Publish your default profile in the global social directory?'), $profile['net-publish'], L10n::t('Your profile will be published in the global friendica directories (e.g. <a href="%s">%s</a>). Your profile will be visible in public.', Config::get('system', 'directory'), Config::get('system', 'directory'))     . " " . L10n::t("This setting also determines whether Friendica will inform search engines that your profile should be indexed or not. Third-party search engines may or may not respect this setting."), [L10n::t('No'), L10n::t('Yes')]]
1092                 ]);
1093         } else {
1094                 $profile_in_net_dir = '';
1095         }
1096
1097         $hide_friends = Renderer::replaceMacros($opt_tpl, [
1098                 '$field' => ['hide-friends', L10n::t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], L10n::t('Your contact list won\'t be shown in your default profile page. You can decide to show your contact list separately for each additional profile you create'), [L10n::t('No'), L10n::t('Yes')]],
1099         ]);
1100
1101         $hide_wall = Renderer::replaceMacros($opt_tpl, [
1102                 '$field' => ['hidewall', L10n::t('Hide your profile details from anonymous viewers?'), $a->user['hidewall'], L10n::t('Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means.'), [L10n::t('No'), L10n::t('Yes')]],
1103         ]);
1104
1105         $blockwall = Renderer::replaceMacros($opt_tpl, [
1106                 '$field' => ['blockwall', L10n::t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), L10n::t('Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'), [L10n::t('No'), L10n::t('Yes')]],
1107         ]);
1108
1109         $blocktags = Renderer::replaceMacros($opt_tpl, [
1110                 '$field' => ['blocktags', L10n::t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), L10n::t('Your contacts can add additional tags to your posts.'), [L10n::t('No'), L10n::t('Yes')]],
1111         ]);
1112
1113         $suggestme = Renderer::replaceMacros($opt_tpl, [
1114                 '$field' => ['suggestme', L10n::t('Allow us to suggest you as a potential friend to new members?'), $suggestme, L10n::t('If you like, Friendica may suggest new members to add you as a contact.'), [L10n::t('No'), L10n::t('Yes')]],
1115         ]);
1116
1117         $unkmail = Renderer::replaceMacros($opt_tpl, [
1118                 '$field' => ['unkmail', L10n::t('Permit unknown people to send you private mail?'), $unkmail, L10n::t('Friendica network users may send you private messages even if they are not in your contact list.'), [L10n::t('No'), L10n::t('Yes')]],
1119         ]);
1120
1121         if (!$profile['publish'] && !$profile['net-publish']) {
1122                 info(L10n::t('Profile is <strong>not published</strong>.') . EOL);
1123         }
1124
1125         $tpl_addr = Renderer::getMarkupTemplate('settings/nick_set.tpl');
1126
1127         $prof_addr = Renderer::replaceMacros($tpl_addr,[
1128                 '$desc' => L10n::t("Your Identity Address is <strong>'%s'</strong> or '%s'.", $nickname . '@' . DI::baseUrl()->getHostname() . DI::baseUrl()->getUrlPath(), DI::baseUrl() . '/profile/' . $nickname),
1129                 '$basepath' => DI::baseUrl()->getHostname()
1130         ]);
1131
1132         $stpl = Renderer::getMarkupTemplate('settings/settings.tpl');
1133
1134         $expire_arr = [
1135                 'days' => ['expire',  L10n::t("Automatically expire posts after this many days:"), $expire, L10n::t('If empty, posts will not expire. Expired posts will be deleted')],
1136                 'advanced' => L10n::t('Advanced expiration settings'),
1137                 'label' => L10n::t('Advanced Expiration'),
1138                 'items' => ['expire_items',  L10n::t("Expire posts:"), $expire_items, '', [L10n::t('No'), L10n::t('Yes')]],
1139                 'notes' => ['expire_notes',  L10n::t("Expire personal notes:"), $expire_notes, '', [L10n::t('No'), L10n::t('Yes')]],
1140                 'starred' => ['expire_starred',  L10n::t("Expire starred posts:"), $expire_starred, '', [L10n::t('No'), L10n::t('Yes')]],
1141                 'photos' => ['expire_photos',  L10n::t("Expire photos:"), $expire_photos, '', [L10n::t('No'), L10n::t('Yes')]],
1142                 'network_only' => ['expire_network_only',  L10n::t("Only expire posts by others:"), $expire_network_only, '', [L10n::t('No'), L10n::t('Yes')]],
1143         ];
1144
1145         $group_select = Group::displayGroupSelection(local_user(), $a->user['def_gid']);
1146
1147         // Private/public post links for the non-JS ACL form
1148         $private_post = 1;
1149         if (!empty($_REQUEST['public']) && !$_REQUEST['public']) {
1150                 $private_post = 0;
1151         }
1152
1153         $query_str = DI::args()->getQueryString();
1154         if (strpos($query_str, 'public=1') !== false) {
1155                 $query_str = str_replace(['?public=1', '&public=1'], ['', ''], $query_str);
1156         }
1157
1158         // I think $a->query_string may never have ? in it, but I could be wrong
1159         // It looks like it's from the index.php?q=[etc] rewrite that the web
1160         // server does, which converts any ? to &, e.g. suggest&ignore=61 for suggest?ignore=61
1161         if (strpos($query_str, '?') === false) {
1162                 $public_post_link = '?public=1';
1163         } else {
1164                 $public_post_link = '&public=1';
1165         }
1166
1167         /* Installed langs */
1168         $lang_choices = L10n::getAvailableLanguages();
1169
1170         /// @TODO Fix indending (or so)
1171         $o .= Renderer::replaceMacros($stpl, [
1172                 '$ptitle'       => L10n::t('Account Settings'),
1173
1174                 '$submit'       => L10n::t('Save Settings'),
1175                 '$baseurl' => DI::baseUrl()->get(true),
1176                 '$uid' => local_user(),
1177                 '$form_security_token' => BaseModule::getFormSecurityToken("settings"),
1178                 '$nickname_block' => $prof_addr,
1179
1180                 '$h_pass'       => L10n::t('Password Settings'),
1181                 '$password1'=> ['password', L10n::t('New Password:'), '', L10n::t('Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).')],
1182                 '$password2'=> ['confirm', L10n::t('Confirm:'), '', L10n::t('Leave password fields blank unless changing')],
1183                 '$password3'=> ['opassword', L10n::t('Current Password:'), '', L10n::t('Your current password to confirm the changes')],
1184                 '$password4'=> ['mpassword', L10n::t('Password:'), '', L10n::t('Your current password to confirm the changes')],
1185                 '$oid_enable' => (!Config::get('system', 'no_openid')),
1186                 '$openid'       => $openid_field,
1187                 '$delete_openid' => ['delete_openid', L10n::t('Delete OpenID URL'), false, ''],
1188
1189                 '$h_basic'      => L10n::t('Basic Settings'),
1190                 '$username' => ['username',  L10n::t('Full Name:'), $username, ''],
1191                 '$email'        => ['email', L10n::t('Email Address:'), $email, '', '', '', 'email'],
1192                 '$timezone' => ['timezone_select' , L10n::t('Your Timezone:'), Temporal::getTimezoneSelect($timezone), ''],
1193                 '$language' => ['language', L10n::t('Your Language:'), $language, L10n::t('Set the language we use to show you friendica interface and to send you emails'), $lang_choices],
1194                 '$defloc'       => ['defloc', L10n::t('Default Post Location:'), $defloc, ''],
1195                 '$allowloc' => ['allow_location', L10n::t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''],
1196
1197
1198                 '$h_prv'        => L10n::t('Security and Privacy Settings'),
1199
1200                 '$maxreq'       => ['maxreq', L10n::t('Maximum Friend Requests/Day:'), $maxreq , L10n::t("\x28to prevent spam abuse\x29")],
1201                 '$permissions' => L10n::t('Default Post Permissions'),
1202                 '$permdesc' => L10n::t("\x28click to open/close\x29"),
1203                 '$visibility' => $profile['net-publish'],
1204                 '$aclselect' => ACL::getFullSelectorHTML(DI::page(), $a->user),
1205                 '$suggestme' => $suggestme,
1206                 '$blockwall'=> $blockwall, // array('blockwall', L10n::t('Allow friends to post to your profile page:'), !$blockwall, ''),
1207                 '$blocktags'=> $blocktags, // array('blocktags', L10n::t('Allow friends to tag your posts:'), !$blocktags, ''),
1208
1209                 // ACL permissions box
1210                 '$group_perms' => L10n::t('Show to Groups'),
1211                 '$contact_perms' => L10n::t('Show to Contacts'),
1212                 '$private' => L10n::t('Default Private Post'),
1213                 '$public' => L10n::t('Default Public Post'),
1214                 '$is_private' => $private_post,
1215                 '$return_path' => $query_str,
1216                 '$public_link' => $public_post_link,
1217                 '$settings_perms' => L10n::t('Default Permissions for New Posts'),
1218
1219                 '$group_select' => $group_select,
1220
1221
1222                 '$expire'       => $expire_arr,
1223
1224                 '$profile_in_dir' => $profile_in_dir,
1225                 '$profile_in_net_dir' => $profile_in_net_dir,
1226                 '$hide_friends' => $hide_friends,
1227                 '$hide_wall' => $hide_wall,
1228                 '$unkmail' => $unkmail,
1229                 '$cntunkmail'   => ['cntunkmail', L10n::t('Maximum private messages per day from unknown people:'), $cntunkmail , L10n::t("\x28to prevent spam abuse\x29")],
1230
1231
1232                 '$h_not'        => L10n::t('Notification Settings'),
1233                 '$lbl_not'      => L10n::t('Send a notification email when:'),
1234                 '$notify1'      => ['notify1', L10n::t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''],
1235                 '$notify2'      => ['notify2', L10n::t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''],
1236                 '$notify3'      => ['notify3', L10n::t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''],
1237                 '$notify4'      => ['notify4', L10n::t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''],
1238                 '$notify5'      => ['notify5', L10n::t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''],
1239                 '$notify6'  => ['notify6', L10n::t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''],
1240                 '$notify7'  => ['notify7', L10n::t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''],
1241                 '$notify8'  => ['notify8', L10n::t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''],
1242
1243                 '$desktop_notifications' => ['desktop_notifications', L10n::t('Activate desktop notifications') , false, L10n::t('Show desktop popup on new notifications')],
1244
1245                 '$email_textonly' => ['email_textonly', L10n::t('Text-only notification emails'),
1246                                                                         DI::pConfig()->get(local_user(), 'system', 'email_textonly'),
1247                                                                         L10n::t('Send text only notification emails, without the html part')],
1248
1249                 '$detailed_notif' => ['detailed_notif', L10n::t('Show detailled notifications'),
1250                                                                         DI::pConfig()->get(local_user(), 'system', 'detailed_notif'),
1251                                                                         L10n::t('Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.')],
1252
1253                 '$h_advn' => L10n::t('Advanced Account/Page Type Settings'),
1254                 '$h_descadvn' => L10n::t('Change the behaviour of this account for special situations'),
1255                 '$pagetype' => $pagetype,
1256
1257                 '$importcontact' => L10n::t('Import Contacts'),
1258                 '$importcontact_text' => L10n::t('Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'),
1259                 '$importcontact_button' => L10n::t('Upload File'),
1260                 '$importcontact_maxsize' => Config::get('system', 'max_csv_file_size', 30720), 
1261                 '$relocate' => L10n::t('Relocate'),
1262                 '$relocate_text' => L10n::t("If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."),
1263                 '$relocate_button' => L10n::t("Resend relocate message to contacts"),
1264
1265         ]);
1266
1267         Hook::callAll('settings_form', $o);
1268
1269         $o .= '</form>' . "\r\n";
1270
1271         return $o;
1272
1273 }