mirror of
https://github.com/pelican-dev/panel.git
synced 2025-08-03 14:32:14 +02:00

Co-authored-by: notCharles <charles@pelican.dev> Co-authored-by: Lance Pioch <lancepioch@gmail.com> Co-authored-by: Boy132 <mail@boy132.de> Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com>
76 lines
2.4 KiB
PHP
76 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\WebhookConfiguration;
|
|
use Exception;
|
|
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\Carbon;
|
|
use Illuminate\Support\Facades\Http;
|
|
use App\Enums\WebhookType;
|
|
|
|
class ProcessWebhook implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/**
|
|
* @param array<mixed> $data
|
|
*/
|
|
public function __construct(
|
|
private WebhookConfiguration $webhookConfiguration,
|
|
private string $eventName,
|
|
private array $data
|
|
) {}
|
|
|
|
public function handle(): void
|
|
{
|
|
$data = $this->data[0];
|
|
|
|
if ($this->webhookConfiguration->type === WebhookType::Discord) {
|
|
$data = array_merge(
|
|
is_array($data) ? $data : json_decode($data, true),
|
|
['event' => $this->webhookConfiguration->transformClassName($this->eventName)]
|
|
);
|
|
|
|
$payload = json_encode($this->webhookConfiguration->payload);
|
|
$tmp = $this->webhookConfiguration->replaceVars($data, $payload);
|
|
$data = json_decode($tmp, true);
|
|
|
|
$embeds = data_get($data, 'embeds');
|
|
if ($embeds) {
|
|
foreach ($embeds as &$embed) {
|
|
if (data_get($embed, 'has_timestamp')) {
|
|
$embed['timestamp'] = Carbon::now();
|
|
unset($embed['has_timestamp']);
|
|
}
|
|
}
|
|
$data['embeds'] = $embeds;
|
|
}
|
|
}
|
|
|
|
try {
|
|
$headers = [];
|
|
if ($this->webhookConfiguration->type === WebhookType::Regular && $customHeaders = $this->webhookConfiguration->headers) {
|
|
$headers = array_merge(['X-Webhook-Event', $this->eventName], $customHeaders);
|
|
}
|
|
|
|
Http::withHeaders($headers)->post($this->webhookConfiguration->endpoint, $data)->throw();
|
|
$successful = now();
|
|
} catch (Exception $exception) {
|
|
report($exception->getMessage());
|
|
$successful = null;
|
|
}
|
|
|
|
$this->webhookConfiguration->webhooks()->create([
|
|
'payload' => $data,
|
|
'successful_at' => $successful,
|
|
'event' => $this->eventName,
|
|
'endpoint' => $this->webhookConfiguration->endpoint,
|
|
]);
|
|
}
|
|
}
|