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