4 function settings_init(&$a) {
6 profile_load($a,$a->user['nickname']);
11 function settings_post(&$a) {
14 notice( t('Permission denied.') . EOL);
18 call_hooks('settings_post', $_POST);
20 if(($a->argc > 1) && ($a->argv[1] == 'addon'))
23 if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
24 notice( t('Permission denied.') . EOL);
27 if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
29 $newpass = $_POST['npassword'];
30 $confirm = $_POST['confirm'];
33 if($newpass != $confirm ) {
34 notice( t('Passwords do not match. Password unchanged.') . EOL);
38 if((! x($newpass)) || (! x($confirm))) {
39 notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
44 $password = hash('whirlpool',$newpass);
45 $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
50 notice( t('Password changed.') . EOL);
52 notice( t('Password update failed. Please try again.') . EOL);
56 $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : '');
57 $username = ((x($_POST,'username')) ? notags(trim($_POST['username'])) : '');
58 $email = ((x($_POST,'email')) ? notags(trim($_POST['email'])) : '');
59 $timezone = ((x($_POST,'timezone')) ? notags(trim($_POST['timezone'])) : '');
60 $defloc = ((x($_POST,'defloc')) ? notags(trim($_POST['defloc'])) : '');
61 $openid = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url'])) : '');
62 $maxreq = ((x($_POST,'maxreq')) ? intval($_POST['maxreq']) : 0);
64 $allow_location = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
65 $publish = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
66 $net_publish = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
67 $old_visibility = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
68 $page_flags = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
72 if(x($_POST,'notify1'))
73 $notify += intval($_POST['notify1']);
74 if(x($_POST,'notify2'))
75 $notify += intval($_POST['notify2']);
76 if(x($_POST,'notify3'))
77 $notify += intval($_POST['notify3']);
78 if(x($_POST,'notify4'))
79 $notify += intval($_POST['notify4']);
80 if(x($_POST,'notify5'))
81 $notify += intval($_POST['notify5']);
83 $email_changed = false;
87 if($username != $a->user['username']) {
88 if(strlen($username) > 40)
89 $err .= t(' Please use a shorter name.');
90 if(strlen($username) < 3)
91 $err .= t(' Name too short.');
94 if($email != $a->user['email']) {
95 $email_changed = true;
96 if(! valid_email($email))
97 $err .= t(' Not valid email.');
105 if($timezone != $a->user['timezone']) {
106 if(strlen($timezone))
107 date_default_timezone_set($timezone);
110 $str_group_allow = perms2str($_POST['group_allow']);
111 $str_contact_allow = perms2str($_POST['contact_allow']);
112 $str_group_deny = perms2str($_POST['group_deny']);
113 $str_contact_deny = perms2str($_POST['contact_deny']);
115 $openidserver = $a->user['openidserver'];
117 // If openid has changed or if there's an openid but no openidserver, try and discover it.
119 if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
121 if(strlen($tmp_str) && validate_url($tmp_str)) {
122 logger('updating openidserver');
123 require_once('library/openid.php');
124 $open_id_obj = new LightOpenID;
125 $open_id_obj->identity = $openid;
126 $openidserver = $open_id_obj->discover($open_id_obj->identity);
132 $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, `openidserver` = '%s' WHERE `uid` = %d LIMIT 1",
137 dbesc($str_contact_allow),
138 dbesc($str_group_allow),
139 dbesc($str_contact_deny),
140 dbesc($str_group_deny),
144 intval($allow_location),
147 dbesc($openidserver),
151 notice( t('Settings updated.') . EOL);
153 $r = q("UPDATE `profile`
154 SET `publish` = %d, `net-publish` = %d
155 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
157 intval($net_publish),
161 if($old_visibility != $net_publish) {
162 // Update global directory in background
163 $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
164 $url = $_SESSION['my_url'];
165 if($url && strlen(get_config('system','directory_submit_url')))
166 proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",
170 $_SESSION['theme'] = $theme;
171 if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
173 // FIXME - set to un-verified, blocked and redirect to logout
177 goaway($a->get_baseurl() . '/settings' );
178 return; // NOTREACHED
182 if(! function_exists('settings_content')) {
183 function settings_content(&$a) {
186 $o .= '<script> $(document).ready(function() { $(\'#nav-settings-link\').addClass(\'nav-selected\'); });</script>';
189 notice( t('Permission denied.') . EOL );
193 if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
194 $o .= '<h1>' . t('Plugin Settings') . '</h1>';
195 $o .= '<div id="account-settings-link"><a href="settings">' . t('Account Settings') . '</a></div>';
197 $o .= '<form action="settings/addon" method="post" >';
199 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
201 notice( t('No Plugin settings configured') . EOL);
203 call_hooks('plugin_settings', $o);
208 require_once('include/acl_selectors.php');
210 $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
216 $username = $a->user['username'];
217 $email = $a->user['email'];
218 $nickname = $a->user['nickname'];
219 $timezone = $a->user['timezone'];
220 $notify = $a->user['notify-flags'];
221 $defloc = $a->user['default-location'];
222 $openid = $a->user['openid'];
223 $maxreq = $a->user['maxreq'];
225 if(! strlen($a->user['timezone']))
226 $timezone = date_default_timezone_get();
228 $pageset_tpl = load_view_file('view/pagetypes.tpl');
229 $pagetype = replace_macros($pageset_tpl,array(
230 '$normal' => (($a->user['page-flags'] == PAGE_NORMAL) ? " checked=\"checked\" " : ""),
231 '$soapbox' => (($a->user['page-flags'] == PAGE_SOAPBOX) ? " checked=\"checked\" " : ""),
232 '$community' => (($a->user['page-flags'] == PAGE_COMMUNITY) ? " checked=\"checked\" " : ""),
233 '$freelove' => (($a->user['page-flags'] == PAGE_FREELOVE) ? " checked=\"checked\" " : ""),
234 '$page_normal' => PAGE_NORMAL,
235 '$page_soapbox' => PAGE_SOAPBOX,
236 '$page_community' => PAGE_COMMUNITY,
237 '$page_freelove' => PAGE_FREELOVE
240 $noid = get_config('system','no_openid');
246 $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.");
250 if(get_config('system','publish_all')) {
251 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
254 $opt_tpl = load_view_file("view/profile-in-directory.tpl");
255 $profile_in_dir = replace_macros($opt_tpl,array(
256 '$yes_selected' => (($profile['publish']) ? " checked=\"checked\" " : ""),
257 '$no_selected' => (($profile['publish'] == 0) ? " checked=\"checked\" " : "")
261 if(strlen(get_config('system','directory_submit_url'))) {
262 $opt_tpl = load_view_file("view/profile-in-netdir.tpl");
264 $profile_in_net_dir = replace_macros($opt_tpl,array(
265 '$yes_selected' => (($profile['net-publish']) ? " checked=\"checked\" " : ""),
266 '$no_selected' => (($profile['net-publish'] == 0) ? " checked=\"checked\" " : "")
270 $profile_in_net_dir = '';
272 $loc_checked = (($a->user['allow_location'] == 1) ? " checked=\"checked\" " : "");
274 $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
278 notice( t('Profile is <strong>not published</strong>.') . EOL );
280 $nickname_block = load_view_file("view/settings_nick_set.tpl");
282 $nickname_subdir = '';
283 if(strlen($a->get_path())) {
284 $subdir_tpl = load_view_file('view/settings_nick_subdir.tpl');
285 $nickname_subdir = replace_macros($subdir_tpl, array(
286 '$baseurl' => $a->get_baseurl(),
287 '$nickname' => $nickname,
288 '$hostname' => $a->get_hostname()
292 $theme_selector = '<select name="theme" id="theme-select" >';
293 $files = glob('view/theme/*');
295 $default_theme = get_config('system','theme');
297 $default_theme = 'default';
300 foreach($files as $file) {
301 $f = basename($file);
302 $selected = (($f == $_SESSION['theme']) || ($f === $default_theme && (! x($_SESSION,'theme')))
303 ? ' selected="selected" ' : '' );
304 $theme_selector .= '<option val="' . basename($file) . '"' . $selected . '>' . basename($file) . '</option>';
307 $theme_selector .= '</select>';
310 $nickname_block = replace_macros($nickname_block,array(
311 '$nickname' => $nickname,
312 '$uid' => local_user(),
313 '$subdir' => $nickname_subdir,
314 '$basepath' => $a->get_hostname(),
315 '$baseurl' => $a->get_baseurl()));
317 $stpl = load_view_file('view/settings.tpl');
319 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
321 $o .= replace_macros($stpl,array(
322 '$baseurl' => $a->get_baseurl(),
323 '$oidhtml' => $oidhtml,
324 '$uid' => local_user(),
325 '$username' => $username,
326 '$openid' => $openid,
328 '$nickname_block' => $nickname_block,
329 '$timezone' => $timezone,
330 '$zoneselect' => select_timezone($timezone),
331 '$defloc' => $defloc,
332 '$loc_checked' => $loc_checked,
333 '$profile_in_dir' => $profile_in_dir,
334 '$profile_in_net_dir' => $profile_in_net_dir,
335 '$permissions' => t('Default Post Permissions'),
336 '$visibility' => $profile['net-publish'],
337 '$aclselect' => populate_acl($a->user,$celeb),
338 '$sel_notify1' => (($notify & NOTIFY_INTRO) ? ' checked="checked" ' : ''),
339 '$sel_notify2' => (($notify & NOTIFY_CONFIRM) ? ' checked="checked" ' : ''),
340 '$sel_notify3' => (($notify & NOTIFY_WALL) ? ' checked="checked" ' : ''),
341 '$sel_notify4' => (($notify & NOTIFY_COMMENT) ? ' checked="checked" ' : ''),
342 '$sel_notify5' => (($notify & NOTIFY_MAIL) ? ' checked="checked" ' : ''),
343 '$maxreq' => $maxreq,
344 '$theme' => $theme_selector,
345 '$pagetype' => $pagetype
348 call_hooks('settings_form',$o);
350 $o .= '</form>' . "\r\n";