74 lines
2.1 KiB
PHP
74 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Packages;
|
|
|
|
use App\Models\EventPackage;
|
|
use App\Notifications\Packages\EventPackagePhotoLimitNotification;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\Facades\Notification;
|
|
|
|
class SendEventPackagePhotoLimitNotification implements ShouldQueue
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithQueue;
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
public function __construct(
|
|
public int $eventPackageId,
|
|
public int $limit,
|
|
) {}
|
|
|
|
public function handle(): void
|
|
{
|
|
$eventPackage = EventPackage::with(['event', 'package', 'event.tenant'])->find($this->eventPackageId);
|
|
|
|
if (! $eventPackage) {
|
|
Log::warning('Package limit job skipped; event package missing', [
|
|
'event_package_id' => $this->eventPackageId,
|
|
]);
|
|
|
|
return;
|
|
}
|
|
|
|
$tenant = $eventPackage->event?->tenant;
|
|
if (! $tenant) {
|
|
return;
|
|
}
|
|
|
|
$preferences = app(\App\Services\Packages\TenantNotificationPreferences::class);
|
|
if (! $preferences->shouldNotify($tenant, 'photo_limits')) {
|
|
return;
|
|
}
|
|
|
|
$emails = collect([
|
|
$tenant->contact_email,
|
|
$tenant->user?->email,
|
|
])->filter(fn ($email) => is_string($email) && filter_var($email, FILTER_VALIDATE_EMAIL))
|
|
->unique();
|
|
|
|
if ($emails->isEmpty()) {
|
|
Log::info('Package limit notification skipped due to missing recipients', [
|
|
'event_package_id' => $eventPackage->id,
|
|
'limit' => $this->limit,
|
|
]);
|
|
|
|
return;
|
|
}
|
|
|
|
foreach ($emails as $email) {
|
|
Notification::route('mail', $email)->notify(
|
|
new EventPackagePhotoLimitNotification(
|
|
$eventPackage,
|
|
$this->limit,
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|