X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmanage.php;h=84dfa6917c3529c05293fcf39d83c06d692b1dfb;hb=e2e6b56c448da3a67fa25df118bbb7cbc3239664;hp=26f7315c326cc7c87809f0c194c147349536b29b;hpb=1bba63fb607c2cb5fb2c002e63ad7128ecf8b1ea;p=friendica.git diff --git a/mod/manage.php b/mod/manage.php index 26f7315c32..84dfa6917c 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -3,18 +3,56 @@ function manage_post(&$a) { - if(! local_user() || ! is_array($a->identities)) + if(! local_user()) return; + $uid = local_user(); + $orig_record = $a->user; + + if((x($_SESSION,'submanage')) && intval($_SESSION['submanage'])) { + $r = q("select * from user where uid = %d limit 1", + intval($_SESSION['submanage']) + ); + if(count($r)) { + $uid = intval($r[0]['uid']); + $orig_record = $r[0]; + } + } + + $r = q("select * from manage where uid = %d", + intval($uid) + ); + + $submanage = $r; + $identity = ((x($_POST['identity'])) ? intval($_POST['identity']) : 0); if(! $identity) return; - $r = q("SELECT * FROM `user` WHERE `uid` = %d AND `email` = '%s' AND `password` = '%s' LIMIT 1", - intval($identity), - dbesc($a->user['email']), - dbesc($a->user['password']) - ); + $limited_id = 0; + $original_id = $uid; + + if(count($submanage)) { + foreach($submanage as $m) { + if($identity == $m['mid']) { + $limited_id = $m['mid']; + break; + } + } + } + + if($limited_id) { + $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", + intval($limited_id) + ); + } + else { + $r = q("SELECT * FROM `user` WHERE `uid` = %d AND `email` = '%s' AND `password` = '%s' LIMIT 1", + intval($identity), + dbesc($orig_record['email']), + dbesc($orig_record['password']) + ); + } if(! count($r)) return; @@ -26,44 +64,17 @@ function manage_post(&$a) { unset($_SESSION['cid']); unset($_SESSION['theme']); unset($_SESSION['page_flags']); + unset($_SESSION['return_url']); + if(x($_SESSION,'submanage')) + unset($_SESSION['submanage']); + require_once('include/security.php'); + authenticate_success($r[0],true,true); - $_SESSION['uid'] = $r[0]['uid']; - $_SESSION['theme'] = $r[0]['theme']; - $_SESSION['authenticated'] = 1; - $_SESSION['page_flags'] = $r[0]['page-flags']; - $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname']; - - notice( sprintf( t("Welcome back %s") , $r[0]['username']) . EOL); - $a->user = $r[0]; + if($limited_id) + $_SESSION['submanage'] = $original_id; - if(strlen($a->user['timezone'])) { - date_default_timezone_set($a->user['timezone']); - $a->timezone = $a->user['timezone']; - } - - $r = q("SELECT `uid`,`username` FROM `user` WHERE `password` = '%s' AND `email` = '%s'", - dbesc($a->user['password']), - dbesc($a->user['email']) - ); - if(count($r)) - $a->identities = $r; - - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1", - intval($_SESSION['uid'])); - if(count($r)) { - $a->contact = $r[0]; - $a->cid = $r[0]['id']; - $_SESSION['cid'] = $a->cid; - } - - q("UPDATE `user` SET `login_date` = '%s' WHERE `uid` = %d LIMIT 1", - dbesc(datetime_convert()), - intval($_SESSION['uid']) - ); - - header('X-Account-Management-Status: active; name="' . $a->user['username'] . '"; id="' . $a->user['nickname'] .'"'); - goaway($a->get_baseurl() . '/profile/' . $a->user['nickname']); + goaway($a->get_baseurl(true) . '/profile/' . $a->user['nickname']); // NOTREACHED } @@ -71,23 +82,15 @@ function manage_post(&$a) { function manage_content(&$a) { - if(! local_user() || ! is_array($a->identities)) { + if(! local_user()) { notice( t('Permission denied.') . EOL); return; } - $r = q("SELECT * FROM `user` WHERE `email` = '%s' AND `password` = '%s'", - dbesc($a->user['email']), - dbesc($a->user['password']) - ); - if(! count($r)) - return; - - $o = '

' . t('Manage Identities and/or Pages') . '

'; - $o .= '
' . t("\x28Toggle between different identities or community/group pages which share your account details.\x29") . '
'; + $o .= '
' . t('Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions') . '
'; $o .= '
' . t('Select an identity to manage: ') . '
'; @@ -95,7 +98,7 @@ function manage_content(&$a) { $o .= '
' . "\r\n"; $o .= '