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