]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
2b9cde735343b99194b5f962b30e443d92bb814a
[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') && 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
226         $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
227         $hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
228
229
230         $notify = 0;
231
232         if(x($_POST,'notify1'))
233                 $notify += intval($_POST['notify1']);
234         if(x($_POST,'notify2'))
235                 $notify += intval($_POST['notify2']);
236         if(x($_POST,'notify3'))
237                 $notify += intval($_POST['notify3']);
238         if(x($_POST,'notify4'))
239                 $notify += intval($_POST['notify4']);
240         if(x($_POST,'notify5'))
241                 $notify += intval($_POST['notify5']);
242
243         $email_changed = false;
244
245         $err = '';
246
247         $name_change = false;
248
249         if($username != $a->user['username']) {
250                 $name_change = true;
251                 if(strlen($username) > 40)
252                         $err .= t(' Please use a shorter name.');
253                 if(strlen($username) < 3)
254                         $err .= t(' Name too short.');
255         }
256
257         if($email != $a->user['email']) {
258                 $email_changed = true;
259         if(! valid_email($email))
260                         $err .= t(' Not valid email.');
261                 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
262                         $err .= t(' Cannot change to that email.');
263                         $email = $a->user['email'];
264                 }
265         }
266
267         if(strlen($err)) {
268                 notice($err . EOL);
269                 return;
270         }
271
272         if($timezone != $a->user['timezone']) {
273                 if(strlen($timezone))
274                         date_default_timezone_set($timezone);
275         }
276
277         $str_group_allow   = perms2str($_POST['group_allow']);
278         $str_contact_allow = perms2str($_POST['contact_allow']);
279         $str_group_deny    = perms2str($_POST['group_deny']);
280         $str_contact_deny  = perms2str($_POST['contact_deny']);
281
282         $openidserver = $a->user['openidserver'];
283
284         // If openid has changed or if there's an openid but no openidserver, try and discover it.
285
286         if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
287                 $tmp_str = $openid;
288                 if(strlen($tmp_str) && validate_url($tmp_str)) {
289                         logger('updating openidserver');
290                         require_once('library/openid.php');
291                         $open_id_obj = new LightOpenID;
292                         $open_id_obj->identity = $openid;
293                         $openidserver = $open_id_obj->discover($open_id_obj->identity);
294                 }
295                 else
296                         $openidserver = '';
297         }
298
299         $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  WHERE `uid` = %d LIMIT 1",
300                         dbesc($username),
301                         dbesc($email),
302                         dbesc($openid),
303                         dbesc($timezone),
304                         dbesc($str_contact_allow),
305                         dbesc($str_group_allow),
306                         dbesc($str_contact_deny),
307                         dbesc($str_group_deny),
308                         intval($notify),
309                         intval($page_flags),
310                         dbesc($defloc),
311                         intval($allow_location),
312                         dbesc($theme),
313                         intval($maxreq),
314                         intval($expire),
315                         dbesc($openidserver),
316                         intval($blockwall),
317                         intval($hidewall),
318                         intval(local_user())
319         );
320         if($r)
321                 info( t('Settings updated.') . EOL);
322
323         $r = q("UPDATE `profile` 
324                 SET `publish` = %d, 
325                 `net-publish` = %d,
326                 `hide-friends` = %d
327                 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
328                 intval($publish),
329                 intval($net_publish),
330                 intval($hide_friends),
331                 intval(local_user())
332         );
333
334
335         if($name_change) {
336                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
337                         dbesc($username),
338                         dbesc(datetime_convert()),
339                         intval(local_user())
340                 );
341         }               
342
343         if($old_visibility != $net_publish) {
344                 // Update global directory in background
345                 $url = $_SESSION['my_url'];
346                 if($url && strlen(get_config('system','directory_submit_url')))
347                         proc_run('php',"include/directory.php","$url");
348
349         }
350
351 // not yet ready for prime time
352 //              require_once('include/profile_update.php');
353 //              profile_change();
354
355         $_SESSION['theme'] = $theme;
356         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
357
358                 // FIXME - set to un-verified, blocked and redirect to logout
359
360         }
361
362         goaway($a->get_baseurl() . '/settings' );
363         return; // NOTREACHED
364 }
365                 
366
367 if(! function_exists('settings_content')) {
368 function settings_content(&$a) {
369
370         $o = '';
371         nav_set_selected('settings');
372
373         if(! local_user()) {
374                 notice( t('Permission denied.') . EOL );
375                 return;
376         }
377         
378         $tabs = array(
379                 array(
380                         'label' => t('Account settings'),
381                         'url'   => $a->get_baseurl().'/settings',
382                         'sel'   => (($a->argc == 1)?'active':''),
383                 ),      
384                 array(
385                         'label' => t('Connector settings'),
386                         'url'   => $a->get_baseurl().'/settings/connectors',
387                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
388                 ),
389                 array(
390                         'label' => t('Plugin settings'),
391                         'url'   => $a->get_baseurl().'/settings/addon',
392                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
393                 ),
394                 array(
395                         'label' => t('Connections'),
396                         'url' => $a->get_baseurl() . '/settings/oauth',
397                         'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
398                 ),
399                 array(
400                         'label' => t('Export personal data'),
401                         'url' => $a->get_baseurl() . '/uexport',
402                         'sel' => ''
403                 )
404         );
405         
406         $tabtpl = get_markup_template("common_tabs.tpl");
407         $tabs = replace_macros($tabtpl, array(
408                 '$tabs' => $tabs,
409         ));
410                 
411         if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
412                 
413                 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
414                         $tpl = get_markup_template("settings_oauth_edit.tpl");
415                         $o .= replace_macros($tpl, array(
416                                 '$tabs'         => $tabs,
417                                 '$title'        => t('Add application'),
418                                 '$submit'       => t('Submit'),
419                                 '$cancel'       => t('Cancel'),
420                                 '$name'         => array('name', t('Name'), '', ''),
421                                 '$key'          => array('key', t('Consumer Key'), '', ''),
422                                 '$secret'       => array('secret', t('Consumer Secret'), '', ''),
423                                 '$redirect'     => array('redirect', t('Redirect'), '', ''),
424                                 '$icon'         => array('icon', t('Icon url'), '', ''),
425                         ));
426                         return $o;
427                 }
428                 
429                 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
430                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
431                                         dbesc($a->argv[3]),
432                                         local_user());
433                         
434                         if (!count($r)){
435                                 notice(t("You can't edit this application."));
436                                 return;
437                         }
438                         $app = $r[0];
439                         
440                         $tpl = get_markup_template("settings_oauth_edit.tpl");
441                         $o .= replace_macros($tpl, array(
442                                 '$tabs'         => $tabs,
443                                 '$title'        => t('Add application'),
444                                 '$submit'       => t('Update'),
445                                 '$cancel'       => t('Cancel'),
446                                 '$name'         => array('name', t('Name'), $app['name'] , ''),
447                                 '$key'          => array('key', t('Consumer Key'), $app['client_id'], ''),
448                                 '$secret'       => array('secret', t('Consumer Secret'), $app['pw'], ''),
449                                 '$redirect'     => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
450                                 '$icon'         => array('icon', t('Icon url'), $app['icon'], ''),
451                         ));
452                         return $o;
453                 }
454                 
455                 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
456                         $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
457                                         dbesc($a->argv[3]),
458                                         local_user());
459                         goaway($a->get_baseurl()."/settings/oauth/");
460                         return;                 
461                 }
462                 
463                 
464                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my 
465                                 FROM clients
466                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
467                                 WHERE clients.uid IN (%d,0)",
468                                 local_user(),
469                                 local_user());
470                 
471                 
472                 $tpl = get_markup_template("settings_oauth.tpl");
473                 $o .= replace_macros($tpl, array(
474                         '$baseurl'      => $a->get_baseurl(),
475                         '$title'        => t('Connected Apps'),
476                         '$add'          => t('Add application'),
477                         '$edit'         => t('Edit'),
478                         '$delete'               => t('Delete'),
479                         '$consumerkey' => t('Client key starts with'),
480                         '$noname'       => t('No name'),
481                         '$remove'       => t('Remove authorization'),
482                         '$tabs'         => $tabs,
483                         '$apps'         => $r,
484                 ));
485                 return $o;
486                 
487         }
488         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
489                 $settings_addons = "";
490                 
491                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
492                 if(! count($r))
493                         $settings_addons = t('No Plugin settings configured');
494
495                 call_hooks('plugin_settings', $settings_addons);
496                 
497                 
498                 $tpl = get_markup_template("settings_addons.tpl");
499                 $o .= replace_macros($tpl, array(
500                         '$title'        => t('Plugin Settings'),
501                         '$tabs'         => $tabs,
502                         '$settings_addons' => $settings_addons
503                 ));
504                 return $o;
505         }
506
507         if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
508
509                 $settings_connectors = "";
510                 
511                 call_hooks('connector_settings', $settings_connectors);
512
513                 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
514                 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
515
516         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
517         if(get_config('system','dfrn_only'))
518                 $mail_disabled = 1;
519
520         if(! $mail_disabled) {
521                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
522                         local_user()
523                 );
524         }
525         else {
526                 $r = null;
527         }
528
529         $mail_server  = ((count($r)) ? $r[0]['server'] : '');
530         $mail_port    = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
531         $mail_ssl     = ((count($r)) ? $r[0]['ssltype'] : '');
532         $mail_user    = ((count($r)) ? $r[0]['user'] : '');
533         $mail_replyto = ((count($r)) ? $r[0]['reply_to'] : '');
534         $mail_pubmail = ((count($r)) ? $r[0]['pubmail'] : 0);
535         $mail_chk     = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
536
537                 
538         $tpl = get_markup_template("settings_connectors.tpl");
539                 $o .= replace_macros($tpl, array(
540                         '$title'        => t('Connector Settings'),
541                         '$tabs'         => $tabs,
542                 
543                 '$diasp_enabled' => $diasp_enabled,
544                 '$ostat_enabled' => $ostat_enabled,
545                 
546                 '$h_imap' => t('Email/Mailbox Setup'),
547                 '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
548                 '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
549                 '$mail_disabled' => (($mail_disabled) ? t('Email access is disabled on this site.') : ''),
550                 '$mail_server'  => array('mail_server',  t('IMAP server name:'), $mail_server, ''),
551                 '$mail_port'    => array('mail_port',    t('IMAP port:'), $mail_port, ''),
552                 '$mail_ssl'             => array('mail_ssl',     t('Security:'), strtoupper($mail_ssl), '', array( ''=>t('None'), 'TSL'=>'TSL', 'SSL'=>'SSL')),
553                 '$mail_user'    => array('mail_user',    t('Email login name:'), $mail_user, ''),
554                 '$mail_pass'    => array('mail_pass',    t('Email password:'), '', ''),
555                 '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
556                 '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
557                 '$submit' => t('Submit'),               
558                 
559
560
561                         '$settings_connectors' => $settings_connectors
562                 ));
563                 return $o;
564         }
565
566                 
567         require_once('include/acl_selectors.php');
568
569         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
570                 intval(local_user())
571         );
572         if(count($p))
573                 $profile = $p[0];
574
575         $username = $a->user['username'];
576         $email    = $a->user['email'];
577         $nickname = $a->user['nickname'];
578         $timezone = $a->user['timezone'];
579         $notify   = $a->user['notify-flags'];
580         $defloc   = $a->user['default-location'];
581         $openid   = $a->user['openid'];
582         $maxreq   = $a->user['maxreq'];
583         $expire   = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
584         $blockwall = $a->user['blockwall'];
585
586         if(! strlen($a->user['timezone']))
587                 $timezone = date_default_timezone_get();
588
589
590
591         $pageset_tpl = get_markup_template('pagetypes.tpl');
592         $pagetype = replace_macros($pageset_tpl,array(
593                 '$page_normal'  => array('page-flags', t('Normal Account'), PAGE_NORMAL, 
594                                                                         t('This account is a normal personal profile'), 
595                                                                         ($a->user['page-flags'] == PAGE_NORMAL)),
596                                                                 
597                 '$page_soapbox'         => array('page-flags', t('Soapbox Account'), PAGE_SOAPBOX, 
598                                                                         t('Automatically approve all connection/friend requests as read-only fans'), 
599                                                                         ($a->user['page-flags'] == PAGE_SOAPBOX)),
600                                                                         
601                 '$page_community'       => array('page-flags', t('Community/Celebrity Account'), PAGE_COMMUNITY, 
602                                                                         t('Automatically approve all connection/friend requests as read-write fans'), 
603                                                                         ($a->user['page-flags'] == PAGE_COMMUNITY)),
604                                                                         
605                 '$page_freelove'        => array('page-flags', t('Automatic Friend Account'), PAGE_FREELOVE, 
606                                                                         t('Automatically approve all connection/friend requests as friends'), 
607                                                                         ($a->user['page-flags'] == PAGE_FREELOVE)),
608         ));
609
610         $noid = get_config('system','no_openid');
611
612         if($noid) {
613                 $openid_field = false;
614         }
615         else {
616                 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
617         }
618
619
620         $opt_tpl = get_markup_template("field_yesno.tpl");
621         if(get_config('system','publish_all')) {
622                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
623         }
624         else {
625                 $profile_in_dir = replace_macros($opt_tpl,array(
626                         '$field'        => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
627                 ));
628         }
629
630         if(strlen(get_config('system','directory_submit_url'))) {
631                 $profile_in_net_dir = replace_macros($opt_tpl,array(
632                         '$field'        => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
633                 ));
634         }
635         else
636                 $profile_in_net_dir = '';
637
638
639         $hide_friends = replace_macros($opt_tpl,array(
640                         '$field'        => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
641         ));
642
643         $hide_wall = replace_macros($opt_tpl,array(
644                         '$field'        => array('hidewall',  t('Hide profile details and all your messages from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
645
646         ));
647
648
649         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
650                 ? true : false);
651
652         if($invisible)
653                 info( t('Profile is <strong>not published</strong>.') . EOL );
654
655         
656         $default_theme = get_config('system','theme');
657         if(! $default_theme)
658                 $default_theme = 'default';
659         
660         $themes = array();
661         $files = glob('view/theme/*');
662         if($files) {
663                 foreach($files as $file) {
664                         $f = basename($file);
665                         $theme_name = ((file_exists($file . '/experimental')) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
666                         $themes[$f]=$theme_name;
667                 }
668         }
669         $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
670
671
672         $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl() . '/profile/' . $nickname : '');
673
674         $tpl_addr = get_markup_template("settings_nick_set.tpl");
675
676         $prof_addr = replace_macros($tpl_addr,array(
677                 '$desc' => t('Your Identity Address is'),
678                 '$nickname' => $nickname,
679                 '$subdir' => $subdir,
680                 '$basepath' => $a->get_hostname()
681         ));
682
683         $stpl = get_markup_template('settings.tpl');
684
685         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
686
687         
688
689         $o .= replace_macros($stpl,array(
690                 '$tabs'         => $tabs,
691                 '$ptitle'       => t('Account Settings'),
692
693                 '$submit'       => t('Submit'),
694                 '$baseurl' => $a->get_baseurl(),
695                 '$uid' => local_user(),
696                 
697                 '$nickname_block' => $prof_addr,
698                 
699                 '$h_pass'       => t('Password Settings'),
700                 '$password1'=> array('npassword', t('New Password:'), '', ''),
701                 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
702                 '$oid_enable' => (! get_config('system','no_openid')),
703                 '$openid'       => $openid_field,
704                 
705                 '$h_basic'      => t('Basic Settings'),
706                 '$username' => array('username',  t('Full Name:'), $username,''),
707                 '$email'        => array('email', t('Email Address:'), $email, ''),
708                 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
709                 '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
710                 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
711                 '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes),
712
713
714
715                 '$h_prv'        => t('Security and Privacy Settings'),
716
717                 '$maxreq'       => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
718                 '$permissions' => t('Default Post Permissions'),
719                 '$permdesc' => t("\x28click to open/close\x29"),
720                 '$visibility' => $profile['net-publish'],
721                 '$aclselect' => populate_acl($a->user,$celeb),
722
723                 '$blockwall'=> array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
724                 '$expire'       => array('expire', t("Automatically expire posts after days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
725
726                 '$profile_in_dir' => $profile_in_dir,
727                 '$profile_in_net_dir' => $profile_in_net_dir,
728                 '$hide_friends' => $hide_friends,
729                 '$hide_wall' => $hide_wall,
730                 
731                 
732                 
733                 '$h_not'        => t('Notification Settings'),
734                 '$lbl_not'      => t('Send a notification email when:'),
735                 '$notify1'      => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
736                 '$notify2'      => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
737                 '$notify3'      => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
738                 '$notify4'      => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
739                 '$notify5'      => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
740                 
741                 
742                 
743                 '$h_advn' => t('Advanced Page Settings'),
744                 '$pagetype' => $pagetype,
745                 
746
747                 
748                 
749
750                 
751
752
753
754
755                 
756
757         ));
758
759         call_hooks('settings_form',$o);
760
761         $o .= '</form>' . "\r\n";
762
763         return $o;
764
765 }}
766