4 function settings_init(&$a) {
6 profile_load($a,$a->user['nickname']);
11 function settings_post(&$a) {
14 notice( t('Permission denied.') . EOL);
18 if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
19 notice( t('Permission denied.') . EOL);
23 if(($a->argc > 1) && ($a->argv[1] == 'addon')) {
24 call_hooks('plugin_settings_post', $_POST);
28 call_hooks('settings_post', $_POST);
30 if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
32 $newpass = $_POST['npassword'];
33 $confirm = $_POST['confirm'];
36 if($newpass != $confirm ) {
37 notice( t('Passwords do not match. Password unchanged.') . EOL);
41 if((! x($newpass)) || (! x($confirm))) {
42 notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
47 $password = hash('whirlpool',$newpass);
48 $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
53 notice( t('Password changed.') . EOL);
55 notice( t('Password update failed. Please try again.') . EOL);
59 $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : '');
60 $username = ((x($_POST,'username')) ? notags(trim($_POST['username'])) : '');
61 $email = ((x($_POST,'email')) ? notags(trim($_POST['email'])) : '');
62 $timezone = ((x($_POST,'timezone')) ? notags(trim($_POST['timezone'])) : '');
63 $defloc = ((x($_POST,'defloc')) ? notags(trim($_POST['defloc'])) : '');
64 $openid = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url'])) : '');
65 $maxreq = ((x($_POST,'maxreq')) ? intval($_POST['maxreq']) : 0);
66 $expire = ((x($_POST,'expire')) ? intval($_POST['expire']) : 0);
68 $allow_location = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
69 $publish = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
70 $net_publish = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
71 $old_visibility = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
72 $page_flags = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
73 $blockwall = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
77 if(x($_POST,'notify1'))
78 $notify += intval($_POST['notify1']);
79 if(x($_POST,'notify2'))
80 $notify += intval($_POST['notify2']);
81 if(x($_POST,'notify3'))
82 $notify += intval($_POST['notify3']);
83 if(x($_POST,'notify4'))
84 $notify += intval($_POST['notify4']);
85 if(x($_POST,'notify5'))
86 $notify += intval($_POST['notify5']);
88 $email_changed = false;
94 if($username != $a->user['username']) {
96 if(strlen($username) > 40)
97 $err .= t(' Please use a shorter name.');
98 if(strlen($username) < 3)
99 $err .= t(' Name too short.');
102 if($email != $a->user['email']) {
103 $email_changed = true;
104 if(! valid_email($email))
105 $err .= t(' Not valid email.');
106 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
107 $err .= t(' Cannot change to that email.');
108 $email = $a->user['email'];
117 if($timezone != $a->user['timezone']) {
118 if(strlen($timezone))
119 date_default_timezone_set($timezone);
122 $str_group_allow = perms2str($_POST['group_allow']);
123 $str_contact_allow = perms2str($_POST['contact_allow']);
124 $str_group_deny = perms2str($_POST['group_deny']);
125 $str_contact_deny = perms2str($_POST['contact_deny']);
127 $openidserver = $a->user['openidserver'];
129 // If openid has changed or if there's an openid but no openidserver, try and discover it.
131 if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
133 if(strlen($tmp_str) && validate_url($tmp_str)) {
134 logger('updating openidserver');
135 require_once('library/openid.php');
136 $open_id_obj = new LightOpenID;
137 $open_id_obj->identity = $openid;
138 $openidserver = $open_id_obj->discover($open_id_obj->identity);
144 $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 WHERE `uid` = %d LIMIT 1",
149 dbesc($str_contact_allow),
150 dbesc($str_group_allow),
151 dbesc($str_contact_deny),
152 dbesc($str_group_deny),
156 intval($allow_location),
160 dbesc($openidserver),
165 notice( t('Settings updated.') . EOL);
167 $r = q("UPDATE `profile`
168 SET `publish` = %d, `net-publish` = %d
169 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
171 intval($net_publish),
177 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
179 dbesc(datetime_convert()),
184 if($old_visibility != $net_publish) {
185 // Update global directory in background
186 $url = $_SESSION['my_url'];
187 if($url && strlen(get_config('system','directory_submit_url')))
188 proc_run('php',"include/directory.php","$url");
191 $_SESSION['theme'] = $theme;
192 if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
194 // FIXME - set to un-verified, blocked and redirect to logout
198 goaway($a->get_baseurl() . '/settings' );
199 return; // NOTREACHED
203 if(! function_exists('settings_content')) {
204 function settings_content(&$a) {
207 $o .= '<script> $(document).ready(function() { $(\'#nav-settings-link\').addClass(\'nav-selected\'); });</script>';
210 notice( t('Permission denied.') . EOL );
214 if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
215 $o .= '<h1>' . t('Plugin Settings') . '</h1>';
216 $o .= '<div id="account-settings-link"><a href="settings">' . t('Account Settings') . '</a></div>';
218 $o .= '<form action="settings/addon" method="post" >';
220 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
222 notice( t('No Plugin settings configured') . EOL);
224 call_hooks('plugin_settings', $o);
229 require_once('include/acl_selectors.php');
231 $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
237 $username = $a->user['username'];
238 $email = $a->user['email'];
239 $nickname = $a->user['nickname'];
240 $timezone = $a->user['timezone'];
241 $notify = $a->user['notify-flags'];
242 $defloc = $a->user['default-location'];
243 $openid = $a->user['openid'];
244 $maxreq = $a->user['maxreq'];
245 $expire = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
246 $blockwall = $a->user['blockwall'];
248 if(! strlen($a->user['timezone']))
249 $timezone = date_default_timezone_get();
251 $pageset_tpl = load_view_file('view/pagetypes.tpl');
252 $pagetype = replace_macros($pageset_tpl,array(
253 '$normal' => (($a->user['page-flags'] == PAGE_NORMAL) ? " checked=\"checked\" " : ""),
254 '$soapbox' => (($a->user['page-flags'] == PAGE_SOAPBOX) ? " checked=\"checked\" " : ""),
255 '$community' => (($a->user['page-flags'] == PAGE_COMMUNITY) ? " checked=\"checked\" " : ""),
256 '$freelove' => (($a->user['page-flags'] == PAGE_FREELOVE) ? " checked=\"checked\" " : ""),
257 '$page_normal' => PAGE_NORMAL,
258 '$page_soapbox' => PAGE_SOAPBOX,
259 '$page_community' => PAGE_COMMUNITY,
260 '$page_freelove' => PAGE_FREELOVE
263 $noid = get_config('system','no_openid');
269 $oidhtml = '<label id="settings-openid-label" for="settings-openid" >' . t('OpenID: ') . '</label><input type="text" id="settings-openid" class="openid" name="openid_url" value="$openid" />' . t(" \x28Optional\x29 Allow this OpenID to login to this account.");
273 if(get_config('system','publish_all')) {
274 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
277 $opt_tpl = load_view_file("view/profile-in-directory.tpl");
278 $profile_in_dir = replace_macros($opt_tpl,array(
279 '$yes_selected' => (($profile['publish']) ? " checked=\"checked\" " : ""),
280 '$no_selected' => (($profile['publish'] == 0) ? " checked=\"checked\" " : "")
284 if(strlen(get_config('system','directory_submit_url'))) {
285 $opt_tpl = load_view_file("view/profile-in-netdir.tpl");
287 $profile_in_net_dir = replace_macros($opt_tpl,array(
288 '$yes_selected' => (($profile['net-publish']) ? " checked=\"checked\" " : ""),
289 '$no_selected' => (($profile['net-publish'] == 0) ? " checked=\"checked\" " : "")
293 $profile_in_net_dir = '';
295 $loc_checked = (($a->user['allow_location'] == 1) ? " checked=\"checked\" " : "");
297 $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
301 notice( t('Profile is <strong>not published</strong>.') . EOL );
303 $nickname_block = load_view_file("view/settings_nick_set.tpl");
305 $nickname_subdir = '';
306 if(strlen($a->get_path())) {
307 $subdir_tpl = load_view_file('view/settings_nick_subdir.tpl');
308 $nickname_subdir = replace_macros($subdir_tpl, array(
309 '$baseurl' => $a->get_baseurl(),
310 '$nickname' => $nickname,
311 '$hostname' => $a->get_hostname()
315 $theme_selector = '<select name="theme" id="theme-select" >';
316 $files = glob('view/theme/*');
318 $default_theme = get_config('system','theme');
320 $default_theme = 'default';
323 foreach($files as $file) {
324 $f = basename($file);
325 $selected = (($f == $_SESSION['theme']) || ($f === $default_theme && (! x($_SESSION,'theme')))
326 ? ' selected="selected" ' : '' );
327 $theme_selector .= '<option val="' . basename($file) . '"' . $selected . '>' . basename($file) . '</option>';
330 $theme_selector .= '</select>';
333 $nickname_block = replace_macros($nickname_block,array(
334 '$nickname' => $nickname,
335 '$uid' => local_user(),
336 '$subdir' => $nickname_subdir,
337 '$basepath' => $a->get_hostname(),
338 '$baseurl' => $a->get_baseurl()));
340 $stpl = load_view_file('view/settings.tpl');
342 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
344 $o .= replace_macros($stpl,array(
345 '$baseurl' => $a->get_baseurl(),
346 '$oidhtml' => $oidhtml,
347 '$uid' => local_user(),
348 '$username' => $username,
349 '$openid' => $openid,
351 '$nickname_block' => $nickname_block,
352 '$timezone' => $timezone,
353 '$zoneselect' => select_timezone($timezone),
354 '$defloc' => $defloc,
355 '$loc_checked' => $loc_checked,
356 '$profile_in_dir' => $profile_in_dir,
357 '$profile_in_net_dir' => $profile_in_net_dir,
358 '$permissions' => t('Default Post Permissions'),
359 '$visibility' => $profile['net-publish'],
360 '$aclselect' => populate_acl($a->user,$celeb),
361 '$sel_notify1' => (($notify & NOTIFY_INTRO) ? ' checked="checked" ' : ''),
362 '$sel_notify2' => (($notify & NOTIFY_CONFIRM) ? ' checked="checked" ' : ''),
363 '$sel_notify3' => (($notify & NOTIFY_WALL) ? ' checked="checked" ' : ''),
364 '$sel_notify4' => (($notify & NOTIFY_COMMENT) ? ' checked="checked" ' : ''),
365 '$sel_notify5' => (($notify & NOTIFY_MAIL) ? ' checked="checked" ' : ''),
366 '$maxreq' => $maxreq,
367 '$expire' => $expire,
368 '$blockw_checked' => (($blockwall) ? '' : ' checked="checked" ' ),
369 '$theme' => $theme_selector,
370 '$pagetype' => $pagetype
373 call_hooks('settings_form',$o);
375 $o .= '</form>' . "\r\n";