diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php
index c98862449..4372d5f4d 100644
--- a/app/admin/controller/Queue.php
+++ b/app/admin/controller/Queue.php
@@ -72,11 +72,17 @@ class Queue extends Controller
/**
* 重启系统任务
* @auth true
+ * @throws \think\admin\Exception
+ * @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
+ * @throws \think\db\exception\ModelNotFoundException
*/
public function redo()
{
- $this->_save($this->table, ['status' => '1']);
+ $data = $this->_vali(['code.require' => '任务编号不能为空!']);
+ $queue = QueueService::instance()->initialize($data['code'])->reset();
+ $queue->progress(1, '>>> 任务重置成功 <<<', 0.00);
+ $this->success('任务重置成功!', $queue->code);
}
/**
diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html
index 679f22a8d..0e6ec748f 100644
--- a/app/admin/view/queue/index.html
+++ b/app/admin/view/queue/index.html
@@ -106,20 +106,14 @@
处理中
{elseif $vo.status eq 3}
处理完成
- {elseif $vo.status eq 4}
+ {elseif $vo.status eq 4 and auth('redo')}
处理失败
-
-
-
+
{/eq}
{if auth("remove") }
-
-
-
+
{/if}
-
-
-
+
{$vo.exec_desc|raw|default="没有获取到状态描述"}
diff --git a/composer.lock b/composer.lock
index 04570bea5..1fe9a27af 100644
--- a/composer.lock
+++ b/composer.lock
@@ -391,16 +391,16 @@
},
{
"name": "psr/log",
- "version": "1.1.2",
+ "version": "1.1.3",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
- "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
"shasum": "",
"mirrors": [
{
@@ -440,7 +440,7 @@
"psr",
"psr-3"
],
- "time": "2019-11-01T11:05:21+00:00"
+ "time": "2020-03-23T09:12:05+00:00"
},
{
"name": "psr/simple-cache",
@@ -909,12 +909,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
- "reference": "a247fea1b1a6b9bbc9f378f944531f222800fab5"
+ "reference": "ec34c3a4e22f6f9a484c4728db0c63e6c9e0371e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/a247fea1b1a6b9bbc9f378f944531f222800fab5",
- "reference": "a247fea1b1a6b9bbc9f378f944531f222800fab5",
+ "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/ec34c3a4e22f6f9a484c4728db0c63e6c9e0371e",
+ "reference": "ec34c3a4e22f6f9a484c4728db0c63e6c9e0371e",
"shasum": "",
"mirrors": [
{
@@ -958,7 +958,7 @@
],
"description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top",
- "time": "2020-03-24T06:40:00+00:00"
+ "time": "2020-03-25T02:06:11+00:00"
},
{
"name": "zoujingli/wechat-developer",
diff --git a/vendor/autoload.php b/vendor/autoload.php
index 89929361d..4e125c113 100644
--- a/vendor/autoload.php
+++ b/vendor/autoload.php
@@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php';
-return ComposerAutoloaderInitd7300eea771f6ce10908a45ed531efa1::getLoader();
+return ComposerAutoloaderInit4ceee63a2cdf20349907f5909444af96::getLoader();
diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php
index 0150cb092..4e1ac5453 100644
--- a/vendor/composer/autoload_classmap.php
+++ b/vendor/composer/autoload_classmap.php
@@ -115,7 +115,7 @@ return array(
'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php',
'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php',
'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php',
- 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
+ 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/DummyTest.php',
'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php',
'Psr\\SimpleCache\\CacheException' => $vendorDir . '/psr/simple-cache/src/CacheException.php',
diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php
index 5e62d5961..428e98d05 100644
--- a/vendor/composer/autoload_real.php
+++ b/vendor/composer/autoload_real.php
@@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
-class ComposerAutoloaderInitd7300eea771f6ce10908a45ed531efa1
+class ComposerAutoloaderInit4ceee63a2cdf20349907f5909444af96
{
private static $loader;
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitd7300eea771f6ce10908a45ed531efa1
return self::$loader;
}
- spl_autoload_register(array('ComposerAutoloaderInitd7300eea771f6ce10908a45ed531efa1', 'loadClassLoader'), true, true);
+ spl_autoload_register(array('ComposerAutoloaderInit4ceee63a2cdf20349907f5909444af96', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
- spl_autoload_unregister(array('ComposerAutoloaderInitd7300eea771f6ce10908a45ed531efa1', 'loadClassLoader'));
+ spl_autoload_unregister(array('ComposerAutoloaderInit4ceee63a2cdf20349907f5909444af96', '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\ComposerStaticInitd7300eea771f6ce10908a45ed531efa1::getInitializer($loader));
+ call_user_func(\Composer\Autoload\ComposerStaticInit4ceee63a2cdf20349907f5909444af96::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInitd7300eea771f6ce10908a45ed531efa1
$loader->register(true);
if ($useStaticLoader) {
- $includeFiles = Composer\Autoload\ComposerStaticInitd7300eea771f6ce10908a45ed531efa1::$files;
+ $includeFiles = Composer\Autoload\ComposerStaticInit4ceee63a2cdf20349907f5909444af96::$files;
} else {
$includeFiles = require __DIR__ . '/autoload_files.php';
}
foreach ($includeFiles as $fileIdentifier => $file) {
- composerRequired7300eea771f6ce10908a45ed531efa1($fileIdentifier, $file);
+ composerRequire4ceee63a2cdf20349907f5909444af96($fileIdentifier, $file);
}
return $loader;
}
}
-function composerRequired7300eea771f6ce10908a45ed531efa1($fileIdentifier, $file)
+function composerRequire4ceee63a2cdf20349907f5909444af96($fileIdentifier, $file)
{
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file;
diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php
index db8f91d27..136fc87bd 100644
--- a/vendor/composer/autoload_static.php
+++ b/vendor/composer/autoload_static.php
@@ -4,7 +4,7 @@
namespace Composer\Autoload;
-class ComposerStaticInitd7300eea771f6ce10908a45ed531efa1
+class ComposerStaticInit4ceee63a2cdf20349907f5909444af96
{
public static $files = array (
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
@@ -248,7 +248,7 @@ class ComposerStaticInitd7300eea771f6ce10908a45ed531efa1
'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php',
'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php',
'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php',
- 'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
+ 'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/DummyTest.php',
'Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'Psr\\Log\\Test\\TestLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/TestLogger.php',
'Psr\\SimpleCache\\CacheException' => __DIR__ . '/..' . '/psr/simple-cache/src/CacheException.php',
@@ -634,9 +634,9 @@ class ComposerStaticInitd7300eea771f6ce10908a45ed531efa1
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
- $loader->prefixLengthsPsr4 = ComposerStaticInitd7300eea771f6ce10908a45ed531efa1::$prefixLengthsPsr4;
- $loader->prefixDirsPsr4 = ComposerStaticInitd7300eea771f6ce10908a45ed531efa1::$prefixDirsPsr4;
- $loader->classMap = ComposerStaticInitd7300eea771f6ce10908a45ed531efa1::$classMap;
+ $loader->prefixLengthsPsr4 = ComposerStaticInit4ceee63a2cdf20349907f5909444af96::$prefixLengthsPsr4;
+ $loader->prefixDirsPsr4 = ComposerStaticInit4ceee63a2cdf20349907f5909444af96::$prefixDirsPsr4;
+ $loader->classMap = ComposerStaticInit4ceee63a2cdf20349907f5909444af96::$classMap;
}, null, ClassLoader::class);
}
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index 4b41d2375..eb3e9baff 100644
--- a/vendor/composer/installed.json
+++ b/vendor/composer/installed.json
@@ -396,17 +396,17 @@
},
{
"name": "psr/log",
- "version": "1.1.2",
- "version_normalized": "1.1.2.0",
+ "version": "1.1.3",
+ "version_normalized": "1.1.3.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
- "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
"shasum": "",
"mirrors": [
{
@@ -418,7 +418,7 @@
"require": {
"php": ">=5.3.0"
},
- "time": "2019-11-01T11:05:21+00:00",
+ "time": "2020-03-23T09:12:05+00:00",
"type": "library",
"extra": {
"branch-alias": {
@@ -935,12 +935,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
- "reference": "a247fea1b1a6b9bbc9f378f944531f222800fab5"
+ "reference": "ec34c3a4e22f6f9a484c4728db0c63e6c9e0371e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/a247fea1b1a6b9bbc9f378f944531f222800fab5",
- "reference": "a247fea1b1a6b9bbc9f378f944531f222800fab5",
+ "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/ec34c3a4e22f6f9a484c4728db0c63e6c9e0371e",
+ "reference": "ec34c3a4e22f6f9a484c4728db0c63e6c9e0371e",
"shasum": "",
"mirrors": [
{
@@ -956,7 +956,7 @@
"ext-json": "*",
"topthink/framework": "^6.0"
},
- "time": "2020-03-24T06:40:00+00:00",
+ "time": "2020-03-25T02:06:11+00:00",
"type": "library",
"extra": {
"think": {
diff --git a/vendor/psr/log/.gitignore b/vendor/psr/log/.gitignore
deleted file mode 100644
index 22d0d82f8..000000000
--- a/vendor/psr/log/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-vendor
diff --git a/vendor/psr/log/Psr/Log/LoggerInterface.php b/vendor/psr/log/Psr/Log/LoggerInterface.php
index e695046e3..2206cfde4 100644
--- a/vendor/psr/log/Psr/Log/LoggerInterface.php
+++ b/vendor/psr/log/Psr/Log/LoggerInterface.php
@@ -22,8 +22,8 @@ interface LoggerInterface
/**
* System is unusable.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -35,8 +35,8 @@ interface LoggerInterface
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -47,8 +47,8 @@ interface LoggerInterface
*
* Example: Application component unavailable, unexpected exception.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -58,8 +58,8 @@ interface LoggerInterface
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -71,8 +71,8 @@ interface LoggerInterface
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -81,8 +81,8 @@ interface LoggerInterface
/**
* Normal but significant events.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -93,8 +93,8 @@ interface LoggerInterface
*
* Example: User logs in, SQL logs.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -103,8 +103,8 @@ interface LoggerInterface
/**
* Detailed debug information.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -113,9 +113,9 @@ interface LoggerInterface
/**
* Logs with an arbitrary level.
*
- * @param mixed $level
- * @param string $message
- * @param array $context
+ * @param mixed $level
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*
diff --git a/vendor/psr/log/Psr/Log/Test/DummyTest.php b/vendor/psr/log/Psr/Log/Test/DummyTest.php
new file mode 100644
index 000000000..9638c1101
--- /dev/null
+++ b/vendor/psr/log/Psr/Log/Test/DummyTest.php
@@ -0,0 +1,18 @@
+assertEquals($expected, $this->getLogs());
}
}
-
-class DummyTest
-{
- public function __toString()
- {
- return 'DummyTest';
- }
-}
diff --git a/vendor/services.php b/vendor/services.php
index e866c4759..f574442d4 100644
--- a/vendor/services.php
+++ b/vendor/services.php
@@ -1,5 +1,5 @@
'think\\app\\Service',
diff --git a/vendor/zoujingli/think-library/src/Command.php b/vendor/zoujingli/think-library/src/Command.php
index 567b62fbf..057c853e2 100644
--- a/vendor/zoujingli/think-library/src/Command.php
+++ b/vendor/zoujingli/think-library/src/Command.php
@@ -65,6 +65,9 @@ class Command extends ThinkCommand
protected function setQueueProgress($status = null, $message = null, $progress = null)
{
if (defined('WorkQueueCode')) {
+ if (!$this->queue instanceof QueueService) {
+ $this->queue = QueueService::instance();
+ }
if ($this->queue->code !== WorkQueueCode) {
$this->queue->initialize(WorkQueueCode);
}
@@ -85,7 +88,7 @@ class Command extends ThinkCommand
protected function setQueueMessage($status, $message)
{
if (defined('WorkQueueCode')) {
- throw new Exception($message, $status);
+ throw new Exception($message, $status, WorkQueueCode);
} elseif (is_string($message)) {
$this->output->writeln($message);
}
diff --git a/vendor/zoujingli/think-library/src/command/queue/WorkQueue.php b/vendor/zoujingli/think-library/src/command/queue/WorkQueue.php
index 0c1e8cccb..e01b78a41 100644
--- a/vendor/zoujingli/think-library/src/command/queue/WorkQueue.php
+++ b/vendor/zoujingli/think-library/src/command/queue/WorkQueue.php
@@ -94,7 +94,7 @@ class WorkQueue extends Queue
if (method_exists($command, 'instance') && ($class = $command::instance()) instanceof QueueService) {
$this->update('3', $class->initialize($this->code)->execute(json_decode($this->queue['exec_data'], true) ?: []));
} else {
- throw new \think\Exception("自定义 {$command} 未继承 QueueService");
+ throw new \think\admin\Exception("自定义 {$command} 未继承 QueueService");
}
} else {
// 自定义指令,不支持返回消息(支持异常结束,异常码可选择 3|4 设置任务状态)
@@ -102,7 +102,7 @@ class WorkQueue extends Queue
$this->update('3', $this->app->console->call(array_shift($attr), $attr)->fetch(), false);
}
}
- } catch (\Exception $exception) {
+ } catch (\Exception|\Error $exception) {
$code = $exception->getCode();
if (intval($code) !== 3) $code = 4;
$this->update($code, $exception->getMessage());
diff --git a/vendor/zoujingli/think-library/src/service/QueueService.php b/vendor/zoujingli/think-library/src/service/QueueService.php
index a80fd5141..d3eafafb3 100644
--- a/vendor/zoujingli/think-library/src/service/QueueService.php
+++ b/vendor/zoujingli/think-library/src/service/QueueService.php
@@ -107,7 +107,7 @@ class QueueService extends Service
}
/**
- * 添加清理定时清理任务
+ * 添加定时清理任务
* @return $this
* @throws \think\admin\Exception
* @throws \think\db\exception\DataNotFoundException
@@ -116,7 +116,7 @@ class QueueService extends Service
*/
public function addCleanQueue()
{
- return $this->register('清理7天前记录及执行超时的任务', "xtask:clean", 0, [], 0, 3600);
+ return $this->register('定时清理系统任务数据', "xtask:clean", 0, [], 0, 3600);
}
/**
@@ -176,21 +176,21 @@ class QueueService extends Service
$data = $this->app->cache->get("queue_{$this->code}_progress", [
'code' => $this->code, 'status' => $status, 'message' => $message, 'progress' => $progress, 'history' => [],
]);
- } catch (\Exception|\TypeError $exception) {
+ } catch (\Exception|\Error $exception) {
return $this->progress($status, $message, $progress);
}
if (is_numeric($status)) $data['status'] = intval($status);
if (is_numeric($progress)) $progress = sprintf("%.2f", $progress);
if (is_string($message) && is_null($progress)) {
$data['message'] = $message;
- $data['history'][] = ['message' => $message, 'progress' => $data['progress']];
+ $data['history'][] = ['message' => $message, 'progress' => $data['progress'], 'datetime' => date('Y-m-d H:i:s')];
} elseif (is_null($message) && is_numeric($progress)) {
$data['progress'] = $progress;
- $data['history'][] = ['message' => $data['message'], 'progress' => $progress];
+ $data['history'][] = ['message' => $data['message'], 'progress' => $progress, 'datetime' => date('Y-m-d H:i:s')];
} elseif (is_string($message) && is_numeric($progress)) {
$data['message'] = $message;
$data['progress'] = $progress;
- $data['history'][] = ['message' => $message, 'progress' => $progress];
+ $data['history'][] = ['message' => $message, 'progress' => $progress, 'datetime' => date('Y-m-d H:i:s')];
}
if (is_string($message) || is_numeric($progress)) {
if (count($data['history']) > 10) {