4 function settings_init(&$a) {
6 profile_load($a,$a->user['nickname']);
9 $a->page['htmlhead'] .= "<script> var ispublic = '" . t('everybody') . "';" ;
11 $a->page['htmlhead'] .= <<< EOT
13 $(document).ready(function() {
15 $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
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();
23 $('#jot-perms-icon').removeClass('lock').addClass('unlock');
24 $('#jot-public').show();
38 function settings_post(&$a) {
41 notice( t('Permission denied.') . EOL);
45 if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
46 notice( t('Permission denied.') . EOL);
50 if(($a->argc > 1) && ($a->argv[1] == 'addon')) {
51 call_hooks('plugin_settings_post', $_POST);
55 call_hooks('settings_post', $_POST);
57 if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
59 $newpass = $_POST['npassword'];
60 $confirm = $_POST['confirm'];
63 if($newpass != $confirm ) {
64 notice( t('Passwords do not match. Password unchanged.') . EOL);
68 if((! x($newpass)) || (! x($confirm))) {
69 notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
74 $password = hash('whirlpool',$newpass);
75 $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
80 info( t('Password changed.') . EOL);
82 notice( t('Password update failed. Please try again.') . EOL);
86 $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : '');
87 $username = ((x($_POST,'username')) ? notags(trim($_POST['username'])) : '');
88 $email = ((x($_POST,'email')) ? notags(trim($_POST['email'])) : '');
89 $timezone = ((x($_POST,'timezone')) ? notags(trim($_POST['timezone'])) : '');
90 $defloc = ((x($_POST,'defloc')) ? notags(trim($_POST['defloc'])) : '');
91 $openid = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url'])) : '');
92 $maxreq = ((x($_POST,'maxreq')) ? intval($_POST['maxreq']) : 0);
93 $expire = ((x($_POST,'expire')) ? intval($_POST['expire']) : 0);
95 $allow_location = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
96 $publish = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
97 $net_publish = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
98 $old_visibility = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
99 $page_flags = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
100 $blockwall = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
102 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
103 $hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
108 $mail_server = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : '');
109 $mail_port = ((x($_POST,'mail_port')) ? $_POST['mail_port'] : '');
110 $mail_ssl = ((x($_POST,'mail_ssl')) ? strtolower(trim($_POST['mail_ssl'])) : '');
111 $mail_user = ((x($_POST,'mail_user')) ? $_POST['mail_user'] : '');
112 $mail_pass = ((x($_POST,'mail_pass')) ? trim($_POST['mail_pass']) : '');
113 $mail_replyto = ((x($_POST,'mail_replyto')) ? $_POST['mail_replyto'] : '');
114 $mail_pubmail = ((x($_POST,'mail_pubmail')) ? $_POST['mail_pubmail'] : '');
117 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
118 if(get_config('system','dfrn_only'))
121 if(! $mail_disabled) {
122 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
126 q("INSERT INTO `mailacct` (`uid`) VALUES (%d)",
130 if(strlen($mail_pass)) {
132 openssl_public_encrypt($mail_pass,$pass,$a->user['pubkey']);
133 q("UPDATE `mailacct` SET `pass` = '%s' WHERE `uid` = %d LIMIT 1",
134 dbesc(bin2hex($pass)),
138 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
139 `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d LIMIT 1",
144 dbesc($mail_replyto),
145 intval($mail_pubmail),
148 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
153 require_once('include/email.php');
154 $mb = construct_mailbox_name($eacct);
155 if(strlen($eacct['server'])) {
157 openssl_private_decrypt(hex2bin($eacct['pass']),$dcrpass,$a->user['prvkey']);
158 $mbox = email_connect($mb,$mail_user,$dcrpass);
161 notice( t('Failed to connect with email account using the settings provided.') . EOL);
168 if(x($_POST,'notify1'))
169 $notify += intval($_POST['notify1']);
170 if(x($_POST,'notify2'))
171 $notify += intval($_POST['notify2']);
172 if(x($_POST,'notify3'))
173 $notify += intval($_POST['notify3']);
174 if(x($_POST,'notify4'))
175 $notify += intval($_POST['notify4']);
176 if(x($_POST,'notify5'))
177 $notify += intval($_POST['notify5']);
179 $email_changed = false;
183 $name_change = false;
185 if($username != $a->user['username']) {
187 if(strlen($username) > 40)
188 $err .= t(' Please use a shorter name.');
189 if(strlen($username) < 3)
190 $err .= t(' Name too short.');
193 if($email != $a->user['email']) {
194 $email_changed = true;
195 if(! valid_email($email))
196 $err .= t(' Not valid email.');
197 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
198 $err .= t(' Cannot change to that email.');
199 $email = $a->user['email'];
208 if($timezone != $a->user['timezone']) {
209 if(strlen($timezone))
210 date_default_timezone_set($timezone);
213 $str_group_allow = perms2str($_POST['group_allow']);
214 $str_contact_allow = perms2str($_POST['contact_allow']);
215 $str_group_deny = perms2str($_POST['group_deny']);
216 $str_contact_deny = perms2str($_POST['contact_deny']);
218 $openidserver = $a->user['openidserver'];
220 // If openid has changed or if there's an openid but no openidserver, try and discover it.
222 if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
224 if(strlen($tmp_str) && validate_url($tmp_str)) {
225 logger('updating openidserver');
226 require_once('library/openid.php');
227 $open_id_obj = new LightOpenID;
228 $open_id_obj->identity = $openid;
229 $openidserver = $open_id_obj->discover($open_id_obj->identity);
235 $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",
240 dbesc($str_contact_allow),
241 dbesc($str_group_allow),
242 dbesc($str_contact_deny),
243 dbesc($str_group_deny),
247 intval($allow_location),
251 dbesc($openidserver),
257 info( t('Settings updated.') . EOL);
259 $r = q("UPDATE `profile`
263 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
265 intval($net_publish),
266 intval($hide_friends),
272 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
274 dbesc(datetime_convert()),
279 if($old_visibility != $net_publish) {
280 // Update global directory in background
281 $url = $_SESSION['my_url'];
282 if($url && strlen(get_config('system','directory_submit_url')))
283 proc_run('php',"include/directory.php","$url");
286 $_SESSION['theme'] = $theme;
287 if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
289 // FIXME - set to un-verified, blocked and redirect to logout
293 goaway($a->get_baseurl() . '/settings' );
294 return; // NOTREACHED
298 if(! function_exists('settings_content')) {
299 function settings_content(&$a) {
302 $o .= '<script> $(document).ready(function() { $(\'#nav-settings-link\').addClass(\'nav-selected\'); });</script>';
305 notice( t('Permission denied.') . EOL );
309 $tabtpl = get_markup_template("settings_tabs.tpl");
310 $tabs = replace_macros($tabtpl, array(
311 '$account' => array( t('Account settings'), $a->get_baseurl().'/settings'),
312 '$plugins' => array( t('Plugin settings'), $a->get_baseurl().'/settings/addon')
317 if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
318 $settings_addons = "";
320 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
322 $settings_addons = t('No Plugin settings configured');
324 call_hooks('plugin_settings', $settings_addons);
327 $tpl = get_markup_template("settings_addons.tpl");
328 $o .= replace_macros($tpl, array(
329 '$title' => t('Plugin Settings'),
331 '$settings_addons' => $settings_addons
336 require_once('include/acl_selectors.php');
338 $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
344 $username = $a->user['username'];
345 $email = $a->user['email'];
346 $nickname = $a->user['nickname'];
347 $timezone = $a->user['timezone'];
348 $notify = $a->user['notify-flags'];
349 $defloc = $a->user['default-location'];
350 $openid = $a->user['openid'];
351 $maxreq = $a->user['maxreq'];
352 $expire = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
353 $blockwall = $a->user['blockwall'];
355 if(! strlen($a->user['timezone']))
356 $timezone = date_default_timezone_get();
359 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
360 if(get_config('system','dfrn_only'))
363 if(! $mail_disabled) {
364 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
372 $mail_server = ((count($r)) ? $r[0]['server'] : '');
373 $mail_port = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
374 $mail_ssl = ((count($r)) ? $r[0]['ssltype'] : '');
375 $mail_user = ((count($r)) ? $r[0]['user'] : '');
376 $mail_replyto = ((count($r)) ? $r[0]['reply_to'] : '');
377 $mail_pubmail = ((count($r)) ? $r[0]['pubmail'] : 0);
378 $mail_chk = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
380 $pageset_tpl = get_markup_template('pagetypes.tpl');
381 $pagetype = replace_macros($pageset_tpl,array(
382 '$page_normal' => array('page-flags', t('Normal Account'), PAGE_NORMAL,
383 t('This account is a normal personal profile'),
384 ($a->user['page-flags'] == PAGE_NORMAL)),
386 '$page_soapbox' => array('page-flags', t('Soapbox Account'), PAGE_SOAPBOX,
387 t('Automatically approve all connection/friend requests as read-only fans'),
388 ($a->user['page-flags'] == PAGE_SOAPBOX)),
390 '$page_community' => array('page-flags', t('Community/Celebrity Account'), PAGE_COMMUNITY,
391 t('Automatically approve all connection/friend requests as read-write fans'),
392 ($a->user['page-flags'] == PAGE_COMMUNITY)),
394 '$page_freelove' => array('page-flags', t('Automatic Friend Account'), PAGE_FREELOVE,
395 t('Automatically approve all connection/friend requests as friends'),
396 ($a->user['page-flags'] == PAGE_FREELOVE)),
399 $noid = get_config('system','no_openid');
402 $openid_field = false;
405 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
409 $opt_tpl = get_markup_template("field_yesno.tpl");
410 if(get_config('system','publish_all')) {
411 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
414 $profile_in_dir = replace_macros($opt_tpl,array(
415 '$field' => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
419 if(strlen(get_config('system','directory_submit_url'))) {
420 $profile_in_net_dir = replace_macros($opt_tpl,array(
421 '$field' => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
425 $profile_in_net_dir = '';
428 $hide_friends = replace_macros($opt_tpl,array(
429 '$field' => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
432 $hide_wall = replace_macros($opt_tpl,array(
433 '$field' => array('hidewall', t('Hide profile details and all your messages from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
443 $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
447 info( t('Profile is <strong>not published</strong>.') . EOL );
450 $default_theme = get_config('system','theme');
452 $default_theme = 'default';
455 $files = glob('view/theme/*');
457 foreach($files as $file) {
458 $f = basename($file);
459 $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
460 $themes[$f]=$theme_name;
463 $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
466 $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl() . '/profile/' . $nickname : '');
468 $tpl_addr = get_markup_template("settings_nick_set.tpl");
470 $prof_addr = replace_macros($tpl_addr,array(
471 '$desc' => t('Your Identity Address is'),
472 '$nickname' => $nickname,
473 '$subdir' => $subdir,
474 '$basepath' => $a->get_hostname()
477 $stpl = get_markup_template('settings.tpl');
479 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
483 $o .= replace_macros($stpl,array(
485 '$ptitle' => t('Account Settings'),
487 '$submit' => t('Submit'),
488 '$baseurl' => $a->get_baseurl(),
489 '$uid' => local_user(),
491 '$nickname_block' => $prof_addr,
492 '$uexport' => t('Export Personal Data'),
495 '$h_pass' => t('Password Settings'),
496 '$password1'=> array('npassword', t('New Password:'), '', ''),
497 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
498 '$openid' => $openid_field,
500 '$h_basic' => t('Basic Settings'),
501 '$username' => array('username', t('Full Name:'), $username,''),
502 '$email' => array('email', t('Email Address:'), $email, ''),
503 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
504 '$defloc' => array('defloc', t('Default Post Location:'), $defloc, ''),
505 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
506 '$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes),
510 '$h_prv' => t('Security and Privacy Settings'),
512 '$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
513 '$permissions' => t('Default Post Permissions'),
514 '$permdesc' => t("\x28click to open/close\x29"),
515 '$visibility' => $profile['net-publish'],
516 '$aclselect' => populate_acl($a->user,$celeb),
518 '$blockwall'=> array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
519 '$expire' => array('expire', t("Automatically expire posts after days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
521 '$profile_in_dir' => $profile_in_dir,
522 '$profile_in_net_dir' => $profile_in_net_dir,
523 '$hide_friends' => $hide_friends,
524 '$hide_wall' => $hide_wall,
528 '$h_not' => t('Notification Settings'),
529 '$lbl_not' => t('Send a notification email when:'),
530 '$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), ''),
531 '$notify2' => array('notify1', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), ''),
532 '$notify3' => array('notify1', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), ''),
533 '$notify4' => array('notify1', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), ''),
534 '$notify5' => array('notify1', t('You receive a private message'), ($notify & NOTIFY_MAIL), ''),
538 '$h_imap' => t('Email/Mailbox Setup'),
539 '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
540 '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $imap_last_check,''),
541 '$mail_disabled' => (($mail_disabled) ? t('Email access is disabled on this site.') : ''),
542 '$mail_server' => array('mail_server', t('IMAP server name:'), $mail_server, ''),
543 '$mail_port' => array('mail_port', t('IMAP port:'), $mail_port, ''),
544 '$mail_ssl' => array('mail_ssl', t('Security:'), strtoupper($mail_ssl), '', array( ''=>t('None'), 'TSL'=>'TSL', 'SSL'=>'SSL')),
545 '$mail_user' => array('mail_user', t('Email login name:'), $mail_user, ''),
546 '$mail_pass' => array('mail_pass', t('Email password:'), '', ''),
547 '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
548 '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
553 '$h_advn' => t('Advanced Page Settings'),
554 '$pagetype' => $pagetype,
569 call_hooks('settings_form',$o);
571 $o .= '</form>' . "\r\n";