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