diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 2339d160e..74e7ec870 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -98,49 +98,6 @@ class Queue extends Controller } } - /** - * WIN创建监听进程 - * @auth true - */ - public function start() - { - try { - $message = nl2br($this->app->console->call('xadmin:queue', ['start'])->fetch()); - if (stripos($message, 'daemons started successfully for pid')) { - $this->success('任务监听主进程启动成功!'); - } elseif (stripos($message, 'daemons already exist for pid')) { - $this->success('任务监听主进程已经存在!'); - } else { - $this->error($message); - } - } catch (HttpResponseException $exception) { - throw $exception; - } catch (\Exception $exception) { - $this->error($exception->getMessage()); - } - } - - /** - * WIN停止监听进程 - * @auth true - */ - public function stop() - { - try { - $message = nl2br($this->app->console->call('xadmin:queue', ['stop'])->fetch()); - if (stripos($message, 'sent end signal to process')) { - $this->success('停止任务监听主进程成功!'); - } elseif (stripos($message, 'processes to stop')) { - $this->success('没有找到需要停止的进程!'); - } else { - $this->error($message); - } - } catch (HttpResponseException $exception) { - throw $exception; - } catch (\Exception $exception) { - $this->error($exception->getMessage()); - } - } /** * 创建记录清理任务 diff --git a/app/admin/controller/api/Plugs.php b/app/admin/controller/api/Plugs.php index fd7c69f03..d189c7cef 100644 --- a/app/admin/controller/api/Plugs.php +++ b/app/admin/controller/api/Plugs.php @@ -58,26 +58,6 @@ class Plugs extends Controller } } - /** - * 检查任务状态 - * @login true - */ - public function queue() - { - if (AdminService::instance()->isSuper()) try { - $message = $this->app->console->call('xadmin:queue', ['status'])->fetch(); - if (preg_match('/process.*?\d+.*?running/', $message, $attrs)) { - echo '' . $message . ''; - } else { - echo '' . $message . ''; - } - } catch (\Exception $exception) { - echo '' . $exception->getMessage() . ''; - } else { - echo '只有超级管理员才能操作!'; - } - } - /** * 优化数据库 * @login true diff --git a/app/admin/controller/api/Queue.php b/app/admin/controller/api/Queue.php index ab4b63a5b..244f6dbac 100644 --- a/app/admin/controller/api/Queue.php +++ b/app/admin/controller/api/Queue.php @@ -16,7 +16,9 @@ namespace app\admin\controller\api; use think\admin\Controller; +use think\admin\service\AdminService; use think\admin\service\QueueService; +use think\exception\HttpResponseException; /** * 后台任务通用接口 @@ -40,4 +42,67 @@ class Queue extends Controller $this->success('获取任务进度成功!', $queue->progress()); } + /** + * WIN停止监听进程 + * @login true + */ + public function stop() + { + try { + $message = nl2br($this->app->console->call('xadmin:queue', ['stop'])->fetch()); + if (stripos($message, 'sent end signal to process')) { + $this->success('停止后台服务主进程成功!'); + } elseif (stripos($message, 'processes to stop')) { + $this->success('没有找到需要停止的进程!'); + } else { + $this->error($message); + } + } catch (HttpResponseException $exception) { + throw $exception; + } catch (\Exception $exception) { + $this->error($exception->getMessage()); + } + } + + /** + * WIN创建监听进程 + * @login true + */ + public function start() + { + try { + $message = nl2br($this->app->console->call('xadmin:queue', ['start'])->fetch()); + if (stripos($message, 'daemons started successfully for pid')) { + $this->success('后台服务主进程启动成功!'); + } elseif (stripos($message, 'daemons already exist for pid')) { + $this->success('后台服务主进程已经存在!'); + } else { + $this->error($message); + } + } catch (HttpResponseException $exception) { + throw $exception; + } catch (\Exception $exception) { + $this->error($exception->getMessage()); + } + } + + /** + * 检查任务状态 + * @login true + */ + public function status() + { + if (AdminService::instance()->isSuper()) try { + $message = $this->app->console->call('xadmin:queue', ['status'])->fetch(); + if (preg_match('/process.*?\d+.*?running/', $message, $attrs)) { + echo '' . $message . ''; + } else { + echo '' . $message . ''; + } + } catch (\Exception $exception) { + echo '' . $exception->getMessage() . ''; + } else { + echo '只有超级管理员才能操作!'; + } + } } \ No newline at end of file diff --git a/app/admin/view/auth/form.html b/app/admin/view/auth/form.html index 69ec4ad01..f0d031c1c 100644 --- a/app/admin/view/auth/form.html +++ b/app/admin/view/auth/form.html @@ -3,13 +3,13 @@