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