Skip to content

[Turbo] Pass EventSource options to turbo_stream_listen #2447

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Turbo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 2.24.0

- Add Twig Extensions for `meta` tags
- Add support for authentication to the EventSource via `turbo_stream_listen`

## 2.22.0

Expand Down
2 changes: 2 additions & 0 deletions src/Turbo/assets/dist/turbo_stream_controller.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ export default class extends Controller {
topic: StringConstructor;
topics: ArrayConstructor;
hub: StringConstructor;
withCredentials: BooleanConstructor;
};
es: EventSource | undefined;
url: string | undefined;
readonly topicValue: string;
readonly topicsValue: string[];
readonly withCredentialsValue: boolean;
readonly hubValue: string;
readonly hasHubValue: boolean;
readonly hasTopicValue: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/Turbo/assets/dist/turbo_stream_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class default_1 extends Controller {
}
connect() {
if (this.url) {
this.es = new EventSource(this.url);
this.es = new EventSource(this.url, { withCredentials: this.withCredentialsValue });
connectStreamSource(this.es);
}
}
Expand All @@ -38,6 +38,7 @@ default_1.values = {
topic: String,
topics: Array,
hub: String,
withCredentials: Boolean,
};

export { default_1 as default };
4 changes: 3 additions & 1 deletion src/Turbo/assets/src/turbo_stream_controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ export default class extends Controller {
topic: String,
topics: Array,
hub: String,
withCredentials: Boolean,
};
es: EventSource | undefined;
url: string | undefined;

