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