]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
Repurposed OAuth frontend handling, store the scope
[friendica.git] / mod / settings.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 use Friendica\App;
23 use Friendica\BaseModule;
24 use Friendica\Content\Feature;
25 use Friendica\Content\Nav;
26 use Friendica\Core\ACL;
27 use Friendica\Core\Hook;
28 use Friendica\Core\Logger;
29 use Friendica\Core\Renderer;
30 use Friendica\Core\Worker;
31 use Friendica\Database\DBA;
32 use Friendica\DI;
33 use Friendica\Model\Contact;
34 use Friendica\Model\Group;
35 use Friendica\Model\Notification;
36 use Friendica\Model\User;
37 use Friendica\Module\BaseSettings;
38 use Friendica\Module\Security\Login;
39 use Friendica\Protocol\Email;
40 use Friendica\Util\Strings;
41 use Friendica\Util\Temporal;
42 use Friendica\Worker\Delivery;
43
44 function settings_init(App $a)
45 {
46         if (!local_user()) {
47                 notice(DI::l10n()->t('Permission denied.'));
48                 return;
49         }
50
51         BaseSettings::content();
52 }
53
54 function settings_post(App $a)
55 {
56         if (!local_user()) {
57                 return;
58         }
59
60         if (!empty($_SESSION['submanage'])) {
61                 return;
62         }
63
64         if (count($a->user) && !empty($a->user['uid']) && $a->user['uid'] != local_user()) {
65                 notice(DI::l10n()->t('Permission denied.'));
66                 return;
67         }
68
69         $old_page_flags = $a->user['page-flags'];
70
71         if (($a->argc > 1) && ($a->argv[1] === 'oauth') && !empty($_POST['remove'])) {
72                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth');
73
74                 $key = $_POST['remove'];
75                 DBA::delete('tokens', ['id' => $key, 'uid' => local_user()]);
76                 DI::baseUrl()->redirect('settings/oauth/', true);
77                 return;
78         }
79
80         if (($a->argc > 2) && ($a->argv[1] === 'oauth')  && ($a->argv[2] === 'edit'||($a->argv[2] === 'add')) && !empty($_POST['submit'])) {
81                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth');
82
83                 $name     = $_POST['name']     ?? '';
84                 $key      = $_POST['key']      ?? '';
85                 $secret   = $_POST['secret']   ?? '';
86                 $redirect = $_POST['redirect'] ?? '';
87                 $icon     = $_POST['icon']     ?? '';
88
89                 if ($name == "" || $key == "" || $secret == "") {
90                         notice(DI::l10n()->t("Missing some important data!"));
91                 } else {
92                         if ($_POST['submit'] == DI::l10n()->t("Update")) {
93                                 q("UPDATE clients SET
94                                                         client_id='%s',
95                                                         pw='%s',
96                                                         name='%s',
97                                                         redirect_uri='%s',
98                                                         icon='%s',
99                                                         uid=%d
100                                                 WHERE client_id='%s'",
101                                         DBA::escape($key),
102                                         DBA::escape($secret),
103                                         DBA::escape($name),
104                                         DBA::escape($redirect),
105                                         DBA::escape($icon),
106                                         local_user(),
107                                         DBA::escape($key)
108                                 );
109                         } else {
110                                 q("INSERT INTO clients
111                                                         (client_id, pw, name, redirect_uri, icon, uid)
112                                                 VALUES ('%s', '%s', '%s', '%s', '%s',%d)",
113                                         DBA::escape($key),
114                                         DBA::escape($secret),
115                                         DBA::escape($name),
116                                         DBA::escape($redirect),
117                                         DBA::escape($icon),
118                                         local_user()
119                                 );
120                         }
121                 }
122                 DI::baseUrl()->redirect('settings/oauth/', true);
123                 return;
124         }
125
126         if (($a->argc > 1) && ($a->argv[1] == 'addon')) {
127                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/addon', 'settings_addon');
128
129                 Hook::callAll('addon_settings_post', $_POST);
130                 return;
131         }
132
133         if (($a->argc > 1) && ($a->argv[1] == 'connectors')) {
134                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/connectors', 'settings_connectors');
135
136                 if (!empty($_POST['general-submit'])) {
137                         DI::pConfig()->set(local_user(), 'system', 'accept_only_sharer', intval($_POST['accept_only_sharer']));
138                         DI::pConfig()->set(local_user(), 'system', 'disable_cw', intval($_POST['disable_cw']));
139                         DI::pConfig()->set(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening']));
140                         DI::pConfig()->set(local_user(), 'system', 'attach_link_title', intval($_POST['attach_link_title']));
141                         DI::pConfig()->set(local_user(), 'system', 'ostatus_autofriend', intval($_POST['snautofollow']));
142                         DI::pConfig()->set(local_user(), 'ostatus', 'default_group', $_POST['group-selection']);
143                         DI::pConfig()->set(local_user(), 'ostatus', 'legacy_contact', $_POST['legacy_contact']);
144                 } elseif (!empty($_POST['imap-submit'])) {
145                         $mail_server       =                 $_POST['mail_server']       ?? '';
146                         $mail_port         =                 $_POST['mail_port']         ?? '';
147                         $mail_ssl          = strtolower(trim($_POST['mail_ssl']          ?? ''));
148                         $mail_user         =                 $_POST['mail_user']         ?? '';
149                         $mail_pass         =            trim($_POST['mail_pass']         ?? '');
150                         $mail_action       =            trim($_POST['mail_action']       ?? '');
151                         $mail_movetofolder =            trim($_POST['mail_movetofolder'] ?? '');
152                         $mail_replyto      =                 $_POST['mail_replyto']      ?? '';
153                         $mail_pubmail      =                 $_POST['mail_pubmail']      ?? '';
154
155                         if (
156                                 !DI::config()->get('system', 'dfrn_only')
157                                 && function_exists('imap_open')
158                                 && !DI::config()->get('system', 'imap_disabled')
159                         ) {
160                                 $failed = false;
161                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
162                                         intval(local_user())
163                                 );
164                                 if (!DBA::isResult($r)) {
165                                         DBA::insert('mailacct', ['uid' => local_user()]);
166                                 }
167                                 if (strlen($mail_pass)) {
168                                         $pass = '';
169                                         openssl_public_encrypt($mail_pass, $pass, $a->user['pubkey']);
170                                         DBA::update('mailacct', ['pass' => bin2hex($pass)], ['uid' => local_user()]);
171                                 }
172                                 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
173                                         `action` = %d, `movetofolder` = '%s',
174                                         `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d",
175                                         DBA::escape($mail_server),
176                                         intval($mail_port),
177                                         DBA::escape($mail_ssl),
178                                         DBA::escape($mail_user),
179                                         intval($mail_action),
180                                         DBA::escape($mail_movetofolder),
181                                         DBA::escape($mail_replyto),
182                                         intval($mail_pubmail),
183                                         intval(local_user())
184                                 );
185                                 Logger::notice('updating mailaccount', ['response' => $r]);
186                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
187                                         intval(local_user())
188                                 );
189                                 if (DBA::isResult($r)) {
190                                         $eacct = $r[0];
191                                         $mb = Email::constructMailboxName($eacct);
192
193                                         if (strlen($eacct['server'])) {
194                                                 $dcrpass = '';
195                                                 openssl_private_decrypt(hex2bin($eacct['pass']), $dcrpass, $a->user['prvkey']);
196                                                 $mbox = Email::connect($mb, $mail_user, $dcrpass);
197                                                 unset($dcrpass);
198                                                 if (!$mbox) {
199                                                         $failed = true;
200                                                         notice(DI::l10n()->t('Failed to connect with email account using the settings provided.'));
201                                                 }
202                                         }
203                                 }
204                         }
205                 }
206
207                 Hook::callAll('connector_settings_post', $_POST);
208                 return;
209         }
210
211         if (($a->argc > 1) && ($a->argv[1] === 'features')) {
212                 BaseModule::checkFormSecurityTokenRedirectOnError('/settings/features', 'settings_features');
213                 foreach ($_POST as $k => $v) {
214                         if (strpos($k, 'feature_') === 0) {
215                                 DI::pConfig()->set(local_user(), 'feature', substr($k, 8), ((intval($v)) ? 1 : 0));
216                         }
217                 }
218                 return;
219         }
220
221         BaseModule::checkFormSecurityTokenRedirectOnError('/settings', 'settings');
222
223         // Import Contacts from CSV file
224         if (!empty($_POST['importcontact-submit'])) {
225                 if (isset($_FILES['importcontact-filename'])) {
226                         // was there an error
227                         if ($_FILES['importcontact-filename']['error'] > 0) {
228                                 Logger::notice('Contact CSV file upload error', ['error' => $_FILES['importcontact-filename']['error']]);
229                                 notice(DI::l10n()->t('Contact CSV file upload error'));
230                         } else {
231                                 $csvArray = array_map('str_getcsv', file($_FILES['importcontact-filename']['tmp_name']));
232                                 Logger::notice('Import started', ['lines' => count($csvArray)]);
233                                 // import contacts
234                                 foreach ($csvArray as $csvRow) {
235                                         // The 1st row may, or may not contain the headers of the table
236                                         // We expect the 1st field of the row to contain either the URL
237                                         // or the handle of the account, therefore we check for either
238                                         // "http" or "@" to be present in the string.
239                                         // All other fields from the row will be ignored
240                                         if ((strpos($csvRow[0],'@') !== false) || in_array(parse_url($csvRow[0], PHP_URL_SCHEME), ['http', 'https'])) {
241                                                 Worker::add(PRIORITY_LOW, 'AddContact', $_SESSION['uid'], $csvRow[0]);
242                                         } else {
243                                                 Logger::notice('Invalid account', ['url' => $csvRow[0]]);
244                                         }
245                                 }
246                                 Logger::notice('Import done');
247
248                                 info(DI::l10n()->t('Importing Contacts done'));
249                                 // delete temp file
250                                 unlink($_FILES['importcontact-filename']['tmp_name']);
251                         }
252                 } else {
253                         Logger::notice('Import triggered, but no import file was found.');
254                 }
255
256                 return;
257         }
258
259         if (!empty($_POST['resend_relocate'])) {
260                 Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, local_user());
261                 info(DI::l10n()->t("Relocate message has been send to your contacts"));
262                 DI::baseUrl()->redirect('settings');
263         }
264
265         Hook::callAll('settings_post', $_POST);
266
267         if (!empty($_POST['password']) || !empty($_POST['confirm'])) {
268                 $newpass = $_POST['password'];
269                 $confirm = $_POST['confirm'];
270
271                 try {
272                         if ($newpass != $confirm) {
273                                 throw new Exception(DI::l10n()->t('Passwords do not match.'));
274                         }
275
276                         //  check if the old password was supplied correctly before changing it to the new value
277                         User::getIdFromPasswordAuthentication(local_user(), $_POST['opassword']);
278
279                         $result = User::updatePassword(local_user(), $newpass);
280                         if (!DBA::isResult($result)) {
281                                 throw new Exception(DI::l10n()->t('Password update failed. Please try again.'));
282                         }
283
284                         info(DI::l10n()->t('Password changed.'));
285                 } catch (Exception $e) {
286                         notice($e->getMessage());
287                         notice(DI::l10n()->t('Password unchanged.'));
288                 }
289         }
290
291         $username         = (!empty($_POST['username'])   ? Strings::escapeTags(trim($_POST['username']))     : '');
292         $email            = (!empty($_POST['email'])      ? Strings::escapeTags(trim($_POST['email']))        : '');
293         $timezone         = (!empty($_POST['timezone'])   ? Strings::escapeTags(trim($_POST['timezone']))     : '');
294         $language         = (!empty($_POST['language'])   ? Strings::escapeTags(trim($_POST['language']))     : '');
295
296         $defloc           = (!empty($_POST['defloc'])     ? Strings::escapeTags(trim($_POST['defloc']))       : '');
297         $maxreq           = (!empty($_POST['maxreq'])     ? intval($_POST['maxreq'])             : 0);
298         $expire           = (!empty($_POST['expire'])     ? intval($_POST['expire'])             : 0);
299         $def_gid          = (!empty($_POST['group-selection']) ? intval($_POST['group-selection']) : 0);
300
301
302         $expire_items     = (!empty($_POST['expire_items']) ? intval($_POST['expire_items'])     : 0);
303         $expire_notes     = (!empty($_POST['expire_notes']) ? intval($_POST['expire_notes'])     : 0);
304         $expire_starred   = (!empty($_POST['expire_starred']) ? intval($_POST['expire_starred']) : 0);
305         $expire_photos    = (!empty($_POST['expire_photos'])? intval($_POST['expire_photos'])    : 0);
306         $expire_network_only    = (!empty($_POST['expire_network_only'])? intval($_POST['expire_network_only'])  : 0);
307
308         $delete_openid    = ((!empty($_POST['delete_openid']) && (intval($_POST['delete_openid']) == 1)) ? 1: 0);
309
310         $allow_location   = ((!empty($_POST['allow_location']) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
311         $publish          = ((!empty($_POST['profile_in_directory']) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
312         $net_publish      = ((!empty($_POST['profile_in_netdirectory']) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
313         $old_visibility   = ((!empty($_POST['visibility']) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
314         $account_type     = ((!empty($_POST['account-type']) && (intval($_POST['account-type']))) ? intval($_POST['account-type']) : 0);
315         $page_flags       = ((!empty($_POST['page-flags']) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
316         $blockwall        = ((!empty($_POST['blockwall']) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
317         $blocktags        = ((!empty($_POST['blocktags']) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
318         $unkmail          = ((!empty($_POST['unkmail']) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
319         $cntunkmail       = (!empty($_POST['cntunkmail']) ? intval($_POST['cntunkmail']) : 0);
320         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
321         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
322         $unlisted         = (($_POST['unlisted'] == 1) ? 1: 0);
323         $accessiblephotos = (($_POST['accessible-photos'] == 1) ? 1: 0);
324
325         $email_textonly   = (($_POST['email_textonly'] == 1) ? 1 : 0);
326         $detailed_notif   = (($_POST['detailed_notif'] == 1) ? 1 : 0);
327
328         $notify_ignored   = (($_POST['notify_ignored'] == 1) ? 1 : 0);
329         
330         $notify = 0;
331
332         if (!empty($_POST['notify1'])) {
333                 $notify += intval($_POST['notify1']);
334         }
335         if (!empty($_POST['notify2'])) {
336                 $notify += intval($_POST['notify2']);
337         }
338         if (!empty($_POST['notify3'])) {
339                 $notify += intval($_POST['notify3']);
340         }
341         if (!empty($_POST['notify4'])) {
342                 $notify += intval($_POST['notify4']);
343         }
344         if (!empty($_POST['notify5'])) {
345                 $notify += intval($_POST['notify5']);
346         }
347         if (!empty($_POST['notify6'])) {
348                 $notify += intval($_POST['notify6']);
349         }
350         if (!empty($_POST['notify7'])) {
351                 $notify += intval($_POST['notify7']);
352         }
353         if (!empty($_POST['notify8'])) {
354                 $notify += intval($_POST['notify8']);
355         }
356
357         // Adjust the page flag if the account type doesn't fit to the page flag.
358         if (($account_type == User::ACCOUNT_TYPE_PERSON) && !in_array($page_flags, [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_SOAPBOX, User::PAGE_FLAGS_FREELOVE])) {
359                 $page_flags = User::PAGE_FLAGS_NORMAL;
360         } elseif (($account_type == User::ACCOUNT_TYPE_ORGANISATION) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
361                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
362         } elseif (($account_type == User::ACCOUNT_TYPE_NEWS) && !in_array($page_flags, [User::PAGE_FLAGS_SOAPBOX])) {
363                 $page_flags = User::PAGE_FLAGS_SOAPBOX;
364         } elseif (($account_type == User::ACCOUNT_TYPE_COMMUNITY) && !in_array($page_flags, [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP])) {
365                 $page_flags = User::PAGE_FLAGS_COMMUNITY;
366         }
367
368         $err = '';
369
370         if ($username != $a->user['username']) {
371                 if (strlen($username) > 40) {
372                         $err .= DI::l10n()->t('Please use a shorter name.');
373                 }
374                 if (strlen($username) < 3) {
375                         $err .= DI::l10n()->t('Name too short.');
376                 }
377         }
378
379         if ($email != $a->user['email']) {
380                 //  check for the correct password
381                 if (!User::authenticate(intval(local_user()), $_POST['mpassword'])) {
382                         $err .= DI::l10n()->t('Wrong Password.');
383                         $email = $a->user['email'];
384                 }
385                 //  check the email is valid
386                 if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
387                         $err .= DI::l10n()->t('Invalid email.');
388                 }
389                 //  ensure new email is not the admin mail
390                 if (DI::config()->get('config', 'admin_email')) {
391                         $adminlist = explode(",", str_replace(" ", "", strtolower(DI::config()->get('config', 'admin_email'))));
392                         if (in_array(strtolower($email), $adminlist)) {
393                                 $err .= DI::l10n()->t('Cannot change to that email.');
394                                 $email = $a->user['email'];
395                         }
396                 }
397         }
398
399         if (strlen($err)) {
400                 notice($err);
401                 return;
402         }
403
404         if (($timezone != $a->user['timezone']) && strlen($timezone)) {
405                 date_default_timezone_set($timezone);
406         }
407
408         $aclFormatter = DI::aclFormatter();
409
410         $str_group_allow   = !empty($_POST['group_allow'])   ? $aclFormatter->toString($_POST['group_allow'])   : '';
411         $str_contact_allow = !empty($_POST['contact_allow']) ? $aclFormatter->toString($_POST['contact_allow']) : '';
412         $str_group_deny    = !empty($_POST['group_deny'])    ? $aclFormatter->toString($_POST['group_deny'])    : '';
413         $str_contact_deny  = !empty($_POST['contact_deny'])  ? $aclFormatter->toString($_POST['contact_deny'])  : '';
414
415         DI::pConfig()->set(local_user(), 'expire', 'items', $expire_items);
416         DI::pConfig()->set(local_user(), 'expire', 'notes', $expire_notes);
417         DI::pConfig()->set(local_user(), 'expire', 'starred', $expire_starred);
418         DI::pConfig()->set(local_user(), 'expire', 'photos', $expire_photos);
419         DI::pConfig()->set(local_user(), 'expire', 'network_only', $expire_network_only);
420
421         DI::pConfig()->set(local_user(), 'system', 'email_textonly', $email_textonly);
422         DI::pConfig()->set(local_user(), 'system', 'detailed_notif', $detailed_notif);
423         DI::pConfig()->set(local_user(), 'system', 'notify_ignored', $notify_ignored);
424         DI::pConfig()->set(local_user(), 'system', 'unlisted', $unlisted);
425         DI::pConfig()->set(local_user(), 'system', 'accessible-photos', $accessiblephotos);
426
427         if ($page_flags == User::PAGE_FLAGS_PRVGROUP) {
428                 $hidewall = 1;
429                 if (!$str_contact_allow && !$str_group_allow && !$str_contact_deny && !$str_group_deny) {
430                         if ($def_gid) {
431                                 info(DI::l10n()->t('Private forum has no privacy permissions. Using default privacy group.'));
432                                 $str_group_allow = '<' . $def_gid . '>';
433                         } else {
434                                 notice(DI::l10n()->t('Private forum has no privacy permissions and no default privacy group.'));
435                         }
436                 }
437         }
438
439         $fields = ['username' => $username, 'email' => $email, 'timezone' => $timezone,
440                 'allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow, 'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny,
441                 'notify-flags' => $notify, 'page-flags' => $page_flags, 'account-type' => $account_type, 'default-location' => $defloc,
442                 'allow_location' => $allow_location, 'maxreq' => $maxreq, 'expire' => $expire, 'def_gid' => $def_gid, 'blockwall' => $blockwall,
443                 'hidewall' => $hidewall, 'blocktags' => $blocktags, 'unkmail' => $unkmail, 'cntunkmail' => $cntunkmail, 'language' => $language];
444
445         if ($delete_openid) {
446                 $fields['openid'] = '';
447                 $fields['openidserver'] = '';
448         }
449
450         if (!DBA::update('user', $fields, ['uid' => local_user()])) {
451                 notice(DI::l10n()->t('Settings were not updated.'));
452         }
453
454         // clear session language
455         unset($_SESSION['language']);
456
457         q("UPDATE `profile`
458                 SET `publish` = %d,
459                 `name` = '%s',
460                 `net-publish` = %d,
461                 `hide-friends` = %d
462                 WHERE `uid` = %d",
463                 intval($publish),
464                 DBA::escape($username),
465                 intval($net_publish),
466                 intval($hide_friends),
467                 intval(local_user())
468         );
469
470         Contact::updateSelfFromUserID(local_user());
471
472         if (($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
473                 // Update global directory in background
474                 $url = $_SESSION['my_url'];
475                 if ($url && strlen(DI::config()->get('system', 'directory'))) {
476                         Worker::add(PRIORITY_LOW, "Directory", $url);
477                 }
478         }
479
480         Worker::add(PRIORITY_LOW, 'ProfileUpdate', local_user());
481
482         DI::baseUrl()->redirect('settings');
483         return; // NOTREACHED
484 }
485
486
487 function settings_content(App $a)
488 {
489         $o = '';
490         Nav::setSelected('settings');
491
492         if (!local_user()) {
493                 //notice(DI::l10n()->t('Permission denied.'));
494                 return Login::form();
495         }
496
497         if (!empty($_SESSION['submanage'])) {
498                 notice(DI::l10n()->t('Permission denied.'));
499                 return;
500         }
501
502         if (($a->argc > 1) && ($a->argv[1] === 'oauth')) {
503                 if (($a->argc > 3) && ($a->argv[2] === 'delete')) {
504                         BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth', 't');
505
506                         DBA::delete('application-token', ['application-id' => $a->argv[3], 'uid' => local_user()]);
507                         DI::baseUrl()->redirect('settings/oauth/', true);
508                         return;
509                 }
510
511                 $applications = DBA::selectToArray('application-view', ['id', 'uid', 'name', 'website', 'scopes', 'created_at'], ['uid' => local_user()]);
512
513                 $tpl = Renderer::getMarkupTemplate('settings/oauth.tpl');
514                 $o .= Renderer::replaceMacros($tpl, [
515                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_oauth"),
516                         '$baseurl'             => DI::baseUrl()->get(true),
517                         '$title'               => DI::l10n()->t('Connected Apps'),
518                         '$name'                => DI::l10n()->t('Name'),
519                         '$website'             => DI::l10n()->t('Home Page'),
520                         '$created_at'          => DI::l10n()->t('Created'),
521                         '$delete'              => DI::l10n()->t('Remove authorization'),
522                         '$apps'                => $applications,
523                 ]);
524                 return $o;
525         }
526
527         if (($a->argc > 1) && ($a->argv[1] === 'addon')) {
528                 $settings_addons = "";
529
530                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'addon_settings' ");
531                 if (!DBA::isResult($r)) {
532                         $settings_addons = DI::l10n()->t('No Addon settings configured');
533                 }
534
535                 Hook::callAll('addon_settings', $settings_addons);
536
537
538                 $tpl = Renderer::getMarkupTemplate('settings/addons.tpl');
539                 $o .= Renderer::replaceMacros($tpl, [
540                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_addon"),
541                         '$title'        => DI::l10n()->t('Addon Settings'),
542                         '$settings_addons' => $settings_addons
543                 ]);
544                 return $o;
545         }
546
547         if (($a->argc > 1) && ($a->argv[1] === 'features')) {
548
549                 $arr = [];
550                 $features = Feature::get();
551                 foreach ($features as $fname => $fdata) {
552                         $arr[$fname] = [];
553                         $arr[$fname][0] = $fdata[0];
554                         foreach (array_slice($fdata,1) as $f) {
555                                 $arr[$fname][1][] = ['feature_' . $f[0], $f[1], Feature::isEnabled(local_user(), $f[0]), $f[2]];
556                         }
557                 }
558
559                 $tpl = Renderer::getMarkupTemplate('settings/features.tpl');
560                 $o .= Renderer::replaceMacros($tpl, [
561                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_features"),
562                         '$title'               => DI::l10n()->t('Additional Features'),
563                         '$features'            => $arr,
564                         '$submit'              => DI::l10n()->t('Save Settings'),
565                 ]);
566                 return $o;
567         }
568
569         if (($a->argc > 1) && ($a->argv[1] === 'connectors')) {
570                 $accept_only_sharer        = intval(DI::pConfig()->get(local_user(), 'system', 'accept_only_sharer'));
571                 $disable_cw                = intval(DI::pConfig()->get(local_user(), 'system', 'disable_cw'));
572                 $no_intelligent_shortening = intval(DI::pConfig()->get(local_user(), 'system', 'no_intelligent_shortening'));
573                 $attach_link_title         = intval(DI::pConfig()->get(local_user(), 'system', 'attach_link_title'));
574                 $ostatus_autofriend        = intval(DI::pConfig()->get(local_user(), 'system', 'ostatus_autofriend'));
575                 $default_group             = DI::pConfig()->get(local_user(), 'ostatus', 'default_group');
576                 $legacy_contact            = DI::pConfig()->get(local_user(), 'ostatus', 'legacy_contact');
577
578                 if (!empty($legacy_contact)) {
579                         /// @todo Isn't it supposed to be a $a->internalRedirect() call?
580                         DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl().'/ostatus_subscribe?url=' . urlencode($legacy_contact) . '">';
581                 }
582
583                 $settings_connectors = '';
584                 Hook::callAll('connector_settings', $settings_connectors);
585
586                 if (is_site_admin()) {
587                         $diasp_enabled = DI::l10n()->t('Built-in support for %s connectivity is %s', DI::l10n()->t('Diaspora (Socialhome, Hubzilla)'), ((DI::config()->get('system', 'diaspora_enabled')) ? DI::l10n()->t('enabled') : DI::l10n()->t('disabled')));
588                         $ostat_enabled = DI::l10n()->t('Built-in support for %s connectivity is %s', DI::l10n()->t('OStatus (GNU Social)'), ((DI::config()->get('system', 'ostatus_disabled')) ? DI::l10n()->t('disabled') : DI::l10n()->t('enabled')));
589                 } else {
590                         $diasp_enabled = "";
591                         $ostat_enabled = "";
592                 }
593
594                 $mail_disabled = ((function_exists('imap_open') && (!DI::config()->get('system', 'imap_disabled'))) ? 0 : 1);
595                 if (DI::config()->get('system', 'dfrn_only')) {
596                         $mail_disabled = 1;
597                 }
598                 if (!$mail_disabled) {
599                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
600                                 local_user()
601                         );
602                 } else {
603                         $r = null;
604                 }
605
606                 $mail_server       = ((DBA::isResult($r)) ? $r[0]['server'] : '');
607                 $mail_port         = ((DBA::isResult($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
608                 $mail_ssl          = ((DBA::isResult($r)) ? $r[0]['ssltype'] : '');
609                 $mail_user         = ((DBA::isResult($r)) ? $r[0]['user'] : '');
610                 $mail_replyto      = ((DBA::isResult($r)) ? $r[0]['reply_to'] : '');
611                 $mail_pubmail      = ((DBA::isResult($r)) ? $r[0]['pubmail'] : 0);
612                 $mail_action       = ((DBA::isResult($r)) ? $r[0]['action'] : 0);
613                 $mail_movetofolder = ((DBA::isResult($r)) ? $r[0]['movetofolder'] : '');
614                 $mail_chk          = ((DBA::isResult($r)) ? $r[0]['last_check'] : DBA::NULL_DATETIME);
615
616
617                 $tpl = Renderer::getMarkupTemplate('settings/connectors.tpl');
618
619                 $mail_disabled_message = ($mail_disabled ? DI::l10n()->t('Email access is disabled on this site.') : '');
620
621                 $ssl_options = ['TLS' => 'TLS', 'SSL' => 'SSL'];
622
623                 if (DI::config()->get('system', 'insecure_imap')) {
624                         $ssl_options['notls'] = DI::l10n()->t('None');
625                 }
626
627                 $o .= Renderer::replaceMacros($tpl, [
628                         '$form_security_token' => BaseModule::getFormSecurityToken("settings_connectors"),
629
630                         '$title'        => DI::l10n()->t('Social Networks'),
631
632                         '$diasp_enabled' => $diasp_enabled,
633                         '$ostat_enabled' => $ostat_enabled,
634
635                         '$general_settings' => DI::l10n()->t('General Social Media Settings'),
636                         '$accept_only_sharer' => ['accept_only_sharer', DI::l10n()->t('Accept only top level posts by contacts you follow'), $accept_only_sharer, DI::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.')],
637                         '$disable_cw' => ['disable_cw', DI::l10n()->t('Disable Content Warning'), $disable_cw, DI::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.')],
638                         '$no_intelligent_shortening' => ['no_intelligent_shortening', DI::l10n()->t('Disable intelligent shortening'), $no_intelligent_shortening, DI::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.')],
639                         '$attach_link_title' => ['attach_link_title', DI::l10n()->t('Attach the link title'), $attach_link_title, DI::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.')],
640                         '$ostatus_autofriend' => ['snautofollow', DI::l10n()->t("Automatically follow any GNU Social \x28OStatus\x29 followers/mentioners"), $ostatus_autofriend, DI::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.')],
641                         '$default_group' => Group::displayGroupSelection(local_user(), $default_group, DI::l10n()->t("Default group for OStatus contacts")),
642                         '$legacy_contact' => ['legacy_contact', DI::l10n()->t('Your legacy GNU Social account'), $legacy_contact, DI::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.")],
643
644                         '$repair_ostatus_url' => DI::baseUrl() . '/repair_ostatus',
645                         '$repair_ostatus_text' => DI::l10n()->t('Repair OStatus subscriptions'),
646
647                         '$settings_connectors' => $settings_connectors,
648
649                         '$h_imap' => DI::l10n()->t('Email/Mailbox Setup'),
650                         '$imap_desc' => DI::l10n()->t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
651                         '$imap_lastcheck' => ['imap_lastcheck', DI::l10n()->t('Last successful email check:'), $mail_chk, ''],
652                         '$mail_disabled' => $mail_disabled_message,
653                         '$mail_server'  => ['mail_server',      DI::l10n()->t('IMAP server name:'), $mail_server, ''],
654                         '$mail_port'    => ['mail_port',        DI::l10n()->t('IMAP port:'), $mail_port, ''],
655                         '$mail_ssl'     => ['mail_ssl',         DI::l10n()->t('Security:'), strtoupper($mail_ssl), '', $ssl_options],
656                         '$mail_user'    => ['mail_user',        DI::l10n()->t('Email login name:'), $mail_user, ''],
657                         '$mail_pass'    => ['mail_pass',        DI::l10n()->t('Email password:'), '', ''],
658                         '$mail_replyto' => ['mail_replyto',     DI::l10n()->t('Reply-to address:'), $mail_replyto, 'Optional'],
659                         '$mail_pubmail' => ['mail_pubmail',     DI::l10n()->t('Send public posts to all email contacts:'), $mail_pubmail, ''],
660                         '$mail_action'  => ['mail_action',      DI::l10n()->t('Action after import:'), $mail_action, '', [0 => DI::l10n()->t('None'), 1 => DI::l10n()->t('Delete'), 2 => DI::l10n()->t('Mark as seen'), 3 => DI::l10n()->t('Move to folder')]],
661                         '$mail_movetofolder' => ['mail_movetofolder', DI::l10n()->t('Move to folder:'), $mail_movetofolder, ''],
662                         '$submit' => DI::l10n()->t('Save Settings'),
663                 ]);
664
665                 Hook::callAll('display_settings', $o);
666                 return $o;
667         }
668
669         /*
670          * ACCOUNT SETTINGS
671          */
672
673         $profile = DBA::selectFirst('profile', [], ['uid' => local_user()]);
674         if (!DBA::isResult($profile)) {
675                 notice(DI::l10n()->t('Unable to find your profile. Please contact your admin.'));
676                 return;
677         }
678
679         $username   = $a->user['username'];
680         $email      = $a->user['email'];
681         $nickname   = $a->user['nickname'];
682         $timezone   = $a->user['timezone'];
683         $language   = $a->user['language'];
684         $notify     = $a->user['notify-flags'];
685         $defloc     = $a->user['default-location'];
686         $openid     = $a->user['openid'];
687         $maxreq     = $a->user['maxreq'];
688         $expire     = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
689         $unkmail    = $a->user['unkmail'];
690         $cntunkmail = $a->user['cntunkmail'];
691
692         $expire_items = DI::pConfig()->get(local_user(), 'expire', 'items', true);
693         $expire_notes = DI::pConfig()->get(local_user(), 'expire', 'notes', true);
694         $expire_starred = DI::pConfig()->get(local_user(), 'expire', 'starred', true);
695         $expire_photos = DI::pConfig()->get(local_user(), 'expire', 'photos', false);
696         $expire_network_only = DI::pConfig()->get(local_user(), 'expire', 'network_only', false);
697
698         if (!strlen($a->user['timezone'])) {
699                 $timezone = date_default_timezone_get();
700         }
701
702         // Set the account type to "Community" when the page is a community page but the account type doesn't fit
703         // This is only happening on the first visit after the update
704         if (in_array($a->user['page-flags'], [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]) &&
705                 ($a->user['account-type'] != User::ACCOUNT_TYPE_COMMUNITY))
706                 $a->user['account-type'] = User::ACCOUNT_TYPE_COMMUNITY;
707
708         $pageset_tpl = Renderer::getMarkupTemplate('settings/pagetypes.tpl');
709
710         $pagetype = Renderer::replaceMacros($pageset_tpl, [
711                 '$account_types'        => DI::l10n()->t("Account Types"),
712                 '$user'                 => DI::l10n()->t("Personal Page Subtypes"),
713                 '$community'            => DI::l10n()->t("Community Forum Subtypes"),
714                 '$account_type'         => $a->user['account-type'],
715                 '$type_person'          => User::ACCOUNT_TYPE_PERSON,
716                 '$type_organisation'    => User::ACCOUNT_TYPE_ORGANISATION,
717                 '$type_news'            => User::ACCOUNT_TYPE_NEWS,
718                 '$type_community'       => User::ACCOUNT_TYPE_COMMUNITY,
719
720                 '$account_person'       => ['account-type', DI::l10n()->t('Personal Page'), User::ACCOUNT_TYPE_PERSON,
721                                                                         DI::l10n()->t('Account for a personal profile.'),
722                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_PERSON)],
723
724                 '$account_organisation' => ['account-type', DI::l10n()->t('Organisation Page'), User::ACCOUNT_TYPE_ORGANISATION,
725                                                                         DI::l10n()->t('Account for an organisation that automatically approves contact requests as "Followers".'),
726                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_ORGANISATION)],
727
728                 '$account_news'         => ['account-type', DI::l10n()->t('News Page'), User::ACCOUNT_TYPE_NEWS,
729                                                                         DI::l10n()->t('Account for a news reflector that automatically approves contact requests as "Followers".'),
730                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_NEWS)],
731
732                 '$account_community'    => ['account-type', DI::l10n()->t('Community Forum'), User::ACCOUNT_TYPE_COMMUNITY,
733                                                                         DI::l10n()->t('Account for community discussions.'),
734                                                                         ($a->user['account-type'] == User::ACCOUNT_TYPE_COMMUNITY)],
735
736                 '$page_normal'          => ['page-flags', DI::l10n()->t('Normal Account Page'), User::PAGE_FLAGS_NORMAL,
737                                                                         DI::l10n()->t('Account for a regular personal profile that requires manual approval of "Friends" and "Followers".'),
738                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_NORMAL)],
739
740                 '$page_soapbox'         => ['page-flags', DI::l10n()->t('Soapbox Page'), User::PAGE_FLAGS_SOAPBOX,
741                                                                         DI::l10n()->t('Account for a public profile that automatically approves contact requests as "Followers".'),
742                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_SOAPBOX)],
743
744                 '$page_community'       => ['page-flags', DI::l10n()->t('Public Forum'), User::PAGE_FLAGS_COMMUNITY,
745                                                                         DI::l10n()->t('Automatically approves all contact requests.'),
746                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_COMMUNITY)],
747
748                 '$page_freelove'        => ['page-flags', DI::l10n()->t('Automatic Friend Page'), User::PAGE_FLAGS_FREELOVE,
749                                                                         DI::l10n()->t('Account for a popular profile that automatically approves contact requests as "Friends".'),
750                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_FREELOVE)],
751
752                 '$page_prvgroup'        => ['page-flags', DI::l10n()->t('Private Forum [Experimental]'), User::PAGE_FLAGS_PRVGROUP,
753                                                                         DI::l10n()->t('Requires manual approval of contact requests.'),
754                                                                         ($a->user['page-flags'] == User::PAGE_FLAGS_PRVGROUP)],
755
756
757         ]);
758
759         $noid = DI::config()->get('system', 'no_openid');
760
761         if ($noid) {
762                 $openid_field = false;
763         } else {
764                 $openid_field = ['openid_url', DI::l10n()->t('OpenID:'), $openid, DI::l10n()->t("\x28Optional\x29 Allow this OpenID to login to this account."), "", "readonly", "url"];
765         }
766
767         $opt_tpl = Renderer::getMarkupTemplate("field_checkbox.tpl");
768         if (DI::config()->get('system', 'publish_all')) {
769                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
770         } else {
771                 $profile_in_dir = Renderer::replaceMacros($opt_tpl, [
772                         '$field' => ['profile_in_directory', DI::l10n()->t('Publish your profile in your local site directory?'), $profile['publish'], DI::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')]
773                 ]);
774         }
775
776         $net_pub_desc = '';
777         if (strlen(DI::config()->get('system', 'directory'))) {
778                 $net_pub_desc = ' ' . DI::l10n()->t('Your profile will also be published in the global friendica directories (e.g. <a href="%s">%s</a>).', DI::config()->get('system', 'directory'), DI::config()->get('system', 'directory'));
779         }
780
781         $tpl_addr = Renderer::getMarkupTemplate('settings/nick_set.tpl');
782
783         $prof_addr = Renderer::replaceMacros($tpl_addr,[
784                 '$desc' => DI::l10n()->t("Your Identity Address is <strong>'%s'</strong> or '%s'.", $nickname . '@' . DI::baseUrl()->getHostname() . DI::baseUrl()->getUrlPath(), DI::baseUrl() . '/profile/' . $nickname),
785                 '$basepath' => DI::baseUrl()->getHostname()
786         ]);
787
788         $stpl = Renderer::getMarkupTemplate('settings/settings.tpl');
789
790         /* Installed langs */
791         $lang_choices = DI::l10n()->getAvailableLanguages();
792
793         /// @TODO Fix indending (or so)
794         $o .= Renderer::replaceMacros($stpl, [
795                 '$ptitle'       => DI::l10n()->t('Account Settings'),
796
797                 '$submit'       => DI::l10n()->t('Save Settings'),
798                 '$baseurl' => DI::baseUrl()->get(true),
799                 '$uid' => local_user(),
800                 '$form_security_token' => BaseModule::getFormSecurityToken("settings"),
801                 '$nickname_block' => $prof_addr,
802
803                 '$h_pass'       => DI::l10n()->t('Password Settings'),
804                 '$password1'=> ['password', DI::l10n()->t('New Password:'), '', DI::l10n()->t('Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).')],
805                 '$password2'=> ['confirm', DI::l10n()->t('Confirm:'), '', DI::l10n()->t('Leave password fields blank unless changing')],
806                 '$password3'=> ['opassword', DI::l10n()->t('Current Password:'), '', DI::l10n()->t('Your current password to confirm the changes')],
807                 '$password4'=> ['mpassword', DI::l10n()->t('Password:'), '', DI::l10n()->t('Your current password to confirm the changes of the email address')],
808                 '$oid_enable' => (!DI::config()->get('system', 'no_openid')),
809                 '$openid'       => $openid_field,
810                 '$delete_openid' => ['delete_openid', DI::l10n()->t('Delete OpenID URL'), false, ''],
811
812                 '$h_basic'      => DI::l10n()->t('Basic Settings'),
813                 '$username' => ['username',  DI::l10n()->t('Full Name:'), $username, ''],
814                 '$email'        => ['email', DI::l10n()->t('Email Address:'), $email, '', '', '', 'email'],
815                 '$timezone' => ['timezone_select' , DI::l10n()->t('Your Timezone:'), Temporal::getTimezoneSelect($timezone), ''],
816                 '$language' => ['language', DI::l10n()->t('Your Language:'), $language, DI::l10n()->t('Set the language we use to show you friendica interface and to send you emails'), $lang_choices],
817                 '$defloc'       => ['defloc', DI::l10n()->t('Default Post Location:'), $defloc, ''],
818                 '$allowloc' => ['allow_location', DI::l10n()->t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''],
819
820                 '$h_prv'                  => DI::l10n()->t('Security and Privacy Settings'),
821                 '$visibility'         => $profile['net-publish'],
822                 '$maxreq'                 => ['maxreq', DI::l10n()->t('Maximum Friend Requests/Day:'), $maxreq , DI::l10n()->t("\x28to prevent spam abuse\x29")],
823                 '$profile_in_dir'     => $profile_in_dir,
824                 '$profile_in_net_dir' => ['profile_in_netdirectory', DI::l10n()->t('Allow your profile to be searchable globally?'), $profile['net-publish'], DI::l10n()->t("Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not.") . $net_pub_desc],
825                 '$hide_friends'       => ['hide-friends', DI::l10n()->t('Hide your contact/friend list from viewers of your profile?'), $profile['hide-friends'], DI::l10n()->t('A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.')],
826                 '$hide_wall'          => ['hidewall', DI::l10n()->t('Hide your profile details from anonymous viewers?'), $a->user['hidewall'], DI::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.')],
827                 '$unlisted'           => ['unlisted', DI::l10n()->t('Make public posts unlisted'), DI::pConfig()->get(local_user(), 'system', 'unlisted'), DI::l10n()->t('Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers.')],
828                 '$accessiblephotos'   => ['accessible-photos', DI::l10n()->t('Make all posted pictures accessible'), DI::pConfig()->get(local_user(), 'system', 'accessible-photos'), DI::l10n()->t("This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though.")],
829                 '$blockwall'          => ['blockwall', DI::l10n()->t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), DI::l10n()->t('Your contacts may write posts on your profile wall. These posts will be distributed to your contacts')], // array('blockwall', DI::l10n()->t('Allow friends to post to your profile page:'), !$blockwall, ''),
830                 '$blocktags'          => ['blocktags', DI::l10n()->t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), DI::l10n()->t('Your contacts can add additional tags to your posts.')], // array('blocktags', DI::l10n()->t('Allow friends to tag your posts:'), !$blocktags, ''),
831                 '$unkmail'            => ['unkmail', DI::l10n()->t('Permit unknown people to send you private mail?'), $unkmail, DI::l10n()->t('Friendica network users may send you private messages even if they are not in your contact list.')],
832                 '$cntunkmail'         => ['cntunkmail', DI::l10n()->t('Maximum private messages per day from unknown people:'), $cntunkmail , DI::l10n()->t("\x28to prevent spam abuse\x29")],
833                 '$group_select'       => Group::displayGroupSelection(local_user(), $a->user['def_gid']),
834                 '$permissions'        => DI::l10n()->t('Default Post Permissions'),
835                 '$aclselect'          => ACL::getFullSelectorHTML(DI::page(), $a->user),
836
837                 '$expire' => [
838                         'label'        => DI::l10n()->t('Expiration settings'),
839                         'days'         => ['expire',  DI::l10n()->t("Automatically expire posts after this many days:"), $expire, DI::l10n()->t('If empty, posts will not expire. Expired posts will be deleted')],
840                         'items'        => ['expire_items', DI::l10n()->t('Expire posts'), $expire_items, DI::l10n()->t('When activated, posts and comments will be expired.')],
841                         'notes'        => ['expire_notes', DI::l10n()->t('Expire personal notes'), $expire_notes, DI::l10n()->t('When activated, the personal notes on your profile page will be expired.')],
842                         'starred'      => ['expire_starred', DI::l10n()->t('Expire starred posts'), $expire_starred, DI::l10n()->t('Starring posts keeps them from being expired. That behaviour is overwritten by this setting.')],
843                         'photos'       => ['expire_photos', DI::l10n()->t('Expire photos'), $expire_photos, DI::l10n()->t('When activated, photos will be expired.')],
844                         'network_only' => ['expire_network_only', DI::l10n()->t('Only expire posts by others'), $expire_network_only, DI::l10n()->t('When activated, your own posts never expire. Then the settings above are only valid for posts you received.')],
845                 ],
846
847                 '$h_not'        => DI::l10n()->t('Notification Settings'),
848                 '$lbl_not'      => DI::l10n()->t('Send a notification email when:'),
849                 '$notify1'      => ['notify1', DI::l10n()->t('You receive an introduction'), ($notify & Notification\Type::INTRO), Notification\Type::INTRO, ''],
850                 '$notify2'      => ['notify2', DI::l10n()->t('Your introductions are confirmed'), ($notify & Notification\Type::CONFIRM), Notification\Type::CONFIRM, ''],
851                 '$notify3'      => ['notify3', DI::l10n()->t('Someone writes on your profile wall'), ($notify & Notification\Type::WALL), Notification\Type::WALL, ''],
852                 '$notify4'      => ['notify4', DI::l10n()->t('Someone writes a followup comment'), ($notify & Notification\Type::COMMENT), Notification\Type::COMMENT, ''],
853                 '$notify5'      => ['notify5', DI::l10n()->t('You receive a private message'), ($notify & Notification\Type::MAIL), Notification\Type::MAIL, ''],
854                 '$notify6'  => ['notify6', DI::l10n()->t('You receive a friend suggestion'), ($notify & Notification\Type::SUGGEST), Notification\Type::SUGGEST, ''],
855                 '$notify7'  => ['notify7', DI::l10n()->t('You are tagged in a post'), ($notify & Notification\Type::TAG_SELF), Notification\Type::TAG_SELF, ''],
856                 '$notify8'  => ['notify8', DI::l10n()->t('You are poked/prodded/etc. in a post'), ($notify & Notification\Type::POKE), Notification\Type::POKE, ''],
857
858                 '$desktop_notifications' => ['desktop_notifications', DI::l10n()->t('Activate desktop notifications') , false, DI::l10n()->t('Show desktop popup on new notifications')],
859
860                 '$email_textonly' => ['email_textonly', DI::l10n()->t('Text-only notification emails'),
861                                                                         DI::pConfig()->get(local_user(), 'system', 'email_textonly'),
862                                                                         DI::l10n()->t('Send text only notification emails, without the html part')],
863
864                 '$detailed_notif' => ['detailed_notif', DI::l10n()->t('Show detailled notifications'),
865                                                                         DI::pConfig()->get(local_user(), 'system', 'detailed_notif'),
866                                                                         DI::l10n()->t('Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.')],
867
868                 '$notify_ignored' => ['notify_ignored', DI::l10n()->t('Show notifications of ignored contacts') ,
869                                                                         DI::pConfig()->get(local_user(), 'system', 'notify_ignored', true),
870                                                                         DI::l10n()->t("You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not.")],
871
872                                                                         '$h_advn' => DI::l10n()->t('Advanced Account/Page Type Settings'),
873                 '$h_descadvn' => DI::l10n()->t('Change the behaviour of this account for special situations'),
874                 '$pagetype' => $pagetype,
875
876                 '$importcontact' => DI::l10n()->t('Import Contacts'),
877                 '$importcontact_text' => DI::l10n()->t('Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'),
878                 '$importcontact_button' => DI::l10n()->t('Upload File'),
879                 '$importcontact_maxsize' => DI::config()->get('system', 'max_csv_file_size', 30720), 
880                 '$relocate' => DI::l10n()->t('Relocate'),
881                 '$relocate_text' => DI::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."),
882                 '$relocate_button' => DI::l10n()->t("Resend relocate message to contacts"),
883
884         ]);
885
886         Hook::callAll('settings_form', $o);
887
888         $o .= '</form>' . "\r\n";
889
890         return $o;
891
892 }