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