declare readonly topicValue: string;
declare readonly topicsValue: string[];
declare readonly withCredentialsValue: boolean;
declare readonly hubValue: string;
declare readonly hasHubValue: boolean;
declare readonly hasTopicValue: boolean;
Expand All @@ -50,7 +52,7 @@ export default class extends Controller {

connect() {
if (this.url) {
this.es = new EventSource(this.url);
this.es = new EventSource(this.url, { withCredentials: this.withCredentialsValue });
connectStreamSource(this.es);
}
}
Expand Down
9 changes: 8 additions & 1 deletion src/Turbo/config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use Symfony\UX\Turbo\Broadcaster\TwigBroadcaster;
use Symfony\UX\Turbo\Doctrine\BroadcastListener;
use Symfony\UX\Turbo\Request\RequestListener;
use Symfony\UX\Turbo\Twig\TurboRuntime;
use Symfony\UX\Turbo\Twig\TwigExtension;

/*
Expand Down Expand Up @@ -47,9 +48,15 @@
->decorate('turbo.broadcaster.imux')

->set('turbo.twig.extension', TwigExtension::class)
->args([tagged_locator('turbo.renderer.stream_listen', 'transport'), abstract_arg('default')])
->tag('twig.extension')

->set('turbo.twig.runtime', TurboRuntime::class)
->args([
tagged_locator('turbo.renderer.stream_listen', 'transport'),
abstract_arg('default_transport'),
])
->tag('twig.runtime')

->set('turbo.doctrine.event_listener', BroadcastListener::class)
->args([
service('turbo.broadcaster.imux'),
Expand Down
3 changes: 3 additions & 0 deletions src/Turbo/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,9 @@ Let's create our chat::
</turbo-frame>
{% endblock %}

If you're using a private hub, you can add ``{ withCredentials: true }``
as ``turbo_stream_listen()`` third argument to authenticate with the hub

.. code-block:: html+twig

{# chat/message.stream.html.twig #}
Expand Down
25 changes: 22 additions & 3 deletions src/Turbo/src/Bridge/Mercure/TurboStreamListenRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,28 @@
namespace Symfony\UX\Turbo\Bridge\Mercure;

use Symfony\Component\Mercure\HubInterface;
use Symfony\Component\Mercure\Twig\MercureExtension;
use Symfony\UX\StimulusBundle\Helper\StimulusHelper;
use Symfony\UX\Turbo\Broadcaster\IdAccessor;
use Symfony\UX\Turbo\Twig\TurboStreamListenRendererInterface;
use Symfony\UX\Turbo\Twig\TurboStreamListenRendererWithOptionsInterface;
use Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension;
use Twig\Environment;
use Twig\Error\RuntimeError;

/**
* Renders the attributes to load the "mercure-turbo-stream" controller.
*
* @author Kévin Dunglas <kevin@dunglas.fr>
*/
final class TurboStreamListenRenderer implements TurboStreamListenRendererInterface
final class TurboStreamListenRenderer implements TurboStreamListenRendererWithOptionsInterface
{
private StimulusHelper $stimulusHelper;

public function __construct(
private HubInterface $hub,
StimulusHelper|StimulusTwigExtension $stimulus,
private IdAccessor $idAccessor,
private Environment $twig,
) {
if ($stimulus instanceof StimulusTwigExtension) {
trigger_deprecation('symfony/ux-turbo', '2.9', 'Passing an instance of "%s" as second argument of "%s" is deprecated, pass an instance of "%s" instead.', StimulusTwigExtension::class, __CLASS__, StimulusHelper::class);
Expand All @@ -42,8 +45,12 @@ public function __construct(
$this->stimulusHelper = $stimulus;
}

public function renderTurboStreamListen(Environment $env, $topic): string
public function renderTurboStreamListen(Environment $env, $topic /* array $eventSourceOptions = [] */): string
{
if (\func_num_args() > 2) {
$eventSourceOptions = func_get_arg(2);
}

$topics = $topic instanceof TopicSet
? array_map($this->resolveTopic(...), $topic->getTopics())
: [$this->resolveTopic($topic)];
Expand All @@ -55,6 +62,18 @@ public function renderTurboStreamListen(Environment $env, $topic): string
$controllerAttributes['topic'] = current($topics);
}

if (isset($eventSourceOptions)) {
try {
$mercure = $this->twig->getExtension(MercureExtension::class);
$mercure->mercure($topics, $eventSourceOptions);

if (isset($eventSourceOptions['withCredentials'])) {
$controllerAttributes['withCredentials'] = $eventSourceOptions['withCredentials'];
}
} catch (RuntimeError $e) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be thrown by $this->twig->getExtension,
Should I remove it anyway?

}
}

$stimulusAttributes = $this->stimulusHelper->createStimulusAttributes();
$stimulusAttributes->addController(
'symfony/ux-turbo/mercure-turbo-stream',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?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\UX\Turbo\DependencyInjection\Compiler;

use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\UX\Turbo\Bridge\Mercure\Broadcaster;
use Symfony\UX\Turbo\Bridge\Mercure\TurboStreamListenRenderer;

/**
* This compiler pass ensures that TurboStreamListenRenderer
* and Broadcast are registered per Mercure hub.
*
* @author Pierre Ambroise<pierre27.ambroise@gmail.com>
*/
final class RegisterMercureHubsPass implements CompilerPassInterface
{
public function process(ContainerBuilder $container)
{
foreach ($container->findTaggedServiceIds('mercure.hub') as $hubId => $tags) {
$name = str_replace('mercure.hub.', '', $hubId);

$container->register("turbo.mercure.$name.renderer", TurboStreamListenRenderer::class)
->addArgument(new Reference($hubId))
->addArgument(new Reference('turbo.mercure.stimulus_helper'))
->addArgument(new Reference('turbo.id_accessor'))
->addArgument(new Reference('twig'))
->addTag('turbo.renderer.stream_listen', ['transport' => $name]);

foreach ($tags as $tag) {
if (isset($tag['default']) && $tag['default'] && 'default' !== $name) {
$container->getDefinition("turbo.mercure.$name.renderer")
->addTag('turbo.renderer.stream_listen', ['transport' => 'default']);
}
}

$container->register("turbo.mercure.$name.broadcaster", Broadcaster::class)
->addArgument($name)
->addArgument(new Reference($hubId))
->addTag('turbo.broadcaster');
}
}
}
2 changes: 1 addition & 1 deletion src/Turbo/src/DependencyInjection/TurboExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function load(array $configs, ContainerBuilder $container): void

$loader = (new PhpFileLoader($container, new FileLocator(\dirname(__DIR__).'/../config')));
$loader->load('services.php');
$container->getDefinition('turbo.twig.extension')->replaceArgument(1, $config['default_transport']);
$container->getDefinition('turbo.twig.runtime')->replaceArgument(1, $config['default_transport']);

$this->registerTwig($config, $container);
$this->registerBroadcast($config, $container, $loader);
Expand Down
3 changes: 3 additions & 0 deletions src/Turbo/src/TurboBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\UX\Turbo\DependencyInjection\Compiler\RegisterMercureHubsPass;

/**
* @author Kévin Dunglas <kevin@dunglas.fr>
Expand All @@ -28,6 +29,8 @@ public function build(ContainerBuilder $container): void
{
parent::build($container);

$container->addCompilerPass(new RegisterMercureHubsPass());

$container->addCompilerPass(new class implements CompilerPassInterface {
public function process(ContainerBuilder $container): void
{
Expand Down
55 changes: 55 additions & 0 deletions src/Turbo/src/Twig/TurboRuntime.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?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\UX\Turbo\Twig;

use Psr\Container\ContainerInterface;
use Symfony\UX\Turbo\Bridge\Mercure\TopicSet;
use Twig\Environment;
use Twig\Extension\RuntimeExtensionInterface;

/**
* @author Kévin Dunglas <kevin@dunglas.fr>
* @author Pierre Ambroise <pierre27.ambroise@gmail.com>
*
* @internal
*/
final class TurboRuntime implements RuntimeExtensionInterface
{
public function __construct(
private ContainerInterface $turboStreamListenRenderers,
private readonly string $defaultTransport,
) {
}

/**
* @param object|string|array<object|string> $topic
* @param array<string, mixed> $options
*/
public function renderTurboStreamListen(Environment $env, $topic, ?string $transport = null, array $options = []): string
{
$options['transport'] = $transport ??= $this->defaultTransport;

if (!$this->turboStreamListenRenderers->has($transport)) {
throw new \InvalidArgumentException(\sprintf('The Turbo stream transport "%s" does not exist.', $transport));
}

if (\is_array($topic)) {
$topic = new TopicSet($topic);
}

$renderer = $this->turboStreamListenRenderers->get($transport);

return $renderer instanceof TurboStreamListenRendererWithOptionsInterface
? $renderer->renderTurboStreamListen($env, $topic, $options) // @phpstan-ignore-line
: $renderer->renderTurboStreamListen($env, $topic);
}
}
2 changes: 1 addition & 1 deletion src/Turbo/src/Twig/TurboStreamListenRendererInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ interface TurboStreamListenRendererInterface
/**
* @param string|object $topic
*/
public function renderTurboStreamListen(Environment $env, $topic): string;
public function renderTurboStreamListen(Environment $env, $topic /* , array $eventSourceOptions = [] */): string;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?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\UX\Turbo\Twig;

/**
* @internal
*/
interface TurboStreamListenRendererWithOptionsInterface extends TurboStreamListenRendererInterface
{
}
29 changes: 1 addition & 28 deletions src/Turbo/src/Twig/TwigExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@

namespace Symfony\UX\Turbo\Twig;

use Psr\Container\ContainerInterface;
use Symfony\UX\Turbo\Bridge\Mercure\TopicSet;
use Twig\Environment;
use Twig\Extension\AbstractExtension;
use Twig\TwigFunction;

Expand All @@ -28,16 +25,10 @@ final class TwigExtension extends AbstractExtension
private const REFRESH_SCROLL_RESET = 'reset';
private const REFRESH_SCROLL_PRESERVE = 'preserve';

public function __construct(
private ContainerInterface $turboStreamListenRenderers,
private string $default,
) {
}

public function getFunctions(): array
{
return [
new TwigFunction('turbo_stream_listen', $this->turboStreamListen(...), ['needs_environment' => true, 'is_safe' => ['html']]),
new TwigFunction('turbo_stream_listen', [TurboRuntime::class, 'renderTurboStreamListen'], ['needs_environment' => true, 'is_safe' => ['html']]),
new TwigFunction('turbo_exempts_page_from_cache', $this->turboExemptsPageFromCache(...), ['is_safe' => ['html']]),
new TwigFunction('turbo_exempts_page_from_preview', $this->turboExemptsPageFromPreview(...), ['is_safe' => ['html']]),
new TwigFunction('turbo_page_requires_reload', $this->turboPageRequiresReload(...), ['is_safe' => ['html']]),
Expand All @@ -47,24 +38,6 @@ public function getFunctions(): array
];
}

/**
* @param object|string|array<object|string> $topic
*/
public function turboStreamListen(Environment $env, $topic, ?string $transport = null): string
{
$transport ??= $this->default;

if (!$this->turboStreamListenRenderers->has($transport)) {
throw new \InvalidArgumentException(\sprintf('The Turbo stream transport "%s" does not exist.', $transport));
}

if (\is_array($topic)) {
$topic = new TopicSet($topic);
}

return $this->turboStreamListenRenderers->get($transport)->renderTurboStreamListen($env, $topic);
}

/**
* Generates a <meta> tag to disable caching of a page.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,13 @@ public static function provideTestCases(): iterable
? 'data-controller="symfony--ux-turbo--mercure-turbo-stream" data-symfony--ux-turbo--mercure-turbo-stream-hub-value="http://127.0.0.1:3000/.well-known/mercure" data-symfony--ux-turbo--mercure-turbo-stream-topics-value="[&quot;a_topic&quot;,&quot;AppEntityBook&quot;,&quot;https:\/\/symfony.com\/ux-turbo\/App%5CEntity%5CBook\/123&quot;]"'
: 'data-controller="symfony--ux-turbo--mercure-turbo-stream" data-symfony--ux-turbo--mercure-turbo-stream-hub-value="http&#x3A;&#x2F;&#x2F;127.0.0.1&#x3A;3000&#x2F;.well-known&#x2F;mercure" data-symfony--ux-turbo--mercure-turbo-stream-topics-value="&#x5B;&quot;a_topic&quot;,&quot;AppEntityBook&quot;,&quot;https&#x3A;&#x5C;&#x2F;&#x5C;&#x2F;symfony.com&#x5C;&#x2F;ux-turbo&#x5C;&#x2F;App&#x25;5CEntity&#x25;5CBook&#x5C;&#x2F;123&quot;&#x5D;"',
];

yield [
"{{ turbo_stream_listen('a_topic', 'default', { withCredentials: true }) }}",
[],
$newEscape
? 'data-controller="symfony--ux-turbo--mercure-turbo-stream" data-symfony--ux-turbo--mercure-turbo-stream-hub-value="http://127.0.0.1:3000/.well-known/mercure" data-symfony--ux-turbo--mercure-turbo-stream-topic-value="a_topic" data-symfony--ux-turbo--mercure-turbo-stream-with-credentials-value="true"'
: 'data-controller="symfony--ux-turbo--mercure-turbo-stream" data-symfony--ux-turbo--mercure-turbo-stream-hub-value="http&#x3A;&#x2F;&#x2F;127.0.0.1&#x3A;3000&#x2F;.well-known&#x2F;mercure" data-symfony--ux-turbo--mercure-turbo-stream-topic-value="a_topic" data-symfony--ux-turbo--mercure-turbo-stream-with-credentials-value="true"',
];
}
}
Loading
Loading