[FEATURE] Outgoing Webhooks for TYPO3
A webhook is an automated message sent from one application to another via HTTP. Most modern web applications have the ability to communicate either via outgoing or incoming webhooks. This way of communication allows application users to integrate multiple systems without writing code (so-called no-code/low-code integrations). TYPO3 provides the incoming webhooks part via the system extension "reactions". This feature now allows configuring outgoing webhooks in the TYPO3 backend - completing the round trip. A new backend module is added called "Webhooks" where any administrative user can create a webhook. At its' core a webhook consists of a trigger (when something should happen) and a target URL (what should happen). Every time the webhook is triggered, an HTTP request is sent to the target URL. With this feature, the request can be either a POST or a GET request. POST requests commonly contain data, and GET requests can trigger actions in third-party systems. The...
Showing
- Build/Sources/Sass/component/_table.scss 1 addition, 0 deletionsBuild/Sources/Sass/component/_table.scss
- composer.json 3 additions, 0 deletionscomposer.json
- composer.lock 1 addition, 1 deletioncomposer.lock
- typo3/sysext/backend/Resources/Public/Css/backend.css 1 addition, 1 deletiontypo3/sysext/backend/Resources/Public/Css/backend.css
- typo3/sysext/core/Classes/Attribute/WebhookMessage.php 8 additions, 8 deletionstypo3/sysext/core/Classes/Attribute/WebhookMessage.php
- typo3/sysext/core/Classes/Messaging/WebhookMessageInterface.php 30 additions, 0 deletions...sysext/core/Classes/Messaging/WebhookMessageInterface.php
- typo3/sysext/core/Documentation/Changelog/12.2/Feature-99632-IntroducePHPAttributeToMarkAWebhookMessage.rst 49 additions, 0 deletions...ture-99632-IntroducePHPAttributeToMarkAWebhookMessage.rst
- typo3/sysext/core/Documentation/Changelog/12.2/Feature-99632-IntroducePHPAttributeToMarkAnEventAsRemoteEventWebhook.rst 0 additions, 39 deletions...ntroducePHPAttributeToMarkAnEventAsRemoteEventWebhook.rst
- typo3/sysext/core/Documentation/Changelog/12.3/Feature-99629-Webhooks-OutgoingWebhooksForTYPO3.rst 223 additions, 0 deletions.../12.3/Feature-99629-Webhooks-OutgoingWebhooksForTYPO3.rst
- typo3/sysext/reactions/Resources/Private/Templates/Management/Overview.html 14 additions, 23 deletions...ions/Resources/Private/Templates/Management/Overview.html
- typo3/sysext/webhooks/.gitattributes 2 additions, 0 deletionstypo3/sysext/webhooks/.gitattributes
- typo3/sysext/webhooks/Classes/ConfigurationModuleProvider/WebhookTypesProvider.php 47 additions, 0 deletions...sses/ConfigurationModuleProvider/WebhookTypesProvider.php
- typo3/sysext/webhooks/Classes/Controller/ManagementController.php 132 additions, 0 deletions...sext/webhooks/Classes/Controller/ManagementController.php
- typo3/sysext/webhooks/Classes/DependencyInjection/WebhookCompilerPass.php 142 additions, 0 deletions...hooks/Classes/DependencyInjection/WebhookCompilerPass.php
- typo3/sysext/webhooks/Classes/Factory/WebhookInstructionFactory.php 96 additions, 0 deletions...xt/webhooks/Classes/Factory/WebhookInstructionFactory.php
- typo3/sysext/webhooks/Classes/Listener/MessageListener.php 57 additions, 0 deletionstypo3/sysext/webhooks/Classes/Listener/MessageListener.php
- typo3/sysext/webhooks/Classes/Listener/PageModificationListener.php 94 additions, 0 deletions...xt/webhooks/Classes/Listener/PageModificationListener.php
- typo3/sysext/webhooks/Classes/Message/FileAddedMessage.php 56 additions, 0 deletionstypo3/sysext/webhooks/Classes/Message/FileAddedMessage.php
- typo3/sysext/webhooks/Classes/Message/FileRemovedMessage.php 56 additions, 0 deletionstypo3/sysext/webhooks/Classes/Message/FileRemovedMessage.php
- typo3/sysext/webhooks/Classes/Message/FileUpdatedMessage.php 58 additions, 0 deletionstypo3/sysext/webhooks/Classes/Message/FileUpdatedMessage.php
Please register or sign in to comment