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