feature #39007 [Notifier] Add notifier for Microsoft Teams (idetox)

This PR was merged into the 5.3-dev branch.

Discussion
----------

[Notifier] Add notifier for Microsoft Teams

| Q             | A
| ------------- | ---
| Branch?       | 5.x
| Bug fix?      | no
| New feature?  | yes
| License       | MIT
| Doc PR        | https://github.com/symfony/symfony-docs/pull/15193
| Recipe PR      | https://github.com/symfony/recipes/pull/929

Add notifier bridge for Teams using Incoming Webhook implementation : see [Incoming Webhook using curl](https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using#post-a-message-to-the-webhook-using-curl)

EDIT by @OskarStark:
I removed the options logic in the first step and will create a follow up PR adding them back to the bridge 

Commits
-------

013d56d489 [Notifier] Add notifier for Microsoft Teams
This commit is contained in:
Nyholm 2021-04-08 10:05:51 +02:00
commit 8bc0a8f784
No known key found for this signature in database
GPG Key ID: D6332DE2B6F8FA38
15 changed files with 407 additions and 0 deletions

View File

@ -125,6 +125,7 @@ use Symfony\Component\Notifier\Bridge\Iqsms\IqsmsTransportFactory;
use Symfony\Component\Notifier\Bridge\LinkedIn\LinkedInTransportFactory; use Symfony\Component\Notifier\Bridge\LinkedIn\LinkedInTransportFactory;
use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory; use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory;
use Symfony\Component\Notifier\Bridge\Mercure\MercureTransportFactory; use Symfony\Component\Notifier\Bridge\Mercure\MercureTransportFactory;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\MicrosoftTeamsTransportFactory;
use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory; use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory;
use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory; use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory;
use Symfony\Component\Notifier\Bridge\Octopush\OctopushTransportFactory; use Symfony\Component\Notifier\Bridge\Octopush\OctopushTransportFactory;
@ -2390,6 +2391,7 @@ class FrameworkExtension extends Extension
MercureTransportFactory::class => 'notifier.transport_factory.mercure', MercureTransportFactory::class => 'notifier.transport_factory.mercure',
GitterTransportFactory::class => 'notifier.transport_factory.gitter', GitterTransportFactory::class => 'notifier.transport_factory.gitter',
ClickatellTransportFactory::class => 'notifier.transport_factory.clickatell', ClickatellTransportFactory::class => 'notifier.transport_factory.clickatell',
MicrosoftTeamsTransportFactory::class => 'notifier.transport_factory.microsoftteams',
]; ];
$parentPackages = ['symfony/framework-bundle', 'symfony/notifier']; $parentPackages = ['symfony/framework-bundle', 'symfony/notifier'];

View File

