Viel neues

This commit is contained in:
Sven Steinert
2026-04-30 12:06:00 +02:00
parent 118809bfae
commit fce31ebcd7
1274 changed files with 181255 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
<?php
namespace LightSaml\Binding;
use LightSaml\Context\Profile\MessageContext;
use LightSaml\Event\MessageReceived;
use LightSaml\Event\MessageSent;
use Psr\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\HttpFoundation\Request;
abstract class AbstractBinding
{
/** @var EventDispatcherInterface|null */
protected $eventDispatcher;
/**
* @return AbstractBinding
*/
public function setEventDispatcher(EventDispatcherInterface $eventDispatcher = null)
{
$this->eventDispatcher = $eventDispatcher;
return $this;
}
/**
* @return EventDispatcherInterface|null
*/
public function getEventDispatcher()
{
return $this->eventDispatcher;
}
/**
* @param string $messageString
*/
protected function dispatchReceive($messageString)
{
if ($this->eventDispatcher) {
$this->eventDispatcher->dispatch(new MessageReceived($messageString));
}
}
/**
* @param string $messageString
*/
protected function dispatchSend($messageString)
{
if ($this->eventDispatcher) {
$this->eventDispatcher->dispatch(new MessageSent($messageString));
}
}
/**
* @param string|null $destination
*
* @return \Symfony\Component\HttpFoundation\Response
*/
abstract public function send(MessageContext $context, $destination = null);
abstract public function receive(Request $request, MessageContext $context);
}