mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
69 lines
2.2 KiB
PHP
69 lines
2.2 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Wechat Plugin for ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2023 Anyon <zoujingli@qq.com>
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-wechat
|
||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-wechat
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\wechat\controller\api;
|
||
|
||
use app\wechat\service\LoginService;
|
||
use think\admin\Controller;
|
||
|
||
/**
|
||
* 微信扫码登录
|
||
* @class Login
|
||
* @package app\wechat\controller\api
|
||
*/
|
||
class Login extends Controller
|
||
{
|
||
/**
|
||
* 显示二维码
|
||
* @return void
|
||
*/
|
||
public function qrc()
|
||
{
|
||
$mode = intval(input('mode', '0'));
|
||
$data = LoginService::qrcode(LoginService::gcode(), $mode);
|
||
$this->success('登录二维码', $data);
|
||
}
|
||
|
||
/**
|
||
* 微信授权处理
|
||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||
* @throws \WeChat\Exceptions\LocalCacheException
|
||
* @throws \think\admin\Exception
|
||
*/
|
||
public function oauth()
|
||
{
|
||
$data = $this->_vali(['auth.default' => '', 'mode.default' => '0']);
|
||
if (LoginService::oauth($data['auth'], intval($data['mode']))) {
|
||
$this->fetch('success', ['message' => '授权成功']);
|
||
} else {
|
||
$this->fetch('failed', ['message' => '授权失败']);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 获取授权信息
|
||
* 用定时器请求这个接口
|
||
*/
|
||
public function query()
|
||
{
|
||
$data = $this->_vali(['code.require' => '编号不能为空!']);
|
||
if ($fans = LoginService::query($data['code'])) {
|
||
$this->success('获取授权信息', $fans);
|
||
} else {
|
||
$this->error('未获取到授权!');
|
||
}
|
||
}
|
||
} |