@ -28,6 +28,7 @@ use Symfony\Component\Notifier\Bridge\LightSms\LightSmsTransportFactory;
use Symfony\Component\Notifier\Bridge\LinkedIn\LinkedInTransportFactory; use Symfony\Component\Notifier\Bridge\LinkedIn\LinkedInTransportFactory;
use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory; use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory;
use Symfony\Component\Notifier\Bridge\Mercure\MercureTransportFactory; use Symfony\Component\Notifier\Bridge\Mercure\MercureTransportFactory;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\MicrosoftTeamsTransportFactory;
use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory; use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory;
use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory; use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory;
use Symfony\Component\Notifier\Bridge\Octopush\OctopushTransportFactory; use Symfony\Component\Notifier\Bridge\Octopush\OctopushTransportFactory;
@ -150,6 +151,10 @@ return static function (ContainerConfigurator $container) {
->parent('notifier.transport_factory.abstract') ->parent('notifier.transport_factory.abstract')
->tag('chatter.transport_factory') ->tag('chatter.transport_factory')
->set('notifier.transport_factory.microsoftteams', MicrosoftTeamsTransportFactory::class)
->parent('notifier.transport_factory.abstract')
->tag('chatter.transport_factory')
->set('notifier.transport_factory.gatewayapi', GatewayApiTransportFactory::class) ->set('notifier.transport_factory.gatewayapi', GatewayApiTransportFactory::class)
->parent('notifier.transport_factory.abstract') ->parent('notifier.transport_factory.abstract')
->tag('texter.transport_factory') ->tag('texter.transport_factory')

View File

@ -0,0 +1,4 @@
/Tests export-ignore
/phpunit.xml.dist export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore

View File

@ -0,0 +1,3 @@
vendor/
composer.lock
phpunit.xml

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
5.3
---
* Add the bridge

View File

@ -0,0 +1,19 @@
Copyright (c) 2021 Fabien Potencier
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@ -0,0 +1,86 @@
<?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\MicrosoftTeams;
use Symfony\Component\Notifier\Exception\TransportException;
use Symfony\Component\Notifier\Exception\UnsupportedMessageTypeException;
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\HttpClientInterface;
/**
* @author Edouard Lescot <edouard.lescot@gmail.com>
* @author Oskar Stark <oskarstark@googlemail.com>
*/
final class MicrosoftTeamsTransport extends AbstractTransport
{
protected const ENDPOINT = 'outlook.office.com';
private $path;
public function __construct(string $path, HttpClientInterface $client = null, EventDispatcherInterface $dispatcher = null)
{
$this->path = $path;
parent::__construct($client, $dispatcher);
}
public function __toString(): string
{
return sprintf('microsoftteams://%s%s', $this->getEndpoint(), $this->path);
}
public function supports(MessageInterface $message): bool
{
return $message instanceof ChatMessage;
}
/**
* @see https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using#post-a-message-to-the-webhook-using-curl
*/
protected function doSend(MessageInterface $message): SentMessage
{
if (!$message instanceof ChatMessage) {
throw new UnsupportedMessageTypeException(__CLASS__, ChatMessage::class, $message);
}
$path = $message->getRecipientId() ?? $this->path;
$endpoint = sprintf('https://%s%s', $this->getEndpoint(), $path);
$response = $this->client->request('POST', $endpoint, [
'json' => [
'title' => $message->getSubject(),
],
]);
$requestId = $response->getHeaders(false)['request-id'][0] ?? null;
if (null === $requestId) {
$originalContent = $message->getSubject();
throw new TransportException(sprintf('Unable to post the Microsoft Teams message: "%s" (request-id not found).', $originalContent), $response);
}
if (200 !== $response->getStatusCode()) {
$errorMessage = $response->getContent(false);
$originalContent = $message->getSubject();
throw new TransportException(sprintf('Unable to post the Microsoft Teams message: "%s" (%s : "%s").', $originalContent, $requestId, $errorMessage), $response);
}
$message = new SentMessage($message, (string) $this);
$message->setMessageId($requestId);
return $message;
}
}

View File

@ -0,0 +1,50 @@
<?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\MicrosoftTeams;
use Symfony\Component\Notifier\Exception\IncompleteDsnException;
use Symfony\Component\Notifier\Exception\UnsupportedSchemeException;
use Symfony\Component\Notifier\Transport\AbstractTransportFactory;
use Symfony\Component\Notifier\Transport\Dsn;
use Symfony\Component\Notifier\Transport\TransportInterface;
/**
* @author Edouard Lescot <edouard.lescot@gmail.com>
* @author Oskar Stark <oskarstark@googlemail.com>
*/
final class MicrosoftTeamsTransportFactory extends AbstractTransportFactory
{
public function create(Dsn $dsn): TransportInterface
{
$scheme = $dsn->getScheme();
if ('microsoftteams' !== $scheme) {
throw new UnsupportedSchemeException($dsn, 'microsoftteams', $this->getSupportedSchemes());
}
$path = $dsn->getPath();
if (null === $path) {
throw new IncompleteDsnException('Path is not set.', $dsn->getOriginalDsn());
}
$host = $dsn->getHost();
$port = $dsn->getPort();
return (new MicrosoftTeamsTransport($path, $this->client, $this->dispatcher))->setHost($host)->setPort($port);
}
protected function getSupportedSchemes(): array
{
return ['microsoftteams'];
}
}

View File

@ -0,0 +1,23 @@
Microsoft Teams Notifier
========================
Provides [Microsoft Teams](https://www.microsoft.com/en/microsoft-365/microsoft-teams/free) integration
through Incoming Webhook for Symfony Notifier.
DSN example
-----------
```
MICROSOFT_TEAMS_DSN=microsoftteams://default/PATH
```
where:
- `PATH` has the following format: `webhook/{uuid}@{uuid}/IncomingWebhook/{id}/{uuid}`
Resources
---------
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
* [Report issues](https://github.com/symfony/symfony/issues) and
[send Pull Requests](https://github.com/symfony/symfony/pulls)
in the [main Symfony repository](https://github.com/symfony/symfony)

View File

@ -0,0 +1,43 @@
<?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\MicrosoftTeams\Tests;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\MicrosoftTeamsTransportFactory;
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
final class MicrosoftTeamsTransportFactoryTest extends TransportFactoryTestCase
{
public function createFactory(): TransportFactoryInterface
{
return new MicrosoftTeamsTransportFactory();
}
public function createProvider(): iterable
{
yield [
'microsoftteams://host/webhook',
'microsoftteams://host/webhook',
];
}
public function supportsProvider(): iterable
{
yield [true, 'microsoftteams://host/webhook'];
yield [false, 'somethingElse://host/webhook'];
}
public function unsupportedSchemeProvider(): iterable
{
yield ['somethingElse://host/webhook'];
}
}

View File

@ -0,0 +1,94 @@
<?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\MicrosoftTeams\Tests;
use Symfony\Component\HttpClient\MockHttpClient;
use Symfony\Component\HttpClient\Response\MockResponse;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\MicrosoftTeamsTransport;
use Symfony\Component\Notifier\Exception\TransportException;
use Symfony\Component\Notifier\Message\ChatMessage;
use Symfony\Component\Notifier\Message\MessageInterface;
use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Test\TransportTestCase;
use Symfony\Component\Notifier\Transport\TransportInterface;
use Symfony\Contracts\HttpClient\HttpClientInterface;
use Symfony\Contracts\HttpClient\ResponseInterface;
final class MicrosoftTeamsTransportTest extends TransportTestCase
{
/**
* @return MicrosoftTeamsTransport
*/
public function createTransport(?HttpClientInterface $client = null): TransportInterface
{
return (new MicrosoftTeamsTransport('/testPath', $client ?: $this->createMock(HttpClientInterface::class)))->setHost('host.test');
}
public function toStringProvider(): iterable
{
yield ['microsoftteams://host.test/testPath', $this->createTransport()];
}
public function supportedMessagesProvider(): iterable
{
yield [new ChatMessage('Hello!')];
}
public function unsupportedMessagesProvider(): iterable
{
yield [new SmsMessage('0611223344', 'Hello!')];
yield [$this->createMock(MessageInterface::class)];
}
public function testSendWithErrorResponseThrows()
{
$client = new MockHttpClient(function (string $method, string $url, array $options = []): ResponseInterface {
return new MockResponse('testErrorMessage', ['response_headers' => ['request-id' => ['testRequestId']], 'http_code' => 400]);
});
$transport = $this->createTransport($client);
$this->expectException(TransportException::class);
$this->expectExceptionMessageMatches('/testErrorMessage/');
$transport->send(new ChatMessage('testMessage'));
}
public function testSendWithErrorRequestIdThrows()
{
$client = new MockHttpClient(new MockResponse());
$transport = $this->createTransport($client);
$this->expectException(TransportException::class);
$this->expectExceptionMessageMatches('/request-id not found/');
$transport->send(new ChatMessage('testMessage'));
}
public function testSend()
{
$message = 'testMessage';
$expectedBody = json_encode(['title' => $message]);
$client = new MockHttpClient(function (string $method, string $url, array $options = []) use ($expectedBody): ResponseInterface {
$this->assertJsonStringEqualsJsonString($expectedBody, $options['body']);
return new MockResponse('1', ['response_headers' => ['request-id' => ['testRequestId']], 'http_code' => 200]);
});
$transport = $this->createTransport($client);
$transport->send(new ChatMessage($message));
}
}

View File

@ -0,0 +1,34 @@
{
"name": "symfony/microsoft-teams-notifier",
"type": "symfony-bridge",
"description": "Symfony Microsoft Teams Notifier Bridge",
"keywords": ["chat", "microsoft-teams", "notifier"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Edouard Lescot",
"email": "edouard.lescot@gmail.com"
},
{
"name": "Oskar Stark",
"email": "oskarstark@googlemail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=7.2.5",
"symfony/http-client": "^4.4|^5.2",
"symfony/notifier": "^5.3"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\MicrosoftTeams\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev"
}

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.2/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
failOnRisky="true"
failOnWarning="true"
>
<php>
<ini name="error_reporting" value="-1" />
</php>
<testsuites>
<testsuite name="Symfony Microsoft Teams Notifier Bridge Test Suite">
<directory>./Tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>

View File

@ -128,6 +128,10 @@ class UnsupportedSchemeException extends LogicException
'class' => Bridge\LightSms\LightSmsTransportFactory::class, 'class' => Bridge\LightSms\LightSmsTransportFactory::class,
'package' => 'symfony/lightsms-notifier', 'package' => 'symfony/lightsms-notifier',
], ],
'microsoftteams' => [
'class' => Bridge\MicrosoftTeams\MicrosoftTeamsTransportFactory::class,
'package' => 'symfony/microsoft-teams-notifier',
],
]; ];
/** /**

View File

@ -23,6 +23,7 @@ use Symfony\Component\Notifier\Bridge\Infobip\InfobipTransportFactory;
use Symfony\Component\Notifier\Bridge\Iqsms\IqsmsTransportFactory; use Symfony\Component\Notifier\Bridge\Iqsms\IqsmsTransportFactory;
use Symfony\Component\Notifier\Bridge\LightSms\LightSmsTransportFactory; use Symfony\Component\Notifier\Bridge\LightSms\LightSmsTransportFactory;
use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory; use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\MicrosoftTeamsTransport;
use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory; use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory;
use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory; use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory;
use Symfony\Component\Notifier\Bridge\Octopush\OctopushTransportFactory; use Symfony\Component\Notifier\Bridge\Octopush\OctopushTransportFactory;
@ -76,6 +77,7 @@ class Transport
GitterTransportFactory::class, GitterTransportFactory::class,
ClickatellTransportFactory::class, ClickatellTransportFactory::class,
LightSmsTransportFactory::class, LightSmsTransportFactory::class,
MicrosoftTeamsTransport::class,
]; ];
private $factories; private $factories;