wip: article AI polish, category SEO fields, cover generator, membership plan seeder
CI / PHPUnit (PHP 8.3) (push) Failing after 4s
CI / PHPUnit (PHP 8.2) (push) Failing after 1m9s
CI / Deploy (manual gate) (push) Skipped

This commit is contained in:
2026-09-07 18:48:37 +00:00
parent 263b98b218
commit 3cec4c5e18
121 changed files with 4701 additions and 313 deletions
+22 -15
View File
@@ -4,41 +4,48 @@ declare(strict_types=1);
namespace App\Domain\Ai\Jobs;
use App\Domain\Media\ArticleCoverService;
use App\Models\Article;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Foundation\Queue\Queueable;
use Illuminate\Support\Facades\Log;
/**
* Phase-2 stub: auto-pick or generate a cover image for an article.
* Dispatch later from import scripts / artisan batch; process via Workerman/queue.
* Auto-pick a cover from article body embeds / attachments.
* `generate` strategy is reserved for future text-to-image.
*/
class GenerateArticleCoverJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
use Queueable;
public function __construct(
public int $articleId,
public string $strategy = 'auto', // auto|from_content|generate
public string $strategy = 'auto', // auto|from_content|attachment|generate
) {
$this->onQueue('ai-content');
}
public function handle(): void
public function handle(ArticleCoverService $covers): void
{
$article = Article::query()->find($this->articleId);
if ($article === null) {
return;
}
// Intentionally unimplemented in phase 1.
Log::info('GenerateArticleCoverJob stub skipped', [
'article_id' => $article->id,
'strategy' => $this->strategy,
'cover_status' => $article->cover_status,
]);
try {
$covers->apply($article, $this->strategy);
} catch (\Throwable $exception) {
Log::warning('GenerateArticleCoverJob failed.', [
'article_id' => $this->articleId,
'strategy' => $this->strategy,
'message' => $exception->getMessage(),
]);
$article->forceFill([
'cover_status' => ArticleCoverService::STATUS_FAILED,
'cover_generated_at' => now(),
])->save();
}
}
}