[更新]CompoerUpdate

This commit is contained in:
Anyon 2019-07-17 11:04:38 +08:00
parent 12a141bbeb
commit 6349056e63
43 changed files with 147 additions and 57 deletions

View File

@ -25,9 +25,12 @@ use think\Db;
class AutoRun extends \think\console\Command class AutoRun extends \think\console\Command
{ {
/**
* 配置指令信息
*/
protected function configure() protected function configure()
{ {
$this->setName('xclean:store')->setDescription('clean up invalid store records'); $this->setName('xclean:store')->setDescription('清理过期无效的订单记录');
} }
/** /**

View File

@ -30,6 +30,6 @@ class FansAll extends Fans
protected function configure() protected function configure()
{ {
$this->module = ['list', 'black', 'tags']; $this->module = ['list', 'black', 'tags'];
$this->setName('xfans:all')->setDescription('synchronize all of fans'); $this->setName('xfans:all')->setDescription('从微信获取所有粉丝记录和标签');
} }
} }

View File

@ -30,6 +30,6 @@ class FansBlack extends Fans
protected function configure() protected function configure()
{ {
$this->module = ['black']; $this->module = ['black'];
$this->setName('xfans:black')->setDescription('synchronize black of fans'); $this->setName('xfans:black')->setDescription('从微信获取黑名单中的粉丝记录');
} }
} }

View File

@ -30,7 +30,7 @@ class FansList extends Fans
protected function configure() protected function configure()
{ {
$this->module = ['list']; $this->module = ['list'];
$this->setName('xfans:list')->setDescription('synchronize list of fans'); $this->setName('xfans:list')->setDescription('从微信获取所有的粉丝信息记录');
} }
} }

View File

@ -30,6 +30,6 @@ class FansTags extends Fans
protected function configure() protected function configure()
{ {
$this->module = ['tags']; $this->module = ['tags'];
$this->setName('xfans:tags')->setDescription('synchronize tags of fans'); $this->setName('xfans:tags')->setDescription('从微信获取所有的粉丝标签记录');
} }
} }

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 ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4::getLoader(); return ComposerAutoloaderInit2c3e264f6aacabac4f7c7e4fa8041abe::getLoader();

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer // autoload_real.php @generated by Composer
class ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4 class ComposerAutoloaderInit2c3e264f6aacabac4f7c7e4fa8041abe
{ {
private static $loader; private static $loader;
@ -19,15 +19,15 @@ class ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4
return self::$loader; return self::$loader;
} }
spl_autoload_register(array('ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4', 'loadClassLoader'), true, true); spl_autoload_register(array('ComposerAutoloaderInit2c3e264f6aacabac4f7c7e4fa8041abe', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(); self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4', 'loadClassLoader')); spl_autoload_unregister(array('ComposerAutoloaderInit2c3e264f6aacabac4f7c7e4fa8041abe', '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\ComposerStaticInit9f532fe51df20fe03503300614827aa4::getInitializer($loader)); call_user_func(\Composer\Autoload\ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::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 ComposerAutoloaderInit9f532fe51df20fe03503300614827aa4
$loader->register(true); $loader->register(true);
if ($useStaticLoader) { if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit9f532fe51df20fe03503300614827aa4::$files; $includeFiles = Composer\Autoload\ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::$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) {
composerRequire9f532fe51df20fe03503300614827aa4($fileIdentifier, $file); composerRequire2c3e264f6aacabac4f7c7e4fa8041abe($fileIdentifier, $file);
} }
return $loader; return $loader;
} }
} }
function composerRequire9f532fe51df20fe03503300614827aa4($fileIdentifier, $file) function composerRequire2c3e264f6aacabac4f7c7e4fa8041abe($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 ComposerStaticInit9f532fe51df20fe03503300614827aa4 class ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe
{ {
public static $files = array ( public static $files = array (
'841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php', '841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php',
@ -347,9 +347,9 @@ class ComposerStaticInit9f532fe51df20fe03503300614827aa4
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 = ComposerStaticInit9f532fe51df20fe03503300614827aa4::$prefixLengthsPsr4; $loader->prefixLengthsPsr4 = ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit9f532fe51df20fe03503300614827aa4::$prefixDirsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit9f532fe51df20fe03503300614827aa4::$classMap; $loader->classMap = ComposerStaticInit2c3e264f6aacabac4f7c7e4fa8041abe::$classMap;
}, null, ClassLoader::class); }, null, ClassLoader::class);
} }

View File

@ -502,12 +502,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "861a56cda1b7a0b6ae9a781aa4bd834491d2d03b" "reference": "3c08c4e18f76399a5387f2af807a4049d544284c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/861a56cda1b7a0b6ae9a781aa4bd834491d2d03b", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/3c08c4e18f76399a5387f2af807a4049d544284c",
"reference": "861a56cda1b7a0b6ae9a781aa4bd834491d2d03b", "reference": "3c08c4e18f76399a5387f2af807a4049d544284c",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -526,7 +526,7 @@
"qiniu/php-sdk": "^7.2", "qiniu/php-sdk": "^7.2",
"topthink/framework": "5.1.*" "topthink/framework": "5.1.*"
}, },
"time": "2019-07-15T06:16:28+00:00", "time": "2019-07-17T02:59:08+00:00",
"type": "library", "type": "library",
"installation-source": "dist", "installation-source": "dist",
"autoload": { "autoload": {

View File

@ -9,11 +9,17 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
namespace library; namespace library;
use library\logic\Delete;
use library\logic\Input;
use library\logic\Page;
use library\logic\Query;
use library\logic\Save;
use library\tools\Csrf; use library\tools\Csrf;
use think\exception\HttpResponseException; use think\exception\HttpResponseException;
@ -21,14 +27,6 @@ use think\exception\HttpResponseException;
* 标准控制器基类 * 标准控制器基类
* -------------------------------- * --------------------------------
* Class Controller * Class Controller
* @package library
* --------------------------------
* @method logic\Query _query($dbQuery)
* @method array _input($data, $rule = [], $info = [])
* @method mixed _delete($dbQuery, $pkField = '', $where = [])
* @method mixed _save($dbQuery, $data = [], $pkField = '', $where = [])
* @method mixed _form($dbQuery, $tplFile = '', $pkField = '', $where = [], $data = [])
* @method array _page($dbQuery, $isPage = true, $isDisplay = true, $total = false, $limit = 0)
*/ */
class Controller extends \stdClass class Controller extends \stdClass
{ {
@ -75,22 +73,6 @@ class Controller extends \stdClass
} }
} }
/**
* 实例方法调用
* @param string $method 函数名称
* @param array $arguments 调用参数
* @return mixed
* @throws \ReflectionException
* @throws \think\Exception
*/
public function __call($method, $arguments = [])
{
if (class_exists($name = "library\\logic\\" . ucfirst(ltrim($method, '_')))) {
return (new \ReflectionClass($name))->newInstanceArgs($arguments)->init($this);
}
throw new \think\Exception('method not exists:' . get_class($this) . '->' . $method);
}
/** /**
* 返回失败的操作 * 返回失败的操作
* @param mixed $info 消息内容 * @param mixed $info 消息内容
@ -197,4 +179,74 @@ class Controller extends \stdClass
} }
} }
/**
* 快捷查询逻辑器
* @param string|\think\db\Query $dbQuery
* @return Query
*/
protected function _query($dbQuery)
{
return (new Query($dbQuery))->init($this);
}
/**
* 快捷分页逻辑器
* @param string|\think\db\Query $dbQuery
* @param boolean $isPage 是否启用分页
* @param boolean $isDisplay 是否渲染模板
* @param boolean $total 集合分页记录数
* @param integer $limit 集合每页记录数
* @return array
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
protected function _page($dbQuery, $isPage = true, $isDisplay = true, $total = false, $limit = 0)
{
return (new Page($dbQuery, $isPage, $isDisplay, $total, $limit))->init($this);
}
/**
* 快捷更新逻辑器
* @param string|\think\db\Query $dbQuery
* @param array $data 表单扩展数据
* @param string $pkField 数据对象主键
* @param array $where 额外更新条件
* @return boolean
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
protected function _save($dbQuery, $data = [], $pkField = '', $where = [])
{
return (new Save($dbQuery, $data, $pkField, $where))->init($this);
}
/**
* 快捷输入逻辑器
* @param array $data 验证数据
* @param array $rule 验证规则
* @param array $info 验证消息
* @return array
*/
protected function _input($data, $rule = [], $info = [])
{
return (new Input($data, $rule, $info))->init($this);
}
/**
* 快捷删除逻辑器
* @param string|\think\db\Query $dbQuery
* @param string $pkField 数据对象主键
* @param array $where 额外更新条件
* @return boolean|null
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
protected function _delete($dbQuery, $pkField = '', $where = [])
{
return (new Delete($dbQuery, $pkField, $where))->init($this);
}
} }

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -26,7 +27,7 @@ class Sess extends Command
protected function configure() protected function configure()
{ {
$this->setName('xclean:session')->setDescription('clean up invalid session files'); $this->setName('xclean:session')->setDescription('清理失效过期的会话文件');
} }
protected function execute(\think\console\Input $input, \think\console\Output $output) protected function execute(\think\console\Input $input, \think\console\Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -27,7 +28,7 @@ class Admin extends Sync
protected function configure() protected function configure()
{ {
$this->modules = ['application/admin/', 'think']; $this->modules = ['application/admin/', 'think'];
$this->setName('xsync:admin')->setDescription('synchronize update admin module files'); $this->setName('xsync:admin')->setDescription('从远程覆盖本地Admin模块的所有代码');
} }
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -27,7 +28,7 @@ class Config extends Sync
protected function configure() protected function configure()
{ {
$this->modules = ['config/']; $this->modules = ['config/'];
$this->setName('xsync:config')->setDescription('synchronize update config php files'); $this->setName('xsync:config')->setDescription('从远程覆盖本地Config的部分配置文件');
} }
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -27,7 +28,7 @@ class Plugs extends Sync
protected function configure() protected function configure()
{ {
$this->modules = ['public/static/']; $this->modules = ['public/static/'];
$this->setName('xsync:plugs')->setDescription('synchronize update plugs static files'); $this->setName('xsync:plugs')->setDescription('从远程覆盖本地Plugs资源插件等代码');
} }
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -27,7 +28,7 @@ class Service extends Sync
protected function configure() protected function configure()
{ {
$this->modules = ['application/service/']; $this->modules = ['application/service/'];
$this->setName('xsync:service')->setDescription('synchronize update service module files'); $this->setName('xsync:service')->setDescription('从远程覆盖本地Service模块的所有代码');
} }
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -27,7 +28,7 @@ class Wechat extends Sync
protected function configure() protected function configure()
{ {
$this->modules = ['application/wechat/']; $this->modules = ['application/wechat/'];
$this->setName('xsync:wechat')->setDescription('synchronize update wechat module files'); $this->setName('xsync:wechat')->setDescription('从远程覆盖本地Wechat模块的所有代码');
} }
protected function execute(Input $input, Output $output) protected function execute(Input $input, Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -25,7 +26,7 @@ class Reset extends Task
protected function configure() protected function configure()
{ {
$this->setName('xtask:reset')->setDescription('reset message queue daemon'); $this->setName('xtask:reset')->setDescription('重新启动消息队列守护进程');
} }
protected function execute(\think\console\Input $input, \think\console\Output $output) protected function execute(\think\console\Input $input, \think\console\Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -25,7 +26,7 @@ class Start extends Task
protected function configure() protected function configure()
{ {
$this->setName('xtask:start')->setDescription('start message queue daemon'); $this->setName('xtask:start')->setDescription('开始启动消息队列守护进程');
} }
protected function execute(\think\console\Input $input, \think\console\Output $output) protected function execute(\think\console\Input $input, \think\console\Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -25,7 +26,7 @@ class State extends Task
protected function configure() protected function configure()
{ {
$this->setName('xtask:state')->setDescription('view message queue daemon'); $this->setName('xtask:state')->setDescription('查看消息队列守护进程状态');
} }
protected function execute(\think\console\Input $input, \think\console\Output $output) protected function execute(\think\console\Input $input, \think\console\Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -25,7 +26,7 @@ class Stop extends Task
protected function configure() protected function configure()
{ {
$this->setName('xtask:stop')->setDescription('stop message queue daemon'); $this->setName('xtask:stop')->setDescription('立即停止消息队列守护进程');
} }
protected function execute(\think\console\Input $input, \think\console\Output $output) protected function execute(\think\console\Input $input, \think\console\Output $output)

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -18,6 +19,7 @@ use library\tools\Data;
use library\tools\Emoji; use library\tools\Emoji;
use library\tools\Http; use library\tools\Http;
use library\tools\Node; use library\tools\Node;
use think\Console;
use think\Db; use think\Db;
use think\facade\Cache; use think\facade\Cache;
use think\facade\Middleware; use think\facade\Middleware;
@ -246,7 +248,7 @@ Middleware::add(function (Request $request, \Closure $next, $header = []) {
}); });
// 注册系统常用指令 // 注册系统常用指令
\think\Console::addDefaultCommands([ Console::addDefaultCommands([
'library\command\Sess', 'library\command\Sess',
'library\command\task\Stop', 'library\command\task\Stop',
'library\command\task\State', 'library\command\task\State',

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@ -163,7 +164,8 @@ class Qiniu extends File
/** /**
* 获取空间列表 * 获取空间列表
* @return array * @return string
* @throws \Exception
*/ */
public function getBucketList() public function getBucketList()
{ {

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------

View File

@ -9,6 +9,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org ) // | 开源协议 ( https://mit-license.org )
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary // | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------