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