From 0c62637702ab7afe49a5f55048f39ac2b9d98c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E6=9C=9D=E4=BC=9F?= Date: Thu, 14 Nov 2024 16:06:13 +0800 Subject: [PATCH] init --- .editorconfig | 2 +- .../bydauto/src/Controllers/BYDAutoController.php | 4 +++- packages/bydauto/src/Jobs/TestdrivePushJob.php | 12 ++++++------ packages/bydauto/src/Observers/TestdriveObserver.php | 10 +++++----- 4 files changed, 15 insertions(+), 13 deletions(-) diff --git a/.editorconfig b/.editorconfig index bc23fc8..f1ebf09 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,7 +12,7 @@ max_line_length = 150 [*.md] trim_trailing_whitespace = false -[*.{yml,yaml,js,html,css,scss}] +[*.{yml,yaml,js,html,css,scss,less}] indent_size = 2 [docker-compose.yml] diff --git a/packages/bydauto/src/Controllers/BYDAutoController.php b/packages/bydauto/src/Controllers/BYDAutoController.php index c47a382..e79650e 100644 --- a/packages/bydauto/src/Controllers/BYDAutoController.php +++ b/packages/bydauto/src/Controllers/BYDAutoController.php @@ -22,7 +22,9 @@ public function testdrive(Request $request) $this->validate($request, $rules); $requestId = Str::uuid(); $request->merge(['request_id' => $requestId]); - (new TestdriveCreateAction())->execute($request); + + $model = (new TestdriveCreateAction())->execute($request); + // TestdrivePushJob::dispatch($model); return response()->json(['code' => 0, 'message' => '提亀成功', 'request_id' => $requestId]); } diff --git a/packages/bydauto/src/Jobs/TestdrivePushJob.php b/packages/bydauto/src/Jobs/TestdrivePushJob.php index 1fe0a29..bd7eb9d 100644 --- a/packages/bydauto/src/Jobs/TestdrivePushJob.php +++ b/packages/bydauto/src/Jobs/TestdrivePushJob.php @@ -21,12 +21,12 @@ public function __construct(protected Testdrive $model) {} public function handle(): void { - try { - $this->sendNotification(); - $this->model->update(['status' => Testdrive::STATUS_PUBLISHED]); - } catch (\Exception $e) { - info('===== TestdrivePushJob::handle exception', ['message' => $e->getMessage()]); - } + // try { + // $this->sendNotification(); + // $this->model->update(['status' => Testdrive::STATUS_PUBLISHED]); + // } catch (\Exception $e) { + // info('===== TestdrivePushJob::handle exception', ['message' => $e->getMessage()]); + // } } public function sendNotification() diff --git a/packages/bydauto/src/Observers/TestdriveObserver.php b/packages/bydauto/src/Observers/TestdriveObserver.php index 5896af4..a10c6cb 100644 --- a/packages/bydauto/src/Observers/TestdriveObserver.php +++ b/packages/bydauto/src/Observers/TestdriveObserver.php @@ -16,10 +16,10 @@ public function creating(Testdrive $model) public function created(Testdrive $model) { - if ($model->status === Testdrive::STATUS_DRAFT) { - TestdrivePushJob::dispatch($model); - } else { - info('===== TestdriveObserver::created not a draft', ['id' => $model->id, 'status' => $model->status]); - } + // if ($model->status === Testdrive::STATUS_DRAFT) { + // TestdrivePushJob::dispatch($model); + // } else { + // info('===== TestdriveObserver::created not a draft', ['id' => $model->id, 'status' => $model->status]); + // } } }