mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 07:34:45 +02:00

* update composer.lock * run pint * fix phpstan * update migrations (sqlite `dropForeign`) * fix migrations * Reset these back for now * Alphabetize the rules * run `php artisan filament:upgrade` --------- Co-authored-by: Lance Pioch <git@lance.sh>
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\WebhookConfiguration;
|
|
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\Http;
|
|
|
|
class ProcessWebhook implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public function __construct(
|
|
private WebhookConfiguration $webhookConfiguration,
|
|
private string $eventName,
|
|
private array $data
|
|
) {}
|
|
|
|
public function handle(): void
|
|
{
|
|
try {
|
|
Http::post($this->webhookConfiguration->endpoint, $this->data)->throw();
|
|
$successful = now();
|
|
} catch (\Exception) {
|
|
$successful = null;
|
|
}
|
|
|
|
$this->webhookConfiguration->webhooks()->create([
|
|
'payload' => $this->data,
|
|
'successful_at' => $successful,
|
|
'event' => $this->eventName,
|
|
'endpoint' => $this->webhookConfiguration->endpoint,
|
|
]);
|
|
}
|
|
}
|