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