]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
ce5ceea8255ef62e9040d85abd6e0dd81986f687
[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         if(local_user()) {
19                 profile_load($a,$a->user['nickname']);
20         }
21
22         // These lines provide the javascript needed by the acl selector
23
24         $a->page['htmlhead'] .= "<script> var ispublic = '" . t('everybody') . "';" ;
25
26         $a->page['htmlhead'] .= <<< EOT
27
28         $(document).ready(function() {
29
30                 $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
31                         var selstr;
32                         $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
33                                 selstr = $(this).text();
34                                 $('#jot-perms-icon').removeClass('unlock').addClass('lock');
35                                 $('#jot-public').hide();
36                         });
37                         if(selstr == null) { 
38                                 $('#jot-perms-icon').removeClass('lock').addClass('unlock');
39                                 $('#jot-public').show();
40                         }
41
42                 }).trigger('change');
43
44         });
45
46         </script>
47 EOT;
48
49
50 }
51
52
53 function settings_post(&$a) {
54
55         if(! local_user())
56                 return;
57
58         if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
59                 return;
60
61         if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
62                 notice( t('Permission denied.') . EOL);
63                 return;
64         }
65
66         $old_page_flags = $a->user['page-flags'];
67
68         if(($a->argc > 1) && ($a->argv[1] === 'oauth') && x($_POST,'remove')){
69                 check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
70                 
71                 $key = $_POST['remove'];
72                 q("DELETE FROM tokens WHERE id='%s' AND uid=%d",
73                         dbesc($key),
74                         local_user());
75                 goaway($a->get_baseurl(true)."/settings/oauth/");
76                 return;                 
77         }
78
79         if(($a->argc > 2) && ($a->argv[1] === 'oauth')  && ($a->argv[2] === 'edit'||($a->argv[2] === 'add')) && x($_POST,'submit')) {
80                 
81                 check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
82                 
83                 $name           = ((x($_POST,'name')) ? $_POST['name'] : '');
84                 $key            = ((x($_POST,'key')) ? $_POST['key'] : '');
85                 $secret         = ((x($_POST,'secret')) ? $_POST['secret'] : '');
86                 $redirect       = ((x($_POST,'redirect')) ? $_POST['redirect'] : '');
87                 $icon           = ((x($_POST,'icon')) ? $_POST['icon'] : '');
88                 if ($name=="" || $key=="" || $secret==""){
89                         notice(t("Missing some important data!"));
90                         
91                 } else {
92                         if ($_POST['submit']==t("Update")){
93                                 $r = q("UPDATE clients SET
94                                                         client_id='%s',
95                                                         pw='%s',
96                                                         name='%s',
97                                                         redirect_uri='%s',
98                                                         icon='%s',
99                                                         uid=%d
100                                                 WHERE client_id='%s'",
101                                                 dbesc($key),
102                                                 dbesc($secret),
103                                                 dbesc($name),
104                                                 dbesc($redirect),
105                                                 dbesc($icon),
106                                                 local_user(),
107                                                 dbesc($key));
108                         } else {
109                                 $r = q("INSERT INTO clients
110                                                         (client_id, pw, name, redirect_uri, icon, uid)
111                                                 VALUES ('%s','%s','%s','%s','%s',%d)",
112                                                 dbesc($key),
113                                                 dbesc($secret),
114                                                 dbesc($name),
115                                                 dbesc($redirect),
116                                                 dbesc($icon),
117                                                 local_user());
118                         }
119                 }
120                 goaway($a->get_baseurl(true)."/settings/oauth/");
121                 return;
122         }
123
124         if(($a->argc > 1) && ($a->argv[1] == 'addon')) {
125                 check_form_security_token_redirectOnErr('/settings/addon', 'settings_addon');
126                 
127                 call_hooks('plugin_settings_post', $_POST);
128                 return;
129         }
130
131         if(($a->argc > 1) && ($a->argv[1] == 'connectors')) {
132                 
133                 check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors');
134                 
135                 if(x($_POST, 'imap-submit')) {
136                         
137                         $mail_server       = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : '');
138                         $mail_port         = ((x($_POST,'mail_port')) ? $_POST['mail_port'] : '');
139                         $mail_ssl          = ((x($_POST,'mail_ssl')) ? strtolower(trim($_POST['mail_ssl'])) : '');
140                         $mail_user         = ((x($_POST,'mail_user')) ? $_POST['mail_user'] : '');
141                         $mail_pass         = ((x($_POST,'mail_pass')) ? trim($_POST['mail_pass']) : '');
142                         $mail_action       = ((x($_POST,'mail_action')) ? trim($_POST['mail_action']) : '');
143                         $mail_movetofolder = ((x($_POST,'mail_movetofolder')) ? trim($_POST['mail_movetofolder']) : '');
144                         $mail_replyto      = ((x($_POST,'mail_replyto')) ? $_POST['mail_replyto'] : '');
145                         $mail_pubmail      = ((x($_POST,'mail_pubmail')) ? $_POST['mail_pubmail'] : '');
146
147
148                         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
149                         if(get_config('system','dfrn_only'))
150                                 $mail_disabled = 1;
151
152                         if(! $mail_disabled) {
153                                 $failed = false;
154                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
155                                         intval(local_user())
156                                 );
157                                 if(! count($r)) {
158                                         q("INSERT INTO `mailacct` (`uid`) VALUES (%d)",
159                                                 intval(local_user())
160                                         );
161                                 }
162                                 if(strlen($mail_pass)) {
163                                         $pass = '';
164                                         openssl_public_encrypt($mail_pass,$pass,$a->user['pubkey']);
165                                         q("UPDATE `mailacct` SET `pass` = '%s' WHERE `uid` = %d LIMIT 1",
166                                                 dbesc(bin2hex($pass)),
167                                                 intval(local_user())
168                                         );
169                                 }
170                                 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
171                                         `action` = %d, `movetofolder` = '%s',
172                                         `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d LIMIT 1",
173                                         dbesc($mail_server),
174                                         intval($mail_port),
175                                         dbesc($mail_ssl),
176                                         dbesc($mail_user),
177                                         intval($mail_action),
178                                         dbesc($mail_movetofolder),
179                                         dbesc($mail_replyto),
180                                         intval($mail_pubmail),
181                                         intval(local_user())
182                                 );
183                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
184                                         intval(local_user())
185                                 );
186                                 if(count($r)) {
187                                         $eacct = $r[0];
188                                         require_once('include/email.php');
189                                         $mb = construct_mailbox_name($eacct);
190                                         if(strlen($eacct['server'])) {
191                                                 $dcrpass = '';
192                                                 openssl_private_decrypt(hex2bin($eacct['pass']),$dcrpass,$a->user['prvkey']);
193                                                 $mbox = email_connect($mb,$mail_user,$dcrpass);
194                                                 unset($dcrpass);
195                                                 if(! $mbox) {
196                                                         $failed = true;
197                                                         notice( t('Failed to connect with email account using the settings provided.') . EOL);
198                                                 }
199                                         }
200                                 }
201                                 if(! $failed)
202                                         info( t('Email settings updated.') . EOL);
203                         }
204                 }
205
206                 call_hooks('connector_settings_post', $_POST);
207                 return;
208         }
209         
210         if(($a->argc > 1) && ($a->argv[1] == 'display')) {
211                 
212                 check_form_security_token_redirectOnErr('/settings/display', 'settings_display');
213
214                 $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme']))  : $a->user['theme']);
215                 $nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile'])  : 0);  
216                 $browser_update   = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0);
217                 $browser_update   = $browser_update * 1000;
218                 if($browser_update < 10000)
219                         $browser_update = 40000;
220
221                 $itemspage_network   = ((x($_POST,'itemspage_network')) ? intval($_POST['itemspage_network']) : 40);
222                 if($itemspage_network > 100)
223                                         $itemspage_network = 40;
224
225
226                 set_pconfig(local_user(),'system','update_interval', $browser_update);
227                 set_pconfig(local_user(),'system','itemspage_network', $itemspage_network);
228                 set_pconfig(local_user(),'system','no_smilies',$nosmile);
229
230
231                 if ($theme == $a->user['theme']){
232                         // call theme_post only if theme has not benn changed
233                         if( ($themeconfigfile = get_theme_config_file($theme)) != null){
234                                 require_once($themeconfigfile);
235                                 theme_post($a);
236                         }
237                 }
238
239
240                 $r = q("UPDATE `user` SET `theme` = '%s' WHERE `uid` = %d LIMIT 1",
241                                 dbesc($theme),
242                                 intval(local_user())
243                 );
244         
245                 goaway($a->get_baseurl(true) . '/settings/display' );
246                 return; // NOTREACHED
247         }
248
249         check_form_security_token_redirectOnErr('/settings', 'settings');
250         
251         call_hooks('settings_post', $_POST);
252
253         if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
254
255                 $newpass = $_POST['npassword'];
256                 $confirm = $_POST['confirm'];
257
258                 $err = false;
259                 if($newpass != $confirm ) {
260                         notice( t('Passwords do not match. Password unchanged.') . EOL);
261                         $err = true;
262                 }
263
264                 if((! x($newpass)) || (! x($confirm))) {
265                         notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
266                         $err = true;
267                 }
268
269                 if(! $err) {
270                         $password = hash('whirlpool',$newpass);
271                         $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
272                                 dbesc($password),
273                                 intval(local_user())
274                         );
275                         if($r)
276                                 info( t('Password changed.') . EOL);
277                         else
278                                 notice( t('Password update failed. Please try again.') . EOL);
279                 }
280         }
281
282         
283         $username         = ((x($_POST,'username'))   ? notags(trim($_POST['username']))     : '');
284         $email            = ((x($_POST,'email'))      ? notags(trim($_POST['email']))        : '');
285         $timezone         = ((x($_POST,'timezone'))   ? notags(trim($_POST['timezone']))     : '');
286         $defloc           = ((x($_POST,'defloc'))     ? notags(trim($_POST['defloc']))       : '');
287         $openid           = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url']))   : '');
288         $maxreq           = ((x($_POST,'maxreq'))     ? intval($_POST['maxreq'])             : 0);
289         $expire           = ((x($_POST,'expire'))     ? intval($_POST['expire'])             : 0);
290
291
292         $expire_items     = ((x($_POST,'expire_items')) ? intval($_POST['expire_items'])         : 0);
293         $expire_notes     = ((x($_POST,'expire_notes')) ? intval($_POST['expire_notes'])         : 0);
294         $expire_starred   = ((x($_POST,'expire_starred')) ? intval($_POST['expire_starred']) : 0);
295         $expire_photos    = ((x($_POST,'expire_photos'))? intval($_POST['expire_photos'])        : 0);
296
297
298
299         $allow_location   = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
300         $publish          = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
301         $net_publish      = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
302         $old_visibility   = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
303         $page_flags       = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
304         $blockwall        = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
305         $blocktags        = (((x($_POST,'blocktags')) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
306
307         $suggestme        = ((x($_POST,'suggestme')) ? intval($_POST['suggestme'])  : 0);  
308         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
309         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
310
311
312         $notify = 0;
313
314         if(x($_POST,'notify1'))
315                 $notify += intval($_POST['notify1']);
316         if(x($_POST,'notify2'))
317                 $notify += intval($_POST['notify2']);
318         if(x($_POST,'notify3'))
319                 $notify += intval($_POST['notify3']);
320         if(x($_POST,'notify4'))
321                 $notify += intval($_POST['notify4']);
322         if(x($_POST,'notify5'))
323                 $notify += intval($_POST['notify5']);
324         if(x($_POST,'notify6'))
325                 $notify += intval($_POST['notify6']);
326         if(x($_POST,'notify7'))
327                 $notify += intval($_POST['notify7']);
328
329         $email_changed = false;
330
331         $err = '';
332
333         $name_change = false;
334
335         if($username != $a->user['username']) {
336                 $name_change = true;
337                 if(strlen($username) > 40)
338                         $err .= t(' Please use a shorter name.');
339                 if(strlen($username) < 3)
340                         $err .= t(' Name too short.');
341         }
342
343         if($email != $a->user['email']) {
344                 $email_changed = true;
345         if(! valid_email($email))
346                         $err .= t(' Not valid email.');
347                 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
348                         $err .= t(' Cannot change to that email.');
349                         $email = $a->user['email'];
350                 }
351         }
352
353         if(strlen($err)) {
354                 notice($err . EOL);
355                 return;
356         }
357
358         if($timezone != $a->user['timezone']) {
359                 if(strlen($timezone))
360                         date_default_timezone_set($timezone);
361         }
362
363         $str_group_allow   = perms2str($_POST['group_allow']);
364         $str_contact_allow = perms2str($_POST['contact_allow']);
365         $str_group_deny    = perms2str($_POST['group_deny']);
366         $str_contact_deny  = perms2str($_POST['contact_deny']);
367
368         $openidserver = $a->user['openidserver'];
369         $openid = normalise_openid($openid);
370
371         // If openid has changed or if there's an openid but no openidserver, try and discover it.
372
373         if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
374                 $tmp_str = $openid;
375                 if(strlen($tmp_str) && validate_url($tmp_str)) {
376                         logger('updating openidserver');
377                         require_once('library/openid.php');
378                         $open_id_obj = new LightOpenID;
379                         $open_id_obj->identity = $openid;
380                         $openidserver = $open_id_obj->discover($open_id_obj->identity);
381                 }
382                 else
383                         $openidserver = '';
384         }
385
386         set_pconfig(local_user(),'expire','items', $expire_items);
387         set_pconfig(local_user(),'expire','notes', $expire_notes);
388         set_pconfig(local_user(),'expire','starred', $expire_starred);
389         set_pconfig(local_user(),'expire','photos', $expire_photos);
390
391         set_pconfig(local_user(),'system','suggestme', $suggestme);
392
393
394         $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', `blockwall` = %d, `hidewall` = %d, `blocktags` = %d  WHERE `uid` = %d LIMIT 1",
395                         dbesc($username),
396                         dbesc($email),
397                         dbesc($openid),
398                         dbesc($timezone),
399                         dbesc($str_contact_allow),
400                         dbesc($str_group_allow),
401                         dbesc($str_contact_deny),
402                         dbesc($str_group_deny),
403                         intval($notify),
404                         intval($page_flags),
405                         dbesc($defloc),
406                         intval($allow_location),
407                         intval($maxreq),
408                         intval($expire),
409                         dbesc($openidserver),
410                         intval($blockwall),
411                         intval($hidewall),
412                         intval($blocktags),
413                         intval(local_user())
414         );
415         if($r)
416                 info( t('Settings updated.') . EOL);
417
418         $r = q("UPDATE `profile` 
419                 SET `publish` = %d, 
420                 `net-publish` = %d,
421                 `hide-friends` = %d
422                 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
423                 intval($publish),
424                 intval($net_publish),
425                 intval($hide_friends),
426                 intval(local_user())
427         );
428
429
430         if($name_change) {
431                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
432                         dbesc($username),
433                         dbesc(datetime_convert()),
434                         intval(local_user())
435                 );
436         }               
437
438         if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
439                 // Update global directory in background
440                 $url = $_SESSION['my_url'];
441                 if($url && strlen(get_config('system','directory_submit_url')))
442                         proc_run('php',"include/directory.php","$url");
443
444         }
445
446
447         require_once('include/profile_update.php');
448         profile_change();
449
450         $_SESSION['theme'] = $theme;
451         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
452
453                 // FIXME - set to un-verified, blocked and redirect to logout
454
455         }
456
457         goaway($a->get_baseurl(true) . '/settings' );
458         return; // NOTREACHED
459 }
460                 
461
462 if(! function_exists('settings_content')) {
463 function settings_content(&$a) {
464
465         $o = '';
466         nav_set_selected('settings');
467
468         if(! local_user()) {
469                 notice( t('Permission denied.') . EOL );
470                 return;
471         }
472
473         if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
474                 notice( t('Permission denied.') . EOL );
475                 return;
476         }
477         
478         $tabs = array(
479                 array(
480                         'label' => t('Account settings'),
481                         'url'   => $a->get_baseurl(true).'/settings',
482                         'sel'   => (($a->argc == 1)?'active':''),
483                 ),      
484                 array(
485                         'label' => t('Display settings'),
486                         'url'   => $a->get_baseurl(true).'/settings/display',
487                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
488                 ),      
489                 
490                 array(
491                         'label' => t('Connector settings'),
492                         'url'   => $a->get_baseurl(true).'/settings/connectors',
493                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
494                 ),
495                 array(
496                         'label' => t('Plugin settings'),
497                         'url'   => $a->get_baseurl(true).'/settings/addon',
498                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
499                 ),
500                 array(
501                         'label' => t('Connections'),
502                         'url' => $a->get_baseurl(true) . '/settings/oauth',
503                         'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
504                 ),
505                 array(
506                         'label' => t('Export personal data'),
507                         'url' => $a->get_baseurl(true) . '/uexport',
508                         'sel' => ''
509                 )
510         );
511         
512         $tabtpl = get_markup_template("common_tabs.tpl");
513         $tabs = replace_macros($tabtpl, array(
514                 '$tabs' => $tabs,
515         ));
516                 
517         if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
518                 
519                 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
520                         $tpl = get_markup_template("settings_oauth_edit.tpl");
521                         $o .= replace_macros($tpl, array(
522                                 '$form_security_token' => get_form_security_token("settings_oauth"),
523                                 '$tabs'         => $tabs,
524                                 '$title'        => t('Add application'),
525                                 '$submit'       => t('Submit'),
526                                 '$cancel'       => t('Cancel'),
527                                 '$name'         => array('name', t('Name'), '', ''),
528                                 '$key'          => array('key', t('Consumer Key'), '', ''),
529                                 '$secret'       => array('secret', t('Consumer Secret'), '', ''),
530                                 '$redirect'     => array('redirect', t('Redirect'), '', ''),
531                                 '$icon'         => array('icon', t('Icon url'), '', ''),
532                         ));
533                         return $o;
534                 }
535                 
536                 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
537                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
538                                         dbesc($a->argv[3]),
539                                         local_user());
540                         
541                         if (!count($r)){
542                                 notice(t("You can't edit this application."));
543                                 return;
544                         }
545                         $app = $r[0];
546                         
547                         $tpl = get_markup_template("settings_oauth_edit.tpl");
548                         $o .= replace_macros($tpl, array(
549                                 '$form_security_token' => get_form_security_token("settings_oauth"),
550                                 '$tabs'         => $tabs,
551                                 '$title'        => t('Add application'),
552                                 '$submit'       => t('Update'),
553                                 '$cancel'       => t('Cancel'),
554                                 '$name'         => array('name', t('Name'), $app['name'] , ''),
555                                 '$key'          => array('key', t('Consumer Key'), $app['client_id'], ''),
556                                 '$secret'       => array('secret', t('Consumer Secret'), $app['pw'], ''),
557                                 '$redirect'     => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
558                                 '$icon'         => array('icon', t('Icon url'), $app['icon'], ''),
559                         ));
560                         return $o;
561                 }
562                 
563                 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
564                         check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth', 't');
565                 
566                         $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
567                                         dbesc($a->argv[3]),
568                                         local_user());
569                         goaway($a->get_baseurl(true)."/settings/oauth/");
570                         return;                 
571                 }
572                 
573                 
574                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my 
575                                 FROM clients
576                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
577                                 WHERE clients.uid IN (%d,0)",
578                                 local_user(),
579                                 local_user());
580                 
581                 
582                 $tpl = get_markup_template("settings_oauth.tpl");
583                 $o .= replace_macros($tpl, array(
584                         '$form_security_token' => get_form_security_token("settings_oauth"),
585                         '$baseurl'      => $a->get_baseurl(true),
586                         '$title'        => t('Connected Apps'),
587                         '$add'          => t('Add application'),
588                         '$edit'         => t('Edit'),
589                         '$delete'               => t('Delete'),
590                         '$consumerkey' => t('Client key starts with'),
591                         '$noname'       => t('No name'),
592                         '$remove'       => t('Remove authorization'),
593                         '$tabs'         => $tabs,
594                         '$apps'         => $r,
595                 ));
596                 return $o;
597                 
598         }
599         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
600                 $settings_addons = "";
601                 
602                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
603                 if(! count($r))
604                         $settings_addons = t('No Plugin settings configured');
605
606                 call_hooks('plugin_settings', $settings_addons);
607                 
608                 
609                 $tpl = get_markup_template("settings_addons.tpl");
610                 $o .= replace_macros($tpl, array(
611                         '$form_security_token' => get_form_security_token("settings_addon"),
612                         '$title'        => t('Plugin Settings'),
613                         '$tabs'         => $tabs,
614                         '$settings_addons' => $settings_addons
615                 ));
616                 return $o;
617         }
618
619         if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
620
621                 $settings_connectors = "";
622                 
623                 call_hooks('connector_settings', $settings_connectors);
624
625                 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
626                 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
627
628                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
629                 if(get_config('system','dfrn_only'))
630                         $mail_disabled = 1;
631
632                 if(! $mail_disabled) {
633                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
634                                 local_user()
635                         );
636                 }
637                 else {
638                         $r = null;
639                 }
640
641                 $mail_server       = ((count($r)) ? $r[0]['server'] : '');
642                 $mail_port         = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
643                 $mail_ssl          = ((count($r)) ? $r[0]['ssltype'] : '');
644                 $mail_user         = ((count($r)) ? $r[0]['user'] : '');
645                 $mail_replyto      = ((count($r)) ? $r[0]['reply_to'] : '');
646                 $mail_pubmail      = ((count($r)) ? $r[0]['pubmail'] : 0);
647                 $mail_action       = ((count($r)) ? $r[0]['action'] : 0);
648                 $mail_movetofolder = ((count($r)) ? $r[0]['movetofolder'] : '');
649                 $mail_chk          = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
650
651
652                 $tpl = get_markup_template("settings_connectors.tpl");
653                 $o .= replace_macros($tpl, array(
654                         '$form_security_token' => get_form_security_token("settings_connectors"),
655                         
656                         '$title'        => t('Connector Settings'),
657                         '$tabs'         => $tabs,
658
659                         '$diasp_enabled' => $diasp_enabled,
660                         '$ostat_enabled' => $ostat_enabled,
661
662                         '$h_imap' => t('Email/Mailbox Setup'),
663                         '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
664                         '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
665                         '$mail_disabled' => (($mail_disabled) ? t('Email access is disabled on this site.') : ''),
666                         '$mail_server'  => array('mail_server',  t('IMAP server name:'), $mail_server, ''),
667                         '$mail_port'    => array('mail_port',    t('IMAP port:'), $mail_port, ''),
668                         '$mail_ssl'             => array('mail_ssl',     t('Security:'), strtoupper($mail_ssl), '', array( 'notls'=>t('None'), 'TLS'=>'TLS', 'SSL'=>'SSL')),
669                         '$mail_user'    => array('mail_user',    t('Email login name:'), $mail_user, ''),
670                         '$mail_pass'    => array('mail_pass',    t('Email password:'), '', ''),
671                         '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
672                         '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
673                         '$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'))),
674                         '$mail_movetofolder'    => array('mail_movetofolder',    t('Move to folder:'), $mail_movetofolder, ''),
675                         '$submit' => t('Submit'),
676
677                         '$settings_connectors' => $settings_connectors
678                 ));
679                 return $o;
680         }
681
682         /*
683          * DISPLAY SETTINGS
684          */
685         if(($a->argc > 1) && ($a->argv[1] === 'display')) {
686                 $default_theme = get_config('system','theme');
687                 if(! $default_theme)
688                         $default_theme = 'default';
689
690                 $allowed_themes_str = get_config('system','allowed_themes');
691                 $allowed_themes_raw = explode(',',$allowed_themes_str);
692                 $allowed_themes = array();
693                 if(count($allowed_themes_raw))
694                         foreach($allowed_themes_raw as $x)
695                                 if(strlen(trim($x)))
696                                         $allowed_themes[] = trim($x);
697
698                 
699                 $themes = array();
700                 $files = glob('view/theme/*');
701                 if($allowed_themes) {
702                         foreach($allowed_themes as $th) {
703                                 $f = $th;
704                                 $is_experimental = file_exists('view/theme/' . $th . '/experimental');
705                                 $unsupported = file_exists('view/theme/' . $th . '/unsupported');
706                                 if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ 
707                                         $theme_name = (($is_experimental) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
708                                         $themes[$f]=$theme_name;
709                                 }
710                         }
711                 }
712                 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
713                 
714                 $browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
715                 $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
716
717                 $itemspage_network = intval(get_pconfig(local_user(), 'system','itemspage_network'));
718                 $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
719                 
720                 $nosmile = get_pconfig(local_user(),'system','no_smilies');
721                 $nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0
722
723
724                 $theme_config = "";
725                 if( ($themeconfigfile = get_theme_config_file($theme_selected)) != null){
726                         require_once($themeconfigfile);
727                         $theme_config = theme_content($a);
728                 }
729                 
730                 $tpl = get_markup_template("settings_display.tpl");
731                 $o = replace_macros($tpl, array(
732                         '$tabs'         => $tabs,
733                         '$ptitle'       => t('Display Settings'),
734                         '$form_security_token' => get_form_security_token("settings_display"),
735                         '$submit'       => t('Submit'),
736                         '$baseurl' => $a->get_baseurl(true),
737                         '$uid' => local_user(),
738                 
739                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes),
740                         '$ajaxint'   => array('browser_update',  t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
741                         '$itemspage_network'   => array('itemspage_network',  t("Number of items to display on the network page:"), $itemspage_network, t('Maximum of 100 items')),
742                         '$nosmile'      => array('nosmile', t("Don't show emoticons"), $nosmile, ''),
743                         
744                         '$theme_config' => $theme_config,
745                 ));
746                 
747                 return $o;
748         }
749         
750         
751         /*
752          * ACCOUNT SETTINGS
753          */
754
755         require_once('include/acl_selectors.php');
756
757         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
758                 intval(local_user())
759         );
760         if(count($p))
761                 $profile = $p[0];
762
763         $username = $a->user['username'];
764         $email    = $a->user['email'];
765         $nickname = $a->user['nickname'];
766         $timezone = $a->user['timezone'];
767         $notify   = $a->user['notify-flags'];
768         $defloc   = $a->user['default-location'];
769         $openid   = $a->user['openid'];
770         $maxreq   = $a->user['maxreq'];
771         $expire   = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
772         $blockwall = $a->user['blockwall'];
773         $blocktags = $a->user['blocktags'];
774
775         $expire_items = get_pconfig(local_user(), 'expire','items');
776         $expire_items = (($expire_items===false)? '1' : $expire_items); // default if not set: 1
777         
778         $expire_notes = get_pconfig(local_user(), 'expire','notes');
779         $expire_notes = (($expire_notes===false)? '1' : $expire_notes); // default if not set: 1
780
781         $expire_starred = get_pconfig(local_user(), 'expire','starred');
782         $expire_starred = (($expire_starred===false)? '1' : $expire_starred); // default if not set: 1
783         
784         $expire_photos = get_pconfig(local_user(), 'expire','photos');
785         $expire_photos = (($expire_photos===false)? '0' : $expire_photos); // default if not set: 0
786
787
788         $suggestme = get_pconfig(local_user(), 'system','suggestme');
789         $suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
790
791
792         
793         if(! strlen($a->user['timezone']))
794                 $timezone = date_default_timezone_get();
795
796
797
798         $pageset_tpl = get_markup_template('pagetypes.tpl');
799         $pagetype = replace_macros($pageset_tpl,array(
800                 '$page_normal'  => array('page-flags', t('Normal Account'), PAGE_NORMAL, 
801                                                                         t('This account is a normal personal profile'), 
802                                                                         ($a->user['page-flags'] == PAGE_NORMAL)),
803                                                                 
804                 '$page_soapbox'         => array('page-flags', t('Soapbox Account'), PAGE_SOAPBOX, 
805                                                                         t('Automatically approve all connection/friend requests as read-only fans'), 
806                                                                         ($a->user['page-flags'] == PAGE_SOAPBOX)),
807                                                                         
808                 '$page_community'       => array('page-flags', t('Community/Celebrity Account'), PAGE_COMMUNITY, 
809                                                                         t('Automatically approve all connection/friend requests as read-write fans'), 
810                                                                         ($a->user['page-flags'] == PAGE_COMMUNITY)),
811                                                                         
812                 '$page_freelove'        => array('page-flags', t('Automatic Friend Account'), PAGE_FREELOVE, 
813                                                                         t('Automatically approve all connection/friend requests as friends'), 
814                                                                         ($a->user['page-flags'] == PAGE_FREELOVE)),
815         ));
816
817         $noid = get_config('system','no_openid');
818
819         if($noid) {
820                 $openid_field = false;
821         }
822         else {
823                 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
824         }
825
826
827         $opt_tpl = get_markup_template("field_yesno.tpl");
828         if(get_config('system','publish_all')) {
829                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
830         }
831         else {
832                 $profile_in_dir = replace_macros($opt_tpl,array(
833                         '$field'        => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
834                 ));
835         }
836
837         if(strlen(get_config('system','directory_submit_url'))) {
838                 $profile_in_net_dir = replace_macros($opt_tpl,array(
839                         '$field'        => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
840                 ));
841         }
842         else
843                 $profile_in_net_dir = '';
844
845
846         $hide_friends = replace_macros($opt_tpl,array(
847                         '$field'        => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
848         ));
849
850         $hide_wall = replace_macros($opt_tpl,array(
851                         '$field'        => array('hidewall',  t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
852
853         ));
854
855         $blockwall = replace_macros($opt_tpl,array(
856                         '$field'        => array('blockwall',  t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
857
858         ));
859  
860
861         $blocktags = replace_macros($opt_tpl,array(
862                         '$field'        => array('blocktags',  t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
863
864         ));
865
866
867         $suggestme = replace_macros($opt_tpl,array(
868                         '$field'        => array('suggestme',  t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
869
870         ));
871
872
873         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
874                 ? true : false);
875
876         if($invisible)
877                 info( t('Profile is <strong>not published</strong>.') . EOL );
878
879         
880
881
882
883         $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : '');
884
885         $tpl_addr = get_markup_template("settings_nick_set.tpl");
886
887         $prof_addr = replace_macros($tpl_addr,array(
888                 '$desc' => t('Your Identity Address is'),
889                 '$nickname' => $nickname,
890                 '$subdir' => $subdir,
891                 '$basepath' => $a->get_hostname()
892         ));
893
894         $stpl = get_markup_template('settings.tpl');
895
896         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
897
898         $expire_arr = array(
899                 'days' => array('expire',  t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
900                 'advanced' => t('Advanced expiration settings'),
901                 'label' => t('Advanced Expiration'),
902                 'items' => array('expire_items',  t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
903                 'notes' => array('expire_notes',  t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
904                 'starred' => array('expire_starred',  t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
905                 'photos' => array('expire_photos',  t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),          
906         );
907
908         $o .= replace_macros($stpl,array(
909                 '$tabs'         => $tabs,
910                 '$ptitle'       => t('Account Settings'),
911
912                 '$submit'       => t('Submit'),
913                 '$baseurl' => $a->get_baseurl(true),
914                 '$uid' => local_user(),
915                 '$form_security_token' => get_form_security_token("settings"),
916                 
917                 '$nickname_block' => $prof_addr,
918                 
919                 '$h_pass'       => t('Password Settings'),
920                 '$password1'=> array('npassword', t('New Password:'), '', ''),
921                 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
922                 '$oid_enable' => (! get_config('system','no_openid')),
923                 '$openid'       => $openid_field,
924                 
925                 '$h_basic'      => t('Basic Settings'),
926                 '$username' => array('username',  t('Full Name:'), $username,''),
927                 '$email'        => array('email', t('Email Address:'), $email, ''),
928                 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
929                 '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
930                 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
931                 
932
933                 '$h_prv'        => t('Security and Privacy Settings'),
934
935                 '$maxreq'       => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
936                 '$permissions' => t('Default Post Permissions'),
937                 '$permdesc' => t("\x28click to open/close\x29"),
938                 '$visibility' => $profile['net-publish'],
939                 '$aclselect' => populate_acl($a->user,$celeb),
940                 '$suggestme' => $suggestme,
941                 '$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
942                 '$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
943                 '$expire'       => $expire_arr,
944
945                 '$profile_in_dir' => $profile_in_dir,
946                 '$profile_in_net_dir' => $profile_in_net_dir,
947                 '$hide_friends' => $hide_friends,
948                 '$hide_wall' => $hide_wall,
949                 
950                 
951                 
952                 '$h_not'        => t('Notification Settings'),
953                 '$lbl_not'      => t('Send a notification email when:'),
954                 '$notify1'      => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
955                 '$notify2'      => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
956                 '$notify3'      => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
957                 '$notify4'      => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
958                 '$notify5'      => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
959                 '$notify6'  => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''),          
960                 '$notify7'  => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''),         
961                 
962                 
963                 '$h_advn' => t('Advanced Page Settings'),
964                 '$pagetype' => $pagetype,
965                 
966
967                 
968                 
969
970                 
971
972
973
974
975                 
976
977         ));
978
979         call_hooks('settings_form',$o);
980
981         $o .= '</form>' . "\r\n";
982
983         return $o;
984
985 }}
986