2023-03-25 12:57:39 +08:00

72 lines
2.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
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('未获取到授权!');
}
}
}