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