ComposerUpdate

This commit is contained in:
Anyon 2019-11-18 19:37:10 +08:00
parent b63525d8fb
commit 0df129edd9
34 changed files with 103 additions and 109 deletions

View File

@ -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($this->app)->getTree($checkeds));
$this->success('获取权限节点成功!', AuthService::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($this->app)->apply(true);
AuthService::instance()->apply(true);
$this->success('权限授权更新成功!', 'javascript:history.back()');
} else {
$this->title = '权限配置节点';

View File

@ -54,11 +54,12 @@ class Config extends Controller
if ($this->request->isGet()) {
$this->title = '修改系统参数';
$this->fetch();
} else {
foreach ($this->request->post() as $name => $value) {
sysconf($name, $value);
}
$this->success('修改系统参数成功!');
}
foreach ($this->request->post() as $key => $value) {
sysconf($key, $value);
}
$this->success('修改系统参数成功!');
}
/**

View File

@ -38,9 +38,9 @@ class Index extends Controller
public function index()
{
$this->title = '系统管理后台';
AuthService::instance($this->app)->apply(true);
$this->menus = MenuService::instance($this->app)->getTree();
if (empty($this->menus) && !AuthService::instance($this->app)->isLogin()) {
AuthService::instance()->apply(true);
$this->menus = MenuService::instance()->getTree();
if (empty($this->menus) && !AuthService::instance()->isLogin()) {
$this->redirect(url('@admin/login'));
} else {
$this->fetch();
@ -107,7 +107,7 @@ class Index extends Controller
if (md5($data['oldpassword']) !== $user['password']) {
$this->error('旧密码验证失败,请重新输入!');
}
if (DataExtend::save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
if (data_save('SystemUser', ['id' => $user['id'], 'password' => md5($data['password'])])) {
$this->success('密码修改成功,下次请使用新密码登录!', '');
} else {
$this->error('密码修改失败,请稍候再试!');

View File

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

View File

@ -111,7 +111,7 @@ class Menu extends Controller
$vo['pid'] = $this->request->get('pid', '0');
}
// 读取系统功能节点
$this->nodes = MenuService::instance($this->app)->getList();
$this->nodes = MenuService::instance()->getList();
}
}

View File

@ -44,8 +44,8 @@ class Queue extends Controller
{
if ($this->app->session->get('user.username') === 'admin') {
try {
$this->command = ProcessService::instance()->think('xtask:start');
$this->message = $this->app->console->call('xtask:state')->fetch();
$this->command = ProcessService::instance($this->app)->think('xtask:start');
} catch (\Exception $exception) {
$this->message = $exception->getMessage();
}

View File

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

View File

@ -32,11 +32,11 @@ class Update extends Controller
{
$this->rules = unserialize($this->request->post('rules', 'a:0:{}', ''));
$this->ignore = unserialize($this->request->post('ignore', 'a:0:{}', ''));
$this->success('获取文件列表成功!', InstallService::instance($this->app)->getList($this->rules, $this->ignore));
$this->success('获取文件列表成功!', InstallService::instance()->getList($this->rules, $this->ignore));
}
/**
* 读取线上文件数据
* 读取文件内容
*/
public function get()
{

View File

@ -41,7 +41,7 @@ class Upload extends Controller
$exts = array_intersect($diff1, $diff2);
$this->success('获取文件上传参数', [
'type' => $this->getType(), 'data' => $this->getData(),
'exts' => join('|', $exts), 'mine' => Storage::mime($exts),
'exts' => join('|', $exts), 'mime' => Storage::mime($exts),
]);
}

View File

