ComposerUpdate

This commit is contained in:
Anyon 2019-11-09 16:27:22 +08:00
parent 4c4d031664
commit 4eb0d828cb
39 changed files with 415 additions and 287 deletions

View File

@ -15,11 +15,8 @@
namespace app\admin\controller; namespace app\admin\controller;
use app\admin\service\AuthService;
use app\admin\service\MenuService;
use app\admin\service\NodeService;
use think\admin\Controller; use think\admin\Controller;
use think\Db; use think\admin\service\AuthService;
/** /**
* 系统权限管理 * 系统权限管理
@ -112,7 +109,7 @@ class Auth extends Controller
$action = strtolower(input('action', '')); $action = strtolower(input('action', ''));
if ($action === 'get') { if ($action === 'get') {
$checkeds = $this->app->db->name('SystemAuthNode')->where($map)->column('node'); $checkeds = $this->app->db->name('SystemAuthNode')->where($map)->column('node');
$this->success('获取权限节点成功!', AuthService::getTree($checkeds)); $this->success('获取权限节点成功!', AuthService::instance($this->app)->getTree($checkeds));
} elseif ($action === 'save') { } elseif ($action === 'save') {
list($post, $data) = [$this->request->post(), []]; list($post, $data) = [$this->request->post(), []];
foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) { foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) {
@ -120,7 +117,7 @@ class Auth extends Controller
} }
$this->app->db->name('SystemAuthNode')->where($map)->delete(); $this->app->db->name('SystemAuthNode')->where($map)->delete();
$this->app->db->name('SystemAuthNode')->insertAll($data); $this->app->db->name('SystemAuthNode')->insertAll($data);
AuthService::apply(true); AuthService::instance($this->app)->apply(true);
$this->success('权限授权更新成功!', 'javascript:history.back()'); $this->success('权限授权更新成功!', 'javascript:history.back()');
} else { } else {
$this->title = '权限配置节点'; $this->title = '权限配置节点';

View File

@ -48,7 +48,7 @@ class Config extends Controller
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public function config() public function system()
{ {
$this->_applyFormToken(); $this->_applyFormToken();
if ($this->request->isGet()) { if ($this->request->isGet()) {

View File

@ -15,10 +15,10 @@
namespace app\admin\controller; namespace app\admin\controller;
use app\admin\service\AuthService;
use app\admin\service\MenuService;
use think\admin\Controller; use think\admin\Controller;
use think\admin\extend\DataExtend; use think\admin\extend\DataExtend;
use think\admin\service\AuthService;
use think\admin\service\MenuService;
/** /**
* 后台界面入口 * 后台界面入口
@ -38,9 +38,9 @@ class Index extends Controller
public function index() public function index()
{ {
$this->title = '系统管理后台'; $this->title = '系统管理后台';
AuthService::apply(true); AuthService::instance($this->app)->apply(true);
$this->menus = MenuService::getTree(); $this->menus = MenuService::instance($this->app)->getTree();
if (empty($this->menus) && !AuthService::isLogin()) { if (empty($this->menus) && !AuthService::instance($this->app)->isLogin()) {
$this->redirect(url('@admin/login')); $this->redirect(url('@admin/login'));
} else { } else {
$this->fetch(); $this->fetch();
@ -59,6 +59,7 @@ class Index extends Controller
/** /**
* 修改用户资料 * 修改用户资料
* @login true
* @param integer $id 会员ID * @param integer $id 会员ID
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
@ -66,9 +67,6 @@ class Index extends Controller
*/ */
public function info($id = 0) public function info($id = 0)
{ {
if (!AuthService::isLogin()) {
$this->error('需要登录才能操作哦!');
}
$this->_applyFormToken(); $this->_applyFormToken();
if (intval($this->app->session->get('user.id')) === intval($id)) { if (intval($this->app->session->get('user.id')) === intval($id)) {
$this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]); $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]);
@ -79,6 +77,7 @@ class Index extends Controller
/** /**
* 修改当前用户密码 * 修改当前用户密码
* @login true
* @param integer $id * @param integer $id
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
@ -86,9 +85,6 @@ class Index extends Controller
*/ */
public function pass($id = 0) public function pass($id = 0)
{ {
if (!AuthService::isLogin()) {
$this->error('需要登录才能操作哦!');
}
$this->_applyFormToken(); $this->_applyFormToken();
if (intval($this->app->session->get('user.id')) !== intval($id)) { if (intval($this->app->session->get('user.id')) !== intval($id)) {
$this->error('只能修改当前用户的密码!'); $this->error('只能修改当前用户的密码!');

View File

@ -15,9 +15,9 @@
namespace app\admin\controller; namespace app\admin\controller;
use app\admin\service\AuthService;
use think\admin\Controller; use think\admin\Controller;
use think\admin\extend\CaptchaExtend; use think\admin\service\AuthService;
use think\admin\service\CaptchaService;
/** /**
* 用户登录管理 * 用户登录管理
@ -35,21 +35,21 @@ class Login extends Controller
public function index() public function index()
{ {
if ($this->app->request->isGet()) { if ($this->app->request->isGet()) {
if (AuthService::isLogin()) { if (AuthService::instance($this->app)->isLogin()) {
$this->redirect(url('@admin')->suffix(false)->build()); $this->redirect(url('@admin')->suffix(false)->build());
} else { } else {
$this->title = '系统登录'; $this->title = '系统登录';
$this->domain = $this->app->request->host(true); $this->domain = $this->app->request->host(true);
$this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']); $this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']);
$this->devmode = $this->devmode ?: is_numeric(stripos($this->domain, 'thinkadmin.top')); $this->devmode = $this->devmode ?: is_numeric(stripos($this->domain, 'thinkadmin.top'));
$this->captcha = CaptchaExtend::instance(); $this->captcha = CaptchaService::instance($this->app);
$this->fetch(); $this->fetch();
} }
} elseif ($this->app->request->isPost()) { } elseif ($this->app->request->isPost()) {
$data = ['username' => input('username'), 'password' => input('password')]; $data = ['username' => input('username'), 'password' => input('password')];
if (empty($data['username'])) $this->error('登录账号不能为空!'); if (empty($data['username'])) $this->error('登录账号不能为空!');
if (empty($data['password'])) $this->error('登录密码不能为空!'); if (empty($data['password'])) $this->error('登录密码不能为空!');
if (!CaptchaExtend::check(input('verify'), input('uniqid'))) { if (!CaptchaService::instance($this->app)->check(input('verify'), input('uniqid'))) {
$this->error('图形验证码验证失败,请重新输入!'); $this->error('图形验证码验证失败,请重新输入!');
} }
// 用户信息验证 // 用户信息验证
@ -80,7 +80,7 @@ class Login extends Controller
*/ */
public function captcha() public function captcha()
{ {
$image = CaptchaExtend::instance(); $image = CaptchaService::instance($this->app);
$this->success('生成验证码成功', [ $this->success('生成验证码成功', [
'image' => $image->getData(), 'image' => $image->getData(),
'uniqid' => $image->getUniqid(), 'uniqid' => $image->getUniqid(),

View File

@ -15,9 +15,9 @@
namespace app\admin\controller; namespace app\admin\controller;
use app\admin\service\MenuService;
use think\admin\Controller; use think\admin\Controller;
use think\admin\extend\DataExtend; use think\admin\extend\DataExtend;
use think\admin\service\MenuService;
/** /**
* 系统菜单管理 * 系统菜单管理
@ -111,7 +111,7 @@ class Menu extends Controller
$vo['pid'] = $this->request->get('pid', '0'); $vo['pid'] = $this->request->get('pid', '0');
} }
// 读取系统功能节点 // 读取系统功能节点
$this->nodes = MenuService::getList(); $this->nodes = MenuService::instance($this->app)->getList();
} }
} }

View File

@ -16,7 +16,6 @@
namespace app\admin\controller; namespace app\admin\controller;
use think\admin\Controller; use think\admin\Controller;
use think\Db;
/** /**
* 系统日志管理 * 系统日志管理

View File

@ -15,9 +15,9 @@
namespace app\admin\controller; namespace app\admin\controller;
use app\admin\service\AuthService;
use think\admin\Controller; use think\admin\Controller;
use think\admin\extend\DataExtend; use think\admin\extend\DataExtend;
use think\admin\service\AuthService;
/** /**
* 系统用户管理 * 系统用户管理
@ -111,7 +111,7 @@ class User extends Controller
{ {
if ($this->request->isPost()) { if ($this->request->isPost()) {
// 刷新系统授权 // 刷新系统授权
AuthService::apply(); AuthService::instance($this->app)->apply();
// 用户权限处理 // 用户权限处理
$data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : ''; $data['authorize'] = (isset($data['authorize']) && is_array($data['authorize'])) ? join(',', $data['authorize']) : '';
// 用户账号重复检查 // 用户账号重复检查

View File

@ -16,7 +16,7 @@
namespace app\admin\controller\api; namespace app\admin\controller\api;
use think\admin\Controller; use think\admin\Controller;
use think\admin\install\ExtendInstall; use think\admin\service\InstallService;
/** /**
* 安装服务端支持 * 安装服务端支持
@ -32,7 +32,7 @@ class Update extends Controller
{ {
$this->rules = unserialize($this->request->post('rules', 'a:0:{}', '')); $this->rules = unserialize($this->request->post('rules', 'a:0:{}', ''));
$this->ignore = unserialize($this->request->post('ignore', 'a:0:{}', '')); $this->ignore = unserialize($this->request->post('ignore', 'a:0:{}', ''));
$this->success('获取文件列表成功!', ExtendInstall::instance($this->app)->getList($this->rules, $this->ignore)); $this->success('获取文件列表成功!', InstallService::instance($this->app)->getList($this->rules, $this->ignore));
} }
/** /**

View File

@ -1,4 +1,5 @@
<?php <?php
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | ThinkAdmin // | ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -12,21 +13,7 @@
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin // | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
use app\admin\service\AuthService; use think\admin\service\NodeService;
use think\admin\extend\NodeExtend;
if (!function_exists('auth')) {
/**
* 访问权限检查
* @param string $node
* @return boolean
* @throws ReflectionException
*/
function auth($node)
{
return AuthService::check($node);
}
}
if (!function_exists('sysdata')) { if (!function_exists('sysdata')) {
/** /**
@ -59,7 +46,7 @@ if (!function_exists('sysoplog')) {
function sysoplog($action, $content) function sysoplog($action, $content)
{ {
return app()->db->name('SystemOplog')->insert([ return app()->db->name('SystemOplog')->insert([
'node' => NodeExtend::getCurrent(), 'node' => NodeService::instance()->getCurrent(),
'action' => $action, 'content' => $content, 'action' => $action, 'content' => $content,
'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : app()->request->ip(), 'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : app()->request->ip(),
'username' => PHP_SAPI === 'cli' ? 'cli' : app()->session->get('user.username'), 'username' => PHP_SAPI === 'cli' ? 'cli' : app()->session->get('user.username'),

View File

@ -5,7 +5,7 @@
{if auth('config')} {if auth('config')}
<div class="think-box-shadow margin-bottom-15"> <div class="think-box-shadow margin-bottom-15">
<span class="color-green font-w7 text-middle">系统参数配置:</span> <span class="color-green font-w7 text-middle">系统参数配置:</span>
<a class="layui-btn layui-btn-sm" data-modal="{:url('config')}">修改系统配置</a> <a class="layui-btn layui-btn-sm" data-modal="{:url('system')}">修改系统配置</a>
</div> </div>
{/if} {/if}

View File

@ -1,9 +1,26 @@
<?php <?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ 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\index\controller; namespace app\index\controller;
use think\admin\Controller; use think\admin\Controller;
/**
* Class Index
* @package app\index\controller
*/
class Index extends Controller class Index extends Controller
{ {
public function index() public function index()

View File

@ -20,6 +20,8 @@
"php": ">=7.1.0", "php": ">=7.1.0",
"ext-gd": "*", "ext-gd": "*",
"ext-json": "*", "ext-json": "*",
"ext-curl": "*",
"ext-iconv": "*",
"topthink/framework": "^6.0", "topthink/framework": "^6.0",
"topthink/think-view": "^1.0", "topthink/think-view": "^1.0",
"topthink/think-multi-app": "^1.0", "topthink/think-multi-app": "^1.0",

14
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "387856954688245acf7e8623d243fb5d", "content-hash": "44a6bc247971794be9edd9df4f3dd0b9",
"packages": [ "packages": [
{ {
"name": "league/flysystem", "name": "league/flysystem",
@ -783,12 +783,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "8fe807f96681e800b32c5fe775e2b92def2396d3" "reference": "e561d021e18776a9851646236e6af556c77eec6a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/8fe807f96681e800b32c5fe775e2b92def2396d3", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e561d021e18776a9851646236e6af556c77eec6a",
"reference": "8fe807f96681e800b32c5fe775e2b92def2396d3", "reference": "e561d021e18776a9851646236e6af556c77eec6a",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -832,7 +832,7 @@
], ],
"description": "ThinkPHP v6.0 Development Library", "description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top", "homepage": "http://framework.thinkadmin.top",
"time": "2019-11-04T11:04:29+00:00" "time": "2019-11-09T08:03:23+00:00"
} }
], ],
"packages-dev": [], "packages-dev": [],
@ -846,7 +846,9 @@
"platform": { "platform": {
"php": ">=7.1.0", "php": ">=7.1.0",
"ext-gd": "*", "ext-gd": "*",
"ext-json": "*" "ext-json": "*",
"ext-curl": "*",
"ext-iconv": "*"
}, },
"platform-dev": [] "platform-dev": []
} }

46
route/demo.php Normal file
View File

@ -0,0 +1,46 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://demo.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
/* 演示环境禁止操作路由绑定 */
if (in_array(request()->rootDomain(), ['ctolog.com', 'thinkadmin.top'])) {
$app = app();
$app->route->post('admin/user/pass', function () {
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
});
$app->route->post('admin/index/pass', function () {
return json(['code' => 0, 'info' => '演示环境禁止修改用户密码!']);
});
$app->route->post('admin/config/config', function () {
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
});
$app->route->post('admin/config/storage', function () {
return json(['code' => 0, 'info' => '演示环境禁止修改系统配置!']);
});
$app->route->post('admin/menu/index', function () {
return json(['code' => 0, 'info' => '演示环境禁止给菜单排序!']);
});
$app->route->post('admin/menu/add', function () {
return json(['code' => 0, 'info' => '演示环境禁止添加菜单!']);
});
$app->route->post('admin/menu/edit', function () {
return json(['code' => 0, 'info' => '演示环境禁止编辑菜单!']);
});
$app->route->post('admin/menu/state', function () {
return json(['code' => 0, 'info' => '演示环境禁止禁用菜单!']);
});
$app->route->post('admin/menu/remove', function () {
return json(['code' => 0, 'info' => '演示环境禁止删除菜单!']);
});
}

2
vendor/autoload.php vendored
View File

@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php'; require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit31a52c657911214987b8ff9fa2a257af::getLoader(); return ComposerAutoloaderInitb8e4029a37bf108c1da00ff988d7544f::getLoader();

View File

@ -106,8 +106,6 @@ return array(
'app\\admin\\controller\\api\\Plugs' => $baseDir . '/app/admin/controller/api/Plugs.php', 'app\\admin\\controller\\api\\Plugs' => $baseDir . '/app/admin/controller/api/Plugs.php',
'app\\admin\\controller\\api\\Update' => $baseDir . '/app/admin/controller/api/Update.php', 'app\\admin\\controller\\api\\Update' => $baseDir . '/app/admin/controller/api/Update.php',
'app\\admin\\controller\\api\\Upload' => $baseDir . '/app/admin/controller/api/Upload.php', 'app\\admin\\controller\\api\\Upload' => $baseDir . '/app/admin/controller/api/Upload.php',
'app\\admin\\service\\AuthService' => $baseDir . '/app/admin/service/AuthService.php',
'app\\admin\\service\\MenuService' => $baseDir . '/app/admin/service/MenuService.php',
'app\\index\\controller\\Index' => $baseDir . '/app/index/controller/Index.php', 'app\\index\\controller\\Index' => $baseDir . '/app/index/controller/Index.php',
'think\\App' => $vendorDir . '/topthink/framework/src/think/App.php', 'think\\App' => $vendorDir . '/topthink/framework/src/think/App.php',
'think\\Cache' => $vendorDir . '/topthink/framework/src/think/Cache.php', 'think\\Cache' => $vendorDir . '/topthink/framework/src/think/Cache.php',
@ -141,33 +139,36 @@ return array(
'think\\Validate' => $vendorDir . '/topthink/framework/src/think/Validate.php', 'think\\Validate' => $vendorDir . '/topthink/framework/src/think/Validate.php',
'think\\View' => $vendorDir . '/topthink/framework/src/think/View.php', 'think\\View' => $vendorDir . '/topthink/framework/src/think/View.php',
'think\\admin\\Controller' => $vendorDir . '/zoujingli/think-library/src/Controller.php', 'think\\admin\\Controller' => $vendorDir . '/zoujingli/think-library/src/Controller.php',
'think\\admin\\Helper' => $vendorDir . '/zoujingli/think-library/src/Helper.php',
'think\\admin\\Queue' => $vendorDir . '/zoujingli/think-library/src/Queue.php', 'think\\admin\\Queue' => $vendorDir . '/zoujingli/think-library/src/Queue.php',
'think\\admin\\Service' => $vendorDir . '/zoujingli/think-library/src/Service.php',
'think\\admin\\Storage' => $vendorDir . '/zoujingli/think-library/src/Storage.php', 'think\\admin\\Storage' => $vendorDir . '/zoujingli/think-library/src/Storage.php',
'think\\admin\\ThinkLibrary' => $vendorDir . '/zoujingli/think-library/src/ThinkLibrary.php', 'think\\admin\\ThinkLibrary' => $vendorDir . '/zoujingli/think-library/src/ThinkLibrary.php',
'think\\admin\\extend\\CaptchaExtend' => $vendorDir . '/zoujingli/think-library/src/extend/CaptchaExtend.php',
'think\\admin\\extend\\CodeExtend' => $vendorDir . '/zoujingli/think-library/src/extend/CodeExtend.php', 'think\\admin\\extend\\CodeExtend' => $vendorDir . '/zoujingli/think-library/src/extend/CodeExtend.php',
'think\\admin\\extend\\CsvExtend' => $vendorDir . '/zoujingli/think-library/src/extend/CsvExtend.php', 'think\\admin\\extend\\CsvExtend' => $vendorDir . '/zoujingli/think-library/src/extend/CsvExtend.php',
'think\\admin\\extend\\DataExtend' => $vendorDir . '/zoujingli/think-library/src/extend/DataExtend.php', 'think\\admin\\extend\\DataExtend' => $vendorDir . '/zoujingli/think-library/src/extend/DataExtend.php',
'think\\admin\\extend\\ExpressExtend' => $vendorDir . '/zoujingli/think-library/src/extend/ExpressExtend.php', 'think\\admin\\extend\\ExpressExtend' => $vendorDir . '/zoujingli/think-library/src/extend/ExpressExtend.php',
'think\\admin\\extend\\HttpExtend' => $vendorDir . '/zoujingli/think-library/src/extend/HttpExtend.php', 'think\\admin\\extend\\HttpExtend' => $vendorDir . '/zoujingli/think-library/src/extend/HttpExtend.php',
'think\\admin\\extend\\NodeExtend' => $vendorDir . '/zoujingli/think-library/src/extend/NodeExtend.php',
'think\\admin\\extend\\ProcessExtend' => $vendorDir . '/zoujingli/think-library/src/extend/ProcessExtend.php', 'think\\admin\\extend\\ProcessExtend' => $vendorDir . '/zoujingli/think-library/src/extend/ProcessExtend.php',
'think\\admin\\extend\\TokenExtend' => $vendorDir . '/zoujingli/think-library/src/extend/TokenExtend.php',
'think\\admin\\helper\\DeleteHelper' => $vendorDir . '/zoujingli/think-library/src/helper/DeleteHelper.php', 'think\\admin\\helper\\DeleteHelper' => $vendorDir . '/zoujingli/think-library/src/helper/DeleteHelper.php',
'think\\admin\\helper\\FormHelper' => $vendorDir . '/zoujingli/think-library/src/helper/FormHelper.php', 'think\\admin\\helper\\FormHelper' => $vendorDir . '/zoujingli/think-library/src/helper/FormHelper.php',
'think\\admin\\helper\\Helper' => $vendorDir . '/zoujingli/think-library/src/helper/Helper.php',
'think\\admin\\helper\\PageHelper' => $vendorDir . '/zoujingli/think-library/src/helper/PageHelper.php', 'think\\admin\\helper\\PageHelper' => $vendorDir . '/zoujingli/think-library/src/helper/PageHelper.php',
'think\\admin\\helper\\QueryHelper' => $vendorDir . '/zoujingli/think-library/src/helper/QueryHelper.php', 'think\\admin\\helper\\QueryHelper' => $vendorDir . '/zoujingli/think-library/src/helper/QueryHelper.php',
'think\\admin\\helper\\SaveHelper' => $vendorDir . '/zoujingli/think-library/src/helper/SaveHelper.php', 'think\\admin\\helper\\SaveHelper' => $vendorDir . '/zoujingli/think-library/src/helper/SaveHelper.php',
'think\\admin\\helper\\TokenHelper' => $vendorDir . '/zoujingli/think-library/src/helper/TokenHelper.php', 'think\\admin\\helper\\TokenHelper' => $vendorDir . '/zoujingli/think-library/src/helper/TokenHelper.php',
'think\\admin\\install\\CommandInstall' => $vendorDir . '/zoujingli/think-library/src/install/CommandInstall.php', 'think\\admin\\install\\CommandInstall' => $vendorDir . '/zoujingli/think-library/src/install/CommandInstall.php',
'think\\admin\\install\\ExtendInstall' => $vendorDir . '/zoujingli/think-library/src/install/ExtendInstall.php',
'think\\admin\\queue\\ListenQueue' => $vendorDir . '/zoujingli/think-library/src/queue/ListenQueue.php', 'think\\admin\\queue\\ListenQueue' => $vendorDir . '/zoujingli/think-library/src/queue/ListenQueue.php',
'think\\admin\\queue\\QueryQueue' => $vendorDir . '/zoujingli/think-library/src/queue/QueryQueue.php', 'think\\admin\\queue\\QueryQueue' => $vendorDir . '/zoujingli/think-library/src/queue/QueryQueue.php',
'think\\admin\\queue\\StartQueue' => $vendorDir . '/zoujingli/think-library/src/queue/StartQueue.php', 'think\\admin\\queue\\StartQueue' => $vendorDir . '/zoujingli/think-library/src/queue/StartQueue.php',
'think\\admin\\queue\\StateQueue' => $vendorDir . '/zoujingli/think-library/src/queue/StateQueue.php', 'think\\admin\\queue\\StateQueue' => $vendorDir . '/zoujingli/think-library/src/queue/StateQueue.php',
'think\\admin\\queue\\StopQueue' => $vendorDir . '/zoujingli/think-library/src/queue/StopQueue.php', 'think\\admin\\queue\\StopQueue' => $vendorDir . '/zoujingli/think-library/src/queue/StopQueue.php',
'think\\admin\\queue\\WorkQueue' => $vendorDir . '/zoujingli/think-library/src/queue/WorkQueue.php', 'think\\admin\\queue\\WorkQueue' => $vendorDir . '/zoujingli/think-library/src/queue/WorkQueue.php',
'think\\admin\\service\\AuthService' => $vendorDir . '/zoujingli/think-library/src/service/AuthService.php',
'think\\admin\\service\\CaptchaService' => $vendorDir . '/zoujingli/think-library/src/service/CaptchaService.php',
'think\\admin\\service\\InstallService' => $vendorDir . '/zoujingli/think-library/src/service/InstallService.php',
'think\\admin\\service\\MenuService' => $vendorDir . '/zoujingli/think-library/src/service/MenuService.php',
'think\\admin\\service\\NodeService' => $vendorDir . '/zoujingli/think-library/src/service/NodeService.php',
'think\\admin\\service\\TokenService' => $vendorDir . '/zoujingli/think-library/src/service/TokenService.php',
'think\\admin\\storage\\LocalStorage' => $vendorDir . '/zoujingli/think-library/src/storage/LocalStorage.php', 'think\\admin\\storage\\LocalStorage' => $vendorDir . '/zoujingli/think-library/src/storage/LocalStorage.php',
'think\\admin\\storage\\QiniuStorage' => $vendorDir . '/zoujingli/think-library/src/storage/QiniuStorage.php', 'think\\admin\\storage\\QiniuStorage' => $vendorDir . '/zoujingli/think-library/src/storage/QiniuStorage.php',
'think\\app\\MultiApp' => $vendorDir . '/topthink/think-multi-app/src/MultiApp.php', 'think\\app\\MultiApp' => $vendorDir . '/topthink/think-multi-app/src/MultiApp.php',

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer // autoload_real.php @generated by Composer
class ComposerAutoloaderInit31a52c657911214987b8ff9fa2a257af class ComposerAutoloaderInitb8e4029a37bf108c1da00ff988d7544f
{ {
private static $loader; private static $loader;
@ -19,15 +19,15 @@ class ComposerAutoloaderInit31a52c657911214987b8ff9fa2a257af
return self::$loader; return self::$loader;
} }
spl_autoload_register(array('ComposerAutoloaderInit31a52c657911214987b8ff9fa2a257af', 'loadClassLoader'), true, true); spl_autoload_register(array('ComposerAutoloaderInitb8e4029a37bf108c1da00ff988d7544f', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(); self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit31a52c657911214987b8ff9fa2a257af', 'loadClassLoader')); spl_autoload_unregister(array('ComposerAutoloaderInitb8e4029a37bf108c1da00ff988d7544f', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) { if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php'; require_once __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit31a52c657911214987b8ff9fa2a257af::getInitializer($loader)); call_user_func(\Composer\Autoload\ComposerStaticInitb8e4029a37bf108c1da00ff988d7544f::getInitializer($loader));
} else { } else {
$map = require __DIR__ . '/autoload_namespaces.php'; $map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) { foreach ($map as $namespace => $path) {
@ -48,19 +48,19 @@ class ComposerAutoloaderInit31a52c657911214987b8ff9fa2a257af
$loader->register(true); $loader->register(true);
if ($useStaticLoader) { if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit31a52c657911214987b8ff9fa2a257af::$files; $includeFiles = Composer\Autoload\ComposerStaticInitb8e4029a37bf108c1da00ff988d7544f::$files;
} else { } else {
$includeFiles = require __DIR__ . '/autoload_files.php'; $includeFiles = require __DIR__ . '/autoload_files.php';
} }
foreach ($includeFiles as $fileIdentifier => $file) { foreach ($includeFiles as $fileIdentifier => $file) {
composerRequire31a52c657911214987b8ff9fa2a257af($fileIdentifier, $file); composerRequireb8e4029a37bf108c1da00ff988d7544f($fileIdentifier, $file);
} }
return $loader; return $loader;
} }
} }
function composerRequire31a52c657911214987b8ff9fa2a257af($fileIdentifier, $file) function composerRequireb8e4029a37bf108c1da00ff988d7544f($fileIdentifier, $file)
{ {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file; require $file;

View File

@ -4,7 +4,7 @@
namespace Composer\Autoload; namespace Composer\Autoload;
class ComposerStaticInit31a52c657911214987b8ff9fa2a257af class ComposerStaticInitb8e4029a37bf108c1da00ff988d7544f
{ {
public static $files = array ( public static $files = array (
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php', '9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
@ -197,8 +197,6 @@ class ComposerStaticInit31a52c657911214987b8ff9fa2a257af
'app\\admin\\controller\\api\\Plugs' => __DIR__ . '/../..' . '/app/admin/controller/api/Plugs.php', 'app\\admin\\controller\\api\\Plugs' => __DIR__ . '/../..' . '/app/admin/controller/api/Plugs.php',
'app\\admin\\controller\\api\\Update' => __DIR__ . '/../..' . '/app/admin/controller/api/Update.php', 'app\\admin\\controller\\api\\Update' => __DIR__ . '/../..' . '/app/admin/controller/api/Update.php',
'app\\admin\\controller\\api\\Upload' => __DIR__ . '/../..' . '/app/admin/controller/api/Upload.php', 'app\\admin\\controller\\api\\Upload' => __DIR__ . '/../..' . '/app/admin/controller/api/Upload.php',
'app\\admin\\service\\AuthService' => __DIR__ . '/../..' . '/app/admin/service/AuthService.php',
'app\\admin\\service\\MenuService' => __DIR__ . '/../..' . '/app/admin/service/MenuService.php',
'app\\index\\controller\\Index' => __DIR__ . '/../..' . '/app/index/controller/Index.php', 'app\\index\\controller\\Index' => __DIR__ . '/../..' . '/app/index/controller/Index.php',
'think\\App' => __DIR__ . '/..' . '/topthink/framework/src/think/App.php', 'think\\App' => __DIR__ . '/..' . '/topthink/framework/src/think/App.php',
'think\\Cache' => __DIR__ . '/..' . '/topthink/framework/src/think/Cache.php', 'think\\Cache' => __DIR__ . '/..' . '/topthink/framework/src/think/Cache.php',
@ -232,33 +230,36 @@ class ComposerStaticInit31a52c657911214987b8ff9fa2a257af
'think\\Validate' => __DIR__ . '/..' . '/topthink/framework/src/think/Validate.php', 'think\\Validate' => __DIR__ . '/..' . '/topthink/framework/src/think/Validate.php',
'think\\View' => __DIR__ . '/..' . '/topthink/framework/src/think/View.php', 'think\\View' => __DIR__ . '/..' . '/topthink/framework/src/think/View.php',
'think\\admin\\Controller' => __DIR__ . '/..' . '/zoujingli/think-library/src/Controller.php', 'think\\admin\\Controller' => __DIR__ . '/..' . '/zoujingli/think-library/src/Controller.php',
'think\\admin\\Helper' => __DIR__ . '/..' . '/zoujingli/think-library/src/Helper.php',
'think\\admin\\Queue' => __DIR__ . '/..' . '/zoujingli/think-library/src/Queue.php', 'think\\admin\\Queue' => __DIR__ . '/..' . '/zoujingli/think-library/src/Queue.php',
'think\\admin\\Service' => __DIR__ . '/..' . '/zoujingli/think-library/src/Service.php',
'think\\admin\\Storage' => __DIR__ . '/..' . '/zoujingli/think-library/src/Storage.php', 'think\\admin\\Storage' => __DIR__ . '/..' . '/zoujingli/think-library/src/Storage.php',
'think\\admin\\ThinkLibrary' => __DIR__ . '/..' . '/zoujingli/think-library/src/ThinkLibrary.php', 'think\\admin\\ThinkLibrary' => __DIR__ . '/..' . '/zoujingli/think-library/src/ThinkLibrary.php',
'think\\admin\\extend\\CaptchaExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/CaptchaExtend.php',
'think\\admin\\extend\\CodeExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/CodeExtend.php', 'think\\admin\\extend\\CodeExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/CodeExtend.php',
'think\\admin\\extend\\CsvExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/CsvExtend.php', 'think\\admin\\extend\\CsvExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/CsvExtend.php',
'think\\admin\\extend\\DataExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/DataExtend.php', 'think\\admin\\extend\\DataExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/DataExtend.php',
'think\\admin\\extend\\ExpressExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/ExpressExtend.php', 'think\\admin\\extend\\ExpressExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/ExpressExtend.php',
'think\\admin\\extend\\HttpExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/HttpExtend.php', 'think\\admin\\extend\\HttpExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/HttpExtend.php',
'think\\admin\\extend\\NodeExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/NodeExtend.php',
'think\\admin\\extend\\ProcessExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/ProcessExtend.php', 'think\\admin\\extend\\ProcessExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/ProcessExtend.php',
'think\\admin\\extend\\TokenExtend' => __DIR__ . '/..' . '/zoujingli/think-library/src/extend/TokenExtend.php',
'think\\admin\\helper\\DeleteHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/DeleteHelper.php', 'think\\admin\\helper\\DeleteHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/DeleteHelper.php',
'think\\admin\\helper\\FormHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/FormHelper.php', 'think\\admin\\helper\\FormHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/FormHelper.php',
'think\\admin\\helper\\Helper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/Helper.php',
'think\\admin\\helper\\PageHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/PageHelper.php', 'think\\admin\\helper\\PageHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/PageHelper.php',
'think\\admin\\helper\\QueryHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/QueryHelper.php', 'think\\admin\\helper\\QueryHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/QueryHelper.php',
'think\\admin\\helper\\SaveHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/SaveHelper.php', 'think\\admin\\helper\\SaveHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/SaveHelper.php',
'think\\admin\\helper\\TokenHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/TokenHelper.php', 'think\\admin\\helper\\TokenHelper' => __DIR__ . '/..' . '/zoujingli/think-library/src/helper/TokenHelper.php',
'think\\admin\\install\\CommandInstall' => __DIR__ . '/..' . '/zoujingli/think-library/src/install/CommandInstall.php', 'think\\admin\\install\\CommandInstall' => __DIR__ . '/..' . '/zoujingli/think-library/src/install/CommandInstall.php',
'think\\admin\\install\\ExtendInstall' => __DIR__ . '/..' . '/zoujingli/think-library/src/install/ExtendInstall.php',
'think\\admin\\queue\\ListenQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/ListenQueue.php', 'think\\admin\\queue\\ListenQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/ListenQueue.php',
'think\\admin\\queue\\QueryQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/QueryQueue.php', 'think\\admin\\queue\\QueryQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/QueryQueue.php',
'think\\admin\\queue\\StartQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/StartQueue.php', 'think\\admin\\queue\\StartQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/StartQueue.php',
'think\\admin\\queue\\StateQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/StateQueue.php', 'think\\admin\\queue\\StateQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/StateQueue.php',
'think\\admin\\queue\\StopQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/StopQueue.php', 'think\\admin\\queue\\StopQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/StopQueue.php',
'think\\admin\\queue\\WorkQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/WorkQueue.php', 'think\\admin\\queue\\WorkQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/WorkQueue.php',
'think\\admin\\service\\AuthService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/AuthService.php',
'think\\admin\\service\\CaptchaService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/CaptchaService.php',
'think\\admin\\service\\InstallService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/InstallService.php',
'think\\admin\\service\\MenuService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/MenuService.php',
'think\\admin\\service\\NodeService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/NodeService.php',
'think\\admin\\service\\TokenService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/TokenService.php',
'think\\admin\\storage\\LocalStorage' => __DIR__ . '/..' . '/zoujingli/think-library/src/storage/LocalStorage.php', 'think\\admin\\storage\\LocalStorage' => __DIR__ . '/..' . '/zoujingli/think-library/src/storage/LocalStorage.php',
'think\\admin\\storage\\QiniuStorage' => __DIR__ . '/..' . '/zoujingli/think-library/src/storage/QiniuStorage.php', 'think\\admin\\storage\\QiniuStorage' => __DIR__ . '/..' . '/zoujingli/think-library/src/storage/QiniuStorage.php',
'think\\app\\MultiApp' => __DIR__ . '/..' . '/topthink/think-multi-app/src/MultiApp.php', 'think\\app\\MultiApp' => __DIR__ . '/..' . '/topthink/think-multi-app/src/MultiApp.php',
@ -469,9 +470,9 @@ class ComposerStaticInit31a52c657911214987b8ff9fa2a257af
public static function getInitializer(ClassLoader $loader) public static function getInitializer(ClassLoader $loader)
{ {
return \Closure::bind(function () use ($loader) { return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit31a52c657911214987b8ff9fa2a257af::$prefixLengthsPsr4; $loader->prefixLengthsPsr4 = ComposerStaticInitb8e4029a37bf108c1da00ff988d7544f::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit31a52c657911214987b8ff9fa2a257af::$prefixDirsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInitb8e4029a37bf108c1da00ff988d7544f::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit31a52c657911214987b8ff9fa2a257af::$classMap; $loader->classMap = ComposerStaticInitb8e4029a37bf108c1da00ff988d7544f::$classMap;
}, null, ClassLoader::class); }, null, ClassLoader::class);
} }

View File

@ -805,12 +805,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "8fe807f96681e800b32c5fe775e2b92def2396d3" "reference": "e561d021e18776a9851646236e6af556c77eec6a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/8fe807f96681e800b32c5fe775e2b92def2396d3", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e561d021e18776a9851646236e6af556c77eec6a",
"reference": "8fe807f96681e800b32c5fe775e2b92def2396d3", "reference": "e561d021e18776a9851646236e6af556c77eec6a",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -826,7 +826,7 @@
"ext-json": "*", "ext-json": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2019-11-04T11:04:29+00:00", "time": "2019-11-09T08:03:23+00:00",
"type": "library", "type": "library",
"extra": { "extra": {
"think": { "think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?php
// This file is automatically generated at:2019-11-05 09:42:31 // This file is automatically generated at:2019-11-09 16:16:10
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\app\\Service', 0 => 'think\\app\\Service',

View File

@ -13,20 +13,18 @@
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\admin\helper; namespace think\admin;
use think\admin\Controller;
use think\App; use think\App;
use think\db\Query; use think\db\Query;
/** /**
* 基础管理器 * 控制器挂件
* Class Helper * Class Helper
* @package think\admin\helper * @package think\admin
*/ */
class Helper abstract class Helper
{ {
/** /**
* 当前应用容器 * 当前应用容器
* @var App * @var App
@ -70,11 +68,10 @@ class Helper
* 实例对象反射 * 实例对象反射
* @param Controller $controller * @param Controller $controller
* @param App $app * @param App $app
* @return $this * @return static
*/ */
public static function instance(Controller $controller, App $app) public static function instance(Controller $controller, App $app)
{ {
return new static($controller, $app); return new static($controller, $app);
} }
}
}

View File

@ -0,0 +1,70 @@
<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ 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 think\admin;
use think\App;
/**
* 自定义服务接口
* Class Service
* @package think\admin
*/
abstract class Service
{
/**
* 应用实例
* @var App
*/
protected $app;
/**
* 实例缓存
* @var $this
*/
protected static $cache;
/**
* Service constructor.
* @param App $app
*/
public function __construct(App $app)
{
$this->app = $app;
$this->init();
}
/**
* 服务初始化
*/
protected function init()
{
}
/**
* 静态实例对象
* @param App $app
* @return $this
*/
public static function instance(App $app = null)
{
if (is_null($app)) $app = app();
$key = md5(get_called_class());
if (!isset(self::$cache[$key])) {
self::$cache[$key] = new static($app);
}
return self::$cache[$key];
}
}

View File

@ -15,6 +15,8 @@
namespace think\admin; namespace think\admin;
use think\admin\service\AuthService;
use think\middleware\SessionInit;
use think\Request; use think\Request;
use think\Service; use think\Service;
@ -31,7 +33,7 @@ class ThinkLibrary extends Service
public function register() public function register()
{ {
// 注册会话中间键 // 注册会话中间键
$this->app->middleware->add(\think\middleware\SessionInit::class); $this->app->middleware->add(SessionInit::class);
// 动态加入应用函数 // 动态加入应用函数
foreach (glob($this->app->getAppPath() . '*/sys.php') as $file) { foreach (glob($this->app->getAppPath() . '*/sys.php') as $file) {
\Composer\Autoload\includeFile($file); \Composer\Autoload\includeFile($file);
@ -43,7 +45,7 @@ class ThinkLibrary extends Service
*/ */
public function boot() public function boot()
{ {
// 注册访问跨域中间键 // 注册访问中间键
$this->app->middleware->add(function (Request $request, \Closure $next) { $this->app->middleware->add(function (Request $request, \Closure $next) {
$header = []; $header = [];
if (($origin = $request->header('origin', '*')) !== '*') { if (($origin = $request->header('origin', '*')) !== '*') {
@ -52,10 +54,15 @@ class ThinkLibrary extends Service
$header['Access-Control-Allow-Headers'] = 'Authorization,Content-Type,If-Match,If-Modified-Since,If-None-Match,If-Unmodified-Since,X-Requested-With'; $header['Access-Control-Allow-Headers'] = 'Authorization,Content-Type,If-Match,If-Modified-Since,If-None-Match,If-Unmodified-Since,X-Requested-With';
$header['Access-Control-Expose-Headers'] = 'User-Form-Token'; $header['Access-Control-Expose-Headers'] = 'User-Form-Token';
} }
// 访问模式及访问权限检查
if ($request->isOptions()) { if ($request->isOptions()) {
return response()->code(204)->header($header); return response()->code(204)->header($header);
} else { } elseif (AuthService::instance($this->app)->check()) {
return $next($request)->header($header); return $next($request)->header($header);
} elseif (AuthService::instance($this->app)->isLogin()) {
return json(['code' => 0, 'msg' => '抱歉,没有访问该操作的权限!'])->header($header);
} else {
return json(['code' => 0, 'msg' => '抱歉,需要登录获取访问权限!', 'url' => url('@admin/login')])->header($header);
} }
}); });
// 注册系统任务指令 // 注册系统任务指令

View File

@ -15,7 +15,8 @@
use think\admin\extend\DataExtend; use think\admin\extend\DataExtend;
use think\admin\extend\HttpExtend; use think\admin\extend\HttpExtend;
use think\admin\extend\TokenExtend; use think\admin\service\AuthService;
use think\admin\service\TokenService;
use think\db\Query; use think\db\Query;
if (!function_exists('p')) { if (!function_exists('p')) {
@ -27,12 +28,25 @@ if (!function_exists('p')) {
*/ */
function p($data, $replace = false, $file = null) function p($data, $replace = false, $file = null)
{ {
if (is_null($file)) $file = env('runtime_path') . date('Ymd') . '.txt'; if (is_null($file)) $file = app()->getRuntimePath() . date('Ymd') . '.txt';
$str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true)) . PHP_EOL; $str = (is_string($data) ? $data : (is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true)) . PHP_EOL;
$replace ? file_put_contents($file, $str) : file_put_contents($file, $str, FILE_APPEND); $replace ? file_put_contents($file, $str) : file_put_contents($file, $str, FILE_APPEND);
} }
} }
if (!function_exists('auth')) {
/**
* 访问权限检查
* @param string $node
* @return boolean
* @throws ReflectionException
*/
function auth($node)
{
return AuthService::instance()->check($node);
}
}
if (!function_exists('systoken')) { if (!function_exists('systoken')) {
/** /**
* 生成 CSRF-TOKEN 参数 * 生成 CSRF-TOKEN 参数
@ -41,7 +55,7 @@ if (!function_exists('systoken')) {
*/ */
function systoken($node = null) function systoken($node = null)
{ {
return TokenExtend::buildFormToken($node)['token']; return TokenService::instance()->buildFormToken($node)['token'];
} }
} }

View File

@ -15,6 +15,7 @@
namespace think\admin\helper; namespace think\admin\helper;
use think\admin\Helper;
use think\db\Query; use think\db\Query;
/** /**

View File

@ -16,6 +16,7 @@
namespace think\admin\helper; namespace think\admin\helper;
use think\admin\extend\DataExtend; use think\admin\extend\DataExtend;
use think\admin\Helper;
use think\db\Query; use think\db\Query;
/** /**

View File

@ -15,6 +15,7 @@
namespace think\admin\helper; namespace think\admin\helper;
use think\admin\Helper;
use think\db\Query; use think\db\Query;
/** /**

View File

@ -15,6 +15,7 @@
namespace think\admin\helper; namespace think\admin\helper;
use think\admin\Helper;
use think\db\Query; use think\db\Query;
/** /**

View File

@ -15,6 +15,7 @@
namespace think\admin\helper; namespace think\admin\helper;
use think\admin\Helper;
use think\db\Query; use think\db\Query;
/** /**

View File

@ -15,7 +15,8 @@
namespace think\admin\helper; namespace think\admin\helper;
use think\admin\extend\TokenExtend; use think\admin\Helper;
use think\admin\service\TokenService;
use think\exception\HttpResponseException; use think\exception\HttpResponseException;
/** /**
@ -40,7 +41,7 @@ class TokenHelper extends Helper
{ {
$this->class->csrf_state = true; $this->class->csrf_state = true;
$this->token = $this->app->request->header('user-form-token', input('_csrf_', '')); $this->token = $this->app->request->header('user-form-token', input('_csrf_', ''));
if ($this->app->request->isPost() && !TokenExtend::checkFormToken($this->token)) { if ($this->app->request->isPost() && !TokenService::instance($this->app)->checkFormToken($this->token)) {
if ($return) return false; if ($return) return false;
$this->class->error($this->class->csrf_message); $this->class->error($this->class->csrf_message);
} else { } else {
@ -54,7 +55,7 @@ class TokenHelper extends Helper
public function clear() public function clear()
{ {
$this->token = $this->app->request->header('user-form-token', input('_csrf_', '')); $this->token = $this->app->request->header('user-form-token', input('_csrf_', ''));
if (!empty($this->token)) TokenExtend::clearFormToken($this->token); if (!empty($this->token)) TokenService::instance($this->app)->clearFormToken($this->token);
} }
/** /**
@ -67,7 +68,7 @@ class TokenHelper extends Helper
{ {
throw new HttpResponseException(view($tpl, $vars, 200, function ($html) use ($node) { throw new HttpResponseException(view($tpl, $vars, 200, function ($html) use ($node) {
return preg_replace_callback('/<\/form>/i', function () use ($node) { return preg_replace_callback('/<\/form>/i', function () use ($node) {
$csrf = TokenExtend::buildFormToken($node); $csrf = TokenService::instance($this->app)->buildFormToken($node);
return "<input type='hidden' name='_token_' value='{$csrf['token']}'></form>"; return "<input type='hidden' name='_token_' value='{$csrf['token']}'></form>";
}, $html); }, $html);
})); }));

View File

@ -15,6 +15,7 @@
namespace think\admin\install; namespace think\admin\install;
use think\admin\service\InstallService;
use think\console\Command; use think\console\Command;
use think\console\Input; use think\console\Input;
use think\console\input\Argument; use think\console\input\Argument;
@ -47,9 +48,9 @@ class CommandInstall extends Command
/** /**
* 插件工具实例 * 插件工具实例
* @var ExtendInstall * @var InstallService
*/ */
protected $extend; protected $service;
/** /**
* 规则配置 * 规则配置
@ -83,7 +84,7 @@ class CommandInstall extends Command
if (empty($this->name)) { if (empty($this->name)) {
$this->output->error('在线安装的模块名称不能为空!'); $this->output->error('在线安装的模块名称不能为空!');
} else { } else {
$this->extend = ExtendInstall::instance($this->app); $this->service = InstallService::instance($this->app);
if (isset($this->bind[$this->name])) { if (isset($this->bind[$this->name])) {
$this->rules = empty($this->bind[$this->name]['rules']) ? [] : $this->bind[$this->name]['rules']; $this->rules = empty($this->bind[$this->name]['rules']) ? [] : $this->bind[$this->name]['rules'];
$this->ignore = empty($this->bind[$this->name]['ignore']) ? [] : $this->bind[$this->name]['ignore']; $this->ignore = empty($this->bind[$this->name]['ignore']) ? [] : $this->bind[$this->name]['ignore'];
@ -97,10 +98,10 @@ class CommandInstall extends Command
protected function installFile() protected function installFile()
{ {
$data = $this->extend->grenerateDifference($this->rules, $this->ignore); $data = $this->service->grenerateDifference($this->rules, $this->ignore);
if (empty($data)) $this->output->info('文件比对一致不需更新文件!'); if (empty($data)) $this->output->info('文件比对一致不需更新文件!');
else foreach ($data as $file) { else foreach ($data as $file) {
list($state, $mode, $name) = $this->extend->fileSynchronization($file); list($state, $mode, $name) = $this->service->fileSynchronization($file);
if ($state) { if ($state) {
if ($mode === 'add') $this->output->info("--- 下载 {$name} 添加成功"); if ($mode === 'add') $this->output->info("--- 下载 {$name} 添加成功");
if ($mode === 'mod') $this->output->info("--- 下载 {$name} 更新成功"); if ($mode === 'mod') $this->output->info("--- 下载 {$name} 更新成功");

View File

@ -13,26 +13,26 @@
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin // | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace app\admin\service; namespace think\admin\service;
use library\tools\Data;
use think\admin\extend\DataExtend; use think\admin\extend\DataExtend;
use think\admin\extend\NodeExtend; use think\admin\Service;
/** /**
* 系统权服务 * 系统限管理服务
* Class MenuService * Class AuthService
* @package app\admin\service * @package think\admin\service
*/ */
class AuthService class AuthService extends Service
{ {
/** /**
* 判断是否已经登录 * 判断是否已经登录
* @return boolean * @return boolean
*/ */
public static function isLogin() public function isLogin()
{ {
return app()->session->get('user.id') ? true : false; return $this->app->session->get('user.id') ? true : false;
} }
/** /**
@ -42,12 +42,13 @@ class AuthService
* @return boolean * @return boolean
* @throws \ReflectionException * @throws \ReflectionException
*/ */
public static function check($node = '') public function check($node = '')
{ {
if (app()->session->get('user.username') === 'admin') return true; $service = NodeService::instance($this->app);
list($real, $nodes) = [NodeExtend::fullnode($node), NodeExtend::getMethods()]; if ($this->app->session->get('user.username') === 'admin') return true;
list($real, $nodes) = [$service->fullnode($node), $service->getMethods()];
if (!empty($nodes[$real]['isauth'])) { if (!empty($nodes[$real]['isauth'])) {
return in_array($real, app()->session->get('user.nodes', [])); return in_array($real, $this->app->session->get('user.nodes', []));
} }
return !(!empty($nodes[$real]['islogin']) && !self::isLogin()); return !(!empty($nodes[$real]['islogin']) && !self::isLogin());
} }
@ -58,9 +59,10 @@ class AuthService
* @return array * @return array
* @throws \ReflectionException * @throws \ReflectionException
*/ */
public static function getTree($checkeds = []) public function getTree($checkeds = [])
{ {
list($nodes, $pnodes, $methods) = [[], [], array_reverse(NodeExtend::getMethods())]; list($nodes, $pnodes) = [[], []];
$methods = array_reverse(NodeService::instance($this->app)->getMethods());
foreach ($methods as $node => $method) { foreach ($methods as $node => $method) {
$count = substr_count($node, '/'); $count = substr_count($node, '/');
$pnode = substr($node, 0, strripos($node, '/')); $pnode = substr($node, 0, strripos($node, '/'));
@ -81,25 +83,24 @@ class AuthService
/** /**
* 初始化用户权限 * 初始化用户权限
* @param boolean $force 是否重置系统权限 * @param boolean $force 强刷权限
* @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public static function apply($force = false) public function apply($force = false)
{ {
$app = app(); if ($force) $this->app->cache->delete('system_auth_node');
if ($force) $app->cache->delete('system_auth_node'); if (($uid = $this->app->session->get('user.id'))) {
if (($uid = $app->session->get('user.id'))) { $user = $this->app->db->name('SystemUser')->where(['id' => $uid])->find();
$user = $app->db->name('SystemUser')->where(['id' => $uid])->find();
if (($aids = $user['authorize'])) { if (($aids = $user['authorize'])) {
$where = [['status', 'eq', '1'], ['id', 'in', explode(',', $aids)]]; $where = [['status', 'eq', '1'], ['id', 'in', explode(',', $aids)]];
$subsql = $app->db->name('SystemAuth')->field('id')->where($where)->buildSql(); $subsql = $this->app->db->name('SystemAuth')->field('id')->where($where)->buildSql();
$user['nodes'] = array_unique($app->db->name('SystemAuthNode')->whereRaw("auth in {$subsql}")->column('node')); $user['nodes'] = array_unique($this->app->db->name('SystemAuthNode')->whereRaw("auth in {$subsql}")->column('node'));
$app->session->set('user', $user); $this->app->session->set('user', $user);
} else { } else {
$user['nodes'] = []; $user['nodes'] = [];
$app->session->set('user', $user); $this->app->session->set('user', $user);
} }
} }
} }

View File

@ -13,14 +13,16 @@
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin // | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\admin\extend; namespace think\admin\service;
use think\admin\Service;
/** /**
* 图形验证码扩展 * 图形验证码服务
* Class CaptchaExtend * Class CaptchaService
* @package app\admin\service * @package think\admin\service
*/ */
class CaptchaExtend class CaptchaService extends Service
{ {
private $code; // 验证码 private $code; // 验证码
private $uniqid; // 唯一序号 private $uniqid; // 唯一序号
@ -34,11 +36,10 @@ class CaptchaExtend
private $fontcolor; // 指定字体颜色 private $fontcolor; // 指定字体颜色
/** /**
* 构造方法初始化 * 服务初始化
* CaptchaService constructor.
* @param array $config * @param array $config
*/ */
public function __construct($config = []) protected function init($config = [])
{ {
// 动态配置属性 // 动态配置属性
foreach ($config as $k => $v) if (isset($this->$k)) $this->$k = $v; foreach ($config as $k => $v) if (isset($this->$k)) $this->$k = $v;
@ -52,7 +53,58 @@ class CaptchaExtend
// 设置字体文件路径 // 设置字体文件路径
$this->font = __DIR__ . '/bin/font.ttf'; $this->font = __DIR__ . '/bin/font.ttf';
// 缓存验证码字符串 // 缓存验证码字符串
app()->cache->set($this->uniqid, $this->code, 360); $this->app->cache->set($this->uniqid, $this->code, 360);
}
/**
* 获取验证码值
* @return string
*/
public function getCode()
{
return $this->code;
}
/**
* 获取图片内容
* @return string
*/
public function getData()
{
return "data:image/png;base64,{$this->createImage()}";
}
/**
* 获取验证码编号
* @return string
*/
public function getUniqid()
{
return $this->uniqid;
}
/**
* 检查验证码是否正确
* @param string $code 需要验证的值
* @param string $uniqid 验证码编号
* @return boolean
*/
public function check($code, $uniqid = null)
{
$_uni = is_string($uniqid) ? $uniqid : input('uniqid', '-');
$_val = $this->app->cache->get($_uni);
$this->app->cache->delete($_uni);
return is_string($_val) && strtolower($_val) === strtolower($code);
}
/**
* 输出图形验证码
* @return string
*/
public function __toString()
{
return $this->getData();
} }
/** /**
@ -88,63 +140,4 @@ class CaptchaExtend
imagedestroy($this->img); imagedestroy($this->img);
return base64_encode($data); return base64_encode($data);
} }
}
/**
* 获取验证码值
* @return string
*/
public function getCode()
{
return $this->code;
}
/**
* 获取图片内容
* @return string
*/
public function getData()
{
return "data:image/png;base64,{$this->createImage()}";
}
/**
* 获取验证码编号
* @return string
*/
public function getUniqid()
{
return $this->uniqid;
}
/**
* 输出图形验证码
* @return string
*/
public function __toString()
{
return $this->getData();
}
/**
* 返回当前对象
* @return static
*/
public static function instance()
{
return new static();
}
/**
* 检查验证码是否正确
* @param string $code 需要验证的值
* @param string $uniqid 验证码编号
* @return boolean
*/
public static function check($code, $uniqid = null)
{
$_uni = is_string($uniqid) ? $uniqid : input('uniqid', '-');
$_val = app()->cache->get($_uni);
app()->cache->delete($_uni);
return is_string($_val) && strtolower($_val) === strtolower($code);
}
}

View File

@ -13,24 +13,18 @@
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\admin\install; namespace think\admin\service;
use think\admin\extend\HttpExtend; use think\admin\extend\HttpExtend;
use think\App; use think\admin\Service;
/** /**
* 模块安装服务扩展 * 模块安装服务管理
* Class ExtendInstall * Class InstallService
* @package think\admin\install * @package think\admin\service
*/ */
class ExtendInstall class InstallService extends Service
{ {
/**
* 当前应用
* @var App
*/
private $app;
/** /**
* 目录地址 * 目录地址
* @var string * @var string
@ -62,31 +56,10 @@ class ExtendInstall
protected $ignore = []; protected $ignore = [];
/** /**
* 当前实例 * 服务初始化
* @var $this
*/ */
private static $class; protected function init()
/**
* 静态反射对象
* @param App $app
* @return $this
*/
public static function instance(App $app)
{ {
if (empty(self::$class)) {
self::$class = new static($app);
}
return self::$class;
}
/**
* PlugsExtend constructor.
* @param App $app
*/
public function __construct(App $app)
{
$this->app = $app;
// 应用框架版本 // 应用框架版本
$this->version = $this->app->config->get('app.thinkadmin_ver'); $this->version = $this->app->config->get('app.thinkadmin_ver');
if (empty($this->version)) $this->version = 'v4'; if (empty($this->version)) $this->version = 'v4';

View File

@ -13,29 +13,45 @@
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin // | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace app\admin\service; namespace think\admin\service;
use think\admin\extend\DataExtend; use think\admin\extend\DataExtend;
use think\admin\extend\NodeExtend; use think\admin\Service;
/** /**
* 系统菜单服务 * 系统菜单管理服务
* Class MenuService * Class MenuService
* @package app\admin\service * @package app\admin\service
*/ */
class MenuService class MenuService extends Service
{ {
/**
* 应用节点服务
* @var NodeService
*/
protected $nodeService;
/**
* 服务初始化
* @return $this
*/
protected function init()
{
$this->nodeService = NodeService::instance($this->app);
return $this;
}
/** /**
* 获取可选菜单节点 * 获取可选菜单节点
* @return array * @return array
* @throws \ReflectionException * @throws \ReflectionException
*/ */
public static function getList() public function getList()
{ {
static $nodes = []; static $nodes = [];
if (count($nodes) > 0) return $nodes; if (count($nodes) > 0) return $nodes;
foreach (NodeExtend::getMethods() as $node => $method) if ($method['ismenu']) { foreach ($this->nodeService->getMethods() as $node => $method) if ($method['ismenu']) {
$nodes[] = ['node' => $node, 'title' => $method['title']]; $nodes[] = ['node' => $node, 'title' => $method['title']];
} }
return $nodes; return $nodes;
@ -49,10 +65,10 @@ class MenuService
* @throws \think\db\exception\DbException * @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
*/ */
public static function getTree() public function getTree()
{ {
$result = app()->db->name('SystemMenu')->where(['status' => '1'])->order('sort desc,id asc')->select(); $result = app()->db->name('SystemMenu')->where(['status' => '1'])->order('sort desc,id asc')->select();
return self::buildData(DataExtend::arr2tree($result->toArray()), NodeExtend::getMethods()); return self::buildData(DataExtend::arr2tree($result->toArray()), $this->nodeService->getMethods());
} }
/** /**
@ -62,7 +78,7 @@ class MenuService
* @return array * @return array
* @throws \ReflectionException * @throws \ReflectionException
*/ */
private static function buildData($menus, $nodes) private function buildData($menus, $nodes)
{ {
foreach ($menus as $key => &$menu) { foreach ($menus as $key => &$menu) {
if (!empty($menu['sub'])) { if (!empty($menu['sub'])) {
@ -74,7 +90,7 @@ class MenuService
else { else {
$node = join('/', array_slice(explode('/', preg_replace('/[\W]/', '/', $menu['url'])), 0, 3)); $node = join('/', array_slice(explode('/', preg_replace('/[\W]/', '/', $menu['url'])), 0, 3));
$menu['url'] = url($menu['url']) . (empty($menu['params']) ? '' : "?{$menu['params']}"); $menu['url'] = url($menu['url']) . (empty($menu['params']) ? '' : "?{$menu['params']}");
if (!AuthService::check($node)) unset($menus[$key]); if (!AuthService::instance($this->app)->check($node)) unset($menus[$key]);
} }
} }
return $menus; return $menus;

View File

@ -1,7 +1,7 @@
<?php <?php
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Library for ThinkAdmin // | ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ] // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -9,26 +9,27 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary // | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\admin\extend; namespace think\admin\service;
use think\admin\Service;
/** /**
* 应用节点管理扩展 * 应用节点服务管理
* Class NodeExtend * Class NodeService
* @package think\admin\extend * @package think\admin\service
*/ */
class NodeExtend class NodeService extends Service
{ {
/** /**
* 驼峰转下划线规则 * 驼峰转下划线规则
* @param string $name * @param string $name
* @return string * @return string
*/ */
public static function nameTolower($name) public function nameTolower($name)
{ {
$dots = []; $dots = [];
foreach (explode('.', strtr($name, '/', '.')) as $dot) { foreach (explode('.', strtr($name, '/', '.')) as $dot) {
@ -42,11 +43,11 @@ class NodeExtend
* @param string $type * @param string $type
* @return string * @return string
*/ */
public static function getCurrent($type = '') public function getCurrent($type = '')
{ {
$prefix = app()->getNamespace(); $prefix = $this->app->getNamespace();
$middle = '\\' . self::nameTolower(app()->request->controller()); $middle = '\\' . self::nameTolower($this->app->request->controller());
$suffix = ($type === 'controller') ? '' : ('\\' . app()->request->action()); $suffix = ($type === 'controller') ? '' : ('\\' . $this->app->request->action());
return strtr(substr($prefix, stripos($prefix, '\\') + 1) . $middle . $suffix, '\\', '/'); return strtr(substr($prefix, stripos($prefix, '\\') + 1) . $middle . $suffix, '\\', '/');
} }
@ -55,7 +56,7 @@ class NodeExtend
* @param string $node * @param string $node
* @return string * @return string
*/ */
public static function fullnode($node) public function fullnode($node)
{ {
if (empty($node)) return self::getCurrent(); if (empty($node)) return self::getCurrent();
if (count($attrs = explode('/', $node)) === 1) { if (count($attrs = explode('/', $node)) === 1) {
@ -72,18 +73,18 @@ class NodeExtend
* @return array * @return array
* @throws \ReflectionException * @throws \ReflectionException
*/ */
public static function getMethods($force = false) public function getMethods($force = false)
{ {
static $data = []; static $data = [];
if (empty($force)) { if (empty($force)) {
if (count($data) > 0) return $data; if (count($data) > 0) return $data;
$data = app()->cache->get('system_auth_node', []); $data = $this->app->cache->get('system_auth_node', []);
if (count($data) > 0) return $data; if (count($data) > 0) return $data;
} else { } else {
$data = []; $data = [];
} }
$ignore = get_class_methods('\think\admin\Controller'); $ignore = get_class_methods('\think\admin\Controller');
foreach (self::scanDirectory(dirname(app()->getAppPath())) as $file) { foreach (self::scanDirectory(dirname($this->app->getAppPath())) as $file) {
if (preg_match("|/(\w+)/(\w+)/controller/(.+)\.php$|i", $file, $matches)) { if (preg_match("|/(\w+)/(\w+)/controller/(.+)\.php$|i", $file, $matches)) {
list(, $namespace, $application, $baseclass) = $matches; list(, $namespace, $application, $baseclass) = $matches;
$class = new \ReflectionClass(strtr("{$namespace}/{$application}/controller/{$baseclass}", '/', '\\')); $class = new \ReflectionClass(strtr("{$namespace}/{$application}/controller/{$baseclass}", '/', '\\'));
@ -95,7 +96,7 @@ class NodeExtend
} }
} }
} }
app()->cache->set('system_auth_node', $data); $this->app->cache->set('system_auth_node', $data);
return $data; return $data;
} }
@ -105,7 +106,7 @@ class NodeExtend
* @param string $default * @param string $default
* @return array * @return array
*/ */
private static function parseComment($comment, $default = '') private function parseComment($comment, $default = '')
{ {
$text = strtr($comment, "\n", ' '); $text = strtr($comment, "\n", ' ');
$title = preg_replace('/^\/\*\s*\*\s*\*\s*(.*?)\s*\*.*?$/', '$1', $text); $title = preg_replace('/^\/\*\s*\*\s*\*\s*(.*?)\s*\*.*?$/', '$1', $text);
@ -124,7 +125,7 @@ class NodeExtend
* @param string $ext 有文件后缀 * @param string $ext 有文件后缀
* @return array * @return array
*/ */
private static function scanDirectory($path, $data = [], $ext = 'php') private function scanDirectory($path, $data = [], $ext = 'php')
{ {
foreach (glob("{$path}*") as $item) { foreach (glob("{$path}*") as $item) {
if (is_dir($item)) { if (is_dir($item)) {

View File

@ -1,7 +1,7 @@
<?php <?php
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | Library for ThinkAdmin // | ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ] // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -9,29 +9,30 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary // | gitee 代码仓库https://gitee.com/zoujingli/ThinkAdmin
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace think\admin\extend; namespace think\admin\service;
use think\admin\Service;
/** /**
* 令牌数据扩展 * 表单令牌管理服务
* Class TokenExtend * Class TokenService
* @package think\admin\extend * @package think\admin\service
*/ */
class TokenExtend class TokenService extends Service
{ {
/** /**
* 验证表单令牌是否有效 * 验证表单令牌是否有效
* @param string $token 表单令牌 * @param string $token 表单令牌
* @return boolean * @return boolean
*/ */
public static function checkFormToken($token) public function checkFormToken($token)
{ {
list($node, $cache) = [NodeExtend::getCurrent(), app()->session->get($token, [])]; $service = NodeService::instance($this->app);
list($node, $cache) = [$service->getCurrent(), $this->app->session->get($token, [])];
if (empty($cache['node']) || empty($cache['time']) || empty($cache['token'])) return false; if (empty($cache['node']) || empty($cache['time']) || empty($cache['token'])) return false;
if ($cache['token'] !== $token || $cache['time'] + 600 < time() || $cache['node'] !== $node) return false; if ($cache['token'] !== $token || $cache['time'] + 600 < time() || $cache['node'] !== $node) return false;
return true; return true;
@ -41,9 +42,9 @@ class TokenExtend
* 清理表单CSRF信息 * 清理表单CSRF信息
* @param string $name * @param string $name
*/ */
public static function clearFormToken($name = null) public function clearFormToken($name = null)
{ {
app()->session->delete($name); $this->app->session->delete($name);
} }
/** /**
@ -51,16 +52,16 @@ class TokenExtend
* @param null|string $node * @param null|string $node
* @return array * @return array
*/ */
public static function buildFormToken($node = null) public function buildFormToken($node = null)
{ {
list($token, $time) = [uniqid('csrf'), time()]; list($token, $time) = [uniqid('csrf'), time()];
foreach (app()->session->all() as $key => $item) { foreach ($this->app->session->all() as $key => $item) {
if (stripos($key, 'csrf') === 0 && isset($item['time'])) { if (stripos($key, 'csrf') === 0 && isset($item['time'])) {
if ($item['time'] + 600 < $time) self::clearFormToken($key); if ($item['time'] + 600 < $time) self::clearFormToken($key);
} }
} }
$data = ['node' => NodeExtend::fullnode($node), 'token' => $token, 'time' => $time]; $data = ['node' => NodeService::instance($this->app)->fullnode($node), 'token' => $token, 'time' => $time];
app()->session->set($token, $data); $this->app->session->set($token, $data);
return $data; return $data;
} }
} }

Binary file not shown.