Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Broadway Bundle Laravel Package

ddd-module/broadway-bundle

View on GitHub
Deep Wiki
Context7

Metadata enrichment

It is possible to add additional metadata to persisted events. This is useful for recording extra contextual (auditing) data such as the currently logged in user, an IP address, a user agent or some request token.

The metadata enricher is automatically registered when adding the following tag to the service definition:

tags: [broadway.metadata_enricher]

IP address example

use Broadway\Domain\Metadata;
use Broadway\EventSourcing\MetadataEnrichment\MetadataEnricher;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;

class IpAddressMetadataEnricher implements MetadataEnricher
{
    private $requestStack;

    public function __construct(RequestStack $requestStack)
    {
        $this->requestStack = $requestStack;
    }

    public function enrich(Metadata $metadata): Metadata
    {
        return $metadata->merge(
            Metadata::kv(
                'ip_address',
                $this->getClientIp()
            )
        );
    }

    private function getClientIp(): string
    {
        $currentRequest = $this->requestStack->getCurrentRequest();

        return $currentRequest instanceof Request ? $currentRequest->getClientIp() : '';
    }
}
# services.yaml
my_ip_address_metadata_enricher:
    class: IpAddressMetadataEnricher
    arguments:
      - "[@request_stack](https://github.com/request_stack)"
    tags:
      - { name: broadway.metadata_enricher }
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
besmartand-pro/php-quality-config
sentix/ai-chatbot
codifyo/ts-generator-bundle
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky
spatie/mailcoach-vapor