mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
ComposerUpdate
This commit is contained in:
parent
705483ef58
commit
8b4e80f63a
@ -16,7 +16,7 @@
|
||||
namespace app\admin\controller;
|
||||
|
||||
use think\admin\Controller;
|
||||
use think\admin\service\AuthService;
|
||||
use think\admin\service\AdminService;
|
||||
|
||||
/**
|
||||
* 系统权限管理
|
||||
@ -98,7 +98,7 @@ class Auth extends Controller
|
||||
$action = strtolower(input('action', ''));
|
||||
if ($action === 'get') {
|
||||
$checkeds = $this->app->db->name('SystemAuthNode')->where($map)->column('node');
|
||||
$this->success('获取权限节点成功!', AuthService::instance()->getTree($checkeds));
|
||||
$this->success('获取权限节点成功!', AdminService::instance()->getTree($checkeds));
|
||||
} elseif ($action === 'save') {
|
||||
list($post, $data) = [$this->request->post(), []];
|
||||
foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) {
|
||||
@ -106,7 +106,7 @@ class Auth extends Controller
|
||||
}
|
||||
$this->app->db->name('SystemAuthNode')->where($map)->delete();
|
||||
$this->app->db->name('SystemAuthNode')->insertAll($data);
|
||||
AuthService::instance()->apply(true);
|
||||
AdminService::instance()->apply(true);
|
||||
$this->success('权限授权更新成功!', 'javascript:history.back()');
|
||||
} else {
|
||||
$this->title = '权限配置节点';
|
||||
|
@ -16,7 +16,7 @@
|
||||
namespace app\admin\controller;
|
||||
|
||||
use think\admin\Controller;
|
||||
use think\admin\service\AuthService;
|
||||
use think\admin\service\AdminService;
|
||||
use think\admin\service\MenuService;
|
||||
|
||||
/**
|
||||
@ -37,7 +37,7 @@ class Index extends Controller
|
||||
public function index()
|
||||
{
|
||||
$this->title = '系统管理后台';
|
||||
$auth = AuthService::instance()->apply(true);
|
||||
$auth = AdminService::instance()->apply(true);
|
||||
$this->menus = MenuService::instance()->getTree();
|
||||
if (empty($this->menus) && !$auth->isLogin()) {
|
||||
$this->redirect(url('@admin/login'));
|
||||
|
@ -16,7 +16,7 @@
|
||||
namespace app\admin\controller;
|
||||
|
||||
use think\admin\Controller;
|
||||
use think\admin\service\AuthService;
|
||||
use think\admin\service\AdminService;
|
||||
use think\admin\service\CaptchaService;
|
||||
use think\admin\service\SystemService;
|
||||
|
||||
@ -36,7 +36,7 @@ class Login extends Controller
|
||||
public function index()
|
||||
{
|
||||
if ($this->app->request->isGet()) {
|
||||
if (AuthService::instance()->isLogin()) {
|
||||
if (AdminService::instance()->isLogin()) {
|
||||
$this->redirect(url('@admin')->build());
|
||||
} else {
|
||||
$this->title = '系统登录';
|
||||
|
8
composer.lock
generated
8
composer.lock
generated
@ -783,12 +783,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
||||
"reference": "32904c53ced38e3fbe5de93fa074b53cf6b35c6b"
|
||||
"reference": "4a616d7c4852a46b4d4038a6715c9d62303e5d99"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/32904c53ced38e3fbe5de93fa074b53cf6b35c6b",
|
||||
"reference": "32904c53ced38e3fbe5de93fa074b53cf6b35c6b",
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/4a616d7c4852a46b4d4038a6715c9d62303e5d99",
|
||||
"reference": "4a616d7c4852a46b4d4038a6715c9d62303e5d99",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
@ -832,7 +832,7 @@
|
||||
],
|
||||
"description": "ThinkPHP v6.0 Development Library",
|
||||
"homepage": "http://framework.thinkadmin.top",
|
||||
"time": "2019-11-28T03:18:03+00:00"
|
||||
"time": "2019-11-28T08:04:45+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
|
2
vendor/composer/autoload_classmap.php
vendored
2
vendor/composer/autoload_classmap.php
vendored
@ -162,7 +162,7 @@ return array(
|
||||
'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\\WorkQueue' => $vendorDir . '/zoujingli/think-library/src/queue/WorkQueue.php',
|
||||
'think\\admin\\service\\AuthService' => $vendorDir . '/zoujingli/think-library/src/service/AuthService.php',
|
||||
'think\\admin\\service\\AdminService' => $vendorDir . '/zoujingli/think-library/src/service/AdminService.php',
|
||||
'think\\admin\\service\\CaptchaService' => $vendorDir . '/zoujingli/think-library/src/service/CaptchaService.php',
|
||||
'think\\admin\\service\\ExpressService' => $vendorDir . '/zoujingli/think-library/src/service/ExpressService.php',
|
||||
'think\\admin\\service\\InstallService' => $vendorDir . '/zoujingli/think-library/src/service/InstallService.php',
|
||||
|
2
vendor/composer/autoload_static.php
vendored
2
vendor/composer/autoload_static.php
vendored
@ -253,7 +253,7 @@ class ComposerStaticInit078c2496db47e2e94f2057948fdfa517
|
||||
'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\\WorkQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/WorkQueue.php',
|
||||
'think\\admin\\service\\AuthService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/AuthService.php',
|
||||
'think\\admin\\service\\AdminService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/AdminService.php',
|
||||
'think\\admin\\service\\CaptchaService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/CaptchaService.php',
|
||||
'think\\admin\\service\\ExpressService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/ExpressService.php',
|
||||
'think\\admin\\service\\InstallService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/InstallService.php',
|
||||
|
8
vendor/composer/installed.json
vendored
8
vendor/composer/installed.json
vendored
@ -805,12 +805,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
||||
"reference": "32904c53ced38e3fbe5de93fa074b53cf6b35c6b"
|
||||
"reference": "4a616d7c4852a46b4d4038a6715c9d62303e5d99"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/32904c53ced38e3fbe5de93fa074b53cf6b35c6b",
|
||||
"reference": "32904c53ced38e3fbe5de93fa074b53cf6b35c6b",
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/4a616d7c4852a46b4d4038a6715c9d62303e5d99",
|
||||
"reference": "4a616d7c4852a46b4d4038a6715c9d62303e5d99",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
@ -826,7 +826,7 @@
|
||||
"ext-json": "*",
|
||||
"topthink/framework": "^6.0"
|
||||
},
|
||||
"time": "2019-11-28T03:18:03+00:00",
|
||||
"time": "2019-11-28T08:04:45+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"think": {
|
||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
// This file is automatically generated at:2019-11-28 14:30:17
|
||||
// This file is automatically generated at:2019-11-28 16:10:35
|
||||
declare (strict_types = 1);
|
||||
return array (
|
||||
0 => 'think\\app\\Service',
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
namespace think\admin;
|
||||
|
||||
use think\admin\service\AuthService;
|
||||
use think\admin\service\AdminService;
|
||||
use think\middleware\SessionInit;
|
||||
use think\Request;
|
||||
use think\Service;
|
||||
@ -51,9 +51,9 @@ class Library extends Service
|
||||
// 访问模式及访问权限检查
|
||||
if ($request->isOptions()) {
|
||||
return response()->code(204)->header($header);
|
||||
} elseif (AuthService::instance()->check()) {
|
||||
} elseif (AdminService::instance()->check()) {
|
||||
return $next($request)->code(200)->header($header);
|
||||
} elseif (AuthService::instance()->isLogin()) {
|
||||
} elseif (AdminService::instance()->isLogin()) {
|
||||
return json(['code' => 0, 'msg' => '抱歉,没有访问该操作的权限!'])->header($header);
|
||||
} else {
|
||||
return json(['code' => 0, 'msg' => '抱歉,需要登录获取访问权限!', 'url' => url('@admin/login')->build()])->header($header);
|
||||
|
@ -14,7 +14,7 @@
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
use think\admin\extend\HttpExtend;
|
||||
use think\admin\service\AuthService;
|
||||
use think\admin\service\AdminService;
|
||||
use think\admin\service\QueueService;
|
||||
use think\admin\service\SystemService;
|
||||
use think\admin\service\TokenService;
|
||||
@ -42,7 +42,7 @@ if (!function_exists('auth')) {
|
||||
*/
|
||||
function auth($node)
|
||||
{
|
||||
return AuthService::instance()->check($node);
|
||||
return AdminService::instance()->check($node);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -20,10 +20,10 @@ use think\admin\Service;
|
||||
|
||||
/**
|
||||
* 系统权限管理服务
|
||||
* Class AuthService
|
||||
* Class AdminService
|
||||
* @package think\admin\service
|
||||
*/
|
||||
class AuthService extends Service
|
||||
class AdminService extends Service
|
||||
{
|
||||
|
||||
/**
|
||||
@ -85,7 +85,7 @@ class AuthService extends Service
|
||||
/**
|
||||
* 初始化用户权限
|
||||
* @param boolean $force 强刷权限
|
||||
* @return AuthService
|
||||
* @return AdminService
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
@ -74,7 +74,7 @@ class MenuService extends Service
|
||||
else {
|
||||
$node = join('/', array_slice(explode('/', preg_replace('/[\W]/', '/', $menu['url'])), 0, 3));
|
||||
$menu['url'] = url($menu['url']) . (empty($menu['params']) ? '' : "?{$menu['params']}");
|
||||
if (!AuthService::instance()->check($node)) unset($menus[$key]);
|
||||
if (!AdminService::instance()->check($node)) unset($menus[$key]);
|
||||
}
|
||||
}
|
||||
return $menus;
|
||||
|
@ -124,7 +124,7 @@ class SystemService extends Service
|
||||
/**
|
||||
* 保存数据内容
|
||||
* @param string $name
|
||||
* @param array $value
|
||||
* @param mixed $value
|
||||
* @return boolean
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
@ -132,19 +132,20 @@ class SystemService extends Service
|
||||
*/
|
||||
public function setData($name, $value)
|
||||
{
|
||||
$data = ['name' => $name, 'value' => json_encode($value, 256)];
|
||||
$data = ['name' => $name, 'value' => serialize($value)];
|
||||
return $this->save('SystemData', $data, 'name');
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取数据内容
|
||||
* @param string $name
|
||||
* @param string $default
|
||||
* @return mixed
|
||||
*/
|
||||
public function getData($name)
|
||||
public function getData($name, $default = null)
|
||||
{
|
||||
$value = $this->app->db->name('SystemData')->where(['name' => $name])->value('value');
|
||||
return empty($value) ? '' : json_encode($value, true);
|
||||
$value = $this->app->db->name('SystemData')->where(['name' => $name])->value('value', null);
|
||||
return is_null($value) ? $default : unserialize($value);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user