-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathUtils.php
100 lines (83 loc) · 2.67 KB
/
Utils.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
<?php
declare(strict_types=1);
namespace Sysix\LexOffice;
use GuzzleHttp\Psr7\MultipartStream;
use GuzzleHttp\Psr7\Stream;
use InvalidArgumentException;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\StreamInterface;
class Utils
{
public static function getJsonFromResponse(ResponseInterface $response, bool $assoc = false): mixed
{
if (!str_contains($response->getHeaderLine('Content-Type'), 'application/json')) {
return null;
}
$body = $response->getBody()->__toString();
return self::jsonDecode($body, $assoc);
}
/**
* @param array{size?: int, metadata?: mixed[]} $options
*/
public static function streamFor(string $resource = '', array $options = []): Stream
{
$stream = fopen('php://temp', 'r+');
if ($resource !== '' && $stream) {
fwrite($stream, $resource);
fseek($stream, 0);
return new Stream($stream, $options);
}
throw new InvalidArgumentException('Invalid resource type: ' . gettype($resource));
}
/**
* @internal
*
* @param int<1, 2147483647> $depth
*/
public static function jsonEncode(mixed $value, int $options = 0, int $depth = 512): string
{
$json = (string) json_encode($value, $options, $depth);
if (JSON_ERROR_NONE !== json_last_error()) {
throw new InvalidArgumentException('json_encode error: ' . json_last_error_msg());
}
return $json;
}
/**
* @internal
*
* @param int<1, 2147483647> $depth
*/
public static function jsonDecode(string $json, bool $assoc = false, int $depth = 512, int $options = 0): mixed
{
/** @var mixed $data */
$data = json_decode($json, $assoc, $depth, $options);
if (JSON_ERROR_NONE !== json_last_error()) {
throw new InvalidArgumentException('json_decode error: ' . json_last_error_msg());
}
return $data;
}
/**
* @internal
*/
public static function createStream(mixed $content): StreamInterface
{
return self::streamFor(self::jsonEncode($content));
}
/**
* @internal
*
* @param array<string, string|bool|resource> $content
*/
public static function createMultipartStream(array $content, string $boundary = null): MultipartStream
{
$stream = [];
$boundary = !is_null($boundary) && $boundary !== '' ? $boundary : '--lexoffice';
foreach ($content as $key => $value) {
$stream[] = [
'name' => $key,
'contents' => $value
];
}
return new MultipartStream($stream, $boundary);
}
}