diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 35b1e2df1..b5a370b67 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -215,7 +215,7 @@ return array( 'library\\queue\\StateQueue' => $vendorDir . '/zoujingli/think-library/src/queue/StateQueue.php', 'library\\queue\\StopQueue' => $vendorDir . '/zoujingli/think-library/src/queue/StopQueue.php', 'library\\queue\\WorkQueue' => $vendorDir . '/zoujingli/think-library/src/queue/WorkQueue.php', - 'library\\service\\AuthService' => $vendorDir . '/zoujingli/think-library/src/service/AuthService.php', + 'library\\service\\AdminService' => $vendorDir . '/zoujingli/think-library/src/service/AdminService.php', 'library\\service\\CaptchaService' => $vendorDir . '/zoujingli/think-library/src/service/CaptchaService.php', 'library\\service\\MenuService' => $vendorDir . '/zoujingli/think-library/src/service/MenuService.php', 'library\\service\\NodeService' => $vendorDir . '/zoujingli/think-library/src/service/NodeService.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 6054e84a0..16e899f1c 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -316,7 +316,7 @@ class ComposerStaticInitbf5dd43c242f2a86b1513b16fb281176 'library\\queue\\StateQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/StateQueue.php', 'library\\queue\\StopQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/StopQueue.php', 'library\\queue\\WorkQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/WorkQueue.php', - 'library\\service\\AuthService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/AuthService.php', + 'library\\service\\AdminService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/AdminService.php', 'library\\service\\CaptchaService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/CaptchaService.php', 'library\\service\\MenuService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/MenuService.php', 'library\\service\\NodeService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/NodeService.php', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 0ff999836..206e03990 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -502,12 +502,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "1881f6a468e2c1e4eff5f18f4aa7aafd2752c196" + "reference": "9b520cd35b4c7e9da6b928def3c5ec779e67bc0f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/1881f6a468e2c1e4eff5f18f4aa7aafd2752c196", - "reference": "1881f6a468e2c1e4eff5f18f4aa7aafd2752c196", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/9b520cd35b4c7e9da6b928def3c5ec779e67bc0f", + "reference": "9b520cd35b4c7e9da6b928def3c5ec779e67bc0f", "shasum": "", "mirrors": [ { @@ -527,7 +527,7 @@ "qiniu/php-sdk": "^7.2", "topthink/framework": "5.1.*" }, - "time": "2019-11-28T06:50:47+00:00", + "time": "2019-11-28T08:41:39+00:00", "type": "library", "installation-source": "dist", "autoload": { diff --git a/vendor/zoujingli/think-library/composer.json b/vendor/zoujingli/think-library/composer.json index 9a60c4aaa..0d122a6f3 100644 --- a/vendor/zoujingli/think-library/composer.json +++ b/vendor/zoujingli/think-library/composer.json @@ -22,11 +22,5 @@ "psr-4": { "library\\": "src" } - }, - "repositories": { - "packagist": { - "type": "composer", - "url": "https://mirrors.aliyun.com/composer" - } } } diff --git a/vendor/zoujingli/think-library/src/common.php b/vendor/zoujingli/think-library/src/common.php index 41ac7fd8e..02c40d52d 100644 --- a/vendor/zoujingli/think-library/src/common.php +++ b/vendor/zoujingli/think-library/src/common.php @@ -24,7 +24,6 @@ use think\Db; use think\db\Query; use think\facade\Cache; use think\facade\Middleware; -use think\facade\Response; use think\Request; if (!function_exists('p')) { @@ -243,7 +242,7 @@ if (PHP_SAPI !== 'cli') { $header['Access-Control-Expose-Headers'] = 'User-Token-Csrf'; } if ($request->isOptions()) { - return Response::create()->code(204)->header($header); + return response()->code(204)->header($header); } else { return $next($request)->header($header); } diff --git a/vendor/zoujingli/think-library/src/service/AuthService.php b/vendor/zoujingli/think-library/src/service/AdminService.php similarity index 98% rename from vendor/zoujingli/think-library/src/service/AuthService.php rename to vendor/zoujingli/think-library/src/service/AdminService.php index a70d63a12..d5ba6313d 100644 --- a/vendor/zoujingli/think-library/src/service/AuthService.php +++ b/vendor/zoujingli/think-library/src/service/AdminService.php @@ -23,10 +23,10 @@ use think\Db; /** * 系统权限管理服务 - * Class AuthService + * Class AdminService * @package think\admin\service */ -class AuthService extends Service +class AdminService extends Service { /** @@ -88,7 +88,7 @@ class AuthService extends Service /** * 初始化用户权限 * @param boolean $force 强刷权限 - * @return AuthService + * @return AdminService * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException diff --git a/vendor/zoujingli/think-library/src/service/MenuService.php b/vendor/zoujingli/think-library/src/service/MenuService.php index bb7dfad13..a962540f3 100644 --- a/vendor/zoujingli/think-library/src/service/MenuService.php +++ b/vendor/zoujingli/think-library/src/service/MenuService.php @@ -75,7 +75,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;