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