1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace Dsantang\DomainEventsDoctrine\Tests\Unit\Outbox\Stub; |
6
|
|
|
|
7
|
|
|
use Doctrine\ORM\EntityManagerInterface; |
8
|
|
|
use Doctrine\ORM\Event\OnFlushEventArgs; |
9
|
|
|
use Dsantang\DomainEvents\DomainEvent; |
10
|
|
|
use Dsantang\DomainEventsDoctrine\Outbox\EventsHandler; |
11
|
|
|
use Dsantang\DomainEventsDoctrine\Outbox\OutboxEntry; |
12
|
|
|
use Dsantang\DomainEventsDoctrine\Outbox\OutboxMappedSuperclass; |
13
|
|
|
|
14
|
|
|
final class StubMapBased extends EventsHandler |
15
|
|
|
{ |
16
|
|
|
/** @var OutboxMappedSuperclass */ |
17
|
|
|
private $outboxMappedSuperclass; |
18
|
|
|
|
19
|
|
|
/** @var array */ |
20
|
|
|
private $conversionMap; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @param array $conversionMap |
24
|
|
|
*/ |
25
|
|
|
public function __construct(OutboxMappedSuperclass $outboxMappedSuperclass, array $conversionMap) |
26
|
|
|
{ |
27
|
|
|
$this->outboxMappedSuperclass = $outboxMappedSuperclass; |
28
|
|
|
$this->conversionMap = $conversionMap; |
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
public function getDomainsEvents(OnFlushEventArgs $eventArgs) : array |
32
|
|
|
{ |
33
|
|
|
return parent::getDomainsEvents($eventArgs); |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
public function convert(array $conversionMap, DomainEvent ...$domainEvents) : array |
37
|
|
|
{ |
38
|
|
|
return parent::convert($conversionMap, ...$domainEvents); |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
public function persist(EntityManagerInterface $entityManager, OutboxMappedSuperclass $outboxMappedSuperclass, OutboxEntry ...$outboxEntries) : void |
42
|
|
|
{ |
43
|
|
|
parent::persist($entityManager, $outboxMappedSuperclass, ...$outboxEntries); |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
public function onFlush(OnFlushEventArgs $eventArgs) : void |
47
|
|
|
{ |
48
|
|
|
$domainEvents = $this->getDomainsEvents($eventArgs); |
49
|
|
|
|
50
|
|
|
$outboxEvents = $this->convert($this->conversionMap, ...$domainEvents); |
51
|
|
|
|
52
|
|
|
if (empty($outboxEvents)) { |
53
|
|
|
return; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
$this->persist($eventArgs->getEntityManager(), $this->outboxMappedSuperclass, ...$outboxEvents); |
57
|
|
|
} |
58
|
|
|
} |
59
|
|
|
|