mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
modified 完成三方一键登录全部功能
This commit is contained in:
parent
f521ac4547
commit
844c698b2c
@ -102,7 +102,7 @@ class Login extends Base {
|
||||
* @return array
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
private function getAccess($uid) {
|
||||
public function getAccess($uid) {
|
||||
$isSupper = Tools::isAdministrator($uid);
|
||||
if ($isSupper) {
|
||||
$access = AdminMenu::all(['hide' => 0]);
|
||||
|
363
application/admin/controller/ThirdLogin.php
Normal file
363
application/admin/controller/ThirdLogin.php
Normal file
@ -0,0 +1,363 @@
|
||||
<?php
|
||||
/**
|
||||
* 三方一键登录平台
|
||||
* @since 2018-03-28
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
|
||||
namespace app\admin\controller;
|
||||
|
||||
|
||||
use app\model\AdminAuthGroupAccess;
|
||||
use app\model\AdminUser;
|
||||
use app\util\ReturnCode;
|
||||
use app\util\Strs;
|
||||
use app\util\Tools;
|
||||
use Endroid\QrCode\ErrorCorrectionLevel;
|
||||
use Endroid\QrCode\QrCode;
|
||||
use think\facade\Cache;
|
||||
use think\facade\Env;
|
||||
|
||||
class ThirdLogin extends Base {
|
||||
|
||||
/**
|
||||
* QQ一键登录配置
|
||||
* @var array
|
||||
*/
|
||||
private $qqConfig = [
|
||||
'appId' => '',
|
||||
'appSecret' => '',
|
||||
'redirectUri' => 'https://admin.apiadmin.org/#/login/qq'
|
||||
];
|
||||
|
||||
/**
|
||||
* 微信认证服务号一键登录配置
|
||||
* @var array
|
||||
*/
|
||||
private $wxConfig = [
|
||||
'appId' => '',
|
||||
'appSecret' => ''
|
||||
];
|
||||
|
||||
/**
|
||||
* 微信开放平台一键登录配置
|
||||
* @var array
|
||||
*/
|
||||
private $wxOpenConfig = [
|
||||
'appId' => '',
|
||||
'appSecret' => '',
|
||||
'redirectUri' => 'https://admin.apiadmin.org/#/login/wx'
|
||||
];
|
||||
|
||||
/**
|
||||
* 使用微信开放平台登录
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function wx() {
|
||||
$state = $this->request->get('state', '');
|
||||
$code = $this->request->get('code', '');
|
||||
|
||||
//验证合法性
|
||||
$cacheData = Cache::has($state);
|
||||
if (!$cacheData) {
|
||||
return $this->buildFailed(ReturnCode::SESSION_TIMEOUT, 'state已过期');
|
||||
} else {
|
||||
cache($state, null);
|
||||
}
|
||||
|
||||
//获取AccessToken
|
||||
$getAccessTokenUrl = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid=' .
|
||||
$this->wxOpenConfig['appId'] . '&secret=' . $this->wxOpenConfig['appSecret'] . '&code=' . $code .
|
||||
'&grant_type=authorization_code';
|
||||
|
||||
$tokenArr = file_get_contents($getAccessTokenUrl);
|
||||
$accessTokenArr = json_decode($tokenArr, true);
|
||||
|
||||
//获取openId
|
||||
$getUserIdUrl = 'https://api.weixin.qq.com/sns/userinfo?access_token=' . $accessTokenArr['access_token'] . '&openid=' . $accessTokenArr['openid'];
|
||||
$userIdArr = file_get_contents($getUserIdUrl);
|
||||
$userIdArr = json_decode($userIdArr, true);
|
||||
|
||||
return $this->doLogin($userIdArr['openid'], [
|
||||
'nickname' => $userIdArr['nickname'],
|
||||
'head_img' => $userIdArr['headimgurl']
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取授权登录的二维码
|
||||
* @return array
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function getQr() {
|
||||
$state = uniqid();
|
||||
$query = [
|
||||
'appid' => $this->wxConfig['appId'],
|
||||
'redirect_uri' => 'https://api.apiadmin.org/admin/ThirdLogin/loginByWx',
|
||||
'response_type' => 'code',
|
||||
'scope' => 'snsapi_userinfo',
|
||||
'state' => $state
|
||||
];
|
||||
$authUrl = 'https://open.weixin.qq.com/connect/oauth2/authorize?' . http_build_query($query) . '#wechat_redirect';
|
||||
|
||||
$qrCode = new QrCode($authUrl);
|
||||
$qrCode->setSize(300);
|
||||
$qrCode->setWriterByName('png');
|
||||
$qrCode->setMargin(10);
|
||||
$qrCode->setEncoding('UTF-8');
|
||||
$qrCode->setErrorCorrectionLevel(ErrorCorrectionLevel::HIGH);
|
||||
$qrCode->setForegroundColor(['r' => 0, 'g' => 0, 'b' => 0, 'a' => 0]);
|
||||
$qrCode->setBackgroundColor(['r' => 255, 'g' => 255, 'b' => 255, 'a' => 0]);
|
||||
$qrCode->setRoundBlockSize(true);
|
||||
$qrCode->setValidateResult(false);
|
||||
$qrCode->writeFile(Env::get('root_path') . '/public/qr/' . $state . '.png');
|
||||
|
||||
cache($state, 1, 300);
|
||||
|
||||
return $this->buildSuccess([
|
||||
'qrUrl' => 'https://api.apiadmin.org/qr/' . $state . '.png',
|
||||
'state' => $state
|
||||
]);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 接受微信回调,处理用户登录
|
||||
* @return array
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\DbException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function loginByWx() {
|
||||
$code = $this->request->get('code');
|
||||
$state = $this->request->get('state');
|
||||
|
||||
$auth = cache($state);
|
||||
if (!$auth) {
|
||||
return view('wiki@index/login_res', [
|
||||
'info' => '当前二维码已失效',
|
||||
'code' => ReturnCode::RECORD_NOT_FOUND
|
||||
]);
|
||||
}
|
||||
|
||||
$query = [
|
||||
'appid' => $this->wxConfig['appId'],
|
||||
'secret' => $this->wxConfig['appSecret'],
|
||||
'grant_type' => 'authorization_code',
|
||||
'code' => $code
|
||||
];
|
||||
$url = 'https://api.weixin.qq.com/sns/oauth2/access_token?' . http_build_query($query);
|
||||
$accessToken = json_decode(file_get_contents($url), true);
|
||||
|
||||
$userInfo = AdminUser::get(['openid' => $accessToken['openid']]);
|
||||
if (!$userInfo) {
|
||||
$getUserInfoQuery = [
|
||||
'access_token' => $accessToken['access_token'],
|
||||
'openid' => $accessToken['openid'],
|
||||
'lang' => 'zh_CN'
|
||||
];
|
||||
$getUserInfoUrl = 'https://api.weixin.qq.com/sns/userinfo?' . http_build_query($getUserInfoQuery);
|
||||
|
||||
$userInfoArr = file_get_contents($getUserInfoUrl);
|
||||
$userInfoArr = json_decode($userInfoArr, true);
|
||||
|
||||
$userInfo['nickname'] = $userInfoArr['nickname'];
|
||||
$userInfo['username'] = 'ApiAdmin_wx_' . Strs::randString(8);
|
||||
$userInfo['openid'] = $accessToken['openid'];
|
||||
$userInfo['create_ip'] = request()->ip(1);
|
||||
$userInfo['status'] = 1;
|
||||
$userInfo['create_time'] = time();
|
||||
$userInfo['password'] = Tools::userMd5('ApiAdmin');
|
||||
$res = AdminUser::create($userInfo);
|
||||
$userInfo['head_img'] = $userInfoArr['headimgurl'];
|
||||
$userInfo['id'] = $res->id;
|
||||
if ($res === false) {
|
||||
return view('wiki@index/login_res', [
|
||||
'info' => '操作失败',
|
||||
'code' => ReturnCode::DB_SAVE_ERROR
|
||||
]);
|
||||
} else {
|
||||
AdminAuthGroupAccess::create([
|
||||
'uid' => $res->id,
|
||||
'group_id' => 1
|
||||
]);
|
||||
}
|
||||
} else {
|
||||
$userInfo = $userInfo->toArray();
|
||||
}
|
||||
|
||||
cache($state, $userInfo, 300);
|
||||
|
||||
return view('wiki@index/login_res', [
|
||||
'info' => '登录成功',
|
||||
'code' => ReturnCode::SUCCESS
|
||||
]);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理微信用户登录
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function checkWxLogin() {
|
||||
$state = $this->request->get('state');
|
||||
$userInfo = cache($state);
|
||||
|
||||
if (is_numeric($userInfo)) {
|
||||
return $this->buildFailed(666, '等待扫码');
|
||||
} else {
|
||||
unlink(Env::get('root_path') . '/public/qr/' . $state . '.png');
|
||||
if (is_array($userInfo)) {
|
||||
cache($state, null);
|
||||
|
||||
return $this->doLogin($userInfo);
|
||||
} else {
|
||||
return $this->buildFailed(ReturnCode::INVALID, '登录状态已失效,请重新登录');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取qq登录必要参数
|
||||
* @return array
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function getWxCode() {
|
||||
$state = md5(uniqid() . time());
|
||||
cache($state, $state, 300);
|
||||
|
||||
return $this->buildSuccess([
|
||||
'appId' => $this->wxOpenConfig['appId'],
|
||||
'redirectUri' => urlencode($this->wxOpenConfig['redirectUri']),
|
||||
'state' => $state
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取qq登录必要参数
|
||||
* @return array
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function getQQCode() {
|
||||
$state = md5(uniqid() . time());
|
||||
cache($state, $state, 300);
|
||||
|
||||
return $this->buildSuccess([
|
||||
'appId' => $this->qqConfig['appId'],
|
||||
'redirectUri' => urlencode($this->qqConfig['redirectUri']),
|
||||
'state' => $state
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 使用QQ登录
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @throws \think\exception\DbException
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
public function loginByQQ() {
|
||||
$state = $this->request->get('state', '');
|
||||
$code = $this->request->get('code', '');
|
||||
|
||||
//验证合法性
|
||||
$cacheData = Cache::has($state);
|
||||
if (!$cacheData) {
|
||||
return $this->buildFailed(ReturnCode::SESSION_TIMEOUT, 'state已过期');
|
||||
} else {
|
||||
cache($state, null);
|
||||
}
|
||||
|
||||
//获取AccessToken
|
||||
$getAccessTokenUrl = 'https://graph.qq.com/oauth2.0/token?grant_type=authorization_code&client_id=' .
|
||||
$this->qqConfig['appId'] . '&client_secret=' . $this->qqConfig['appSecret'] . '&code=' . $code .
|
||||
'&redirect_uri=' . urlencode($this->qqConfig['redirectUri']);
|
||||
|
||||
$tokenArr = file_get_contents($getAccessTokenUrl);
|
||||
parse_str($tokenArr, $accessTokenArr);
|
||||
|
||||
//获取openId
|
||||
$getUserIdUrl = 'https://graph.qq.com/oauth2.0/me?access_token=' . $accessTokenArr['access_token'];
|
||||
$userIdArr = file_get_contents($getUserIdUrl);
|
||||
$userIdArr = str_replace('callback( ', '', $userIdArr);
|
||||
$userIdArr = str_replace(' );', '', $userIdArr);
|
||||
$userIdArr = json_decode($userIdArr, true);
|
||||
|
||||
$getUserInfoUrl = 'https://graph.qq.com/user/get_user_info?access_token=' . $accessTokenArr['access_token'] . '&oauth_consumer_key=' .
|
||||
$this->qqConfig['appId'] . '&openid=' . $userIdArr['openid'];
|
||||
$userInfoArr = file_get_contents($getUserInfoUrl);
|
||||
$userInfoArr = json_decode($userInfoArr, true);
|
||||
|
||||
return $this->doLogin($userIdArr['openid'], [
|
||||
'nickname' => $userInfoArr['nickname'],
|
||||
'head_img' => $userInfoArr['figureurl_qq_2']
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 统一处理用户登录
|
||||
* @param $openid
|
||||
* @param $userDetail
|
||||
* @return array
|
||||
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
||||
*/
|
||||
private function doLogin($openid, $userDetail) {
|
||||
|
||||
$userInfo = AdminUser::get(['openid' => $openid]);
|
||||
if (empty($userInfo)) {
|
||||
$userInfo = AdminUser::create([
|
||||
'nickname' => $userDetail['nickname'],
|
||||
'username' => 'ApiAdmin_qq_' . Strs::randString(8),
|
||||
'openid' => $openid,
|
||||
'create_ip' => request()->ip(1),
|
||||
'status' => 1,
|
||||
'create_time' => time(),
|
||||
'password' => Tools::userMd5('ApiAdmin')
|
||||
]);
|
||||
$userDataArr = [
|
||||
'login_times' => 1,
|
||||
'uid' => $userInfo->id,
|
||||
'last_login_ip' => $this->request->ip(1),
|
||||
'last_login_time' => time(),
|
||||
'head_img' => $userDetail['head_img']
|
||||
];
|
||||
$userInfo->userData()->save($userDataArr);
|
||||
$userInfo['userData'] = $userDataArr;
|
||||
|
||||
AdminAuthGroupAccess::create([
|
||||
'uid' => $userInfo->id,
|
||||
'group_id' => 1
|
||||
]);
|
||||
} else {
|
||||
if ($userInfo['status']) {
|
||||
//更新用户数据
|
||||
$userInfo->userData->login_times++;
|
||||
$userInfo->userData->last_login_ip = $this->request->ip(1);
|
||||
$userInfo->userData->last_login_time = time();
|
||||
$userInfo->userData->save();
|
||||
} else {
|
||||
return $this->buildFailed(ReturnCode::LOGIN_ERROR, '用户已被封禁,请联系管理员');
|
||||
}
|
||||
}
|
||||
|
||||
$userInfo['access'] = (new Login())->getAccess($userInfo['id']);
|
||||
|
||||
$apiAuth = md5(uniqid() . time());
|
||||
cache('Login:' . $apiAuth, json_encode($userInfo), config('apiadmin.ONLINE_TIME'));
|
||||
cache('Login:' . $userInfo['id'], $apiAuth, config('apiadmin.ONLINE_TIME'));
|
||||
|
||||
$userInfo['apiAuth'] = $apiAuth;
|
||||
|
||||
return $this->buildSuccess($userInfo, '登录成功');
|
||||
}
|
||||
|
||||
}
|
33
application/wiki/view/index/login_res.html
Normal file
33
application/wiki/view/index/login_res.html
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-cmn-Hans">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
|
||||
<title>ApiAdmin-微信登录</title>
|
||||
<link rel="stylesheet" href="//res.wx.qq.com/open/libs/weui/1.1.3/weui.min.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="page">
|
||||
<div class="weui-msg">
|
||||
<div class="weui-msg__icon-area">
|
||||
{if condition="$code eq 1 "}
|
||||
<i class="weui-icon-success weui-icon_msg"></i>
|
||||
{else /}
|
||||
<i class="weui-icon-warn weui-icon_msg"></i>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="weui-msg__text-area">
|
||||
<h2 class="weui-msg__title">{$info}</h2>
|
||||
</div>
|
||||
<div class="weui-msg__extra-area">
|
||||
<div class="weui-footer">
|
||||
<p class="weui-footer__links">
|
||||
<a href="https://apiadmin.gitee.io/apiadmin-wiki/" class="weui-footer__link">ApiAdmin文档</a>
|
||||
</p>
|
||||
<p class="weui-footer__text">Copyright © 2016-2018 apiadmin.org</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -21,7 +21,8 @@
|
||||
"topthink/framework": "5.1.*",
|
||||
"overtrue/pinyin": "~4.0",
|
||||
"php-curl-class/php-curl-class": "^8.5",
|
||||
"topthink/think-migration": "^2.0"
|
||||
"topthink/think-migration": "^2.0",
|
||||
"endroid/qr-code": "^3.5"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
590
composer.lock
generated
590
composer.lock
generated
@ -4,8 +4,335 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "80523d078e0bdb4822d59cc00bb0c65b",
|
||||
"content-hash": "51b856142de7edc86a5fe47667df45b6",
|
||||
"packages": [
|
||||
{
|
||||
"name": "bacon/bacon-qr-code",
|
||||
"version": "2.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Bacon/BaconQrCode.git",
|
||||
"reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
|
||||
"reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"dasprid/enum": "^1.0",
|
||||
"ext-iconv": "*",
|
||||
"php": "^7.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"phly/keep-a-changelog": "^1.4",
|
||||
"phpunit/phpunit": "^6.4",
|
||||
"squizlabs/php_codesniffer": "^3.1"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-imagick": "to generate QR code images"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"BaconQrCode\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"BSD-2-Clause"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ben Scholzen 'DASPRiD'",
|
||||
"email": "mail@dasprids.de",
|
||||
"homepage": "http://www.dasprids.de",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "BaconQrCode is a QR code generator for PHP.",
|
||||
"homepage": "https://github.com/Bacon/BaconQrCode",
|
||||
"time": "2018-04-25T17:53:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "dasprid/enum",
|
||||
"version": "1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DASPRiD/Enum.git",
|
||||
"reference": "631ef6e638e9494b0310837fa531bedd908fc22b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b",
|
||||
"reference": "631ef6e638e9494b0310837fa531bedd908fc22b",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^6.4",
|
||||
"squizlabs/php_codesniffer": "^3.1"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"DASPRiD\\Enum\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"BSD-2-Clause"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ben Scholzen 'DASPRiD'",
|
||||
"email": "mail@dasprids.de",
|
||||
"homepage": "https://dasprids.de/"
|
||||
}
|
||||
],
|
||||
"description": "PHP 7.1 enum implementation",
|
||||
"keywords": [
|
||||
"enum",
|
||||
"map"
|
||||
],
|
||||
"time": "2017-10-25T22:45:27+00:00"
|
||||
},
|
||||
{
|
||||
"name": "endroid/installer",
|
||||
"version": "1.1.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/endroid/installer.git",
|
||||
"reference": "0d56857e0687837bead9933048a9cc8d4ce85fd7"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/endroid/installer/zipball/0d56857e0687837bead9933048a9cc8d4ce85fd7",
|
||||
"reference": "0d56857e0687837bead9933048a9cc8d4ce85fd7",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"composer-plugin-api": "^1.1",
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"type": "composer-plugin",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.x-dev"
|
||||
},
|
||||
"class": "Endroid\\Installer\\Installer"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Endroid\\Installer\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jeroen van den Enden",
|
||||
"email": "info@endroid.nl"
|
||||
}
|
||||
],
|
||||
"time": "2019-03-30T20:54:26+00:00"
|
||||
},
|
||||
{
|
||||
"name": "endroid/qr-code",
|
||||
"version": "3.5.8",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/endroid/qr-code.git",
|
||||
"reference": "7823badf59402f31e8f9b33ce1e3161a1ba89866"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/endroid/qr-code/zipball/7823badf59402f31e8f9b33ce1e3161a1ba89866",
|
||||
"reference": "7823badf59402f31e8f9b33ce1e3161a1ba89866",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"bacon/bacon-qr-code": "^2.0",
|
||||
"endroid/installer": "^1.0.3",
|
||||
"ext-gd": "*",
|
||||
"khanamiryan/qrcode-detector-decoder": "^1.0.2",
|
||||
"myclabs/php-enum": "^1.5",
|
||||
"php": ">=7.1",
|
||||
"symfony/options-resolver": "^2.7|^3.0|^4.0",
|
||||
"symfony/property-access": "^2.7|^3.0|^4.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^5.7|^6.0"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/http-foundation": "Install if you want to use QrCodeResponse"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "3.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Endroid\\QrCode\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jeroen van den Enden",
|
||||
"email": "info@endroid.nl"
|
||||
}
|
||||
],
|
||||
"description": "Endroid QR Code",
|
||||
"homepage": "https://github.com/endroid/qr-code",
|
||||
"keywords": [
|
||||
"bundle",
|
||||
"code",
|
||||
"endroid",
|
||||
"php",
|
||||
"qr",
|
||||
"qrcode"
|
||||
],
|
||||
"time": "2019-04-03T21:14:10+00:00"
|
||||
},
|
||||
{
|
||||
"name": "khanamiryan/qrcode-detector-decoder",
|
||||
"version": "1.0.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
|
||||
"reference": "a75482d3bc804e3f6702332bfda6cccbb0dfaa76"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/a75482d3bc804e3f6702332bfda6cccbb0dfaa76",
|
||||
"reference": "a75482d3bc804e3f6702332bfda6cccbb0dfaa76",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": "^5.6|^7.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^5.7"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Zxing\\": "lib/"
|
||||
},
|
||||
"files": [
|
||||
"lib/Common/customFunctions.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ashot Khanamiryan",
|
||||
"email": "a.khanamiryan@gmail.com",
|
||||
"homepage": "https://github.com/khanamiryan",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"description": "QR code decoder / reader",
|
||||
"homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
|
||||
"keywords": [
|
||||
"barcode",
|
||||
"qr",
|
||||
"zxing"
|
||||
],
|
||||
"time": "2018-04-26T11:41:33+00:00"
|
||||
},
|
||||
{
|
||||
"name": "myclabs/php-enum",
|
||||
"version": "1.7.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/myclabs/php-enum.git",
|
||||
"reference": "f46847626b8739de22e4ebc6b56010f317d4448d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/myclabs/php-enum/zipball/f46847626b8739de22e4ebc6b56010f317d4448d",
|
||||
"reference": "f46847626b8739de22e4ebc6b56010f317d4448d",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
"php": ">=7.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^4.8.35|^5.7|^6.0",
|
||||
"squizlabs/php_codesniffer": "1.*"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"MyCLabs\\Enum\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "PHP Enum contributors",
|
||||
"homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
|
||||
}
|
||||
],
|
||||
"description": "PHP Enum implementation",
|
||||
"homepage": "http://github.com/myclabs/php-enum",
|
||||
"keywords": [
|
||||
"enum"
|
||||
],
|
||||
"time": "2019-05-05T10:12:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "overtrue/pinyin",
|
||||
"version": "4.0.3",
|
||||
@ -133,6 +460,267 @@
|
||||
],
|
||||
"time": "2019-04-20T05:57:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/inflector",
|
||||
"version": "v4.3.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/inflector.git",
|
||||
"reference": "889dc28cb6350ddb302fe9b8c796e4e6eb836856"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/inflector/zipball/889dc28cb6350ddb302fe9b8c796e4e6eb836856",
|
||||
"reference": "889dc28cb6350ddb302fe9b8c796e4e6eb836856",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.1.3",
|
||||
"symfony/polyfill-ctype": "~1.8"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "4.3-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\Inflector\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Bernhard Schussek",
|
||||
"email": "bschussek@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony Inflector Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"inflection",
|
||||
"pluralize",
|
||||
"singularize",
|
||||
"string",
|
||||
"symfony",
|
||||
"words"
|
||||
],
|
||||
"time": "2019-05-30T09:28:08+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/options-resolver",
|
||||
"version": "v4.3.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/options-resolver.git",
|
||||
"reference": "40762ead607c8f792ee4516881369ffa553fee6f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/options-resolver/zipball/40762ead607c8f792ee4516881369ffa553fee6f",
|
||||
"reference": "40762ead607c8f792ee4516881369ffa553fee6f",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.1.3"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "4.3-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\OptionsResolver\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony OptionsResolver Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"config",
|
||||
"configuration",
|
||||
"options"
|
||||
],
|
||||
"time": "2019-06-13T11:01:17+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-ctype",
|
||||
"version": "v1.11.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-ctype.git",
|
||||
"reference": "82ebae02209c21113908c229e9883c419720738a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
|
||||
"reference": "82ebae02209c21113908c229e9883c419720738a",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.3"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-ctype": "For best performance"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.11-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Ctype\\": ""
|
||||
},
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
},
|
||||
{
|
||||
"name": "Gert de Pagter",
|
||||
"email": "BackEndTea@gmail.com"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill for ctype functions",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"ctype",
|
||||
"polyfill",
|
||||
"portable"
|
||||
],
|
||||
"time": "2019-02-06T07:57:58+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/property-access",
|
||||
"version": "v4.3.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/property-access.git",
|
||||
"reference": "18ea48862a39e364927e71b9e4942af3c1a1cb8c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/property-access/zipball/18ea48862a39e364927e71b9e4942af3c1a1cb8c",
|
||||
"reference": "18ea48862a39e364927e71b9e4942af3c1a1cb8c",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.1.3",
|
||||
"symfony/inflector": "~3.4|~4.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/cache": "~3.4|~4.0"
|
||||
},
|
||||
"suggest": {
|
||||
"psr/cache-implementation": "To cache access methods."
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "4.3-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\PropertyAccess\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony PropertyAccess Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"access",
|
||||
"array",
|
||||
"extraction",
|
||||
"index",
|
||||
"injection",
|
||||
"object",
|
||||
"property",
|
||||
"property path",
|
||||
"reflection"
|
||||
],
|
||||
"time": "2019-06-06T10:05:02+00:00"
|
||||
},
|
||||
{
|
||||
"name": "topthink/framework",
|
||||
"version": "v5.1.35",
|
||||
|
@ -16,6 +16,27 @@ Route::group('admin', function() {
|
||||
Route::rule(
|
||||
'Login/index', 'admin/Login/index', 'post'
|
||||
);
|
||||
Route::rule(
|
||||
'ThirdLogin/getQQCode', 'admin/ThirdLogin/getQQCode', 'get'
|
||||
);
|
||||
Route::rule(
|
||||
'ThirdLogin/getWxCode', 'admin/ThirdLogin/getWxCode', 'get'
|
||||
);
|
||||
Route::rule(
|
||||
'ThirdLogin/wx', 'admin/ThirdLogin/wx', 'get'
|
||||
);
|
||||
Route::rule(
|
||||
'ThirdLogin/loginByQQ', 'admin/ThirdLogin/loginByQQ', 'get'
|
||||
);
|
||||
Route::rule(
|
||||
'ThirdLogin/loginByWx', 'admin/ThirdLogin/loginByWx', 'get'
|
||||
);
|
||||
Route::rule(
|
||||
'ThirdLogin/checkWxLogin', 'admin/ThirdLogin/checkWxLogin', 'get'
|
||||
);
|
||||
Route::rule(
|
||||
'ThirdLogin/getQr', 'admin/ThirdLogin/getQr', 'get'
|
||||
);
|
||||
Route::rule(
|
||||
'Index/upload', 'admin/Index/upload', 'post'
|
||||
)->middleware(['AdminAuth', 'AdminLog']);
|
||||
|
Loading…
x
Reference in New Issue
Block a user