]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
Merge pull request #927 from annando/master
[friendica.git] / mod / settings.php
1 <?php
2
3
4 function get_theme_config_file($theme){
5         $a = get_app();
6         $base_theme = $a->theme_info['extends'];
7
8         if (file_exists("view/theme/$theme/config.php")){
9                 return "view/theme/$theme/config.php";
10         }
11         if (file_exists("view/theme/$base_theme/config.php")){
12                 return "view/theme/$base_theme/config.php";
13         }
14         return null;
15 }
16
17 function settings_init(&$a) {
18
19         if (function_exists("apc_delete")) {
20                 $toDelete = new APCIterator('user', APC_ITER_VALUE);
21                 apc_delete($toDelete);
22         }
23
24         // These lines provide the javascript needed by the acl selector
25
26         $tpl = get_markup_template("settings-head.tpl");
27         $a->page['htmlhead'] .= replace_macros($tpl,array(
28                 '$ispublic' => t('everybody')
29         ));
30
31
32
33         $tabs = array(
34                 array(
35                         'label' => t('Account settings'),
36                         'url'   => $a->get_baseurl(true).'/settings',
37                         'selected'      => (($a->argc == 1)?'active':''),
38                 ),
39                 array(
40                         'label' => t('Additional features'),
41                         'url'   => $a->get_baseurl(true).'/settings/features',
42                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'features') ? 'active' : ''),
43                 ),
44                 array(
45                         'label' => t('Display settings'),
46                         'url'   => $a->get_baseurl(true).'/settings/display',
47                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
48                 ),
49
50                 array(
51                         'label' => t('Connector settings'),
52                         'url'   => $a->get_baseurl(true).'/settings/connectors',
53                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
54                 ),
55                 array(
56                         'label' => t('Plugin settings'),
57                         'url'   => $a->get_baseurl(true).'/settings/addon',
58                         'selected'      => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
59                 ),
60                 array(
61                         'label' => t('Connected apps'),
62                         'url' => $a->get_baseurl(true) . '/settings/oauth',
63                         'selected' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
64                 ),
65                 array(
66                         'label' => t('Export personal data'),
67                         'url' => $a->get_baseurl(true) . '/uexport',
68                         'selected' => ''
69                 ),
70                 array(
71                         'label' => t('Remove account'),
72                         'url' => $a->get_baseurl(true) . '/removeme',
73                         'selected' => ''
74                 )
75         );
76
77         $tabtpl = get_markup_template("generic_links_widget.tpl");
78         $a->page['aside'] = replace_macros($tabtpl, array(
79                 '$title' => t('Settings'),
80                 '$class' => 'settings-widget',
81                 '$items' => $tabs,
82         ));
83
84 }
85
86
87 function settings_post(&$a) {
88
89         if(! local_user())
90                 return;
91
92         if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
93                 return;
94
95         if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
96                 notice( t('Permission denied.') . EOL);
97                 return;
98         }
99
100         $old_page_flags = $a->user['page-flags'];
101
102         if(($a->argc > 1) && ($a->argv[1] === 'oauth') && x($_POST,'remove')){
103                 check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
104
105                 $key = $_POST['remove'];
106                 q("DELETE FROM tokens WHERE id='%s' AND uid=%d",
107                         dbesc($key),
108                         local_user());
109                 goaway($a->get_baseurl(true)."/settings/oauth/");
110                 return;
111         }
112
113         if(($a->argc > 2) && ($a->argv[1] === 'oauth')  && ($a->argv[2] === 'edit'||($a->argv[2] === 'add')) && x($_POST,'submit')) {
114
115                 check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
116
117                 $name           = ((x($_POST,'name')) ? $_POST['name'] : '');
118                 $key            = ((x($_POST,'key')) ? $_POST['key'] : '');
119                 $secret         = ((x($_POST,'secret')) ? $_POST['secret'] : '');
120                 $redirect       = ((x($_POST,'redirect')) ? $_POST['redirect'] : '');
121                 $icon           = ((x($_POST,'icon')) ? $_POST['icon'] : '');
122                 if ($name=="" || $key=="" || $secret==""){
123                         notice(t("Missing some important data!"));
124
125                 } else {
126                         if ($_POST['submit']==t("Update")){
127                                 $r = q("UPDATE clients SET
128                                                         client_id='%s',
129                                                         pw='%s',
130                                                         name='%s',
131                                                         redirect_uri='%s',
132                                                         icon='%s',
133                                                         uid=%d
134                                                 WHERE client_id='%s'",
135                                                 dbesc($key),
136                                                 dbesc($secret),
137                                                 dbesc($name),
138                                                 dbesc($redirect),
139                                                 dbesc($icon),
140                                                 local_user(),
141                                                 dbesc($key));
142                         } else {
143                                 $r = q("INSERT INTO clients
144                                                         (client_id, pw, name, redirect_uri, icon, uid)
145                                                 VALUES ('%s','%s','%s','%s','%s',%d)",
146                                                 dbesc($key),
147                                                 dbesc($secret),
148                                                 dbesc($name),
149                                                 dbesc($redirect),
150                                                 dbesc($icon),
151                                                 local_user());
152                         }
153                 }
154                 goaway($a->get_baseurl(true)."/settings/oauth/");
155                 return;
156         }
157
158         if(($a->argc > 1) && ($a->argv[1] == 'addon')) {
159                 check_form_security_token_redirectOnErr('/settings/addon', 'settings_addon');
160
161                 call_hooks('plugin_settings_post', $_POST);
162                 return;
163         }
164
165         if(($a->argc > 1) && ($a->argv[1] == 'connectors')) {
166
167                 check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors');
168
169                 if(x($_POST, 'imap-submit')) {
170
171                         $mail_server       = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : '');
172                         $mail_port         = ((x($_POST,'mail_port')) ? $_POST['mail_port'] : '');
173                         $mail_ssl          = ((x($_POST,'mail_ssl')) ? strtolower(trim($_POST['mail_ssl'])) : '');
174                         $mail_user         = ((x($_POST,'mail_user')) ? $_POST['mail_user'] : '');
175                         $mail_pass         = ((x($_POST,'mail_pass')) ? trim($_POST['mail_pass']) : '');
176                         $mail_action       = ((x($_POST,'mail_action')) ? trim($_POST['mail_action']) : '');
177                         $mail_movetofolder = ((x($_POST,'mail_movetofolder')) ? trim($_POST['mail_movetofolder']) : '');
178                         $mail_replyto      = ((x($_POST,'mail_replyto')) ? $_POST['mail_replyto'] : '');
179                         $mail_pubmail      = ((x($_POST,'mail_pubmail')) ? $_POST['mail_pubmail'] : '');
180
181
182                         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
183                         if(get_config('system','dfrn_only'))
184                                 $mail_disabled = 1;
185
186                         if(! $mail_disabled) {
187                                 $failed = false;
188                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
189                                         intval(local_user())
190                                 );
191                                 if(! count($r)) {
192                                         q("INSERT INTO `mailacct` (`uid`) VALUES (%d)",
193                                                 intval(local_user())
194                                         );
195                                 }
196                                 if(strlen($mail_pass)) {
197                                         $pass = '';
198                                         openssl_public_encrypt($mail_pass,$pass,$a->user['pubkey']);
199                                         q("UPDATE `mailacct` SET `pass` = '%s' WHERE `uid` = %d",
200                                                 dbesc(bin2hex($pass)),
201                                                 intval(local_user())
202                                         );
203                                 }
204                                 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
205                                         `action` = %d, `movetofolder` = '%s',
206                                         `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d",
207                                         dbesc($mail_server),
208                                         intval($mail_port),
209                                         dbesc($mail_ssl),
210                                         dbesc($mail_user),
211                                         intval($mail_action),
212                                         dbesc($mail_movetofolder),
213                                         dbesc($mail_replyto),
214                                         intval($mail_pubmail),
215                                         intval(local_user())
216                                 );
217                                 logger("mail: updating mailaccount. Response: ".print_r($r, true));
218                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
219                                         intval(local_user())
220                                 );
221                                 if(count($r)) {
222                                         $eacct = $r[0];
223                                         require_once('include/email.php');
224                                         $mb = construct_mailbox_name($eacct);
225                                         if(strlen($eacct['server'])) {
226                                                 $dcrpass = '';
227                                                 openssl_private_decrypt(hex2bin($eacct['pass']),$dcrpass,$a->user['prvkey']);
228                                                 $mbox = email_connect($mb,$mail_user,$dcrpass);
229                                                 unset($dcrpass);
230                                                 if(! $mbox) {
231                                                         $failed = true;
232                                                         notice( t('Failed to connect with email account using the settings provided.') . EOL);
233                                                 }
234                                         }
235                                 }
236                                 if(! $failed)
237                                         info( t('Email settings updated.') . EOL);
238                         }
239                 }
240
241                 call_hooks('connector_settings_post', $_POST);
242                 return;
243         }
244
245         if(($a->argc > 1) && ($a->argv[1] === 'features')) {
246                 check_form_security_token_redirectOnErr('/settings/features', 'settings_features');
247                 foreach($_POST as $k => $v) {
248                         if(strpos($k,'feature_') === 0) {
249                                 set_pconfig(local_user(),'feature',substr($k,8),((intval($v)) ? 1 : 0));
250                         }
251                 }
252                 info( t('Features updated') . EOL);
253                 return;
254         }
255
256         if(($a->argc > 1) && ($a->argv[1] === 'display')) {
257
258                 check_form_security_token_redirectOnErr('/settings/display', 'settings_display');
259
260                 $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme']))  : $a->user['theme']);
261                 $mobile_theme = ((x($_POST,'mobile_theme')) ? notags(trim($_POST['mobile_theme']))  : '');
262                 $nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile'])  : 0);
263                 $infinite_scroll = ((x($_POST,'infinite_scroll')) ? intval($_POST['infinite_scroll'])  : 0);
264                 $browser_update   = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0);
265                 $browser_update   = $browser_update * 1000;
266                 if($browser_update < 10000)
267                         $browser_update = 10000;
268
269                 $itemspage_network   = ((x($_POST,'itemspage_network')) ? intval($_POST['itemspage_network']) : 40);
270                 if($itemspage_network > 100)
271                         $itemspage_network = 100;
272                 $itemspage_mobile_network   = ((x($_POST,'itemspage_mobile_network')) ? intval($_POST['itemspage_mobile_network']) : 20);
273                 if($itemspage_mobile_network > 100)
274                         $itemspage_mobile_network = 100;
275
276
277                 if($mobile_theme !== '') {
278                         set_pconfig(local_user(),'system','mobile_theme',$mobile_theme);
279                 }
280
281                 set_pconfig(local_user(),'system','update_interval', $browser_update);
282                 set_pconfig(local_user(),'system','itemspage_network', $itemspage_network);
283                 set_pconfig(local_user(),'system','itemspage_mobile_network', $itemspage_mobile_network);
284                 set_pconfig(local_user(),'system','no_smilies',$nosmile);
285                 set_pconfig(local_user(),'system','infinite_scroll',$infinite_scroll);
286
287
288                 if ($theme == $a->user['theme']){
289                         // call theme_post only if theme has not been changed
290                         if( ($themeconfigfile = get_theme_config_file($theme)) != null){
291                                 require_once($themeconfigfile);
292                                 theme_post($a);
293                         }
294                 }
295
296
297                 $r = q("UPDATE `user` SET `theme` = '%s' WHERE `uid` = %d",
298                                 dbesc($theme),
299                                 intval(local_user())
300                 );
301
302                 call_hooks('display_settings_post', $_POST);
303                 goaway($a->get_baseurl(true) . '/settings/display' );
304                 return; // NOTREACHED
305         }
306
307         check_form_security_token_redirectOnErr('/settings', 'settings');
308
309         if (x($_POST,'resend_relocate')) {
310                 proc_run('php', 'include/notifier.php', 'relocate', local_user());
311                 info(t("Relocate message has been send to your contacts"));
312                 goaway($a->get_baseurl(true) . '/settings');
313         }
314
315         call_hooks('settings_post', $_POST);
316
317         if((x($_POST,'password')) || (x($_POST,'confirm'))) {
318
319                 $newpass = $_POST['password'];
320                 $confirm = $_POST['confirm'];
321                 $oldpass = hash('whirlpool', $_POST['opassword']);
322
323                 $err = false;
324                 if($newpass != $confirm ) {
325                         notice( t('Passwords do not match. Password unchanged.') . EOL);
326                         $err = true;
327                 }
328
329                 if((! x($newpass)) || (! x($confirm))) {
330                         notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
331                         $err = true;
332         }
333
334         //  check if the old password was supplied correctly before
335         //  changing it to the new value
336         $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
337         if( $oldpass != $r[0]['password'] ) {
338             notice( t('Wrong password.') . EOL);
339             $err = true;
340         }
341
342                 if(! $err) {
343                         $password = hash('whirlpool',$newpass);
344                         $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d",
345                                 dbesc($password),
346                                 intval(local_user())
347                         );
348                         if($r)
349                                 info( t('Password changed.') . EOL);
350                         else
351                                 notice( t('Password update failed. Please try again.') . EOL);
352                 }
353         }
354
355
356         $username         = ((x($_POST,'username'))   ? notags(trim($_POST['username']))     : '');
357         $email            = ((x($_POST,'email'))      ? notags(trim($_POST['email']))        : '');
358         $timezone         = ((x($_POST,'timezone'))   ? notags(trim($_POST['timezone']))     : '');
359         $defloc           = ((x($_POST,'defloc'))     ? notags(trim($_POST['defloc']))       : '');
360         $openid           = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url']))   : '');
361         $maxreq           = ((x($_POST,'maxreq'))     ? intval($_POST['maxreq'])             : 0);
362         $expire           = ((x($_POST,'expire'))     ? intval($_POST['expire'])             : 0);
363         $def_gid          = ((x($_POST,'group-selection')) ? intval($_POST['group-selection']) : 0);
364
365
366         $expire_items     = ((x($_POST,'expire_items')) ? intval($_POST['expire_items'])         : 0);
367         $expire_notes     = ((x($_POST,'expire_notes')) ? intval($_POST['expire_notes'])         : 0);
368         $expire_starred   = ((x($_POST,'expire_starred')) ? intval($_POST['expire_starred']) : 0);
369         $expire_photos    = ((x($_POST,'expire_photos'))? intval($_POST['expire_photos'])        : 0);
370         $expire_network_only    = ((x($_POST,'expire_network_only'))? intval($_POST['expire_network_only'])      : 0);
371
372         $allow_location   = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
373         $publish          = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
374         $net_publish      = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
375         $old_visibility   = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
376         $page_flags       = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
377         $blockwall        = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
378         $blocktags        = (((x($_POST,'blocktags')) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
379         $unkmail          = (((x($_POST,'unkmail')) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
380         $cntunkmail       = ((x($_POST,'cntunkmail')) ? intval($_POST['cntunkmail']) : 0);
381         $suggestme        = ((x($_POST,'suggestme')) ? intval($_POST['suggestme'])  : 0);
382         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
383         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
384         $post_newfriend   = (($_POST['post_newfriend'] == 1) ? 1: 0);
385         $post_joingroup   = (($_POST['post_joingroup'] == 1) ? 1: 0);
386         $post_profilechange   = (($_POST['post_profilechange'] == 1) ? 1: 0);
387
388         $notify = 0;
389
390         if(x($_POST,'notify1'))
391                 $notify += intval($_POST['notify1']);
392         if(x($_POST,'notify2'))
393                 $notify += intval($_POST['notify2']);
394         if(x($_POST,'notify3'))
395                 $notify += intval($_POST['notify3']);
396         if(x($_POST,'notify4'))
397                 $notify += intval($_POST['notify4']);
398         if(x($_POST,'notify5'))
399                 $notify += intval($_POST['notify5']);
400         if(x($_POST,'notify6'))
401                 $notify += intval($_POST['notify6']);
402         if(x($_POST,'notify7'))
403                 $notify += intval($_POST['notify7']);
404         if(x($_POST,'notify8'))
405                 $notify += intval($_POST['notify8']);
406
407         $email_changed = false;
408
409         $err = '';
410
411         $name_change = false;
412
413         if($username != $a->user['username']) {
414                 $name_change = true;
415                 if(strlen($username) > 40)
416                         $err .= t(' Please use a shorter name.');
417                 if(strlen($username) < 3)
418                         $err .= t(' Name too short.');
419         }
420
421         if($email != $a->user['email']) {
422                 $email_changed = true;
423                 //  check for the correct password
424                 $r = q("SELECT `password` FROM `user`WHERE `uid` = %d LIMIT 1", intval(local_user()));
425                 $password = hash('whirlpool', $_POST['mpassword']);
426                 if ($password != $r[0]['password']) {
427                         $err .= t('Wrong Password') . EOL;
428                         $email = $a->user['email'];
429                 }
430                 //  check the email is valid
431                 if(! valid_email($email))
432                         $err .= t(' Not valid email.');
433                 //  ensure new email is not the admin mail
434                 //if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
435                 if(x($a->config,'admin_email')) {
436                         $adminlist = explode(",", str_replace(" ", "", strtolower($a->config['admin_email'])));
437                         if (in_array(strtolower($email), $adminlist)) {
438                                 $err .= t(' Cannot change to that email.');
439                                 $email = $a->user['email'];
440                         }
441                 }
442         }
443
444         if(strlen($err)) {
445                 notice($err . EOL);
446                 return;
447         }
448
449         if($timezone != $a->user['timezone']) {
450                 if(strlen($timezone))
451                         date_default_timezone_set($timezone);
452         }
453
454         $str_group_allow   = perms2str($_POST['group_allow']);
455         $str_contact_allow = perms2str($_POST['contact_allow']);
456         $str_group_deny    = perms2str($_POST['group_deny']);
457         $str_contact_deny  = perms2str($_POST['contact_deny']);
458
459         $openidserver = $a->user['openidserver'];
460         $openid = normalise_openid($openid);
461
462         // If openid has changed or if there's an openid but no openidserver, try and discover it.
463
464         if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
465                 $tmp_str = $openid;
466                 if(strlen($tmp_str) && validate_url($tmp_str)) {
467                         logger('updating openidserver');
468                         require_once('library/openid.php');
469                         $open_id_obj = new LightOpenID;
470                         $open_id_obj->identity = $openid;
471                         $openidserver = $open_id_obj->discover($open_id_obj->identity);
472                 }
473                 else
474                         $openidserver = '';
475         }
476
477         set_pconfig(local_user(),'expire','items', $expire_items);
478         set_pconfig(local_user(),'expire','notes', $expire_notes);
479         set_pconfig(local_user(),'expire','starred', $expire_starred);
480         set_pconfig(local_user(),'expire','photos', $expire_photos);
481         set_pconfig(local_user(),'expire','network_only', $expire_network_only);
482
483         set_pconfig(local_user(),'system','suggestme', $suggestme);
484         set_pconfig(local_user(),'system','post_newfriend', $post_newfriend);
485         set_pconfig(local_user(),'system','post_joingroup', $post_joingroup);
486         set_pconfig(local_user(),'system','post_profilechange', $post_profilechange);
487
488
489         if($page_flags == PAGE_PRVGROUP) {
490                 $hidewall = 1;
491                 if((! $str_contact_allow) && (! $str_group_allow) && (! $str_contact_deny) && (! $str_group_deny)) {
492                         if($def_gid) {
493                                 info( t('Private forum has no privacy permissions. Using default privacy group.'). EOL);
494                                 $str_group_allow = '<' . $def_gid . '>';
495                         }
496                         else {
497                                 notice( t('Private forum has no privacy permissions and no default privacy group.') . EOL);
498                         } 
499                 }
500         }
501
502         $r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s',  `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `def_gid` = %d, `blockwall` = %d, `hidewall` = %d, `blocktags` = %d, `unkmail` = %d, `cntunkmail` = %d  WHERE `uid` = %d",
503                         dbesc($username),
504                         dbesc($email),
505                         dbesc($openid),
506                         dbesc($timezone),
507                         dbesc($str_contact_allow),
508                         dbesc($str_group_allow),
509                         dbesc($str_contact_deny),
510                         dbesc($str_group_deny),
511                         intval($notify),
512                         intval($page_flags),
513                         dbesc($defloc),
514                         intval($allow_location),
515                         intval($maxreq),
516                         intval($expire),
517                         dbesc($openidserver),
518                         intval($def_gid),
519                         intval($blockwall),
520                         intval($hidewall),
521                         intval($blocktags),
522                         intval($unkmail),
523                         intval($cntunkmail),
524                         intval(local_user())
525         );
526         if($r)
527                 info( t('Settings updated.') . EOL);
528
529         $r = q("UPDATE `profile`
530                 SET `publish` = %d,
531                 `name` = '%s',
532                 `net-publish` = %d,
533                 `hide-friends` = %d
534                 WHERE `is-default` = 1 AND `uid` = %d",
535                 intval($publish),
536                 dbesc($username),
537                 intval($net_publish),
538                 intval($hide_friends),
539                 intval(local_user())
540         );
541
542
543         if($name_change) {
544                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1",
545                         dbesc($username),
546                         dbesc(datetime_convert()),
547                         intval(local_user())
548                 );
549         }
550
551         if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
552                 // Update global directory in background
553                 $url = $_SESSION['my_url'];
554                 if($url && strlen(get_config('system','directory_submit_url')))
555                         proc_run('php',"include/directory.php","$url");
556
557         }
558
559
560         require_once('include/profile_update.php');
561         profile_change();
562
563         //$_SESSION['theme'] = $theme;
564         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
565
566                 // FIXME - set to un-verified, blocked and redirect to logout
567                 // Why? Are we verifying people or email addresses?
568
569         }
570
571         goaway($a->get_baseurl(true) . '/settings' );
572         return; // NOTREACHED
573 }
574
575
576 if(! function_exists('settings_content')) {
577 function settings_content(&$a) {
578
579         $o = '';
580         nav_set_selected('settings');
581
582         if(! local_user()) {
583                 notice( t('Permission denied.') . EOL );
584                 return;
585         }
586
587         if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
588                 notice( t('Permission denied.') . EOL );
589                 return;
590         }
591         
592
593                 
594         if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
595                 
596                 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
597                         $tpl = get_markup_template("settings_oauth_edit.tpl");
598                         $o .= replace_macros($tpl, array(
599                                 '$form_security_token' => get_form_security_token("settings_oauth"),
600                                 '$title'        => t('Add application'),
601                                 '$submit'       => t('Save Settings'),
602                                 '$cancel'       => t('Cancel'),
603                                 '$name'         => array('name', t('Name'), '', ''),
604                                 '$key'          => array('key', t('Consumer Key'), '', ''),
605                                 '$secret'       => array('secret', t('Consumer Secret'), '', ''),
606                                 '$redirect'     => array('redirect', t('Redirect'), '', ''),
607                                 '$icon'         => array('icon', t('Icon url'), '', ''),
608                         ));
609                         return $o;
610                 }
611                 
612                 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
613                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
614                                         dbesc($a->argv[3]),
615                                         local_user());
616                         
617                         if (!count($r)){
618                                 notice(t("You can't edit this application."));
619                                 return;
620                         }
621                         $app = $r[0];
622                         
623                         $tpl = get_markup_template("settings_oauth_edit.tpl");
624                         $o .= replace_macros($tpl, array(
625                                 '$form_security_token' => get_form_security_token("settings_oauth"),
626                                 '$title'        => t('Add application'),
627                                 '$submit'       => t('Update'),
628                                 '$cancel'       => t('Cancel'),
629                                 '$name'         => array('name', t('Name'), $app['name'] , ''),
630                                 '$key'          => array('key', t('Consumer Key'), $app['client_id'], ''),
631                                 '$secret'       => array('secret', t('Consumer Secret'), $app['pw'], ''),
632                                 '$redirect'     => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
633                                 '$icon'         => array('icon', t('Icon url'), $app['icon'], ''),
634                         ));
635                         return $o;
636                 }
637                 
638                 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
639                         check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth', 't');
640                 
641                         $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
642                                         dbesc($a->argv[3]),
643                                         local_user());
644                         goaway($a->get_baseurl(true)."/settings/oauth/");
645                         return;                 
646                 }
647                 
648                 
649                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my 
650                                 FROM clients
651                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
652                                 WHERE clients.uid IN (%d,0)",
653                                 local_user(),
654                                 local_user());
655
656
657                 $tpl = get_markup_template("settings_oauth.tpl");
658                 $o .= replace_macros($tpl, array(
659                         '$form_security_token' => get_form_security_token("settings_oauth"),
660                         '$baseurl'      => $a->get_baseurl(true),
661                         '$title'        => t('Connected Apps'),
662                         '$add'          => t('Add application'),
663                         '$edit'         => t('Edit'),
664                         '$delete'               => t('Delete'),
665                         '$consumerkey' => t('Client key starts with'),
666                         '$noname'       => t('No name'),
667                         '$remove'       => t('Remove authorization'),
668                         '$apps'         => $r,
669                 ));
670                 return $o;
671
672         }
673
674         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
675                 $settings_addons = "";
676
677                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
678                 if(! count($r))
679                         $settings_addons = t('No Plugin settings configured');
680
681                 call_hooks('plugin_settings', $settings_addons);
682
683
684                 $tpl = get_markup_template("settings_addons.tpl");
685                 $o .= replace_macros($tpl, array(
686                         '$form_security_token' => get_form_security_token("settings_addon"),
687                         '$title'        => t('Plugin Settings'),
688                         '$settings_addons' => $settings_addons
689                 ));
690                 return $o;
691         }
692
693         if(($a->argc > 1) && ($a->argv[1] === 'features')) {
694
695                 $arr = array();
696                 $features = get_features();
697                 foreach($features as $fname => $fdata) {
698                         $arr[$fname] = array();
699                         $arr[$fname][0] = $fdata[0];
700                         foreach(array_slice($fdata,1) as $f) {
701                                 $arr[$fname][1][] = array('feature_' .$f[0],$f[1],((intval(get_pconfig(local_user(),'feature',$f[0]))) ? "1" : ''),$f[2],array(t('Off'),t('On')));
702                         }
703                 }
704
705
706                 $tpl = get_markup_template("settings_features.tpl");
707                 $o .= replace_macros($tpl, array(
708                         '$form_security_token' => get_form_security_token("settings_features"),
709                         '$title'        => t('Additional Features'),
710                         '$features' => $arr,
711                         '$submit'   => t('Save Settings'),
712                 ));
713                 return $o;
714         }
715
716         if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
717
718                 $settings_connectors = "";
719
720                 call_hooks('connector_settings', $settings_connectors);
721
722                 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
723                 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
724
725                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
726                 if(get_config('system','dfrn_only'))
727                         $mail_disabled = 1;
728
729                 if(! $mail_disabled) {
730                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
731                                 local_user()
732                         );
733                 }
734                 else {
735                         $r = null;
736                 }
737
738                 $mail_server       = ((count($r)) ? $r[0]['server'] : '');
739                 $mail_port         = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
740                 $mail_ssl          = ((count($r)) ? $r[0]['ssltype'] : '');
741                 $mail_user         = ((count($r)) ? $r[0]['user'] : '');
742                 $mail_replyto      = ((count($r)) ? $r[0]['reply_to'] : '');
743                 $mail_pubmail      = ((count($r)) ? $r[0]['pubmail'] : 0);
744                 $mail_action       = ((count($r)) ? $r[0]['action'] : 0);
745                 $mail_movetofolder = ((count($r)) ? $r[0]['movetofolder'] : '');
746                 $mail_chk          = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
747
748
749                 $tpl = get_markup_template("settings_connectors.tpl");
750
751                 if(! service_class_allows(local_user(),'email_connect')) {
752                         $mail_disabled_message = upgrade_bool_message();
753                 }
754                 else {
755                         $mail_disabled_message = (($mail_disabled) ? t('Email access is disabled on this site.') : '');
756                 }
757         
758
759                 $o .= replace_macros($tpl, array(
760                         '$form_security_token' => get_form_security_token("settings_connectors"),
761                         
762                         '$title'        => t('Connector Settings'),
763
764                         '$diasp_enabled' => $diasp_enabled,
765                         '$ostat_enabled' => $ostat_enabled,
766
767                         '$h_imap' => t('Email/Mailbox Setup'),
768                         '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
769                         '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
770                         '$mail_disabled' => $mail_disabled_message,
771                         '$mail_server'  => array('mail_server',  t('IMAP server name:'), $mail_server, ''),
772                         '$mail_port'    => array('mail_port',    t('IMAP port:'), $mail_port, ''),
773                         '$mail_ssl'             => array('mail_ssl',     t('Security:'), strtoupper($mail_ssl), '', array( 'notls'=>t('None'), 'TLS'=>'TLS', 'SSL'=>'SSL')),
774                         '$mail_user'    => array('mail_user',    t('Email login name:'), $mail_user, ''),
775                         '$mail_pass'    => array('mail_pass',    t('Email password:'), '', ''),
776                         '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), $mail_replyto, 'Optional'),
777                         '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
778                         '$mail_action'  => array('mail_action',  t('Action after import:'), $mail_action, '', array(0=>t('None'), /*1=>t('Delete'),*/ 2=>t('Mark as seen'), 3=>t('Move to folder'))),
779                         '$mail_movetofolder'    => array('mail_movetofolder',    t('Move to folder:'), $mail_movetofolder, ''),
780                         '$submit' => t('Save Settings'),
781
782                         '$settings_connectors' => $settings_connectors
783                 ));
784
785                 call_hooks('display_settings', $o);
786                 return $o;
787         }
788
789         /*
790          * DISPLAY SETTINGS
791          */
792         if(($a->argc > 1) && ($a->argv[1] === 'display')) {
793                 $default_theme = get_config('system','theme');
794                 if(! $default_theme)
795                         $default_theme = 'default';
796                 $default_mobile_theme = get_config('system','mobile-theme');
797                 if(! $mobile_default_theme)
798                         $mobile_default_theme = 'none';
799
800                 $allowed_themes_str = get_config('system','allowed_themes');
801                 $allowed_themes_raw = explode(',',$allowed_themes_str);
802                 $allowed_themes = array();
803                 if(count($allowed_themes_raw))
804                         foreach($allowed_themes_raw as $x) 
805                                 if(strlen(trim($x)) && is_dir("view/theme/$x"))
806                                         $allowed_themes[] = trim($x);
807
808                 
809                 $themes = array();
810                 $mobile_themes = array("---" => t('No special theme for mobile devices'));
811                 $files = glob('view/theme/*');
812                 if($allowed_themes) {
813                         foreach($allowed_themes as $th) {
814                                 $f = $th;
815                                 $is_experimental = file_exists('view/theme/' . $th . '/experimental');
816                                 $unsupported = file_exists('view/theme/' . $th . '/unsupported');
817                                 $is_mobile = file_exists('view/theme/' . $th . '/mobile');
818                                 if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ 
819                                         $theme_name = (($is_experimental) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
820                                         if($is_mobile) {
821                                                 $mobile_themes[$f]=$theme_name;
822                                         }
823                                         else {
824                                                 $themes[$f]=$theme_name;
825                                         }
826                                 }
827                         }
828                 }
829                 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
830                 $mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']);
831
832                 $browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
833                 $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
834
835                 $itemspage_network = intval(get_pconfig(local_user(), 'system','itemspage_network'));
836                 $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
837                 $itemspage_mobile_network = intval(get_pconfig(local_user(), 'system','itemspage_mobile_network'));
838                 $itemspage_mobile_network = (($itemspage_mobile_network > 0 && $itemspage_mobile_network < 101) ? $itemspage_mobile_network : 20); // default if not set: 20 items
839
840                 $nosmile = get_pconfig(local_user(),'system','no_smilies');
841                 $nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0
842
843                 $infinite_scroll = get_pconfig(local_user(),'system','infinite_scroll');
844                 $infinite_scroll = (($infinite_scroll===false)? '0': $infinite_scroll); // default if not set: 0
845
846                 $theme_config = "";
847                 if( ($themeconfigfile = get_theme_config_file($theme_selected)) != null){
848                         require_once($themeconfigfile);
849                         $theme_config = theme_content($a);
850                 }
851
852                 $tpl = get_markup_template("settings_display.tpl");
853                 $o = replace_macros($tpl, array(
854                         '$ptitle'       => t('Display Settings'),
855                         '$form_security_token' => get_form_security_token("settings_display"),
856                         '$submit'       => t('Save Settings'),
857                         '$baseurl' => $a->get_baseurl(true),
858                         '$uid' => local_user(),
859
860                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes, true),
861                         '$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false),
862                         '$ajaxint'   => array('browser_update',  t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
863                         '$itemspage_network'   => array('itemspage_network',  t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')),
864                         '$itemspage_mobile_network'   => array('itemspage_mobile_network',  t("Number of items to display per page when viewed from mobile device:"), $itemspage_mobile_network, t('Maximum of 100 items')),
865                         '$nosmile'      => array('nosmile', t("Don't show emoticons"), $nosmile, ''),
866                         '$infinite_scroll'      => array('infinite_scroll', t("Infinite scroll"), $infinite_scroll, ''),
867
868                         '$theme_config' => $theme_config,
869                 ));
870
871                 $tpl = get_markup_template("settings_display_end.tpl");
872                 $a->page['end'] .= replace_macros($tpl, array(
873                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes)
874                 ));
875
876                 return $o;
877         }
878
879
880         /*
881          * ACCOUNT SETTINGS
882          */
883
884         require_once('include/acl_selectors.php');
885
886         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
887                 intval(local_user())
888         );
889         if(count($p))
890                 $profile = $p[0];
891
892         $username   = $a->user['username'];
893         $email      = $a->user['email'];
894         $nickname   = $a->user['nickname'];
895         $timezone   = $a->user['timezone'];
896         $notify     = $a->user['notify-flags'];
897         $defloc     = $a->user['default-location'];
898         $openid     = $a->user['openid'];
899         $maxreq     = $a->user['maxreq'];
900         $expire     = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
901         $blockwall  = $a->user['blockwall'];
902         $blocktags  = $a->user['blocktags'];
903         $unkmail    = $a->user['unkmail'];
904         $cntunkmail = $a->user['cntunkmail'];
905
906         $expire_items = get_pconfig(local_user(), 'expire','items');
907         $expire_items = (($expire_items===false)? '1' : $expire_items); // default if not set: 1
908         
909         $expire_notes = get_pconfig(local_user(), 'expire','notes');
910         $expire_notes = (($expire_notes===false)? '1' : $expire_notes); // default if not set: 1
911
912         $expire_starred = get_pconfig(local_user(), 'expire','starred');
913         $expire_starred = (($expire_starred===false)? '1' : $expire_starred); // default if not set: 1
914         
915         $expire_photos = get_pconfig(local_user(), 'expire','photos');
916         $expire_photos = (($expire_photos===false)? '0' : $expire_photos); // default if not set: 0
917
918         $expire_network_only = get_pconfig(local_user(), 'expire','network_only');
919         $expire_network_only = (($expire_network_only===false)? '0' : $expire_network_only); // default if not set: 0
920
921
922         $suggestme = get_pconfig(local_user(), 'system','suggestme');
923         $suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
924
925         $post_newfriend = get_pconfig(local_user(), 'system','post_newfriend');
926         $post_newfriend = (($post_newfriend===false)? '0': $post_newfriend); // default if not set: 0
927
928         $post_joingroup = get_pconfig(local_user(), 'system','post_joingroup');
929         $post_joingroup = (($post_joingroup===false)? '0': $post_joingroup); // default if not set: 0
930
931         $post_profilechange = get_pconfig(local_user(), 'system','post_profilechange');
932         $post_profilechange = (($post_profilechange===false)? '0': $post_profilechange); // default if not set: 0
933
934         
935         if(! strlen($a->user['timezone']))
936                 $timezone = date_default_timezone_get();
937
938
939
940         $pageset_tpl = get_markup_template('pagetypes.tpl');
941         $pagetype = replace_macros($pageset_tpl, array(
942                 '$page_normal'  => array('page-flags', t('Normal Account Page'), PAGE_NORMAL, 
943                                                                         t('This account is a normal personal profile'), 
944                                                                         ($a->user['page-flags'] == PAGE_NORMAL)),
945                                                                 
946                 '$page_soapbox'         => array('page-flags', t('Soapbox Page'), PAGE_SOAPBOX, 
947                                                                         t('Automatically approve all connection/friend requests as read-only fans'), 
948                                                                         ($a->user['page-flags'] == PAGE_SOAPBOX)),
949                                                                         
950                 '$page_community'       => array('page-flags', t('Community Forum/Celebrity Account'), PAGE_COMMUNITY, 
951                                                                         t('Automatically approve all connection/friend requests as read-write fans'), 
952                                                                         ($a->user['page-flags'] == PAGE_COMMUNITY)),
953                                                                         
954                 '$page_freelove'        => array('page-flags', t('Automatic Friend Page'), PAGE_FREELOVE, 
955                                                                         t('Automatically approve all connection/friend requests as friends'), 
956                                                                         ($a->user['page-flags'] == PAGE_FREELOVE)),
957
958                 '$page_prvgroup'        => array('page-flags', t('Private Forum [Experimental]'), PAGE_PRVGROUP, 
959                                                                         t('Private forum - approved members only'), 
960                                                                         ($a->user['page-flags'] == PAGE_PRVGROUP)),
961
962
963         ));
964
965         $noid = get_config('system','no_openid');
966
967         if($noid) {
968                 $openid_field = false;
969         }
970         else {
971                 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
972         }
973
974
975         $opt_tpl = get_markup_template("field_yesno.tpl");
976         if(get_config('system','publish_all')) {
977                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
978         }
979         else {
980                 $profile_in_dir = replace_macros($opt_tpl,array(
981                         '$field'        => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
982                 ));
983         }
984
985         if(strlen(get_config('system','directory_submit_url'))) {
986                 $profile_in_net_dir = replace_macros($opt_tpl,array(
987                         '$field'        => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
988                 ));
989         }
990         else
991                 $profile_in_net_dir = '';
992
993
994         $hide_friends = replace_macros($opt_tpl,array(
995                         '$field'        => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
996         ));
997
998         $hide_wall = replace_macros($opt_tpl,array(
999                         '$field'        => array('hidewall',  t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
1000
1001         ));
1002
1003         $blockwall = replace_macros($opt_tpl,array(
1004                         '$field'        => array('blockwall',  t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
1005
1006         ));
1007  
1008
1009         $blocktags = replace_macros($opt_tpl,array(
1010                         '$field'        => array('blocktags',  t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
1011
1012         ));
1013
1014
1015         $suggestme = replace_macros($opt_tpl,array(
1016                         '$field'        => array('suggestme',  t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
1017
1018         ));
1019
1020
1021         $unkmail = replace_macros($opt_tpl,array(
1022                         '$field'        => array('unkmail',  t('Permit unknown people to send you private mail?'), $unkmail, '', array(t('No'),t('Yes'))),
1023
1024         ));
1025
1026         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
1027                 ? true : false);
1028
1029         if($invisible)
1030                 info( t('Profile is <strong>not published</strong>.') . EOL );
1031
1032
1033         $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : '');
1034
1035         $tpl_addr = get_markup_template("settings_nick_set.tpl");
1036
1037         $prof_addr = replace_macros($tpl_addr,array(
1038                 '$desc' => t('Your Identity Address is'),
1039                 '$nickname' => $nickname,
1040                 '$subdir' => $subdir,
1041                 '$basepath' => $a->get_hostname()
1042         ));
1043
1044         $stpl = get_markup_template('settings.tpl');
1045
1046         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
1047
1048         $expire_arr = array(
1049                 'days' => array('expire',  t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
1050                 'advanced' => t('Advanced expiration settings'),
1051                 'label' => t('Advanced Expiration'),
1052                 'items' => array('expire_items',  t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
1053                 'notes' => array('expire_notes',  t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
1054                 'starred' => array('expire_starred',  t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
1055                 'photos' => array('expire_photos',  t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),          
1056                 'network_only' => array('expire_network_only',  t("Only expire posts by others:"), $expire_network_only, '', array(t('No'),t('Yes'))),          
1057         );
1058
1059         require_once('include/group.php');
1060         $group_select = mini_group_select(local_user(),$a->user['def_gid']);
1061
1062
1063         // Private/public post links for the non-JS ACL form
1064         $private_post = 1;
1065         if($_REQUEST['public'])
1066                 $private_post = 0;
1067
1068         $query_str = $a->query_string;
1069         if(strpos($query_str, 'public=1') !== false)
1070                 $query_str = str_replace(array('?public=1', '&public=1'), array('', ''), $query_str);
1071
1072         // I think $a->query_string may never have ? in it, but I could be wrong
1073         // It looks like it's from the index.php?q=[etc] rewrite that the web
1074         // server does, which converts any ? to &, e.g. suggest&ignore=61 for suggest?ignore=61
1075         if(strpos($query_str, '?') === false)
1076                 $public_post_link = '?public=1';
1077         else
1078                 $public_post_link = '&public=1';
1079
1080
1081         $o .= replace_macros($stpl, array(
1082                 '$ptitle'       => t('Account Settings'),
1083
1084                 '$submit'       => t('Save Settings'),
1085                 '$baseurl' => $a->get_baseurl(true),
1086                 '$uid' => local_user(),
1087                 '$form_security_token' => get_form_security_token("settings"),
1088                 '$nickname_block' => $prof_addr,
1089
1090                 '$h_pass'       => t('Password Settings'),
1091                 '$password1'=> array('password', t('New Password:'), '', ''),
1092                 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
1093                 '$password3'=> array('opassword', t('Current Password:'), '', t('Your current password to confirm the changes')),
1094                 '$password4'=> array('mpassword', t('Password:'), '', t('Your current password to confirm the changes')),
1095                 '$oid_enable' => (! get_config('system','no_openid')),
1096                 '$openid'       => $openid_field,
1097
1098                 '$h_basic'      => t('Basic Settings'),
1099                 '$username' => array('username',  t('Full Name:'), $username,''),
1100                 '$email'        => array('email', t('Email Address:'), $email, ''),
1101                 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
1102                 '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
1103                 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
1104
1105
1106                 '$h_prv'        => t('Security and Privacy Settings'),
1107
1108                 '$maxreq'       => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
1109                 '$permissions' => t('Default Post Permissions'),
1110                 '$permdesc' => t("\x28click to open/close\x29"),
1111                 '$visibility' => $profile['net-publish'],
1112                 '$aclselect' => populate_acl($a->user,$celeb),
1113                 '$suggestme' => $suggestme,
1114                 '$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
1115                 '$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
1116
1117                 // ACL permissions box
1118                 '$acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
1119                 '$group_perms' => t('Show to Groups'),
1120                 '$contact_perms' => t('Show to Contacts'),
1121                 '$private' => t('Default Private Post'),
1122                 '$public' => t('Default Public Post'),
1123                 '$is_private' => $private_post,
1124                 '$return_path' => $query_str,
1125                 '$public_link' => $public_post_link,
1126                 '$settings_perms' => t('Default Permissions for New Posts'),
1127
1128                 '$group_select' => $group_select,
1129
1130
1131                 '$expire'       => $expire_arr,
1132
1133                 '$profile_in_dir' => $profile_in_dir,
1134                 '$profile_in_net_dir' => $profile_in_net_dir,
1135                 '$hide_friends' => $hide_friends,
1136                 '$hide_wall' => $hide_wall,
1137                 '$unkmail' => $unkmail,         
1138                 '$cntunkmail'   => array('cntunkmail', t('Maximum private messages per day from unknown people:'), $cntunkmail ,t("\x28to prevent spam abuse\x29")),
1139                 
1140                 
1141                 '$h_not'        => t('Notification Settings'),
1142                 '$activity_options' => t('By default post a status message when:'),
1143                 '$post_newfriend' => array('post_newfriend',  t('accepting a friend request'), $post_newfriend, ''),
1144                 '$post_joingroup' => array('post_joingroup',  t('joining a forum/community'), $post_joingroup, ''),
1145                 '$post_profilechange' => array('post_profilechange',  t('making an <em>interesting</em> profile change'), $post_profilechange, ''),
1146                 '$lbl_not'      => t('Send a notification email when:'),
1147                 '$notify1'      => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
1148                 '$notify2'      => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
1149                 '$notify3'      => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
1150                 '$notify4'      => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
1151                 '$notify5'      => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
1152                 '$notify6'  => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''),          
1153                 '$notify7'  => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''),         
1154                 '$notify8'  => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''),           
1155                 
1156                 
1157                 '$h_advn' => t('Advanced Account/Page Type Settings'),
1158                 '$h_descadvn' => t('Change the behaviour of this account for special situations'),
1159                 '$pagetype' => $pagetype,
1160                 
1161                 '$relocate' => t('Relocate'),
1162                 '$relocate_text' => t("If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."),
1163                 '$relocate_button' => t("Resend relocate message to contacts"),
1164                 
1165         ));
1166
1167         call_hooks('settings_form',$o);
1168
1169         $o .= '</form>' . "\r\n";
1170
1171         return $o;
1172
1173 }}
1174