0 Star 0 Fork 0

云落 / Tieba_Sign_Assistant

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
api.php 1.64 KB
一键复制 编辑 原始数据 按行查看 历史
DeepBlue768 提交于 2015-02-20 11:32 . 重置版本库
<?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);
}
?>
1
https://gitee.com/yunluo/Tieba_Sign_Assistant.git
git@gitee.com:yunluo/Tieba_Sign_Assistant.git
yunluo
Tieba_Sign_Assistant
Tieba_Sign_Assistant
master

搜索帮助