-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SelfEmittingEventStream.php
141 lines (119 loc) · 3.76 KB
/
SelfEmittingEventStream.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
declare(strict_types=1);
/*
* This file is part of the Composer package "eliashaeussler/sse".
*
* Copyright (C) 2023-2024 Elias Häußler <elias@haeussler.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace EliasHaeussler\SSE\Stream;
use EliasHaeussler\SSE\Event;
use EliasHaeussler\SSE\Exception;
use Psr\Http\Message;
use function json_encode;
use function sprintf;
use function uniqid;
/**
* SelfEmittingEventStream.
*
* @author Elias Häußler <elias@haeussler.dev>
* @license GPL-3.0-or-later
*/
final class SelfEmittingEventStream implements EventStream
{
private bool $active = false;
private bool $closed = false;
/**
* @param non-empty-string $id
*/
private function __construct(
private readonly string $id,
private readonly int $retry,
private readonly Emitter\Emitter $emitter,
) {}
/**
* @param non-empty-string|null $id
*/
public static function create(
?string $id = null,
int $retry = 50,
Emitter\Emitter $emitter = new Emitter\RealtimeEmitter(),
): self {
return new self($id ?? uniqid(), $retry, $emitter);
}
public function open(): void
{
if ($this->emitter->wereHeadersSent() || $this->active) {
throw new Exception\StreamIsActive();
}
$this->active = true;
$this->emitter->header('Content-Type', self::CONTENT_TYPE);
$this->emitter->header('Cache-Control', 'no-cache');
$this->emitter->header('Connection', 'keep-alive');
$this->emitter->header('X-Accel-Buffering', 'no');
}
public function close(string $eventName = 'done'): void
{
$this->sendMessage($eventName);
$this->closed = true;
}
public function sendEvent(Event\Event $event): void
{
$this->sendMessage($event->getName(), json_encode($event, JSON_THROW_ON_ERROR));
}
public function sendMessage(string $name = 'message', bool|float|int|string|null $data = null): void
{
if ($this->closed) {
throw new Exception\StreamIsClosed();
}
if (!$this->active) {
throw new Exception\StreamIsInactive();
}
// Send event data
$this->sendStreamData('id', $this->id);
$this->sendStreamData('event', $name);
$this->sendStreamData('data', $data);
$this->sendStreamData('retry', $this->retry);
$this->sendDelimiter();
// Flush output buffer
$this->emitter->flush();
}
public function isActive(): bool
{
return $this->active;
}
/**
* @return non-empty-string
*/
public function getId(): string
{
return $this->id;
}
public static function canHandle(Message\ServerRequestInterface $request): bool
{
return $request->getHeader('Accept') === [self::CONTENT_TYPE];
}
private function sendStreamData(string $name, bool|float|int|string|null $value): void
{
$this->emitter->bodyLine(
sprintf('%s: %s', $name, $value),
);
$this->sendDelimiter();
}
private function sendDelimiter(): void
{
$this->emitter->bodyLine(PHP_EOL);
}
}