1 Star 6 Fork 0

LiuJiantao / Tieba_Sign

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
api.php 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
LiuJiantao 提交于 2015-01-11 11:40 . 更新
<?php
define('DISABLE_PLUGIN', true);
require_once './system/common.inc.php';
if(!$uid){
header('Location: member.php');
exit();
}
if($_GET['action'] == 'baidu_login'){
$parms = array($_POST['username'], $_POST['password'], $formhash);
$parm_string = serialize($parms);
$parm_string = authcode($parm_string, 'ENCODE', cloud::key());
$parm_string = bin2hex($parm_string);
header('Location: '.cloud::get_api_path().'login.php?sid='.cloud::id().'&parm='.$parm_string);
}elseif($_GET['action'] == 'register_cloud'){
cloud::do_register();
}elseif($_GET['action'] == 'receive_cookie'){
$_cookie = $_POST['cookie'] ? $_POST['cookie'] : $_GET['cookie'];
if(!$_cookie) throw new Exception('Empty response!');
if($_GET['formhash'] != $formhash) throw new Exception('Illegal request!');
$cookie = authcode(pack('H*', $_cookie), 'DECODE', cloud::key());
if(!$cookie) showmessage('非法调用!', './#baidu_bind', 1);
if(!verify_cookie($cookie)) showmessage('无法登陆百度贴吧,请尝试重新绑定<form action="api.php?action=receive_cookie&formhash='.$formhash.'" method="post"><input type="hidden" name="cookie" value="'.$_cookie.'"></from><script type="text/javascript">setTimeout(function(){ document.forms[0].submit(); }, 2000);</script>');
save_cookie($uid, $cookie);
showmessage('绑定百度账号成功!<br>正在同步喜欢的贴吧...<script type="text/javascript" src="index.php?action=refresh_liked_tieba&formhash='.$formhash.'"></script><script type="text/javascript">try{ opener.$("#guide_page_2").hide(); opener.$("#guide_page_manual").hide(); opener.$("#guide_page_3").show(); window.close(); }catch(e){}</script>', './#baidu_bind', 1);
}
?>
PHP
1
https://gitee.com/liujiantao/Tieba_Sign.git
git@gitee.com:liujiantao/Tieba_Sign.git
liujiantao
Tieba_Sign
Tieba_Sign
master

搜索帮助