38 lines
864 B
PHP
38 lines
864 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Post;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Queue\Queueable;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class PublishPost implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
public int $tries = 1;
|
|
|
|
public function __construct(public Post $post) {}
|
|
|
|
public function handle(): void
|
|
{
|
|
$this->post->markAsPublishing();
|
|
|
|
foreach ($this->post->postPlatforms()->where('enabled', true)->get() as $postPlatform) {
|
|
PublishToSocialPlatform::dispatch($postPlatform);
|
|
}
|
|
}
|
|
|
|
public function failed(?\Throwable $exception): void
|
|
{
|
|
Log::error('PublishPost job failed', [
|
|
'post_id' => $this->post->id,
|
|
'error' => $exception?->getMessage(),
|
|
]);
|
|
|
|
$this->post->markAsFailed();
|
|
}
|
|
}
|