/var/www/hkosl.com/demo_google/application/vendor/guzzlehttp/psr7/src/MessageTrait.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?php
namespace GuzzleHttp\Psr7;

use 
Psr\Http\Message\StreamInterface;

/**
 * Trait implementing functionality common to requests and responses.
 */
trait MessageTrait
{
    
/** @var array Map of all registered headers, as original name => array of values */
    
private $headers = [];

    
/** @var array Map of lowercase header name => original name at registration */
    
private $headerNames  = [];

    
/** @var string */
    
private $protocol '1.1';

    
/** @var StreamInterface */
    
private $stream;

    public function 
getProtocolVersion()
    {
        return 
$this->protocol;
    }

    public function 
withProtocolVersion($version)
    {
        if (
$this->protocol === $version) {
            return 
$this;
        }

        
$new = clone $this;
        
$new->protocol $version;
        return 
$new;
    }

    public function 
getHeaders()
    {
        return 
$this->headers;
    }

    public function 
hasHeader($header)
    {
        return isset(
$this->headerNames[strtolower($header)]);
    }

    public function 
getHeader($header)
    {
        
$header strtolower($header);

        if (!isset(
$this->headerNames[$header])) {
            return [];
        }

        
$header $this->headerNames[$header];

        return 
$this->headers[$header];
    }

    public function 
getHeaderLine($header)
    {
        return 
implode(', '$this->getHeader($header));
    }

    public function 
withHeader($header$value)
    {
        
$this->assertHeader($header);
        
$value $this->normalizeHeaderValue($value);
        
$normalized strtolower($header);

        
$new = clone $this;
        if (isset(
$new->headerNames[$normalized])) {
            unset(
$new->headers[$new->headerNames[$normalized]]);
        }
        
$new->headerNames[$normalized] = $header;
        
$new->headers[$header] = $value;

        return 
$new;
    }

    public function 
withAddedHeader($header$value)
    {
        
$this->assertHeader($header);
        
$value $this->normalizeHeaderValue($value);
        
$normalized strtolower($header);

        
$new = clone $this;
        if (isset(
$new->headerNames[$normalized])) {
            
$header $this->headerNames[$normalized];
            
$new->headers[$header] = array_merge($this->headers[$header], $value);
        } else {
            
$new->headerNames[$normalized] = $header;
            
$new->headers[$header] = $value;
        }

        return 
$new;
    }

    public function 
withoutHeader($header)
    {
        
$normalized strtolower($header);

        if (!isset(
$this->headerNames[$normalized])) {
            return 
$this;
        }

        
$header $this->headerNames[$normalized];

        
$new = clone $this;
        unset(
$new->headers[$header], $new->headerNames[$normalized]);

        return 
$new;
    }

    public function 
getBody()
    {
        if (!
$this->stream) {
            
$this->stream stream_for('');
        }

        return 
$this->stream;
    }

    public function 
withBody(StreamInterface $body)
    {
        if (
$body === $this->stream) {
            return 
$this;
        }

        
$new = clone $this;
        
$new->stream $body;
        return 
$new;
    }

    private function 
setHeaders(array $headers)
    {
        
$this->headerNames $this->headers = [];
        foreach (
$headers as $header => $value) {
            if (
is_int($header)) {
                
// Numeric array keys are converted to int by PHP but having a header name '123' is not forbidden by the spec
                // and also allowed in withHeader(). So we need to cast it to string again for the following assertion to pass.
                
$header = (string) $header;
            }
            
$this->assertHeader($header);
            
$value $this->normalizeHeaderValue($value);
            
$normalized strtolower($header);
            if (isset(
$this->headerNames[$normalized])) {
                
$header $this->headerNames[$normalized];
                
$this->headers[$header] = array_merge($this->headers[$header], $value);
            } else {
                
$this->headerNames[$normalized] = $header;
                
$this->headers[$header] = $value;
            }
        }
    }

    private function 
normalizeHeaderValue($value)
    {
        if (!
is_array($value)) {
            return 
$this->trimHeaderValues([$value]);
        }

        if (
count($value) === 0) {
            throw new \
InvalidArgumentException('Header value can not be an empty array.');
        }

        return 
$this->trimHeaderValues($value);
    }

    
/**
     * Trims whitespace from the header values.
     *
     * Spaces and tabs ought to be excluded by parsers when extracting the field value from a header field.
     *
     * header-field = field-name ":" OWS field-value OWS
     * OWS          = *( SP / HTAB )
     *
     * @param string[] $values Header values
     *
     * @return string[] Trimmed header values
     *
     * @see https://tools.ietf.org/html/rfc7230#section-3.2.4
     */
    
private function trimHeaderValues(array $values)
    {
        return 
array_map(function ($value) {
            if (!
is_scalar($value) && null !== $value) {
                throw new \
InvalidArgumentException(sprintf(
                    
'Header value must be scalar or null but %s provided.',
                    
is_object($value) ? get_class($value) : gettype($value)
                ));
            }

            return 
trim((string) $value" \t");
        }, 
$values);
    }

    private function 
assertHeader($header)
    {
        if (!
is_string($header)) {
            throw new \
InvalidArgumentException(sprintf(
                
'Header name must be a string but %s provided.',
                
is_object($header) ? get_class($header) : gettype($header)
            ));
        }

        if (
$header === '') {
            throw new \
InvalidArgumentException('Header name can not be empty.');
        }
    }
}