trypost/app/Models/Traits/HasMedia.php
Paulo Castellano dafdd5da43 feat: media gallery picker, custom emoji picker, preview tabs, real platform logos
- gallery: extract /assets tabs (uploads, Unsplash, Giphy) into shared
  GalleryBrowser used by both /assets and a new MediaPickerDialog inside the
  post editor; add JSON search endpoint for workspace assets with tests
- emoji: replace broken emoji-picker-element web component with a custom
  EmojiPicker (full Unicode set, search, categories, recently-used,
  light/dark, i18n)
- preview tab: platform selector pills, variant tabs (data-driven from
  content_types map) so the user can switch Feed/Reel/Story etc. and have
  it autosave through the same handler ScheduleTab uses
- platform logos: shared usePlatformLogo composable (logo + label + content
  types); replaces inline maps across 5 components, fixes
  instagram-facebook falling back to default.png
- tooltips: hover details (display_name · @username + platform label) on
  platform avatars across editor, posts list and calendar
- settings cards: show ` · @username` in the title bar so multiple accounts
  on the same network are distinguishable
- routes: drop the throttle:6,1 group middleware on social connect routes
  (was 429ing legitimate OAuth retries) and rely on the default limiter
2026-05-01 14:53:49 -03:00

235 lines
7.5 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Models\Traits;
use App\Models\Media;
use App\Models\User;
use App\Models\Workspace;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
use Intervention\Image\Drivers\Gd\Driver;
use Intervention\Image\Encoders\JpegEncoder;
use Intervention\Image\ImageManager;
trait HasMedia
{
/**
* Media collections configuration.
* 'single' = only one media per collection (replaces existing)
* 'multiple' = unlimited media per collection
*/
protected static array $mediaCollections = [
Workspace::class => [
'logo' => 'single',
'assets' => 'multiple',
],
User::class => [
'avatar' => 'single',
],
];
public function media(): MorphMany
{
return $this->morphMany(Media::class, 'mediable')->orderBy('order');
}
public function getMedia(string $collection = 'default'): MorphMany
{
return $this->media()->where('collection', $collection);
}
public function getFirstMedia(string $collection = 'default'): ?Media
{
return $this->getMedia($collection)->first();
}
public function getFirstMediaUrl(string $collection = 'default', ?string $default = null): ?string
{
$media = $this->getFirstMedia($collection);
return $media?->url ?? $default;
}
/**
* Generate a DiceBear fallback URL using initials.
*/
public function getFallbackAvatarUrl(string $seed): string
{
return 'https://api.dicebear.com/9.x/initials/svg?backgroundColor=777777&fontFamily=Verdana&fontSize=40&seed='.urlencode($seed);
}
/**
* Add media to a collection.
* If the collection is configured as 'single', it will clear existing media first.
*/
public function addMedia(UploadedFile $file, string $collection = 'default', array $meta = [], ?string $groupId = null): Media
{
if ($this->isSingleMediaCollection($collection)) {
$this->clearMediaCollection($collection);
}
$mimeType = $file->getMimeType();
$type = $this->getMediaType($mimeType);
// Normalize non-JPEG still images to JPEG q100 for universal platform compatibility.
// GIF is preserved (animation kept for X/Bluesky/Mastodon).
[$normalizedBytes, $normalizedMime, $normalizedExt] = $this->normalizeImageFormat(
$file->getPathname(),
$mimeType,
$type,
$file->getClientOriginalExtension(),
);
$filename = Str::uuid().'.'.$normalizedExt;
$path = 'medias/'.$filename;
Storage::put($path, $normalizedBytes);
return $this->media()->create([
'group_id' => $groupId ?? Str::uuid()->toString(),
'collection' => $collection,
'type' => $type,
'path' => $path,
'original_filename' => $file->getClientOriginalName(),
'mime_type' => $normalizedMime,
'size' => strlen($normalizedBytes),
'order' => 0,
'meta' => array_merge($this->getMediaMetaFromBytes($normalizedBytes, $type, $meta), $meta),
]);
}
/**
* Add media from a file path (used for chunked uploads).
*/
public function addMediaFromPath(string $filePath, string $originalFilename, string $collection = 'default', array $meta = [], ?string $groupId = null): Media
{
if ($this->isSingleMediaCollection($collection)) {
$this->clearMediaCollection($collection);
}
$mimeType = mime_content_type($filePath);
$type = $this->getMediaType($mimeType);
$extension = pathinfo($originalFilename, PATHINFO_EXTENSION);
[$normalizedBytes, $normalizedMime, $normalizedExt] = $this->normalizeImageFormat(
$filePath,
$mimeType,
$type,
$extension,
);
$filename = Str::uuid().'.'.$normalizedExt;
$storagePath = 'medias/'.$filename;
Storage::put($storagePath, $normalizedBytes);
return $this->media()->create([
'group_id' => $groupId ?? Str::uuid()->toString(),
'collection' => $collection,
'type' => $type,
'path' => $storagePath,
'original_filename' => $originalFilename,
'mime_type' => $normalizedMime,
'size' => strlen($normalizedBytes),
'order' => 0,
'meta' => array_merge($this->getMediaMetaFromBytes($normalizedBytes, $type, $meta), $meta),
]);
}
public function clearMediaCollection(string $collection = 'default'): void
{
$this->getMedia($collection)->each(fn (Media $media) => $media->delete());
}
public function isSingleMediaCollection(string $collection): bool
{
$modelClass = static::class;
$config = self::$mediaCollections[$modelClass][$collection] ?? 'multiple';
return $config === 'single';
}
private function getMediaType(string $mimeType): string
{
if (str_starts_with($mimeType, 'image/')) {
return 'image';
}
if (str_starts_with($mimeType, 'video/')) {
return 'video';
}
return 'document';
}
private function getMediaMeta(UploadedFile $file, string $type): array
{
$meta = [];
if ($type === 'image') {
$imageInfo = @getimagesize($file->getPathname());
if ($imageInfo) {
$meta['width'] = $imageInfo[0];
$meta['height'] = $imageInfo[1];
}
}
return $meta;
}
/**
* Extract width/height from raw image bytes (used after format normalization
* when we no longer have the original file path).
*/
private function getMediaMetaFromBytes(string $bytes, string $type, array $clientMeta = []): array
{
$meta = [];
if ($type === 'image') {
$imageInfo = @getimagesizefromstring($bytes);
if ($imageInfo) {
$meta['width'] = $imageInfo[0];
$meta['height'] = $imageInfo[1];
}
}
return $meta;
}
/**
* Convert PNG/WebP/HEIC/AVIF to JPEG at q100 (keeps dimensions). GIF and
* JPEG are returned untouched. Non-image types are passed through.
*
* @return array{0: string, 1: string, 2: string} [bytes, mime_type, extension]
*/
private function normalizeImageFormat(string $filePath, string $mimeType, string $type, string $originalExtension): array
{
if ($type !== 'image') {
return [file_get_contents($filePath), $mimeType, $originalExtension];
}
// Formats that publish safely everywhere (JPEG is universal, GIF needed for X/Bluesky/Mastodon).
if (in_array($mimeType, ['image/jpeg', 'image/jpg', 'image/gif'], true)) {
return [file_get_contents($filePath), $mimeType, $originalExtension];
}
try {
$manager = new ImageManager(new Driver);
$encoded = (string) $manager->decodePath($filePath)->encode(new JpegEncoder(quality: 100));
return [$encoded, 'image/jpeg', 'jpg'];
} catch (\Throwable $e) {
Log::warning('HasMedia: image normalization failed, storing original', [
'mime' => $mimeType,
'error' => $e->getMessage(),
]);
return [file_get_contents($filePath), $mimeType, $originalExtension];
}
}
}