]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
926d1faa5b320d026e5eeebf5b3cbf69cfe4eec0
[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         $unkmail          = (((x($_POST,'unkmail')) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
307         $cntunkmail       = ((x($_POST,'cntunkmail')) ? intval($_POST['cntunkmail']) : 0);
308         $suggestme        = ((x($_POST,'suggestme')) ? intval($_POST['suggestme'])  : 0);  
309         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
310         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
311
312
313         $notify = 0;
314
315         if(x($_POST,'notify1'))
316                 $notify += intval($_POST['notify1']);
317         if(x($_POST,'notify2'))
318                 $notify += intval($_POST['notify2']);
319         if(x($_POST,'notify3'))
320                 $notify += intval($_POST['notify3']);
321         if(x($_POST,'notify4'))
322                 $notify += intval($_POST['notify4']);
323         if(x($_POST,'notify5'))
324                 $notify += intval($_POST['notify5']);
325         if(x($_POST,'notify6'))
326                 $notify += intval($_POST['notify6']);
327         if(x($_POST,'notify7'))
328                 $notify += intval($_POST['notify7']);
329
330         $email_changed = false;
331
332         $err = '';
333
334         $name_change = false;
335
336         if($username != $a->user['username']) {
337                 $name_change = true;
338                 if(strlen($username) > 40)
339                         $err .= t(' Please use a shorter name.');
340                 if(strlen($username) < 3)
341                         $err .= t(' Name too short.');
342         }
343
344         if($email != $a->user['email']) {
345                 $email_changed = true;
346         if(! valid_email($email))
347                         $err .= t(' Not valid email.');
348                 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
349                         $err .= t(' Cannot change to that email.');
350                         $email = $a->user['email'];
351                 }
352         }
353
354         if(strlen($err)) {
355                 notice($err . EOL);
356                 return;
357         }
358
359         if($timezone != $a->user['timezone']) {
360                 if(strlen($timezone))
361                         date_default_timezone_set($timezone);
362         }
363
364         $str_group_allow   = perms2str($_POST['group_allow']);
365         $str_contact_allow = perms2str($_POST['contact_allow']);
366         $str_group_deny    = perms2str($_POST['group_deny']);
367         $str_contact_deny  = perms2str($_POST['contact_deny']);
368
369         $openidserver = $a->user['openidserver'];
370         $openid = normalise_openid($openid);
371
372         // If openid has changed or if there's an openid but no openidserver, try and discover it.
373
374         if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
375                 $tmp_str = $openid;
376                 if(strlen($tmp_str) && validate_url($tmp_str)) {
377                         logger('updating openidserver');
378                         require_once('library/openid.php');
379                         $open_id_obj = new LightOpenID;
380                         $open_id_obj->identity = $openid;
381                         $openidserver = $open_id_obj->discover($open_id_obj->identity);
382                 }
383                 else
384                         $openidserver = '';
385         }
386
387         set_pconfig(local_user(),'expire','items', $expire_items);
388         set_pconfig(local_user(),'expire','notes', $expire_notes);
389         set_pconfig(local_user(),'expire','starred', $expire_starred);
390         set_pconfig(local_user(),'expire','photos', $expire_photos);
391
392         set_pconfig(local_user(),'system','suggestme', $suggestme);
393
394
395         $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, `unkmail` = %d, `cntunkmail` = %d  WHERE `uid` = %d LIMIT 1",
396                         dbesc($username),
397                         dbesc($email),
398                         dbesc($openid),
399                         dbesc($timezone),
400                         dbesc($str_contact_allow),
401                         dbesc($str_group_allow),
402                         dbesc($str_contact_deny),
403                         dbesc($str_group_deny),
404                         intval($notify),
405                         intval($page_flags),
406                         dbesc($defloc),
407                         intval($allow_location),
408                         intval($maxreq),
409                         intval($expire),
410                         dbesc($openidserver),
411                         intval($blockwall),
412                         intval($hidewall),
413                         intval($blocktags),
414                         intval($unkmail),
415                         intval($cntunkmail),
416                         intval(local_user())
417         );
418         if($r)
419                 info( t('Settings updated.') . EOL);
420
421         $r = q("UPDATE `profile` 
422                 SET `publish` = %d, 
423                 `net-publish` = %d,
424                 `hide-friends` = %d
425                 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
426                 intval($publish),
427                 intval($net_publish),
428                 intval($hide_friends),
429                 intval(local_user())
430         );
431
432
433         if($name_change) {
434                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
435                         dbesc($username),
436                         dbesc(datetime_convert()),
437                         intval(local_user())
438                 );
439         }               
440
441         if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
442                 // Update global directory in background
443                 $url = $_SESSION['my_url'];
444                 if($url && strlen(get_config('system','directory_submit_url')))
445                         proc_run('php',"include/directory.php","$url");
446
447         }
448
449
450         require_once('include/profile_update.php');
451         profile_change();
452
453         $_SESSION['theme'] = $theme;
454         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
455
456                 // FIXME - set to un-verified, blocked and redirect to logout
457
458         }
459
460         goaway($a->get_baseurl(true) . '/settings' );
461         return; // NOTREACHED
462 }
463                 
464
465 if(! function_exists('settings_content')) {
466 function settings_content(&$a) {
467
468         $o = '';
469         nav_set_selected('settings');
470
471         if(! local_user()) {
472                 notice( t('Permission denied.') . EOL );
473                 return;
474         }
475
476         if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
477                 notice( t('Permission denied.') . EOL );
478                 return;
479         }
480         
481         $tabs = array(
482                 array(
483                         'label' => t('Account settings'),
484                         'url'   => $a->get_baseurl(true).'/settings',
485                         'sel'   => (($a->argc == 1)?'active':''),
486                 ),      
487                 array(
488                         'label' => t('Display settings'),
489                         'url'   => $a->get_baseurl(true).'/settings/display',
490                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'display')?'active':''),
491                 ),      
492                 
493                 array(
494                         'label' => t('Connector settings'),
495                         'url'   => $a->get_baseurl(true).'/settings/connectors',
496                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
497                 ),
498                 array(
499                         'label' => t('Plugin settings'),
500                         'url'   => $a->get_baseurl(true).'/settings/addon',
501                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
502                 ),
503                 array(
504                         'label' => t('Connections'),
505                         'url' => $a->get_baseurl(true) . '/settings/oauth',
506                         'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
507                 ),
508                 array(
509                         'label' => t('Export personal data'),
510                         'url' => $a->get_baseurl(true) . '/uexport',
511                         'sel' => ''
512                 )
513         );
514         
515         $tabtpl = get_markup_template("common_tabs.tpl");
516         $tabs = replace_macros($tabtpl, array(
517                 '$tabs' => $tabs,
518         ));
519                 
520         if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
521                 
522                 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
523                         $tpl = get_markup_template("settings_oauth_edit.tpl");
524                         $o .= replace_macros($tpl, array(
525                                 '$form_security_token' => get_form_security_token("settings_oauth"),
526                                 '$tabs'         => $tabs,
527                                 '$title'        => t('Add application'),
528                                 '$submit'       => t('Submit'),
529                                 '$cancel'       => t('Cancel'),
530                                 '$name'         => array('name', t('Name'), '', ''),
531                                 '$key'          => array('key', t('Consumer Key'), '', ''),
532                                 '$secret'       => array('secret', t('Consumer Secret'), '', ''),
533                                 '$redirect'     => array('redirect', t('Redirect'), '', ''),
534                                 '$icon'         => array('icon', t('Icon url'), '', ''),
535                         ));
536                         return $o;
537                 }
538                 
539                 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
540                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
541                                         dbesc($a->argv[3]),
542                                         local_user());
543                         
544                         if (!count($r)){
545                                 notice(t("You can't edit this application."));
546                                 return;
547                         }
548                         $app = $r[0];
549                         
550                         $tpl = get_markup_template("settings_oauth_edit.tpl");
551                         $o .= replace_macros($tpl, array(
552                                 '$form_security_token' => get_form_security_token("settings_oauth"),
553                                 '$tabs'         => $tabs,
554                                 '$title'        => t('Add application'),
555                                 '$submit'       => t('Update'),
556                                 '$cancel'       => t('Cancel'),
557                                 '$name'         => array('name', t('Name'), $app['name'] , ''),
558                                 '$key'          => array('key', t('Consumer Key'), $app['client_id'], ''),
559                                 '$secret'       => array('secret', t('Consumer Secret'), $app['pw'], ''),
560                                 '$redirect'     => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
561                                 '$icon'         => array('icon', t('Icon url'), $app['icon'], ''),
562                         ));
563                         return $o;
564                 }
565                 
566                 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
567                         check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth', 't');
568                 
569                         $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
570                                         dbesc($a->argv[3]),
571                                         local_user());
572                         goaway($a->get_baseurl(true)."/settings/oauth/");
573                         return;                 
574                 }
575                 
576                 
577                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my 
578                                 FROM clients
579                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
580                                 WHERE clients.uid IN (%d,0)",
581                                 local_user(),
582                                 local_user());
583                 
584                 
585                 $tpl = get_markup_template("settings_oauth.tpl");
586                 $o .= replace_macros($tpl, array(
587                         '$form_security_token' => get_form_security_token("settings_oauth"),
588                         '$baseurl'      => $a->get_baseurl(true),
589                         '$title'        => t('Connected Apps'),
590                         '$add'          => t('Add application'),
591                         '$edit'         => t('Edit'),
592                         '$delete'               => t('Delete'),
593                         '$consumerkey' => t('Client key starts with'),
594                         '$noname'       => t('No name'),
595                         '$remove'       => t('Remove authorization'),
596                         '$tabs'         => $tabs,
597                         '$apps'         => $r,
598                 ));
599                 return $o;
600                 
601         }
602         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
603                 $settings_addons = "";
604                 
605                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
606                 if(! count($r))
607                         $settings_addons = t('No Plugin settings configured');
608
609                 call_hooks('plugin_settings', $settings_addons);
610                 
611                 
612                 $tpl = get_markup_template("settings_addons.tpl");
613                 $o .= replace_macros($tpl, array(
614                         '$form_security_token' => get_form_security_token("settings_addon"),
615                         '$title'        => t('Plugin Settings'),
616                         '$tabs'         => $tabs,
617                         '$settings_addons' => $settings_addons
618                 ));
619                 return $o;
620         }
621
622         if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
623
624                 $settings_connectors = "";
625                 
626                 call_hooks('connector_settings', $settings_connectors);
627
628                 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
629                 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
630
631                 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
632                 if(get_config('system','dfrn_only'))
633                         $mail_disabled = 1;
634
635                 if(! $mail_disabled) {
636                         $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
637                                 local_user()
638                         );
639                 }
640                 else {
641                         $r = null;
642                 }
643
644                 $mail_server       = ((count($r)) ? $r[0]['server'] : '');
645                 $mail_port         = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
646                 $mail_ssl          = ((count($r)) ? $r[0]['ssltype'] : '');
647                 $mail_user         = ((count($r)) ? $r[0]['user'] : '');
648                 $mail_replyto      = ((count($r)) ? $r[0]['reply_to'] : '');
649                 $mail_pubmail      = ((count($r)) ? $r[0]['pubmail'] : 0);
650                 $mail_action       = ((count($r)) ? $r[0]['action'] : 0);
651                 $mail_movetofolder = ((count($r)) ? $r[0]['movetofolder'] : '');
652                 $mail_chk          = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
653
654
655                 $tpl = get_markup_template("settings_connectors.tpl");
656                 $o .= replace_macros($tpl, array(
657                         '$form_security_token' => get_form_security_token("settings_connectors"),
658                         
659                         '$title'        => t('Connector Settings'),
660                         '$tabs'         => $tabs,
661
662                         '$diasp_enabled' => $diasp_enabled,
663                         '$ostat_enabled' => $ostat_enabled,
664
665                         '$h_imap' => t('Email/Mailbox Setup'),
666                         '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
667                         '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
668                         '$mail_disabled' => (($mail_disabled) ? t('Email access is disabled on this site.') : ''),
669                         '$mail_server'  => array('mail_server',  t('IMAP server name:'), $mail_server, ''),
670                         '$mail_port'    => array('mail_port',    t('IMAP port:'), $mail_port, ''),
671                         '$mail_ssl'             => array('mail_ssl',     t('Security:'), strtoupper($mail_ssl), '', array( 'notls'=>t('None'), 'TLS'=>'TLS', 'SSL'=>'SSL')),
672                         '$mail_user'    => array('mail_user',    t('Email login name:'), $mail_user, ''),
673                         '$mail_pass'    => array('mail_pass',    t('Email password:'), '', ''),
674                         '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
675                         '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
676                         '$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'))),
677                         '$mail_movetofolder'    => array('mail_movetofolder',    t('Move to folder:'), $mail_movetofolder, ''),
678                         '$submit' => t('Submit'),
679
680                         '$settings_connectors' => $settings_connectors
681                 ));
682                 return $o;
683         }
684
685         /*
686          * DISPLAY SETTINGS
687          */
688         if(($a->argc > 1) && ($a->argv[1] === 'display')) {
689                 $default_theme = get_config('system','theme');
690                 if(! $default_theme)
691                         $default_theme = 'default';
692
693                 $allowed_themes_str = get_config('system','allowed_themes');
694                 $allowed_themes_raw = explode(',',$allowed_themes_str);
695                 $allowed_themes = array();
696                 if(count($allowed_themes_raw))
697                         foreach($allowed_themes_raw as $x)
698                                 if(strlen(trim($x)))
699                                         $allowed_themes[] = trim($x);
700
701                 
702                 $themes = array();
703                 $files = glob('view/theme/*');
704                 if($allowed_themes) {
705                         foreach($allowed_themes as $th) {
706                                 $f = $th;
707                                 $is_experimental = file_exists('view/theme/' . $th . '/experimental');
708                                 $unsupported = file_exists('view/theme/' . $th . '/unsupported');
709                                 if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ 
710                                         $theme_name = (($is_experimental) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
711                                         $themes[$f]=$theme_name;
712                                 }
713                         }
714                 }
715                 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
716                 
717                 $browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
718                 $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
719
720                 $itemspage_network = intval(get_pconfig(local_user(), 'system','itemspage_network'));
721                 $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
722                 
723                 $nosmile = get_pconfig(local_user(),'system','no_smilies');
724                 $nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0
725
726
727                 $theme_config = "";
728                 if( ($themeconfigfile = get_theme_config_file($theme_selected)) != null){
729                         require_once($themeconfigfile);
730                         $theme_config = theme_content($a);
731                 }
732                 
733                 $tpl = get_markup_template("settings_display.tpl");
734                 $o = replace_macros($tpl, array(
735                         '$tabs'         => $tabs,
736                         '$ptitle'       => t('Display Settings'),
737                         '$form_security_token' => get_form_security_token("settings_display"),
738                         '$submit'       => t('Submit'),
739                         '$baseurl' => $a->get_baseurl(true),
740                         '$uid' => local_user(),
741                 
742                         '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes),
743                         '$ajaxint'   => array('browser_update',  t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
744                         '$itemspage_network'   => array('itemspage_network',  t("Number of items to display on the network page:"), $itemspage_network, t('Maximum of 100 items')),
745                         '$nosmile'      => array('nosmile', t("Don't show emoticons"), $nosmile, ''),
746                         
747                         '$theme_config' => $theme_config,
748                 ));
749                 
750                 return $o;
751         }
752         
753         
754         /*
755          * ACCOUNT SETTINGS
756          */
757
758         require_once('include/acl_selectors.php');
759
760         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
761                 intval(local_user())
762         );
763         if(count($p))
764                 $profile = $p[0];
765
766         $username   = $a->user['username'];
767         $email      = $a->user['email'];
768         $nickname   = $a->user['nickname'];
769         $timezone   = $a->user['timezone'];
770         $notify     = $a->user['notify-flags'];
771         $defloc     = $a->user['default-location'];
772         $openid     = $a->user['openid'];
773         $maxreq     = $a->user['maxreq'];
774         $expire     = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
775         $blockwall  = $a->user['blockwall'];
776         $blocktags  = $a->user['blocktags'];
777         $unkmail    = $a->user['unkmail'];
778         $cntunkmail = $a->user['cntunkmail'];
779
780         $expire_items = get_pconfig(local_user(), 'expire','items');
781         $expire_items = (($expire_items===false)? '1' : $expire_items); // default if not set: 1
782         
783         $expire_notes = get_pconfig(local_user(), 'expire','notes');
784         $expire_notes = (($expire_notes===false)? '1' : $expire_notes); // default if not set: 1
785
786         $expire_starred = get_pconfig(local_user(), 'expire','starred');
787         $expire_starred = (($expire_starred===false)? '1' : $expire_starred); // default if not set: 1
788         
789         $expire_photos = get_pconfig(local_user(), 'expire','photos');
790         $expire_photos = (($expire_photos===false)? '0' : $expire_photos); // default if not set: 0
791
792
793         $suggestme = get_pconfig(local_user(), 'system','suggestme');
794         $suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
795
796
797         
798         if(! strlen($a->user['timezone']))
799                 $timezone = date_default_timezone_get();
800
801
802
803         $pageset_tpl = get_markup_template('pagetypes.tpl');
804         $pagetype = replace_macros($pageset_tpl,array(
805                 '$page_normal'  => array('page-flags', t('Normal Account'), PAGE_NORMAL, 
806                                                                         t('This account is a normal personal profile'), 
807                                                                         ($a->user['page-flags'] == PAGE_NORMAL)),
808                                                                 
809                 '$page_soapbox'         => array('page-flags', t('Soapbox Account'), PAGE_SOAPBOX, 
810                                                                         t('Automatically approve all connection/friend requests as read-only fans'), 
811                                                                         ($a->user['page-flags'] == PAGE_SOAPBOX)),
812                                                                         
813                 '$page_community'       => array('page-flags', t('Community/Celebrity Account'), PAGE_COMMUNITY, 
814                                                                         t('Automatically approve all connection/friend requests as read-write fans'), 
815                                                                         ($a->user['page-flags'] == PAGE_COMMUNITY)),
816                                                                         
817                 '$page_freelove'        => array('page-flags', t('Automatic Friend Account'), PAGE_FREELOVE, 
818                                                                         t('Automatically approve all connection/friend requests as friends'), 
819                                                                         ($a->user['page-flags'] == PAGE_FREELOVE)),
820         ));
821
822         $noid = get_config('system','no_openid');
823
824         if($noid) {
825                 $openid_field = false;
826         }
827         else {
828                 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
829         }
830
831
832         $opt_tpl = get_markup_template("field_yesno.tpl");
833         if(get_config('system','publish_all')) {
834                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
835         }
836         else {
837                 $profile_in_dir = replace_macros($opt_tpl,array(
838                         '$field'        => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
839                 ));
840         }
841
842         if(strlen(get_config('system','directory_submit_url'))) {
843                 $profile_in_net_dir = replace_macros($opt_tpl,array(
844                         '$field'        => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
845                 ));
846         }
847         else
848                 $profile_in_net_dir = '';
849
850
851         $hide_friends = replace_macros($opt_tpl,array(
852                         '$field'        => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
853         ));
854
855         $hide_wall = replace_macros($opt_tpl,array(
856                         '$field'        => array('hidewall',  t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
857
858         ));
859
860         $blockwall = replace_macros($opt_tpl,array(
861                         '$field'        => array('blockwall',  t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
862
863         ));
864  
865
866         $blocktags = replace_macros($opt_tpl,array(
867                         '$field'        => array('blocktags',  t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
868
869         ));
870
871
872         $suggestme = replace_macros($opt_tpl,array(
873                         '$field'        => array('suggestme',  t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
874
875         ));
876
877
878         $unkmail = replace_macros($opt_tpl,array(
879                         '$field'        => array('unkmail',  t('Permit unknown people to send you private mail?'), $unkmail, '', array(t('No'),t('Yes'))),
880
881         ));
882
883
884         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
885                 ? true : false);
886
887         if($invisible)
888                 info( t('Profile is <strong>not published</strong>.') . EOL );
889
890         
891
892
893
894         $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : '');
895
896         $tpl_addr = get_markup_template("settings_nick_set.tpl");
897
898         $prof_addr = replace_macros($tpl_addr,array(
899                 '$desc' => t('Your Identity Address is'),
900                 '$nickname' => $nickname,
901                 '$subdir' => $subdir,
902                 '$basepath' => $a->get_hostname()
903         ));
904
905         $stpl = get_markup_template('settings.tpl');
906
907         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
908
909         $expire_arr = array(
910                 'days' => array('expire',  t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
911                 'advanced' => t('Advanced expiration settings'),
912                 'label' => t('Advanced Expiration'),
913                 'items' => array('expire_items',  t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
914                 'notes' => array('expire_notes',  t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
915                 'starred' => array('expire_starred',  t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
916                 'photos' => array('expire_photos',  t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),          
917         );
918
919         $o .= replace_macros($stpl,array(
920                 '$tabs'         => $tabs,
921                 '$ptitle'       => t('Account Settings'),
922
923                 '$submit'       => t('Submit'),
924                 '$baseurl' => $a->get_baseurl(true),
925                 '$uid' => local_user(),
926                 '$form_security_token' => get_form_security_token("settings"),
927                 
928                 '$nickname_block' => $prof_addr,
929                 
930                 '$h_pass'       => t('Password Settings'),
931                 '$password1'=> array('npassword', t('New Password:'), '', ''),
932                 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
933                 '$oid_enable' => (! get_config('system','no_openid')),
934                 '$openid'       => $openid_field,
935                 
936                 '$h_basic'      => t('Basic Settings'),
937                 '$username' => array('username',  t('Full Name:'), $username,''),
938                 '$email'        => array('email', t('Email Address:'), $email, ''),
939                 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
940                 '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
941                 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
942                 
943
944                 '$h_prv'        => t('Security and Privacy Settings'),
945
946                 '$maxreq'       => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
947                 '$permissions' => t('Default Post Permissions'),
948                 '$permdesc' => t("\x28click to open/close\x29"),
949                 '$visibility' => $profile['net-publish'],
950                 '$aclselect' => populate_acl($a->user,$celeb),
951                 '$suggestme' => $suggestme,
952                 '$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
953                 '$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
954                 '$expire'       => $expire_arr,
955
956                 '$profile_in_dir' => $profile_in_dir,
957                 '$profile_in_net_dir' => $profile_in_net_dir,
958                 '$hide_friends' => $hide_friends,
959                 '$hide_wall' => $hide_wall,
960                 '$unkmail' => $unkmail,         
961                 '$cntunkmail'   => array('cntunkmail', t('Maximum private messages per day from unknown people:'), $cntunkmail ,t("\x28to prevent spam abuse\x29")),
962                 
963                 
964                 '$h_not'        => t('Notification Settings'),
965                 '$lbl_not'      => t('Send a notification email when:'),
966                 '$notify1'      => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
967                 '$notify2'      => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
968                 '$notify3'      => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
969                 '$notify4'      => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
970                 '$notify5'      => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
971                 '$notify6'  => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''),          
972                 '$notify7'  => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''),         
973                 
974                 
975                 '$h_advn' => t('Advanced Page Settings'),
976                 '$pagetype' => $pagetype,
977                 
978
979                 
980                 
981
982                 
983
984
985
986
987                 
988
989         ));
990
991         call_hooks('settings_form',$o);
992
993         $o .= '</form>' . "\r\n";
994
995         return $o;
996
997 }}
998