mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Updated NotifyVisitToMercure to send both an update for all short URLs and one specific short URL
This commit is contained in:
@@ -44,6 +44,7 @@ class NotifyVisitToMercure
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
($this->publisher)($this->updatesGenerator->newShortUrlVisitUpdate($visit));
|
||||||
($this->publisher)($this->updatesGenerator->newVisitUpdate($visit));
|
($this->publisher)($this->updatesGenerator->newVisitUpdate($visit));
|
||||||
} catch (Throwable $e) {
|
} catch (Throwable $e) {
|
||||||
$this->logger->debug('Error while trying to notify mercure hub with new visit. {e}', [
|
$this->logger->debug('Error while trying to notify mercure hub with new visit. {e}', [
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ use Shlinkio\Shlink\Core\Transformer\ShortUrlDataTransformer;
|
|||||||
use Symfony\Component\Mercure\Update;
|
use Symfony\Component\Mercure\Update;
|
||||||
|
|
||||||
use function json_encode;
|
use function json_encode;
|
||||||
|
use function sprintf;
|
||||||
|
|
||||||
use const JSON_THROW_ON_ERROR;
|
use const JSON_THROW_ON_ERROR;
|
||||||
|
|
||||||
@@ -25,9 +26,25 @@ final class MercureUpdatesGenerator implements MercureUpdatesGeneratorInterface
|
|||||||
|
|
||||||
public function newVisitUpdate(Visit $visit): Update
|
public function newVisitUpdate(Visit $visit): Update
|
||||||
{
|
{
|
||||||
return new Update(self::NEW_VISIT_TOPIC, json_encode([
|
return new Update(self::NEW_VISIT_TOPIC, $this->serialize([
|
||||||
'shortUrl' => $this->transformer->transform($visit->getShortUrl()),
|
'shortUrl' => $this->transformer->transform($visit->getShortUrl()),
|
||||||
'visit' => $visit->jsonSerialize(),
|
'visit' => $visit,
|
||||||
], JSON_THROW_ON_ERROR));
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function newShortUrlVisitUpdate(Visit $visit): Update
|
||||||
|
{
|
||||||
|
$shortUrl = $visit->getShortUrl();
|
||||||
|
$topic = sprintf('%s/%s', self::NEW_VISIT_TOPIC, $shortUrl->getShortCode());
|
||||||
|
|
||||||
|
return new Update($topic, $this->serialize([
|
||||||
|
'shortUrl' => $this->transformer->transform($visit->getShortUrl()),
|
||||||
|
'visit' => $visit,
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
private function serialize(array $data): string
|
||||||
|
{
|
||||||
|
return json_encode($data, JSON_THROW_ON_ERROR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,4 +10,6 @@ use Symfony\Component\Mercure\Update;
|
|||||||
interface MercureUpdatesGeneratorInterface
|
interface MercureUpdatesGeneratorInterface
|
||||||
{
|
{
|
||||||
public function newVisitUpdate(Visit $visit): Update;
|
public function newVisitUpdate(Visit $visit): Update;
|
||||||
|
|
||||||
|
public function newShortUrlVisitUpdate(Visit $visit): Update;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ class NotifyVisitToMercureTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** @test */
|
/** @test */
|
||||||
public function notificationIsNotSentWhenVisitCannotBeFound(): void
|
public function notificationsAreNotSentWhenVisitCannotBeFound(): void
|
||||||
{
|
{
|
||||||
$visitId = '123';
|
$visitId = '123';
|
||||||
$findVisit = $this->em->find(Visit::class, $visitId)->willReturn(null);
|
$findVisit = $this->em->find(Visit::class, $visitId)->willReturn(null);
|
||||||
@@ -52,6 +52,9 @@ class NotifyVisitToMercureTest extends TestCase
|
|||||||
['visitId' => $visitId],
|
['visitId' => $visitId],
|
||||||
);
|
);
|
||||||
$logDebug = $this->logger->debug(Argument::cetera());
|
$logDebug = $this->logger->debug(Argument::cetera());
|
||||||
|
$buildNewShortUrlVisitUpdate = $this->updatesGenerator->newShortUrlVisitUpdate(
|
||||||
|
Argument::type(Visit::class),
|
||||||
|
)->willReturn(new Update('', ''));
|
||||||
$buildNewVisitUpdate = $this->updatesGenerator->newVisitUpdate(Argument::type(Visit::class))->willReturn(
|
$buildNewVisitUpdate = $this->updatesGenerator->newVisitUpdate(Argument::type(Visit::class))->willReturn(
|
||||||
new Update('', ''),
|
new Update('', ''),
|
||||||
);
|
);
|
||||||
@@ -62,12 +65,13 @@ class NotifyVisitToMercureTest extends TestCase
|
|||||||
$findVisit->shouldHaveBeenCalledOnce();
|
$findVisit->shouldHaveBeenCalledOnce();
|
||||||
$logWarning->shouldHaveBeenCalledOnce();
|
$logWarning->shouldHaveBeenCalledOnce();
|
||||||
$logDebug->shouldNotHaveBeenCalled();
|
$logDebug->shouldNotHaveBeenCalled();
|
||||||
|
$buildNewShortUrlVisitUpdate->shouldNotHaveBeenCalled();
|
||||||
$buildNewVisitUpdate->shouldNotHaveBeenCalled();
|
$buildNewVisitUpdate->shouldNotHaveBeenCalled();
|
||||||
$publish->shouldNotHaveBeenCalled();
|
$publish->shouldNotHaveBeenCalled();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @test */
|
/** @test */
|
||||||
public function notificationIsSentWhenVisitIsFound(): void
|
public function notificationsAreSentWhenVisitIsFound(): void
|
||||||
{
|
{
|
||||||
$visitId = '123';
|
$visitId = '123';
|
||||||
$visit = new Visit(new ShortUrl(''), Visitor::emptyInstance());
|
$visit = new Visit(new ShortUrl(''), Visitor::emptyInstance());
|
||||||
@@ -76,6 +80,7 @@ class NotifyVisitToMercureTest extends TestCase
|
|||||||
$findVisit = $this->em->find(Visit::class, $visitId)->willReturn($visit);
|
$findVisit = $this->em->find(Visit::class, $visitId)->willReturn($visit);
|
||||||
$logWarning = $this->logger->warning(Argument::cetera());
|
$logWarning = $this->logger->warning(Argument::cetera());
|
||||||
$logDebug = $this->logger->debug(Argument::cetera());
|
$logDebug = $this->logger->debug(Argument::cetera());
|
||||||
|
$buildNewShortUrlVisitUpdate = $this->updatesGenerator->newShortUrlVisitUpdate($visit)->willReturn($update);
|
||||||
$buildNewVisitUpdate = $this->updatesGenerator->newVisitUpdate($visit)->willReturn($update);
|
$buildNewVisitUpdate = $this->updatesGenerator->newVisitUpdate($visit)->willReturn($update);
|
||||||
$publish = $this->publisher->__invoke($update);
|
$publish = $this->publisher->__invoke($update);
|
||||||
|
|
||||||
@@ -84,8 +89,9 @@ class NotifyVisitToMercureTest extends TestCase
|
|||||||
$findVisit->shouldHaveBeenCalledOnce();
|
$findVisit->shouldHaveBeenCalledOnce();
|
||||||
$logWarning->shouldNotHaveBeenCalled();
|
$logWarning->shouldNotHaveBeenCalled();
|
||||||
$logDebug->shouldNotHaveBeenCalled();
|
$logDebug->shouldNotHaveBeenCalled();
|
||||||
|
$buildNewShortUrlVisitUpdate->shouldHaveBeenCalledOnce();
|
||||||
$buildNewVisitUpdate->shouldHaveBeenCalledOnce();
|
$buildNewVisitUpdate->shouldHaveBeenCalledOnce();
|
||||||
$publish->shouldHaveBeenCalledOnce();
|
$publish->shouldHaveBeenCalledTimes(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @test */
|
/** @test */
|
||||||
@@ -101,6 +107,7 @@ class NotifyVisitToMercureTest extends TestCase
|
|||||||
$logDebug = $this->logger->debug('Error while trying to notify mercure hub with new visit. {e}', [
|
$logDebug = $this->logger->debug('Error while trying to notify mercure hub with new visit. {e}', [
|
||||||
'e' => $e,
|
'e' => $e,
|
||||||
]);
|
]);
|
||||||
|
$buildNewShortUrlVisitUpdate = $this->updatesGenerator->newShortUrlVisitUpdate($visit)->willReturn($update);
|
||||||
$buildNewVisitUpdate = $this->updatesGenerator->newVisitUpdate($visit)->willReturn($update);
|
$buildNewVisitUpdate = $this->updatesGenerator->newVisitUpdate($visit)->willReturn($update);
|
||||||
$publish = $this->publisher->__invoke($update)->willThrow($e);
|
$publish = $this->publisher->__invoke($update)->willThrow($e);
|
||||||
|
|
||||||
@@ -109,7 +116,8 @@ class NotifyVisitToMercureTest extends TestCase
|
|||||||
$findVisit->shouldHaveBeenCalledOnce();
|
$findVisit->shouldHaveBeenCalledOnce();
|
||||||
$logWarning->shouldNotHaveBeenCalled();
|
$logWarning->shouldNotHaveBeenCalled();
|
||||||
$logDebug->shouldHaveBeenCalledOnce();
|
$logDebug->shouldHaveBeenCalledOnce();
|
||||||
$buildNewVisitUpdate->shouldHaveBeenCalledOnce();
|
$buildNewShortUrlVisitUpdate->shouldHaveBeenCalledOnce();
|
||||||
|
$buildNewVisitUpdate->shouldNotHaveBeenCalled();
|
||||||
$publish->shouldHaveBeenCalledOnce();
|
$publish->shouldHaveBeenCalledOnce();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ use PHPUnit\Framework\TestCase;
|
|||||||
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
||||||
use Shlinkio\Shlink\Core\Entity\Visit;
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
||||||
use Shlinkio\Shlink\Core\Mercure\MercureUpdatesGenerator;
|
use Shlinkio\Shlink\Core\Mercure\MercureUpdatesGenerator;
|
||||||
|
use Shlinkio\Shlink\Core\Model\ShortUrlMeta;
|
||||||
use Shlinkio\Shlink\Core\Model\Visitor;
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
||||||
|
|
||||||
use function Shlinkio\Shlink\Common\json_decode;
|
use function Shlinkio\Shlink\Common\json_decode;
|
||||||
@@ -21,15 +22,18 @@ class MercureUpdatesGeneratorTest extends TestCase
|
|||||||
$this->generator = new MercureUpdatesGenerator([]);
|
$this->generator = new MercureUpdatesGenerator([]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @test */
|
/**
|
||||||
public function visitIsProperlySerializedIntoUpdate(): void
|
* @test
|
||||||
|
* @dataProvider provideMethod
|
||||||
|
*/
|
||||||
|
public function visitIsProperlySerializedIntoUpdate(string $method, string $expectedTopic): void
|
||||||
{
|
{
|
||||||
$shortUrl = new ShortUrl('');
|
$shortUrl = new ShortUrl('', ShortUrlMeta::fromRawData(['customSlug' => 'foo']));
|
||||||
$visit = new Visit($shortUrl, Visitor::emptyInstance());
|
$visit = new Visit($shortUrl, Visitor::emptyInstance());
|
||||||
|
|
||||||
$update = $this->generator->newVisitUpdate($visit);
|
$update = $this->generator->{$method}($visit);
|
||||||
|
|
||||||
$this->assertEquals(['https://shlink.io/new_visit'], $update->getTopics());
|
$this->assertEquals([$expectedTopic], $update->getTopics());
|
||||||
$this->assertEquals([
|
$this->assertEquals([
|
||||||
'shortUrl' => [
|
'shortUrl' => [
|
||||||
'shortCode' => $shortUrl->getShortCode(),
|
'shortCode' => $shortUrl->getShortCode(),
|
||||||
@@ -53,4 +57,10 @@ class MercureUpdatesGeneratorTest extends TestCase
|
|||||||
],
|
],
|
||||||
], json_decode($update->getData()));
|
], json_decode($update->getData()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function provideMethod(): iterable
|
||||||
|
{
|
||||||
|
yield 'newVisitUpdate' => ['newVisitUpdate', 'https://shlink.io/new_visit'];
|
||||||
|
yield 'newShortUrlVisitUpdate' => ['newShortUrlVisitUpdate', 'https://shlink.io/new_visit/foo'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user