@ -45,7 +45,7 @@ if (!function_exists('sysoplog')) {
{
$app = app();
return $app->db->name('SystemOplog')->insert([
'node' => \think\admin\service\NodeService::instance($app)->getCurrent(),
'node' => \think\admin\service\NodeService::instance()->getCurrent(),
'geoip' => $app->request->isCli() ? '127.0.0.1' : $app->request->ip(),
'action' => $action, 'content' => $content,
'username' => $app->request->isCli() ? 'cli' : $app->session->get('user.username', ''),

8
composer.lock generated
View File

@ -783,12 +783,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "c05c1ddf0a710dee48791bb7989b1bb3a79a20cd"
"reference": "fedc488cd0d8c8799b8e5620945c0d739a58cbd5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/c05c1ddf0a710dee48791bb7989b1bb3a79a20cd",
"reference": "c05c1ddf0a710dee48791bb7989b1bb3a79a20cd",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/fedc488cd0d8c8799b8e5620945c0d739a58cbd5",
"reference": "fedc488cd0d8c8799b8e5620945c0d739a58cbd5",
"shasum": "",
"mirrors": [
{
@ -832,7 +832,7 @@
],
"description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top",
"time": "2019-11-13T10:54:48+00:00"
"time": "2019-11-18T10:46:44+00:00"
}
],
"packages-dev": [],

View File

@ -5,7 +5,7 @@ define(function () {
// 检查可以上传的文件后缀
$.form.load('?s=admin/api.upload/check', {exts: exts, uptype: uptype}, 'post', function (ret, options) {
options = {url: ret.data.data.url, exts: ret.data.exts, acceptMime: ret.data.mine, data: ret.data.data};
options = {url: ret.data.data.url, exts: ret.data.exts, acceptMime: ret.data.mime, data: ret.data.data};
if (exts.indexOf('*') > -1) delete options.exts, delete options.acceptMime;
return renderUploader(options), false;
}, false, false, 0);

2
vendor/autoload.php vendored
View File

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

View File

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

View File

@ -4,7 +4,7 @@
namespace Composer\Autoload;
class ComposerStaticInit0ebda76f49a312d0931869f268c1812b
class ComposerStaticInit5a743c9cd506240941dde8cfe27e723d
{
public static $files = array (
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
@ -470,9 +470,9 @@ class ComposerStaticInit0ebda76f49a312d0931869f268c1812b
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit0ebda76f49a312d0931869f268c1812b::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit0ebda76f49a312d0931869f268c1812b::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit0ebda76f49a312d0931869f268c1812b::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInit5a743c9cd506240941dde8cfe27e723d::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit5a743c9cd506240941dde8cfe27e723d::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit5a743c9cd506240941dde8cfe27e723d::$classMap;
}, null, ClassLoader::class);
}

View File

@ -805,12 +805,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "c05c1ddf0a710dee48791bb7989b1bb3a79a20cd"
"reference": "fedc488cd0d8c8799b8e5620945c0d739a58cbd5"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/c05c1ddf0a710dee48791bb7989b1bb3a79a20cd",
"reference": "c05c1ddf0a710dee48791bb7989b1bb3a79a20cd",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/fedc488cd0d8c8799b8e5620945c0d739a58cbd5",
"reference": "fedc488cd0d8c8799b8e5620945c0d739a58cbd5",
"shasum": "",
"mirrors": [
{
@ -826,7 +826,7 @@
"ext-json": "*",
"topthink/framework": "^6.0"
},
"time": "2019-11-13T10:54:48+00:00",
"time": "2019-11-18T10:46:44+00:00",
"type": "library",
"extra": {
"think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2019-11-14 15:35:17
// This file is automatically generated at:2019-11-18 19:31:02
declare (strict_types = 1);
return array (
0 => 'think\\app\\Service',

View File

@ -21,6 +21,7 @@ use think\admin\helper\PageHelper;
use think\admin\helper\QueryHelper;
use think\admin\helper\SaveHelper;
use think\admin\helper\TokenHelper;
use think\admin\service\NodeService;
use think\App;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
@ -69,6 +70,8 @@ class Controller extends \stdClass
{
$this->app = $app;
$this->request = $app->request;
$this->app->bind('think\admin\Controller', $this);
TokenHelper::instance();
if (in_array($this->app->request->action(), get_class_methods(__CLASS__))) {
$this->error('Access without permission.');
}
@ -104,7 +107,7 @@ class Controller extends \stdClass
public function success($info, $data = [], $code = 1)
{
if ($this->csrf_state) {
TokenHelper::instance($this, $this->app)->clear();
TokenHelper::instance()->clear();
}
throw new HttpResponseException(json([
'code' => $code, 'info' => $info, 'data' => $data,
@ -131,7 +134,7 @@ class Controller extends \stdClass
{
foreach ($this as $name => $value) $vars[$name] = $value;
if ($this->csrf_state) {
TokenHelper::instance($this, $this->app)->fetchTemplate($tpl, $vars, $node);
TokenHelper::instance()->fetchTemplate($tpl, $vars, $node);
} else {
throw new HttpResponseException(view($tpl, $vars));
}
@ -182,7 +185,7 @@ class Controller extends \stdClass
*/
protected function _query($dbQuery)
{
return QueryHelper::instance($this, $this->app)->init($dbQuery);
return QueryHelper::instance()->init($dbQuery);
}
/**
@ -199,7 +202,7 @@ class Controller extends \stdClass
*/
protected function _page($dbQuery, $page = true, $display = true, $total = false, $limit = 0)
{
return PageHelper::instance($this, $this->app)->init($dbQuery, $page, $display, $total, $limit);
return PageHelper::instance()->init($dbQuery, $page, $display, $total, $limit);
}
/**
@ -216,7 +219,7 @@ class Controller extends \stdClass
*/
protected function _form($dbQuery, $template = '', $field = '', $where = [], $data = [])
{
return FormHelper::instance($this, $this->app)->init($dbQuery, $template, $field, $where, $data);
return FormHelper::instance()->init($dbQuery, $template, $field, $where, $data);
}
/**
@ -230,7 +233,7 @@ class Controller extends \stdClass
*/
protected function _save($dbQuery, $data = [], $field = '', $where = [])
{
return SaveHelper::instance($this, $this->app)->init($dbQuery, $data, $field, $where);
return SaveHelper::instance()->init($dbQuery, $data, $field, $where);
}
/**
@ -243,7 +246,7 @@ class Controller extends \stdClass
*/
protected function _delete($dbQuery, $field = '', $where = [])
{
return DeleteHelper::instance($this, $this->app)->init($dbQuery, $field, $where);
return DeleteHelper::instance()->init($dbQuery, $field, $where);
}
/**
@ -253,7 +256,7 @@ class Controller extends \stdClass
*/
protected function _applyFormToken($return = false)
{
return TokenHelper::instance($this, $this->app)->init($return);
return TokenHelper::instance()->init($return);
}
}

View File

@ -16,6 +16,7 @@
namespace think\admin;
use think\App;
use think\Container;
use think\db\Query;
/**
@ -66,12 +67,11 @@ abstract class Helper
/**
* 实例对象反射
* @param Controller $controller
* @param App $app
* @param array $args 额外参数
* @return static
*/
public static function instance(Controller $controller, App $app)
public static function instance($args = [])
{
return new static($controller, $app);
return Container::getInstance()->invokeClass(static::class, $args);
}
}

View File

@ -46,7 +46,7 @@ class Library extends Service
public function boot()
{
// 注册访问中间键
if (stripos('get,post,options', $this->app->request->method()) !== false) {
if (!$this->app->request->isCli()) {
$this->app->middleware->add(function (Request $request, \Closure $next) {
$header = [];
if (($origin = $request->header('origin', '*')) !== '*') {
@ -58,9 +58,9 @@ class Library extends Service
// 访问模式及访问权限检查
if ($request->isOptions()) {
return response()->code(204)->header($header);
} elseif (AuthService::instance($this->app)->check()) {
} elseif (AuthService::instance()->check()) {
return $next($request)->code(200)->header($header);
} elseif (AuthService::instance($this->app)->isLogin()) {
} elseif (AuthService::instance()->isLogin()) {
return json(['code' => 0, 'msg' => '抱歉,没有访问该操作的权限!'])->header($header);
} else {
return json(['code' => 0, 'msg' => '抱歉,需要登录获取访问权限!', 'url' => url('@admin/login')->build()])->header($header);

View File

@ -16,6 +16,7 @@
namespace think\admin;
use think\App;
use think\Container;
/**
* 自定义服务接口
@ -42,29 +43,24 @@ abstract class Service
*/
public function __construct(App $app)
{
$this->app = $app;
$this->init();
$this->initialize();
}
/**
* 服务初始化
*/
protected function init()
protected function initialize()
{
}
/**
* 静态实例对象
* @param App $app
* @return static
*/
public static function instance(App $app = null)
public static function instance()
{
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];
return Container::getInstance()->make(static::class);
}
}

View File

@ -18,6 +18,8 @@ namespace think\admin;
use think\admin\storage\LocalStorage;
use think\admin\storage\QiniuStorage;
use think\App;
use think\Container;
use think\Exception;
/**
* 文件存储引擎管理
@ -32,7 +34,7 @@ use think\App;
* @method string set($name, $content, $safe = false) static 文件储存
* @method string upload() static 上传目录地址
*/
class Storage
abstract class Storage
{
/**
* 应用实例
@ -46,18 +48,13 @@ class Storage
*/
protected $prefix;
/**
* 存储对象缓存
* @var array
*/
protected static $object = [];
/**
* Storage constructor.
* @param App $app
*/
public function __construct()
public function __construct(App $app)
{
$this->app = app();
$this->app = $app;
$this->initialize();
}
@ -69,41 +66,41 @@ class Storage
}
/**
* 静态访问
* 静态访问启用
* @param string $method 方法名称
* @param array $arguments 调用参数
* @return mixed
* @throws \think\Exception
* @throws Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public static function __callStatic($method, $arguments)
{
$class = self::instance();
if (method_exists($class, $method)) return call_user_func_array([$class, $method], $arguments);
throw new \think\Exception("method not exists: " . get_class($class) . "->{$method}()");
if (method_exists($class = self::instance(), $method)) {
return call_user_func_array([$class, $method], $arguments);
} else {
throw new Exception("method not exists: " . get_class($class) . "->{$method}()");
}
}
/**
* 设置文件驱动名称
* @param string $name 驱动名称
* @return LocalStorage|QiniuStorage|static
* @throws \think\Exception
* @throws Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public static function instance($name = null)
{
if (is_null($name)) $name = sysconf('storage.type');
if (isset(self::$object[$class = ucfirst(strtolower($name))])) {
return self::$object[$class];
$class = ucfirst(strtolower(is_null($name) ? sysconf('storage.type') : $name));
if (class_exists($object = "think\\admin\\storage\\{$class}Storage")) {
return Container::getInstance()->make($object);
} else {
throw new Exception("File driver [{$class}] does not exist.");
}
if (class_exists($object = __NAMESPACE__ . "\\storage\\{$class}Storage")) {
return self::$object[$class] = new $object;
}
throw new \think\Exception("File driver [{$class}] does not exist.");
}
/**
@ -133,7 +130,7 @@ class Storage
{
$mimes = self::mimes();
foreach (is_string($exts) ? explode(',', $exts) : $exts as $e) {
$mime[] = isset($mimes[strtolower($e)]) ? $mimes[strtolower($e)] : 'application/octet-stream';
$mime[] = isset($mimes[strtolower($e)]) ? $mimes[strtolower($e)] : '';
}
return join(',', array_unique($mime));
}

View File

@ -92,7 +92,7 @@ class Install extends Command
protected function installFile()
{
$service = InstallService::instance($this->app);
$service = InstallService::instance();
$data = $service->grenerateDifference($this->rules, $this->ignore);
if (empty($data)) $this->output->info('文件比对一致不需更新文件!');
else foreach ($data as $file) {

View File

@ -222,6 +222,6 @@ class QueryHelper extends Helper
*/
public function page($isPage = true, $isDisplay = true, $total = false, $limit = 0)
{
return PageHelper::instance($this->class, $this->app)->init($this->query, $isPage, $isDisplay, $total, $limit);
return PageHelper::instance()->init($this->query, $isPage, $isDisplay, $total, $limit);
}
}

View File

@ -35,7 +35,7 @@ class TokenHelper extends Helper
public function init($return = false)
{
$this->class->csrf_state = true;
if ($this->app->request->isPost() && !TokenService::instance($this->app)->checkFormToken()) {
if ($this->app->request->isPost() && !TokenService::instance()->checkFormToken()) {
if ($return) return false;
$this->class->error($this->class->csrf_message);
} else {

View File

@ -42,7 +42,7 @@ class QueryQueue extends Command
*/
protected function execute(Input $input, Output $output)
{
$process = ProcessService::instance($this->app);
$process = ProcessService::instance();
$result = $process->query($process->think("xtask:"));
if (count($result) > 0) foreach ($result as $item) {
$output->writeln("{$item['pid']}\t{$item['cmd']}");

View File

@ -44,7 +44,7 @@ class StartQueue extends Command
protected function execute(Input $input, Output $output)
{
$this->app->db->name('SystemQueue')->count();
$process = ProcessService::instance($this->app);
$process = ProcessService::instance();
$command = $process->think("xtask:listen");
if (count($result = $process->query($command)) > 0) {
$output->info("异步任务监听主进程{$result['0']['pid']}已经启动!");

View File

@ -42,7 +42,7 @@ class StateQueue extends Command
*/
protected function execute(Input $input, Output $output)
{
$process = ProcessService::instance($this->app);
$process = ProcessService::instance();
$command = $process->think('xtask:listen');
if (count($result = $process->query($command)) > 0) {
$output->info("异步任务监听主进程{$result[0]['pid']}正在运行...");

View File

@ -43,7 +43,7 @@ class StopQueue extends Command
*/
protected function execute(Input $input, Output $output)
{
$process = ProcessService::instance($this->app);
$process = ProcessService::instance();
$command = $process->think('xtask:');
if (count($result = $process->query($command)) < 1) {
$output->writeln("没有需要结束的任务进程哦!");

View File

@ -21,6 +21,7 @@ use think\console\Command;
use think\console\Input;
use think\console\input\Argument;
use think\console\Output;
use think\Container;
/**
* 启动独立执行进程
@ -66,7 +67,7 @@ class WorkQueue extends Command
$queue = $this->app->db->name('SystemQueue')->where(['code' => $this->code, 'status' => '2'])->find();
if (empty($queue)) throw new \think\Exception("执行任务{$this->code}的信息或状态异常!");;
// 设置进程标题
if (($process = ProcessService::instance($this->app))->iswin()) {
if (($process = ProcessService::instance())->iswin()) {
$this->setProcessTitle("ThinkAdmin {$process->version()} 执行任务 - {$queue['title']}");
}
// 执行任务内容

View File

@ -44,7 +44,7 @@ class AuthService extends Service
*/
public function check($node = '')
{
$service = NodeService::instance($this->app);
$service = NodeService::instance();
if ($this->app->session->get('user.username') === 'admin') return true;
list($real, $nodes) = [$service->fullnode($node), $service->getMethods()];
if (!empty($nodes[$real]['isauth'])) {
@ -63,7 +63,7 @@ class AuthService extends Service
public function getTree($checkeds = [])
{
list($nodes, $pnodes) = [[], []];
$methods = array_reverse(NodeService::instance($this->app)->getMethods());
$methods = array_reverse(NodeService::instance()->getMethods());
foreach ($methods as $node => $method) {
$count = substr_count($node, '/');
$pnode = substr($node, 0, strripos($node, '/'));

View File

@ -39,7 +39,7 @@ class CaptchaService extends Service
* 服务初始化
* @param array $config
*/
protected function init($config = [])
protected function initialize($config = [])
{
// 动态配置属性
foreach ($config as $k => $v) if (isset($this->$k)) $this->$k = $v;
@ -83,7 +83,6 @@ class CaptchaService extends Service
return $this->uniqid;
}
/**
* 检查验证码是否正确
* @param string $code 需要验证的值

View File

@ -58,7 +58,7 @@ class InstallService extends Service
/**
* 服务初始化
*/
protected function init()
protected function initialize()
{
// 应用框架版本
$this->version = $this->app->config->get('app.thinkadmin_ver');

View File

@ -36,9 +36,9 @@ class MenuService extends Service
* 服务初始化
* @return $this
*/
protected function init()
protected function initialize()
{
$this->nodeService = NodeService::instance($this->app);
$this->nodeService = NodeService::instance();
return $this;
}
@ -67,7 +67,7 @@ class MenuService extends Service
*/
public function getTree()
{
$result = app()->db->name('SystemMenu')->where(['status' => '1'])->order('sort desc,id asc')->select();
$result = $this->app->db->name('SystemMenu')->where(['status' => '1'])->order('sort desc,id asc')->select();
return $this->buildData(DataExtend::arr2tree($result->toArray()), $this->nodeService->getMethods());
}