php sso單點登入實現代碼

來源:互聯網
上載者:User
 代碼如下 複製代碼

 


<?php
//index.php 應用程式頁面
header('Content-Type:text/html; charset=utf-8');
$sso_address = 'http://2spaoku.com/sso/login.php'; //你SSO所在的網域名稱
$callback_address = 'http://'.$_SERVER['HTTP_HOST']
                    .str_replace('index.php','',$_SERVER['SCRIPT_NAME'])
                    .'callback.php'; //callback地址用於回調設定cookie

if(isset($_COOKIE['sign'])){
    exit("歡迎您{$_COOKIE['sign']} <a href="login.php?logout">退出</a>");
}else{
    echo '您還未登入 <a href="'.$sso_address.'?callback='.$callback_address.'">點此登入</a>';
}
?>
<iframe src="<?php echo $sso_address ?>?callback=<?php echo $callback_address ?>" frameborder="0"  width="0" height="0"></iframe>

<?php
//login.php SSO登入頁面
header('Content-Type:text/html; charset=utf-8');
if(isset($_GET['logout'])){
    setcookie('sign','',-300);
    unset($_GET['logout']);
    header('location:index.php');
}

if(isset($_POST['username']) && isset($_POST['password'])){
    setcookie('sign',$_POST['username'],0,'');
    header("location:".$_POST['callback']."?sign={$_POST['username']}");
}

if(empty($_COOKIE['sign'])){
?>

<form method="post">
<p>使用者名稱:<input type="text" name="username" /></p>
<p>密  碼:<input type="password" name="password" /></p>
<input type="hidden" name="callback" value="<?php echo $_GET['callback']; ?>" />
<input type="submit" value="登入" />
</form>


<?php
}else{
    $query = http_build_query($_COOKIE);
    echo "系統檢測到您已登入 {$_COOKIE['sign']} <a href="{$_GET['callback']}?{$query}">授權</a> <a href="?logout">退出</a>";
}
?>

<?php
//callback.php 回調頁面用來設定跨域COOKIE
header('Content-Type:text/html; charset=utf-8');
if(empty($_GET)){
    exit('您還未登入');
}else{
    foreach($_GET as $key=>$val){
        setcookie($key,$val,0,'');
    }
    header("location:index.php");
}
?>

<?php
//connect.php 用來檢測登入狀態的頁面,內嵌在頁面的iframe中
header('Content-Type:text/html; charset=utf-8');
if(isset($_COOKIE['sign'])){
    $callback = urldecode($_GET['callback']);unset($_GET['callback']);
    $query = http_build_query($_COOKIE);
    $callback = $callback."?{$query}";
}else{
    exit;
}
?>
<html><script type="text/javascript">top.location.href="<?php echo $callback; ?>";</script></html>

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.