This commit is contained in:
parent
ece6b274d7
commit
0c62637702
@ -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]
|
||||
|
@ -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]);
|
||||
}
|
||||
|
@ -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()
|
||||
|
@ -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]);
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user