]> git.mxchange.org Git - friendica.git/blobdiff - mod/settings.php
better intro text
[friendica.git] / mod / settings.php
index 861be7946c089df4033eb9ec68a8634d83cfbfc5..f9cc429df21b3600583cf73ec61853ad15ac7e07 100644 (file)
@@ -3,39 +3,40 @@
 
 function settings_init(&$a) {
 
-       if((! x($_SESSION,'authenticated')) && (x($_SESSION,'uid'))) {
-               $_SESSION['sysmsg'] .= "Permission denied." . EOL;
+       if(! local_user()) {
+               notice("Permission denied." . EOL);
                $a->error = 404;
                return;
        }
        require_once("mod/profile.php");
-       profile_load($a,$_SESSION['uid']);
+       profile_load($a,$a->user['nickname']);
 }
 
 
 function settings_post(&$a) {
 
-       if((! x($_SESSION['authenticated'])) && (! (x($_SESSION,'uid')))) {
-               $_SESSION['sysmsg'] .= "Permission denied." . EOL;
+
+       if(! local_user()) {
+               notice( t('Permission denied.') . EOL);
                return;
        }
        if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != $_SESSION['uid']) {
-               $_SESSION['sysmsg'] .= "Permission denied." . EOL;
+               notice( t('Permission denied.') . EOL);
                return;
        }
-       if((x($_POST,'password')) || (x($_POST,'confirm'))) {
+       if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
 
-               $newpass = trim($_POST['password']);
+               $newpass = trim($_POST['npassword']);
                $confirm = trim($_POST['confirm']);
 
                $err = false;
                if($newpass != $confirm ) {
-                       $_SESSION['sysmsg'] .= "Passwords do not match. Password unchanged." . EOL;
+                       notice( t('Passwords do not match. Password unchanged.') . EOL);
                        $err = true;
                }
 
                if((! x($newpass)) || (! x($confirm))) {
-                       $_SESSION['sysmsg'] .= "Empty passwords are not allowed. Password unchanged." . EOL;
+                       notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
                        $err = true;
                }
 
@@ -45,58 +46,61 @@ function settings_post(&$a) {
                                dbesc($password),
                                intval($_SESSION['uid']));
                        if($r)
-                               $_SESSION['sysmsg'] .= "Password changed." . EOL;
+                               notice( t('Password changed.') . EOL);
                        else
-                               $_SESSION['sysmsg'] .= "Password update failed. Please try again." . EOL;
+                               notice( t('Password update failed. Please try again.') . EOL);
                }
        }
 
+       $theme = notags(trim($_POST['theme']));
        $username = notags(trim($_POST['username']));
        $email = notags(trim($_POST['email']));
-       if(x($_POST,'nick'))
-               $nick = notags(trim($_POST['nick']));
        $timezone = notags(trim($_POST['timezone']));
+       $defloc = notags(trim($_POST['defloc']));
+
+       $publish = (($_POST['profile_in_directory'] == 1) ? 1: 0);
+       $net_publish = (($_POST['profile_in_netdirectory'] == 1) ? 1: 0);
+       $old_visibility = ((intval($_POST['visibility']) == 1) ? 1 : 0);
+
+       $notify = 0;
+
+       if($_POST['notify1'])
+               $notify += intval($_POST['notify1']);
+       if($_POST['notify2'])
+               $notify += intval($_POST['notify2']);
+       if($_POST['notify3'])
+               $notify += intval($_POST['notify3']);
+       if($_POST['notify4'])
+               $notify += intval($_POST['notify4']);
+       if($_POST['notify5'])
+               $notify += intval($_POST['notify5']);
 
        $username_changed = false;
        $email_changed = false;
-       $nick_changed = false;
        $zone_changed = false;
        $err = '';
 
        if($username != $a->user['username']) {
                $username_changed = true;
                if(strlen($username) > 40)
-                       $err .= " Please use a shorter name.";
+                       $err .= t(' Please use a shorter name.');
                if(strlen($username) < 3)
-                       $err .= " Name too short.";
+                       $err .= t(' Name too short.');
        }
        if($email != $a->user['email']) {
                $email_changed = true;
                if(!eregi('[A-Za-z0-9._%-]+@[A-Za-z0-9._%-]+\.[A-Za-z]{2,6}',$email))
-                       $err .= " Not valid email.";
+                       $err .= t(' Not valid email.');
                $r = q("SELECT `uid` FROM `user`
                        WHERE `email` = '%s' LIMIT 1",
                        dbesc($email)
                        );
                if($r !== NULL && count($r))
-                       $err .= " This email address is already registered." . EOL;
-       }
-       if((x($nick)) && ($nick != $a->user['nickname'])) {
-               $nick_changed = true;
-               if(! preg_match("/^[a-zA-Z][a-zA-Z0-9\-\_]*$/",$nick))
-                       $err .= " Nickname must start with a letter and contain only contain letters, numbers, dashes, and underscore.";
-               $r = q("SELECT `uid` FROM `user`
-                       WHERE `nickname` = '%s' LIMIT 1",
-                       dbesc($nick)
-                       );
-               if($r !== NULL && count($r))
-                       $err .= " Nickname is already registered. Try another." . EOL;
+                       $err .= t(' This email address is already registered.');
        }
-       else
-               $nick = $a->user['nickname'];
 
         if(strlen($err)) {
-                $_SESSION['sysmsg'] .= $err . EOL;
+                notice($err . EOL);
                 return;
         }
        if($timezone != $a->user['timezone']) {
@@ -104,65 +108,158 @@ function settings_post(&$a) {
                if(strlen($timezone))
                        date_default_timezone_set($timezone);
        }
-       if($email_changed || $username_changed || $nick_changed || $zone_changed ) {
-               $r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `nickname` = '%s', `timezone` = '%s'  WHERE `uid` = %d LIMIT 1",
+
+       $str_group_allow = '';
+       $group_allow = $_POST['group_allow'];
+       if(is_array($group_allow)) {
+               array_walk($group_allow,'sanitise_acl');
+               $str_group_allow = implode('',$group_allow);
+       }
+
+       $str_contact_allow = '';
+       $contact_allow = $_POST['contact_allow'];
+       if(is_array($contact_allow)) {
+               array_walk($contact_allow,'sanitise_acl');
+               $str_contact_allow = implode('',$contact_allow);
+       }
+
+       $str_group_deny = '';
+       $group_deny = $_POST['group_deny'];
+       if(is_array($group_deny)) {
+               array_walk($group_deny,'sanitise_acl');
+               $str_group_deny = implode('',$group_deny);
+       }
+
+       $str_contact_deny = '';
+       $contact_deny = $_POST['contact_deny'];
+       if(is_array($contact_deny)) {
+               array_walk($contact_deny,'sanitise_acl');
+               $str_contact_deny = implode('',$contact_deny);
+       }
+
+       $r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `timezone` = '%s',  `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `default-location` = '%s', `theme` = '%s'  WHERE `uid` = %d LIMIT 1",
                        dbesc($username),
                        dbesc($email),
-                       dbesc($nick),
                        dbesc($timezone),
-                       intval($_SESSION['uid']));
-               if($r)
-                       $_SESSION['sysmsg'] .= "Settings updated." . EOL;
+                       dbesc($str_contact_allow),
+                       dbesc($str_group_allow),
+                       dbesc($str_contact_deny),
+                       dbesc($str_group_deny),
+                       intval($notify),
+                       dbesc($defloc),
+                       dbesc($theme),
+                       intval($_SESSION['uid'])
+       );
+       if($r)
+               notice( t('Settings updated.') . EOL);
+
+       $r = q("UPDATE `profile` 
+               SET `publish` = %d, `net-publish` = %d
+               WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
+               intval($publish),
+               intval($net_publish),
+               intval($_SESSION['uid'])
+       );
+
+       if($old_visibility != $net_publish) {
+               // Update global directory in background
+               $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
+               $url = $_SESSION['my_url'];
+               if($url && strlen(get_config('system','directory_submit_url')))
+                       proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",
+                               array(),$foo));
        }
+
+       $_SESSION['theme'] = $theme;
        if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
 
                // FIXME - set to un-verified, blocked and redirect to logout
 
        }
-       if($nick_changed) {
-               $r = q ("UPDATE `profile` SET `url` = '%s', `request` = '%s', `notify` = '%s', `poll` = '%s', `confirm` = '%s'
-                       WHERE `uid` = %d AND `self` = 1 LIMIT 1",
-                       dbesc( $a->get_baseurl() . '/profile/' . $nick ),
-                       dbesc( $a->get_baseurl() . '/dfrn_request/' . $nick ),
-                       dbesc( $a->get_baseurl() . '/dfrn_notify/' . $nick ),
-                       dbesc( $a->get_baseurl() . '/dfrn_poll/' . $nick ),
-                       dbesc( $a->get_baseurl() . '/dfrn_confirm/' . $nick ),
-                       intval($_SESSION['uid'])
-               );
-       }
 
-
-       // Refresh the content display with new data
-
-       $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
-               intval($_SESSION['uid']));
-       if(count($r))
-               $a->user = $r[0];
+       goaway($a->get_baseurl() . '/settings' );
 }
                
 
 if(! function_exists('settings_content')) {
 function settings_content(&$a) {
 
-       if((! x($_SESSION['authenticated'])) && (! (x($_SESSION,'uid')))) {
-               $_SESSION['sysmsg'] .= "Permission denied." . EOL;
+       if(! local_user()) {
+               notice( t('Permission denied.') . EOL );
                return;
        }
 
+       require_once('view/acl_selectors.php');
+
+       $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
+               intval($_SESSION['uid'])
+       );
+       if(count($p))
+               $profile = $p[0];
 
        $username = $a->user['username'];
        $email    = $a->user['email'];
        $nickname = $a->user['nickname'];
        $timezone = $a->user['timezone'];
+       $notify   = $a->user['notify-flags'];
+       $defloc   = $a->user['default-location'];
+
+       if(! strlen($a->user['timezone']))
+               $timezone = date_default_timezone_get();
+
+
+       $opt_tpl = file_get_contents("view/profile-in-directory.tpl");
+       $profile_in_dir = replace_macros($opt_tpl,array(
+               '$yes_selected' => (($profile['publish']) ? " checked=\"checked\" " : ""),
+               '$no_selected' => (($profile['publish'] == 0) ? " checked=\"checked\" " : "")
+       ));
 
+       if(strlen(get_config('system','directory_submit_url'))) {
+               $opt_tpl = file_get_contents("view/profile-in-netdir.tpl");
 
-       if(x($nickname))
-               $nickname_block = file_get_contents("view/settings_nick_set.tpl");
+               $profile_in_net_dir = replace_macros($opt_tpl,array(
+                       '$yes_selected' => (($profile['net-publish']) ? " checked=\"checked\" " : ""),
+                       '$no_selected' => (($profile['net-publish'] == 0) ? " checked=\"checked\" " : "")
+               ));
+       }
        else
-               $nickname_block = file_get_contents("view/settings_nick_unset.tpl");
+               $profile_in_net_dir = '';
+
+
+
+
+
+       $nickname_block = file_get_contents("view/settings_nick_set.tpl");
+       
+
+       $nickname_subdir = '';
+       if(strlen($a->get_path())) {
+               $subdir_tpl = file_get_contents('view/settings_nick_subdir.tpl');
+               $nickname_subdir = replace_macros($subdir_tpl, array(
+                       '$baseurl' => $a->get_baseurl(),
+                       '$nickname' => $nickname,
+                       '$hostname' => $a->get_hostname()
+               ));
+       }
+
+       $theme_selector = '<select name="theme" id="theme-select" >';
+       $files = glob('view/theme/*');
+       if($files) {
+               foreach($files as $file) {
+                       $f = basename($file);
+                       $selected = (($f == $_SESSION['theme']) || ($f == 'default' && (! x($_SESSION,'theme')))
+                               ? ' selected="selected" ' : '' );
+                       $theme_selector .= '<option val="' . basename($file) . '"' . $selected . '>' . basename($file) . '</option>';
+               }
+       }
+       $theme_selector .= '</select>';
+
 
        $nickname_block = replace_macros($nickname_block,array(
                '$nickname' => $nickname,
+               '$uid' => $_SESSION['uid'],
+               '$subdir' => $nickname_subdir,
+               '$basepath' => $a->get_hostname(),
                '$baseurl' => $a->get_baseurl()));      
 
        $o = file_get_contents('view/settings.tpl');
@@ -174,8 +271,20 @@ function settings_content(&$a) {
                '$email' => $email,
                '$nickname_block' => $nickname_block,
                '$timezone' => $timezone,
-               '$zoneselect' => select_timezone($timezone)
-               ));
+               '$zoneselect' => select_timezone($timezone),
+               '$defloc' => $defloc,
+               '$profile_in_dir' => $profile_in_dir,
+               '$profile_in_net_dir' => $profile_in_net_dir,
+               '$permissions' => t('Default Post Permissions'),
+               '$visibility' => $profile['net-publish'],
+               '$aclselect' => populate_acl($a->user),
+               '$sel_notify1' => (($notify & NOTIFY_INTRO)   ? ' checked="checked" ' : ''),
+               '$sel_notify2' => (($notify & NOTIFY_CONFIRM) ? ' checked="checked" ' : ''),
+               '$sel_notify3' => (($notify & NOTIFY_WALL)    ? ' checked="checked" ' : ''),
+               '$sel_notify4' => (($notify & NOTIFY_COMMENT) ? ' checked="checked" ' : ''),
+               '$sel_notify5' => (($notify & NOTIFY_MAIL)    ? ' checked="checked" ' : ''),
+               '$theme' => $theme_selector
+       ));
 
        return $o;