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