ssch/t3-messenger
Composer 安装命令:
composer require ssch/t3-messenger
包简介
Wrapper for Symfony Messenger
关键字:
README 文档
README
Integrates Symfony Messenger into TYPO3 https://symfony.com/doc/current/components/messenger.html
Credits
Many thanks to Constructiva Solutions GmbH that sponsored the development of this extension with a sponsorship and a lot of valuable feedback.
Integration guide
The extension basically provides the same functionality as if you would use the messenger in the Symfony Framework. In order to configure the messenger you have to put a Messenger.php file under the Configuration folder of an extension.
return [ 'failure_transport' => 'failed', 'default_bus' => 'command.bus', 'transports' => [ 'async' => [ 'dsn' => 'typo3-db://Default', ], 'failed' => [ 'dsn' => 'typo3-db://Default', 'options' => [ 'queue_name' => 'failed', ], ], ], 'routing' => [ MyCommand::class => ['senders' => ['async']], ], 'buses' => [ 'command.bus' => [ 'middleware' => [ 'id' => 'validation', ], ], 'query.bus' => [ 'default_middleware' => [ 'enabled' => true, 'allow_no_handlers' => false, 'allow_no_senders' => true, ], ], ], ];
Extbase Entities in Messages
If you need to pass an Extbase entity in a message, it's better to pass the entity's primary key (or whatever relevant information the handler actually needs, like email, etc.) instead of the object.
Have a look at the Symfony Documentation about Doctrine Entities
Transport Configuration
Messenger supports a number of different transport types, each with their own options. Options can be passed to the transport via a DSN string or configuration.
Have a look at the Symfony Documentation about Transports
Custom Doctrine Transport
The extension ships the doctrine transport with a slightly modified configuration DSN. Instead of using doctrine:// you have to use typo3-db://.
return [ 'transports' => [ 'async' => [ 'dsn' => 'typo3-db://Default', ], ], ];
The format is typo3-db://<connection_name>, in case you have multiple connections and want to use one other than the "Default". The transport will automatically create a table named messenger_messages.
Please have a look for further configuration details at the doctrine transport.
Null Transport
The extension ships also with a NullTransport. This is useful if you want some messages in some instances not to be handled at all.
Middleware
Have a look at the Symfony Documentation about Middleware to understand the concept behind it.
The extension ships with a ValidationMiddleware for the extbase Validators. If you want to validate your commands add the middleware the following way in your Messenger.php:
return [ 'buses' => [ 'messenger.bus.default' => [ 'middleware' => [ 'id' => 'validation', ], ], ], ];
Note: The id validation is a shortcut for the service id messenger.middleware.validation.
Additionally, the extension ships with a LoggingMiddleware for debugging purposes.
return [ 'buses' => [ 'messenger.bus.default' => [ 'middleware' => [ 'id' => 'logging', ], ], ], ];
Async Mailer
The extension ships with a custom MessengerMailer which implements MailerInterface from TYPO3 core in order to send emails asynchronously if it is desired. Even if you are using TYPO3 10 you can already use the new MailerInterface. Inject the MailerInterface wherever you want:
use TYPO3\CMS\Core\Mail\MailerInterface; use TYPO3\CMS\Core\Mail\MailMessage; use TYPO3\CMS\Core\Utility\GeneralUtility; final class RegistrationService { private MailerInterface $mailer; public function __construct(MailerInterface $mailer) { $this->mailer = $mailer; } public function register() { $mailMessage = GeneralUtility::makeInstance(MailMessage::class); $mailMessage->setTo('max.mustermann@domain.com'); $mailMessage->setSubject('You MailerInterface'); $this->mailer->send($mailMessage); } }
If you are sending emails this way, nothing should change. The mails will be sent the way before via the MessengerBus. You could also inject the MailerInterface from Symfony Mailer and you will get the MessengerMailer injected.
If you truly want to send emails asynchronously you have to configure the routing section in your Messenger.php
return [ 'routing' => [ \Symfony\Component\Mailer\Messenger\SendEmailMessage::class => ['senders' => ['async']], ] ]
Nothing comes for free. There are some caveats to tackle if you are sending emails asynchronously. Also have a look at the Symfony Documentation Sending Messages Async.
Note: Be aware that you should inject either the \TYPO3\CMS\Core\Mail\MailerInterface or the \Symfony\Component\Mailer\MailerInterface in your classes and explicitly pass your MailMessage to the send method. Do not call the send method on the MailMessage object itself because this will bypass the shipped decorator and you cannot send your email messages asynchronously
ConfigurationProvider
If you have installed typo3/cms-lowlevel you can see your Messenger configuration within the Configuration module under the section Messenger Configuration
You cannot only see your System wide configuration but also your Messages and the assigned Handlers.
Environment specific configurations
If you want to handle i.e. your messages synchronously in the development environment but still asynchronously in the production environment you can do so. You just have to place another Messenger.php under Configuration/dev/ in your extension. You can do the same for your testing environment by placing the Messenger.php under Configuration/test/ folder. It is a simple convention but convenient in your daily developer life. Have a look at Handling Messages Sync while Developing why this feature is so convenient.
Further reading
Batch processing with Messenger
Symfony Messenger without Supervisor
Credits
Icons used in this repository are made by [Freepik][8] from [www.flaticon.com][9]
ssch/t3-messenger 适用场景与选型建议
ssch/t3-messenger 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19.48k 次下载、GitHub Stars 达 12, 最近一次更新时间为 2023 年 01 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Messenger」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ssch/t3-messenger 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ssch/t3-messenger 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ssch/t3-messenger 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Enables the creation of cron-jobs tasks to be consumed by symfony/messenger
Messenger functionality for Laravel 5.2.
Simple messaging system for Laravel
统计信息
- 总下载量: 19.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 2
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2023-01-22