111 lines
4.8 KiB
PHP
111 lines
4.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Resources\Tenant;
|
|
|
|
use App\Services\Packages\PackageLimitEvaluator;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Illuminate\Http\Resources\MissingValue;
|
|
use Illuminate\Support\Arr;
|
|
|
|
class EventResource extends JsonResource
|
|
{
|
|
public function toArray(Request $request): array
|
|
{
|
|
$tenantId = $request->attributes->get('tenant_id');
|
|
$showSensitive = $this->tenant_id === $tenantId;
|
|
$settings = is_array($this->settings) ? $this->settings : [];
|
|
$eventPackage = null;
|
|
|
|
if ($this->relationLoaded('eventPackages')) {
|
|
$related = $this->getRelation('eventPackages');
|
|
|
|
if (! $related instanceof MissingValue) {
|
|
$eventPackage = $related->first();
|
|
}
|
|
} elseif ($this->relationLoaded('eventPackage')) {
|
|
$related = $this->getRelation('eventPackage');
|
|
|
|
if (! $related instanceof MissingValue) {
|
|
$eventPackage = $related;
|
|
}
|
|
}
|
|
|
|
$limitEvaluator = null;
|
|
if ($eventPackage) {
|
|
$limitEvaluator = app()->make(PackageLimitEvaluator::class);
|
|
}
|
|
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'slug' => $this->slug,
|
|
'description' => $this->description,
|
|
'event_date' => $this->date ? $this->date->toISOString() : null,
|
|
'location' => $this->location,
|
|
'max_participants' => $this->max_participants,
|
|
'current_participants' => $showSensitive ? ($this->photos_count ?? null) : null,
|
|
'public_url' => $settings['public_url'] ?? null,
|
|
'custom_domain' => $showSensitive ? ($settings['custom_domain'] ?? null) : null,
|
|
'theme_color' => $settings['theme_color'] ?? null,
|
|
'status' => $this->status ?? 'draft',
|
|
'is_active' => (bool) ($this->is_active ?? false),
|
|
'features' => $settings['features'] ?? [],
|
|
'engagement_mode' => $settings['engagement_mode'] ?? 'tasks',
|
|
'settings' => $settings,
|
|
'event_type_id' => $this->event_type_id,
|
|
'created_at' => $this->created_at?->toISOString(),
|
|
'updated_at' => $this->updated_at?->toISOString(),
|
|
'photo_count' => (int) ($this->photos_count ?? 0),
|
|
'pending_photo_count' => isset($this->pending_photos_count) ? (int) $this->pending_photos_count : null,
|
|
'like_count' => isset($this->likes_sum)
|
|
? (int) $this->likes_sum
|
|
: $this->whenLoaded('photos', fn () => (int) $this->photos->sum('likes_count'), 0),
|
|
'tasks_count' => isset($this->tasks_count) ? (int) $this->tasks_count : null,
|
|
'active_invites_count' => isset($this->active_join_tokens_count) ? (int) $this->active_join_tokens_count : null,
|
|
'total_invites_count' => isset($this->total_join_tokens_count) ? (int) $this->total_join_tokens_count : null,
|
|
'is_public' => $this->status === 'published',
|
|
'public_share_url' => null,
|
|
'qr_code_url' => null,
|
|
'package' => $eventPackage ? [
|
|
'id' => $eventPackage->package_id,
|
|
'name' => $eventPackage->package?->getNameForLocale(app()->getLocale()) ?? $eventPackage->package?->name,
|
|
'price' => $eventPackage->purchased_price,
|
|
'purchased_at' => $eventPackage->purchased_at?->toIso8601String(),
|
|
'expires_at' => $eventPackage->gallery_expires_at?->toIso8601String(),
|
|
] : null,
|
|
'limits' => $eventPackage && $limitEvaluator
|
|
? $limitEvaluator->summarizeEventPackage($eventPackage)
|
|
: null,
|
|
'addons' => $eventPackage ? $this->formatAddons($eventPackage) : [],
|
|
];
|
|
}
|
|
|
|
protected function formatAddons(?\App\Models\EventPackage $eventPackage): array
|
|
{
|
|
if (! $eventPackage) {
|
|
return [];
|
|
}
|
|
|
|
$addons = $eventPackage->relationLoaded('addons')
|
|
? $eventPackage->addons
|
|
: $eventPackage->addons()->latest()->take(10)->get();
|
|
|
|
return $addons->map(function ($addon) {
|
|
return [
|
|
'id' => $addon->id,
|
|
'key' => $addon->addon_key,
|
|
'label' => $addon->metadata['label'] ?? null,
|
|
'status' => $addon->status,
|
|
'price_id' => $addon->price_id,
|
|
'transaction_id' => $addon->transaction_id,
|
|
'extra_photos' => (int) $addon->extra_photos,
|
|
'extra_guests' => (int) $addon->extra_guests,
|
|
'extra_gallery_days' => (int) $addon->extra_gallery_days,
|
|
'purchased_at' => $addon->purchased_at?->toIso8601String(),
|
|
'metadata' => Arr::only($addon->metadata ?? [], ['price_eur']),
|
|
];
|
|
})->all();
|
|
}
|
|
}
|