]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
a19c51f7d4ec36196b9c86869ceac6e6e9177584
[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 LIMIT 1",
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 LIMIT 1",
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 LIMIT 1",
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 LIMIT 1",
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                         $err .= t(' Cannot change to that email.');
436                         $email = $a->user['email'];
437                 }
438         }
439
440         if(strlen($err)) {
441                 notice($err . EOL);
442                 return;
443         }
444
445         if($timezone != $a->user['timezone']) {
446                 if(strlen($timezone))
447                         date_default_timezone_set($timezone);
448         }
449
450         $str_group_allow   = perms2str($_POST['group_allow']);
451         $str_contact_allow = perms2str($_POST['contact_allow']);
452         $str_group_deny    = perms2str($_POST['group_deny']);
453         $str_contact_deny  = perms2str($_POST['contact_deny']);
454
455         $openidserver = $a->user['openidserver'];
456         $openid = normalise_openid($openid);
457
458         // If openid has changed or if there's an openid but no openidserver, try and discover it.
459
460         if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
461                 $tmp_str = $openid;
462                 if(strlen($tmp_str) && validate_url($tmp_str)) {
463                         logger('updating openidserver');
464                         require_once('library/openid.php');
465                         $open_id_obj = new LightOpenID;
466                         $open_id_obj->identity = $openid;
467                         $openidserver = $open_id_obj->discover($open_id_obj->identity);
468                 }
469                 else
470                         $openidserver = '';
471         }
472
473         set_pconfig(local_user(),'expire','items', $expire_items);
474         set_pconfig(local_user(),'expire','notes', $expire_notes);
475         set_pconfig(local_user(),'expire','starred', $expire_starred);
476         set_pconfig(local_user(),'expire','photos', $expire_photos);
477         set_pconfig(local_user(),'expire','network_only', $expire_network_only);
478
479         set_pconfig(local_user(),'system','suggestme', $suggestme);
480         set_pconfig(local_user(),'system','post_newfriend', $post_newfriend);
481         set_pconfig(local_user(),'system','post_joingroup', $post_joingroup);
482         set_pconfig(local_user(),'system','post_profilechange', $post_profilechange);
483
484
485         if($page_flags == PAGE_PRVGROUP) {
486                 $hidewall = 1;
487                 if((! $str_contact_allow) && (! $str_group_allow) && (! $str_contact_deny) && (! $str_group_deny)) {
488                         if($def_gid) {
489                                 info( t('Private forum has no privacy permissions. Using default privacy group.'). EOL);
490                                 $str_group_allow = '<' . $def_gid . '>';
491                         }
492                         else {
493                                 notice( t('Private forum has no privacy permissions and no default privacy group.') . EOL);
494                         } 
495                 }
496         }
497
498         $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 LIMIT 1",
499                         dbesc($username),
500                         dbesc($email),
501                         dbesc($openid),
502                         dbesc($timezone),
503                         dbesc($str_contact_allow),
504                         dbesc($str_group_allow),
505                         dbesc($str_contact_deny),
506                         dbesc($str_group_deny),
507                         intval($notify),
508                         intval($page_flags),
509                         dbesc($defloc),
510                         intval($allow_location),
511                         intval($maxreq),
512                         intval($expire),
513                         dbesc($openidserver),
514                         intval($def_gid),
515                         intval($blockwall),
516                         intval($hidewall),
517                         intval($blocktags),
518                         intval($unkmail),
519                         intval($cntunkmail),
520                         intval(local_user())
521         );
522         if($r)
523                 info( t('Settings updated.') . EOL);
524
525         $r = q("UPDATE `profile` 
526                 SET `publish` = %d, 
527                 `name` = '%s',
528                 `net-publish` = %d,
529                 `hide-friends` = %d
530                 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
531                 intval($publish),
532                 dbesc($username),
533                 intval($net_publish),
534                 intval($hide_friends),
535                 intval(local_user())
536         );
537
538
539         if($name_change) {
540                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
541                         dbesc($username),
542                         dbesc(datetime_convert()),
543                         intval(local_user())
544                 );
545         }               
546
547         if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
548                 // Update global directory in background
549                 $url = $_SESSION['my_url'];
550                 if($url && strlen(get_config('system','directory_submit_url')))
551                         proc_run('php',"include/directory.php","$url");
552
553         }
554
555
556         require_once('include/profile_update.php');
557         profile_change();
558
559         //$_SESSION['theme'] = $theme;
560         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
561
562                 // FIXME - set to un-verified, blocked and redirect to logout
563                 // Why? Are we verifying people or email addresses?
564
565         }
566
567         goaway($a->get_baseurl(true) . '/settings' );
568         return; // NOTREACHED
569 }
570                 
571
572 if(! function_exists('settings_content')) {
573 function settings_content(&$a) {
574
575         $o = '';
576         nav_set_selected('settings');
577
578         if(! local_user()) {
579                 notice( t('Permission denied.') . EOL );
580                 return;
581         }
582
583         if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
584                 notice( t('Permission denied.') . EOL );
585                 return;
586         }
587         
588
589                 
590         if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
591                 
592                 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
593                         $tpl = get_markup_template("settings_oauth_edit.tpl");
594                         $o .= replace_macros($tpl, array(
595                                 '$form_security_token' => get_form_security_token("settings_oauth"),
596                                 '$title'        => t('Add application'),
597                                 '$submit'       => t('Save Settings'),
598                                 '$cancel'       => t('Cancel'),
599                                 '$name'         => array('name', t('Name'), '', ''),
600                                 '$key'          => array('key', t('Consumer Key'), '', ''),
601                                 '$secret'       => array('secret', t('Consumer Secret'), '', ''),
602                                 '$redirect'     => array('redirect', t('Redirect'), '', ''),
603                                 '$icon'         => array('icon', t('Icon url'), '', ''),
604                         ));
605                         return $o;
606                 }
607                 
608                 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
609                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
610                                         dbesc($a->argv[3]),
611                                         local_user());
612                         
613                         if (!count($r)){
614                                 notice(t("You can't edit this application."));
615                                 return;
616                         }
617                         $app = $r[0];
618                         
619                         $tpl = get_markup_template("settings_oauth_edit.tpl");
620                         $o .= replace_macros($tpl, array(
621                                 '$form_security_token' => get_form_security_token("settings_oauth"),
622                                 '$title'        => t('Add application'),
623                                 '$submit'       => t('Update'),
624                                 '$cancel'       => t('Cancel'),
625                                 '$name'         => array('name', t('Name'), $app['name'] , ''),
626                                 '$key'          => array('key', t('Consumer Key'), $app['client_id'], ''),
627                                 '$secret'       => array('secret', t('Consumer Secret'), $app['pw'], ''),
628                                 '$redirect'     => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
629                                 '$icon'         => array('icon', t('Icon url'), $app['icon'], ''),
630                         ));
631                         return $o;
632                 }
633                 
634                 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
635                         check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth', 't');
636                 
637                         $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
638                                         dbesc($a->argv[3]),
639                                         local_user());
640                         goaway($a->get_baseurl(true)."/settings/oauth/");
641                         return;                 
642                 }
643                 
644                 
645                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my 
646                                 FROM clients
647                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
648                                 WHERE clients.uid IN (%d,0)",
649                                 local_user(),
650                                 local_user());
651
652
653                 $tpl = get_markup_template("settings_oauth.tpl");
654                 $o .= replace_macros($tpl, array(
655                         '$form_security_token' => get_form_security_token("settings_oauth"),
656                         '$baseurl'      => $a->get_baseurl(true),
657                         '$title'        => t('Connected Apps'),
658                         '$add'          => t('Add application'),
659                         '$edit'         => t('Edit'),
660                         '$delete'               => t('Delete'),
661                         '$consumerkey' => t('Client key starts with'),
662                         '$noname'       => t('No name'),
663                         '$remove'       => t('Remove authorization'),
664                         '$apps'         => $r,
665                 ));
666                 return $o;
667
668         }
669
670         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
671                 $settings_addons = "";
672
673                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
674                 if(! count($r))
675                         $settings_addons = t('No Plugin settings configured');
676
677                 call_hooks('plugin_settings', $settings_addons);
678
679
680                 $tpl = get_markup_template("settings_addons.tpl");
681                 $o .= replace_macros($tpl, array(
682                         '$form_security_token' => get_form_security_token("settings_addon"),
683                         '$title'        => t('Plugin Settings'),
684                         '$settings_addons' => $settings_addons
685                 ));
686                 return $o;
687         }
688
689         if(($a->argc > 1) && ($a->argv[1] === 'features')) {
690
691                 $arr = array();
692                 $features = get_features();
693                 foreach($features as $fname => $fdata) {
694                         $arr[$fname] = array();
695                         $arr[$fname][0] = $fdata[0];
696                         foreach(array_slice($fdata,1) as $f) {
697                                 $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')));
698                         }
699                 }
700
701
702                 $tpl = get_markup_template("settings_features.tpl");
703                 $o .= replace_macros($tpl, array(
704                         '$form_security_token' => get_form_security_token("settings_features"),
705                         '$title'        => t('Additional Features'),
706                         '$features' => $arr,
707                         '$submit'   => t('Save Settings'),
708                 ));
709                 return $o;
710         }
711
712         if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
713
714                 $settings_connectors = "";
715
716                 call_hooks('connector_settings', $settings_connectors);
717
718                 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
719                 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
720
721                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
722                 if(get_config('system','dfrn_only'))
723                         $mail_disabled = 1;
724
725                 if(! $mail_disabled) {
726                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
727                                 local_user()
728                         );
729                 }
730                 else {
731                         $r = null;
732                 }
733
734                 $mail_server       = ((count($r)) ? $r[0]['server'] : '');
735                 $mail_port         = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
736                 $mail_ssl          = ((count($r)) ? $r[0]['ssltype'] : '');
737                 $mail_user         = ((count($r)) ? $r[0]['user'] : '');
738                 $mail_replyto      = ((count($r)) ? $r[0]['reply_to'] : '');
739                 $mail_pubmail      = ((count($r)) ? $r[0]['pubmail'] : 0);
740                 $mail_action       = ((count($r)) ? $r[0]['action'] : 0);
741                 $mail_movetofolder = ((count($r)) ? $r[0]['movetofolder'] : '');
742                 $mail_chk          = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
743
744
745                 $tpl = get_markup_template("settings_connectors.tpl");
746
747                 if(! service_class_allows(local_user(),'email_connect')) {
748                         $mail_disabled_message = upgrade_bool_message();
749                 }
750                 else {
751                         $mail_disabled_message = (($mail_disabled) ? t('Email access is disabled on this site.') : '');
752                 }
753         
754
755                 $o .= replace_macros($tpl, array(
756                         '$form_security_token' => get_form_security_token("settings_connectors"),
757                         
758                         '$title'        => t('Connector Settings'),
759
760                         '$diasp_enabled' => $diasp_enabled,
761                         '$ostat_enabled' => $ostat_enabled,
762
763                         '$h_imap' => t('Email/Mailbox Setup'),
764                         '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
765                         '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
766                         '$mail_disabled' => $mail_disabled_message,
767                         '$mail_server'  => array('mail_server',  t('IMAP server name:'), $mail_server, ''),
768                         '$mail_port'    => array('mail_port',    t('IMAP port:'), $mail_port, ''),
769                         '$mail_ssl'             => array('mail_ssl',     t('Security:'), strtoupper($mail_ssl), '', array( 'notls'=>t('None'), 'TLS'=>'TLS', 'SSL'=>'SSL')),
770                         '$mail_user'    => array('mail_user',    t('Email login name:'), $mail_user, ''),
771                         '$mail_pass'    => array('mail_pass',    t('Email password:'), '', ''),
772                         '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), $mail_replyto, 'Optional'),
773                         '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
774                         '$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'))),
775                         '$mail_movetofolder'    => array('mail_movetofolder',    t('Move to folder:'), $mail_movetofolder, ''),
776                         '$submit' => t('Save Settings'),
777
778                         '$settings_connectors' => $settings_connectors
779                 ));
780
781                 call_hooks('display_settings', $o);
782                 return $o;
783         }
784
785         /*
786          * DISPLAY SETTINGS
787          */
788         if(($a->argc > 1) && ($a->argv[1] === 'display')) {
789                 $default_theme = get_config('system','theme');
790                 if(! $default_theme)
791                         $default_theme = 'default';
792                 $default_mobile_theme = get_config('system','mobile-theme');
793                 if(! $mobile_default_theme)
794                         $mobile_default_theme = 'none';
795
796                 $allowed_themes_str = get_config('system','allowed_themes');
797                 $allowed_themes_raw = explode(',',$allowed_themes_str);
798                 $allowed_themes = array();
799                 if(count($allowed_themes_raw))
800                         foreach($allowed_themes_raw as $x) 
801                                 if(strlen(trim($x)) && is_dir("view/theme/$x"))
802                                         $allowed_themes[] = trim($x);
803
804                 
805                 $themes = array();
806                 $mobile_themes = array("---" => t('No special theme for mobile devices'));
807                 $files = glob('view/theme/*');
808                 if($allowed_themes) {
809                         foreach($allowed_themes as $th) {
810                                 $f = $th;
811                                 $is_experimental = file_exists('view/theme/' . $th . '/experimental');
812                                 $unsupported = file_exists('view/theme/' . $th . '/unsupported');
813                                 $is_mobile = file_exists('view/theme/' . $th . '/mobile');
814                                 if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ 
815                                         $theme_name = (($is_experimental) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
816                                         if($is_mobile) {
817                                                 $mobile_themes[$f]=$theme_name;
818                                         }
819                                         else {
820                                                 $themes[$f]=$theme_name;
821                                         }
822                                 }
823                         }
824                 }
825                 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
826                 $mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']);
827
828                 $browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
829                 $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
830
831                 $itemspage_network = intval(get_pconfig(local_user(), 'system','itemspage_network'));
832                 $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
833                 $itemspage_mobile_network = intval(get_pconfig(local_user(), 'system','itemspage_mobile_network'));
834                 $itemspage_mobile_network = (($itemspage_mobile_network > 0 && $itemspage_mobile_network < 101) ? $itemspage_mobile_network : 20); // default if not set: 20 items
835
836                 $nosmile = get_pconfig(local_user(),'system','no_smilies');
837                 $nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0
838
839                 $infinite_scroll = get_pconfig(local_user(),'system','infinite_scroll');
840                 $infinite_scroll = (($infinite_scroll===false)? '0': $infinite_scroll); // default if not set: 0
841
842                 $theme_config = "";
843                 if( ($themeconfigfile = get_theme_config_file($theme_selected)) != null){
844                         require_once($themeconfigfile);
845                         $theme_config = theme_content($a);
846                 }
847
848                 $tpl = get_markup_template("settings_display.tpl");
849                 $o = replace_macros($tpl, array(
850                         '$ptitle'       => t('Display Settings'),
851                         '$form_security_token' => get_form_security_token("settings_display"),
852                         '$submit'       => t('Save Settings'),
853                         '$baseurl' => $a->get_baseurl(true),
854                         '$uid' => local_user(),
855
856                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes, true),
857                         '$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false),
858                         '$ajaxint'   => array('browser_update',  t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
859                         '$itemspage_network'   => array('itemspage_network',  t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')),
860                         '$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')),
861                         '$nosmile'      => array('nosmile', t("Don't show emoticons"), $nosmile, ''),
862                         '$infinite_scroll'      => array('infinite_scroll', t("Infinite scroll"), $infinite_scroll, ''),
863
864                         '$theme_config' => $theme_config,
865                 ));
866
867                 $tpl = get_markup_template("settings_display_end.tpl");
868                 $a->page['end'] .= replace_macros($tpl, array(
869                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes)
870                 ));
871
872                 return $o;
873         }
874
875
876         /*
877          * ACCOUNT SETTINGS
878          */
879
880         require_once('include/acl_selectors.php');
881
882         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
883                 intval(local_user())
884         );
885         if(count($p))
886                 $profile = $p[0];
887
888         $username   = $a->user['username'];
889         $email      = $a->user['email'];
890         $nickname   = $a->user['nickname'];
891         $timezone   = $a->user['timezone'];
892         $notify     = $a->user['notify-flags'];
893         $defloc     = $a->user['default-location'];
894         $openid     = $a->user['openid'];
895         $maxreq     = $a->user['maxreq'];
896         $expire     = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
897         $blockwall  = $a->user['blockwall'];
898         $blocktags  = $a->user['blocktags'];
899         $unkmail    = $a->user['unkmail'];
900         $cntunkmail = $a->user['cntunkmail'];
901
902         $expire_items = get_pconfig(local_user(), 'expire','items');
903         $expire_items = (($expire_items===false)? '1' : $expire_items); // default if not set: 1
904         
905         $expire_notes = get_pconfig(local_user(), 'expire','notes');
906         $expire_notes = (($expire_notes===false)? '1' : $expire_notes); // default if not set: 1
907
908         $expire_starred = get_pconfig(local_user(), 'expire','starred');
909         $expire_starred = (($expire_starred===false)? '1' : $expire_starred); // default if not set: 1
910         
911         $expire_photos = get_pconfig(local_user(), 'expire','photos');
912         $expire_photos = (($expire_photos===false)? '0' : $expire_photos); // default if not set: 0
913
914         $expire_network_only = get_pconfig(local_user(), 'expire','network_only');
915         $expire_network_only = (($expire_network_only===false)? '0' : $expire_network_only); // default if not set: 0
916
917
918         $suggestme = get_pconfig(local_user(), 'system','suggestme');
919         $suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
920
921         $post_newfriend = get_pconfig(local_user(), 'system','post_newfriend');
922         $post_newfriend = (($post_newfriend===false)? '0': $post_newfriend); // default if not set: 0
923
924         $post_joingroup = get_pconfig(local_user(), 'system','post_joingroup');
925         $post_joingroup = (($post_joingroup===false)? '0': $post_joingroup); // default if not set: 0
926
927         $post_profilechange = get_pconfig(local_user(), 'system','post_profilechange');
928         $post_profilechange = (($post_profilechange===false)? '0': $post_profilechange); // default if not set: 0
929
930         
931         if(! strlen($a->user['timezone']))
932                 $timezone = date_default_timezone_get();
933
934
935
936         $pageset_tpl = get_markup_template('pagetypes.tpl');
937         $pagetype = replace_macros($pageset_tpl, array(
938                 '$page_normal'  => array('page-flags', t('Normal Account Page'), PAGE_NORMAL, 
939                                                                         t('This account is a normal personal profile'), 
940                                                                         ($a->user['page-flags'] == PAGE_NORMAL)),
941                                                                 
942                 '$page_soapbox'         => array('page-flags', t('Soapbox Page'), PAGE_SOAPBOX, 
943                                                                         t('Automatically approve all connection/friend requests as read-only fans'), 
944                                                                         ($a->user['page-flags'] == PAGE_SOAPBOX)),
945                                                                         
946                 '$page_community'       => array('page-flags', t('Community Forum/Celebrity Account'), PAGE_COMMUNITY, 
947                                                                         t('Automatically approve all connection/friend requests as read-write fans'), 
948                                                                         ($a->user['page-flags'] == PAGE_COMMUNITY)),
949                                                                         
950                 '$page_freelove'        => array('page-flags', t('Automatic Friend Page'), PAGE_FREELOVE, 
951                                                                         t('Automatically approve all connection/friend requests as friends'), 
952                                                                         ($a->user['page-flags'] == PAGE_FREELOVE)),
953
954                 '$page_prvgroup'        => array('page-flags', t('Private Forum [Experimental]'), PAGE_PRVGROUP, 
955                                                                         t('Private forum - approved members only'), 
956                                                                         ($a->user['page-flags'] == PAGE_PRVGROUP)),
957
958
959         ));
960
961         $noid = get_config('system','no_openid');
962
963         if($noid) {
964                 $openid_field = false;
965         }
966         else {
967                 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
968         }
969
970
971         $opt_tpl = get_markup_template("field_yesno.tpl");
972         if(get_config('system','publish_all')) {
973                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
974         }
975         else {
976                 $profile_in_dir = replace_macros($opt_tpl,array(
977                         '$field'        => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
978                 ));
979         }
980
981         if(strlen(get_config('system','directory_submit_url'))) {
982                 $profile_in_net_dir = replace_macros($opt_tpl,array(
983                         '$field'        => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
984                 ));
985         }
986         else
987                 $profile_in_net_dir = '';
988
989
990         $hide_friends = replace_macros($opt_tpl,array(
991                         '$field'        => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
992         ));
993
994         $hide_wall = replace_macros($opt_tpl,array(
995                         '$field'        => array('hidewall',  t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
996
997         ));
998
999         $blockwall = replace_macros($opt_tpl,array(
1000                         '$field'        => array('blockwall',  t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
1001
1002         ));
1003  
1004
1005         $blocktags = replace_macros($opt_tpl,array(
1006                         '$field'        => array('blocktags',  t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
1007
1008         ));
1009
1010
1011         $suggestme = replace_macros($opt_tpl,array(
1012                         '$field'        => array('suggestme',  t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
1013
1014         ));
1015
1016
1017         $unkmail = replace_macros($opt_tpl,array(
1018                         '$field'        => array('unkmail',  t('Permit unknown people to send you private mail?'), $unkmail, '', array(t('No'),t('Yes'))),
1019
1020         ));
1021
1022         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
1023                 ? true : false);
1024
1025         if($invisible)
1026                 info( t('Profile is <strong>not published</strong>.') . EOL );
1027
1028
1029         $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : '');
1030
1031         $tpl_addr = get_markup_template("settings_nick_set.tpl");
1032
1033         $prof_addr = replace_macros($tpl_addr,array(
1034                 '$desc' => t('Your Identity Address is'),
1035                 '$nickname' => $nickname,
1036                 '$subdir' => $subdir,
1037                 '$basepath' => $a->get_hostname()
1038         ));
1039
1040         $stpl = get_markup_template('settings.tpl');
1041
1042         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
1043
1044         $expire_arr = array(
1045                 'days' => array('expire',  t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
1046                 'advanced' => t('Advanced expiration settings'),
1047                 'label' => t('Advanced Expiration'),
1048                 'items' => array('expire_items',  t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
1049                 'notes' => array('expire_notes',  t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
1050                 'starred' => array('expire_starred',  t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
1051                 'photos' => array('expire_photos',  t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),          
1052                 'network_only' => array('expire_network_only',  t("Only expire posts by others:"), $expire_network_only, '', array(t('No'),t('Yes'))),          
1053         );
1054
1055         require_once('include/group.php');
1056         $group_select = mini_group_select(local_user(),$a->user['def_gid']);
1057
1058
1059         // Private/public post links for the non-JS ACL form
1060         $private_post = 1;
1061         if($_REQUEST['public'])
1062                 $private_post = 0;
1063
1064         $query_str = $a->query_string;
1065         if(strpos($query_str, 'public=1') !== false)
1066                 $query_str = str_replace(array('?public=1', '&public=1'), array('', ''), $query_str);
1067
1068         // I think $a->query_string may never have ? in it, but I could be wrong
1069         // It looks like it's from the index.php?q=[etc] rewrite that the web
1070         // server does, which converts any ? to &, e.g. suggest&ignore=61 for suggest?ignore=61
1071         if(strpos($query_str, '?') === false)
1072                 $public_post_link = '?public=1';
1073         else
1074                 $public_post_link = '&public=1';
1075
1076
1077         $o .= replace_macros($stpl, array(
1078                 '$ptitle'       => t('Account Settings'),
1079
1080                 '$submit'       => t('Save Settings'),
1081                 '$baseurl' => $a->get_baseurl(true),
1082                 '$uid' => local_user(),
1083                 '$form_security_token' => get_form_security_token("settings"),
1084                 '$nickname_block' => $prof_addr,
1085                 
1086                 '$h_pass'       => t('Password Settings'),
1087                 '$password1'=> array('password', t('New Password:'), '', ''),
1088                 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
1089                 '$password3'=> array('opassword', t('Current Password:'), '', t('Your current password to confirm the changes')),
1090                 '$password4'=> array('mpassword', t('Password:'), '', t('Your current password to confirm the changes')),
1091                 '$oid_enable' => (! get_config('system','no_openid')),
1092                 '$openid'       => $openid_field,
1093                 
1094                 '$h_basic'      => t('Basic Settings'),
1095                 '$username' => array('username',  t('Full Name:'), $username,''),
1096                 '$email'        => array('email', t('Email Address:'), $email, ''),
1097                 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
1098                 '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
1099                 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
1100                 
1101
1102                 '$h_prv'        => t('Security and Privacy Settings'),
1103
1104                 '$maxreq'       => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
1105                 '$permissions' => t('Default Post Permissions'),
1106                 '$permdesc' => t("\x28click to open/close\x29"),
1107                 '$visibility' => $profile['net-publish'],
1108                 '$aclselect' => populate_acl($a->user,$celeb),
1109                 '$suggestme' => $suggestme,
1110                 '$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
1111                 '$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
1112
1113                 // ACL permissions box
1114                 '$acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
1115                 '$group_perms' => t('Show to Groups'),
1116                 '$contact_perms' => t('Show to Contacts'),
1117                 '$private' => t('Default Private Post'),
1118                 '$public' => t('Default Public Post'),
1119                 '$is_private' => $private_post,
1120                 '$return_path' => $query_str,
1121                 '$public_link' => $public_post_link,
1122                 '$settings_perms' => t('Default Permissions for New Posts'),
1123
1124                 '$group_select' => $group_select,
1125
1126
1127                 '$expire'       => $expire_arr,
1128
1129                 '$profile_in_dir' => $profile_in_dir,
1130                 '$profile_in_net_dir' => $profile_in_net_dir,
1131                 '$hide_friends' => $hide_friends,
1132                 '$hide_wall' => $hide_wall,
1133                 '$unkmail' => $unkmail,         
1134                 '$cntunkmail'   => array('cntunkmail', t('Maximum private messages per day from unknown people:'), $cntunkmail ,t("\x28to prevent spam abuse\x29")),
1135                 
1136                 
1137                 '$h_not'        => t('Notification Settings'),
1138                 '$activity_options' => t('By default post a status message when:'),
1139                 '$post_newfriend' => array('post_newfriend',  t('accepting a friend request'), $post_newfriend, ''),
1140                 '$post_joingroup' => array('post_joingroup',  t('joining a forum/community'), $post_joingroup, ''),
1141                 '$post_profilechange' => array('post_profilechange',  t('making an <em>interesting</em> profile change'), $post_profilechange, ''),
1142                 '$lbl_not'      => t('Send a notification email when:'),
1143                 '$notify1'      => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
1144                 '$notify2'      => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
1145                 '$notify3'      => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
1146                 '$notify4'      => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
1147                 '$notify5'      => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
1148                 '$notify6'  => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''),          
1149                 '$notify7'  => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''),         
1150                 '$notify8'  => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''),           
1151                 
1152                 
1153                 '$h_advn' => t('Advanced Account/Page Type Settings'),
1154                 '$h_descadvn' => t('Change the behaviour of this account for special situations'),
1155                 '$pagetype' => $pagetype,
1156                 
1157                 '$relocate' => t('Relocate'),
1158                 '$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."),
1159                 '$relocate_button' => t("Resend relocate message to contacts"),
1160                 
1161         ));
1162
1163         call_hooks('settings_form',$o);
1164
1165         $o .= '</form>' . "\r\n";
1166
1167         return $o;
1168
1169 }}
1170