/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php
133 строки
5 KB
Raphaël Geffroy
[Notifier] unsupported options exception
18 дек 2024, 11:31
18 дек 2024, 11:31
27dfb8c
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Notifier\Bridge\GoogleChat; use Symfony\Component\HttpClient\Exception\JsonException; use Symfony\Component\Notifier\Exception\TransportException; use Symfony\Component\Notifier\Exception\UnsupportedMessageTypeException; use Symfony\Component\Notifier\Exception\UnsupportedOptionsException; use Symfony\Component\Notifier\Message\ChatMessage; use Symfony\Component\Notifier\Message\MessageInterface; use Symfony\Component\Notifier\Message\SentMessage; use Symfony\Component\Notifier\Transport\AbstractTransport; use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface; use Symfony\Contracts\HttpClient\HttpClientInterface; /** * @author Jérôme Tamarelle <jerome@tamarelle.net> */ final class GoogleChatTransport extends AbstractTransport { protected const HOST = 'chat.googleapis.com'; /** * @param string $space The space name of the webhook url "/v1/spaces/<space>/messages" * @param string $accessKey The "key" parameter of the webhook url * @param string $accessToken The "token" parameter of the webhook url * @param string|null $threadKey Opaque thread identifier string that can be specified to group messages into a single thread. * If this is the first message with a given thread identifier, a new thread is created. * Subsequent messages with the same thread identifier will be posted into the same thread. * {@see https://developers.google.com/hangouts/chat/reference/rest/v1/spaces.messages/create#query-parameters} */ public function __construct( private string $space, #[\SensitiveParameter] private string $accessKey, #[\SensitiveParameter] private string $accessToken, private ?string $threadKey = null, ?HttpClientInterface $client = null, ?EventDispatcherInterface $dispatcher = null, ) { parent::__construct($client, $dispatcher); } public function __toString(): string { return \sprintf('googlechat://%s/%s%s', $this->getEndpoint(), $this->space, $this->threadKey ? '?thread_key='.urlencode($this->threadKey) : '' ); } public function supports(MessageInterface $message): bool { return $message instanceof ChatMessage && (null === $message->getOptions() || $message->getOptions() instanceof GoogleChatOptions); } /** * @see https://developers.google.com/hangouts/chat/how-tos/webhooks */ protected function doSend(MessageInterface $message): SentMessage { if (!$message instanceof ChatMessage) { throw new UnsupportedMessageTypeException(__CLASS__, ChatMessage::class, $message); } if (($options = $message->getOptions()) && !$options instanceof GoogleChatOptions) { throw new UnsupportedOptionsException(__CLASS__, GoogleChatOptions::class, $options); } if (!$options) { if ($notification = $message->getNotification()) { $options = GoogleChatOptions::fromNotification($notification); } else { $options = GoogleChatOptions::fromMessage($message); } } $threadKey = $options->getThreadKey() ?: $this->threadKey; $url = \sprintf('https://%s/v1/spaces/%s/messages?key=%s&token=%s%s', $this->getEndpoint(), $this->space, urlencode($this->accessKey), urlencode($this->accessToken), $threadKey ? '&messageReplyOption=REPLY_MESSAGE_FALLBACK_TO_NEW_THREAD' : '' ); $body = array_filter($options->toArray()); if ($threadKey) { $body['thread']['threadKey'] = $threadKey; } $response = $this->client->request('POST', $url, [ 'json' => $body, ]); try { $statusCode = $response->getStatusCode(); } catch (TransportExceptionInterface $e) { throw new TransportException('Could not reach the remote GoogleChat server.', $response, 0, $e); } try { $result = $response->toArray(false); } catch (JsonException $jsonException) { throw new TransportException('Unable to post the Google Chat message: Invalid response.', $response, $statusCode, $jsonException); } if (200 !== $statusCode) { throw new TransportException(\sprintf('Unable to post the Google Chat message: "%s".', $result['error']['message'] ?? $response->getContent(false)), $response, $result['error']['code'] ?? $statusCode); } if (!\array_key_exists('name', $result)) { throw new TransportException(\sprintf('Unable to post the Google Chat message: "%s".', $response->getContent(false)), $response); } $sentMessage = new SentMessage($message, (string) $this); $sentMessage->setMessageId($result['name']); return $sentMessage; } }