AzuraCast/src/Webhook/Connector/Generic.php

46 lines
1.5 KiB
PHP

<?php
namespace App\Webhook\Connector;
use App\Entity;
use App\Event\SendWebhooks;
use GuzzleHttp\Exception\TransferException;
use Monolog\Logger;
class Generic extends AbstractConnector
{
public function dispatch(SendWebhooks $event, array $config): void
{
$webhook_url = $this->_getValidUrl($config['webhook_url'] ?? '');
if (empty($webhook_url)) {
$this->logger->error('Webhook '.$this->_getName().' is missing necessary configuration. Skipping...');
return;
}
try {
$request_options = [
'headers' => [
'Content-Type' => 'application/json',
],
'json' => $event->getNowPlaying(),
];
if (!empty($config['basic_auth_username']) && !empty($config['basic_auth_password'])) {
$request_options['auth'] = [
$config['basic_auth_username'],
$config['basic_auth_password']
];
}
$response = $this->http_client->request('POST', $webhook_url, $request_options);
$this->logger->debug(
sprintf('Generic webhook returned code %d', $response->getStatusCode()),
['response_body' => $response->getBody()->getContents()]
);
} catch(TransferException $e) {
$this->logger->error(sprintf('Error from generic webhook (%d): %s', $e->getCode(), $e->getMessage()));
}
}
}