26 lines
526 B
PHP
26 lines
526 B
PHP
<?php
|
|
|
|
namespace App\Integrations\Handlers;
|
|
|
|
use App\Models\Forms\Form;
|
|
|
|
class WebhookIntegration extends AbstractIntegrationHandler
|
|
{
|
|
public static function getValidationRules(?Form $form): array
|
|
{
|
|
return [
|
|
'webhook_url' => 'required|url'
|
|
];
|
|
}
|
|
|
|
protected function getWebhookUrl(): ?string
|
|
{
|
|
return $this->integrationData->webhook_url;
|
|
}
|
|
|
|
protected function shouldRun(): bool
|
|
{
|
|
return !is_null($this->getWebhookUrl()) && parent::shouldRun();
|
|
}
|
|
}
|