-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSSEStream.php
More file actions
77 lines (63 loc) · 1.98 KB
/
SSEStream.php
File metadata and controls
77 lines (63 loc) · 1.98 KB
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
<?php
namespace Stagehand;
use Stagehand\Core\Concerns\SdkStream;
use Stagehand\Core\Contracts\BaseStream;
use Stagehand\Core\Conversion;
use Stagehand\Core\Exceptions\APIStatusException;
use Stagehand\Core\Util;
/**
* @template TItem
*
* @implements BaseStream<TItem>
*/
final class SSEStream implements BaseStream
{
/**
* @use SdkStream<array{
* event?: string|null, data?: string|null, id?: string|null, retry?: int|null
* },
* TItem,>
*/
use SdkStream;
private function parsedGenerator(): \Generator
{
if (!$this->stream->valid()) {
return;
}
$done = false;
foreach ($this->stream as $row) {
// @phpstan-ignore if.alwaysFalse
if ($done) {
// Iterate through the whole stream
continue;
}
switch ($row['event'] ?? null) {
case null:
if ($data = $row['data'] ?? '') {
$decoded = Util::decodeJson($data);
yield Conversion::coerce($this->convert, value: $decoded);
}
break;
}
if ($data = $row['data'] ?? '') {
if (str_starts_with($data, needle: '{"data":{"status":"finished"')) {
$done = true;
continue;
}
if (str_starts_with($data, needle: 'error')) {
if ($data = $row['data'] ?? '') {
$json = Util::decodeJson($data);
$message = Util::prettyEncodeJson($json);
$exn = APIStatusException::from(
request: $this->request,
response: $this->response,
message: $message,
);
throw $exn;
}
continue;
}
}
}
}
}