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