增加微信授权登录

This commit is contained in:
Anyon 2020-01-08 15:11:24 +08:00
parent 5d9e704820
commit 51385f1c2a
5 changed files with 198 additions and 0 deletions

View File

@ -0,0 +1,108 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2020 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://demo.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\wechat\controller\api;
use app\wechat\service\WechatService;
use think\admin\Controller;
/**
* 微信扫码授权登录
* Class Login
* @package app\wechat\controller\api
*/
class Login extends Controller
{
/**
* 授权码前缀
* @var string
*/
protected $prefix = 'wxlogin';
/**
* 数据缓存时间
* @var integer
*/
protected $expire = 3600;
/**
* 扫描显示二维码
* @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
* @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
* @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
* @throws \think\exception\HttpResponseException
*/
public function qrc()
{
$mode = intval(input('mode', '0'));
$code = $this->prefix . md5(uniqid('t', true) . rand(10000, 99999));
$text = url('@wechat/api.login/oauth', [], false, true) . "?code={$code}&mode={$mode}";
// 生成二维码并返回结果
$qrcode = new \Endroid\QrCode\QrCode();
$qrcode->setText($text)->setSize(300)->setPadding(20);
$content = base64_encode($qrcode->setImageType('png')->get());
$this->success('获取二维码成功', ['code' => $code, 'image' => "data:image/jpg;base64,{$content}"]);
}
/**
* 微信授权结果处理
* @return string
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function oauth()
{
$this->code = input('code', '');
$this->mode = input('mode', '0');
if (stripos($this->code, $this->prefix) === 0) {
$this->url = $this->request->url(true);
$this->fans = WechatService::instance()->getWebOauthInfo($this->url, $this->mode);
if (is_array($this->fans) && isset($this->fans['openid'])) {
$this->fans['token'] = md5(uniqid('t', true) . rand(10000, 99999));
$this->app->cache->set("wxlog_{$this->code}", $this->fans, $this->expire);
$this->app->cache->set($this->fans['openid'], $this->fans['token'], $this->expire);
$this->message = '授权成功';
$this->fetch('success');
} else {
$this->message = '授权失败';
$this->fetch('failed');
}
} else {
$this->message = '授权失败';
$this->fetch('failed');
}
}
/**
* 获取授权信息
* 用定时器请求这个接口
* @throws \think\exception\HttpResponseException
*/
public function query()
{
$this->code = input('code', '');
if (stripos($this->code, $this->prefix) === 0) {
$this->ckey = "wxlog_{$this->code}";
$this->fans = $this->app->cache->get($this->ckey, new \stdClass());
$this->success('获取授权信息', $this->fans);
} else {
$this->error("授权CODE不能为空");
}
}
}

View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="zh">
<head>
<title>扫码登录失败</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="__ROOT__/static/theme/css/mobile.css">
<style>
header {
padding: 16vh 0;
text-align: center;
}
header img {
width: 40vw;
}
header div {
font-size: 7vw;
margin-top: 8vh;
color: rgb(240, 91, 41);
font-weight: bold;
letter-spacing: 2px;
}
</style>
</head>
<body>
<div>
<header>
<img alt="img" src="__ROOT__/static/theme/img/wechat/m-icon-error.png">
<div>{$message|default='授权失败'}</div>
</header>
</div>
</body>
</html>

View File

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="zh">
<head>
<title>扫码登录成功</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="__ROOT__/static/theme/css/mobile.css">
<style>
header {
padding: 16vh 0;
text-align: center;
}
header img {
width: 40vw;
}
header div {
font-size: 7vw;
margin-top: 8vh;
color: rgb(49, 131, 238);
font-weight: bold;
letter-spacing: 2px;
}
.container {
font-size: 4vw;
margin-top: 10vh;
}
.container p {
text-indent: 10vw;
line-height: 2em;
}
.container p span {
color: #888
}
</style>
</head>
<body>
<div>
<header>
<img alt="img" src="__ROOT__/static/theme/img/wechat/m-icon-success.png">
<div>{$message|default='授权成功'}</div>
</header>
<div class="container">
<p>授权地址:<span>{:request()->host()}</span></p>
<p>授权时间:<span>{:date('Y年m月d日H:i')}</span></p>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB