* feat: ship public site with SEO and visuals Publish CMS content on public routes with responsive media, accessibility checks, and deterministic visual baselines. Co-authored-by: Cursor <cursoragent@cursor.com> * fix: make browser visual CI deterministic for media Mount host public storage into FrankenPHP so seeded fixtures are served, and replace PNG-as-JPG fixtures with real JPEGs so Chromium can render them. Co-authored-by: Cursor <cursoragent@cursor.com> * fix: serve public media on same-origin storage paths Pest Browser hosts on 127.0.0.1:port while Storage::url used http://localhost, so screenshots captured broken images. Use relative /storage URLs for media and absolutize only OG tags via url(). Co-authored-by: Cursor <cursoragent@cursor.com> * test: refresh visual baselines from CI Ubuntu screenshots Media now loads on same-origin /storage paths, so baselines must capture the rendered fixtures. Use full-page snapshots from the CI runner to keep Pest's exact snapshot match stable across environments. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
79 lines
2.1 KiB
PHP
79 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\PortfolioCase;
|
|
use App\Models\PortfolioImage;
|
|
use App\Models\Service;
|
|
use App\Models\SiteSetting;
|
|
use App\Models\Testimonial;
|
|
use App\Support\PublicImageUploadRules;
|
|
use App\Support\ResponsiveImage;
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
final class MediaGenerateVariantsCommand extends Command
|
|
{
|
|
protected $signature = 'media:generate-variants';
|
|
|
|
protected $description = 'Generate responsive image variants for existing public media';
|
|
|
|
public function handle(): int
|
|
{
|
|
$disk = PublicImageUploadRules::disk();
|
|
$paths = $this->collectPaths();
|
|
$generated = 0;
|
|
$skipped = 0;
|
|
|
|
foreach ($paths as $path) {
|
|
if (! Storage::disk($disk)->exists($path)) {
|
|
$this->warn("Missing file: {$path}");
|
|
$skipped++;
|
|
|
|
continue;
|
|
}
|
|
|
|
ResponsiveImage::generate($path, $disk);
|
|
$generated++;
|
|
$this->line("Generated variants for {$path}");
|
|
}
|
|
|
|
$this->info("Done. Generated: {$generated}. Skipped: {$skipped}.");
|
|
|
|
return self::SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* @return list<string>
|
|
*/
|
|
private function collectPaths(): array
|
|
{
|
|
$paths = [];
|
|
|
|
$settings = SiteSetting::query()->first();
|
|
if ($settings && filled($settings->default_og_image_path)) {
|
|
$paths[] = (string) $settings->default_og_image_path;
|
|
}
|
|
|
|
foreach (Service::query()->whereNotNull('cover_image_path')->pluck('cover_image_path') as $path) {
|
|
$paths[] = (string) $path;
|
|
}
|
|
|
|
foreach (PortfolioCase::query()->whereNotNull('cover_image_path')->pluck('cover_image_path') as $path) {
|
|
$paths[] = (string) $path;
|
|
}
|
|
|
|
foreach (PortfolioImage::query()->whereNotNull('path')->pluck('path') as $path) {
|
|
$paths[] = (string) $path;
|
|
}
|
|
|
|
foreach (Testimonial::query()->whereNotNull('photo_path')->pluck('photo_path') as $path) {
|
|
$paths[] = (string) $path;
|
|
}
|
|
|
|
return array_values(array_unique($paths));
|
|
}
|
|
}
|