/var/www/hkosl.com/littleark/webadmin/libraies/google/apiclient/src/Google/Http/Batch.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php
/*
 * Copyright 2012 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

use GuzzleHttp\Psr7;
use 
GuzzleHttp\Psr7\Request;
use 
GuzzleHttp\Psr7\Response;
use 
Psr\Http\Message\RequestInterface;
use 
Psr\Http\Message\ResponseInterface;

/**
 * Class to handle batched requests to the Google API service.
 */
class Google_Http_Batch
{
  const 
BATCH_PATH 'batch';

  private static 
$CONNECTION_ESTABLISHED_HEADERS = array(
    
"HTTP/1.0 200 Connection established\r\n\r\n",
    
"HTTP/1.1 200 Connection established\r\n\r\n",
  );

  
/** @var string Multipart Boundary. */
  
private $boundary;

  
/** @var array service requests to be executed. */
  
private $requests = array();

  
/** @var Google_Client */
  
private $client;

  public function 
__construct(Google_Client $client)
  {
    
$this->client $client;
    
$this->boundary mt_rand();
  }

  public function 
add(RequestInterface $request$key false)
  {
    if (
false == $key) {
      
$key mt_rand();
    }

    
$this->requests[$key] = $request;
  }

  public function 
execute()
  {
    
$body '';
    
$classes = array();
    
$batchHttpTemplate = <<<EOF
--%s
Content-Type: application/http
Content-Transfer-Encoding: binary
MIME-Version: 1.0
Content-ID: %s

%s
%s%s


EOF;

    
/** @var Google_Http_Request $req */
    
foreach ($this->requests as $key => $request) {
      
$firstLine sprintf(
          
'%s %s HTTP/%s',
          
$request->getMethod(),
          
$request->getRequestTarget(),
          
$request->getProtocolVersion()
      );

      
$content = (string) $request->getBody();

      
$headers '';
      foreach (
$request->getHeaders() as $name => $values) {
          
$headers .= sprintf("%s:%s\r\n"$nameimplode(', '$values));
      }

      
$body .= sprintf(
          
$batchHttpTemplate,
          
$this->boundary,
          
$key,
          
$firstLine,
          
$headers,
          
$content "\n".$content ''
      
);

      
$classes['response-' $key] = $request->getHeaderLine('X-Php-Expected-Class');
    }

    
$body .= "--{$this->boundary}--";
    
$body trim($body);
    
$url Google_Client::API_BASE_PATH '/' self::BATCH_PATH;
    
$headers = array(
      
'Content-Type' => sprintf('multipart/mixed; boundary=%s'$this->boundary),
      
'Content-Length' => strlen($body),
    );

    
$request = new Request(
        
'POST',
        
$url,
        
$headers,
        
$body
    
);

    
$response $this->client->execute($request);

    return 
$this->parseResponse($response$classes);
  }

  public function 
parseResponse(ResponseInterface $response$classes = array())
  {
    
$contentType $response->getHeaderLine('content-type');
    
$contentType explode(';'$contentType);
    
$boundary false;
    foreach (
$contentType as $part) {
      
$part = (explode('='$part2));
      if (isset(
$part[0]) && 'boundary' == trim($part[0])) {
        
$boundary $part[1];
      }
    }

    
$body = (string) $response->getBody();
    if (!empty(
$body)) {
      
$body str_replace("--$boundary--""--$boundary"$body);
      
$parts explode("--$boundary"$body);
      
$responses = array();
      
$requests array_values($this->requests);

      foreach (
$parts as $i => $part) {
        
$part trim($part);
        if (!empty(
$part)) {
          list(
$rawHeaders$part) = explode("\r\n\r\n"$part2);
          
$headers $this->parseRawHeaders($rawHeaders);

          
$status substr($part0strpos($part"\n"));
          
$status explode(" "$status);
          
$status $status[1];

          list(
$partHeaders$partBody) = $this->parseHttpResponse($partfalse);
          
$response = new Response(
              
$status,
              
$partHeaders,
              
Psr7\stream_for($partBody)
          );

          
// Need content id.
          
$key $headers['content-id'];
          
$class '';
          if (!empty(
$this->expected_classes[$key])) {
            
$class $this->expected_classes[$key];
          }

          try {
            
$response Google_Http_REST::decodeHttpResponse($response$requests[$i-1]);
          } catch (
Google_Service_Exception $e) {
            
// Store the exception as the response, so successful responses
            // can be processed.
            
$response $e;
          }

          
$responses[$key] = $response;
        }
      }

      return 
$responses;
    }

    return 
null;
  }

  private function 
parseRawHeaders($rawHeaders)
  {
    
$headers = array();
    
$responseHeaderLines explode("\r\n"$rawHeaders);
    foreach (
$responseHeaderLines as $headerLine) {
      if (
$headerLine && strpos($headerLine':') !== false) {
        list(
$header$value) = explode(': '$headerLine2);
        
$header strtolower($header);
        if (isset(
$headers[$header])) {
          
$headers[$header] .= "\n" $value;
        } else {
          
$headers[$header] = $value;
        }
      }
    }
    return 
$headers;
  }

  
/**
   * Used by the IO lib and also the batch processing.
   *
   * @param $respData
   * @param $headerSize
   * @return array
   */
  
private function parseHttpResponse($respData$headerSize)
  {
    
// check proxy header
    
foreach (self::$CONNECTION_ESTABLISHED_HEADERS as $established_header) {
      if (
stripos($respData$established_header) !== false) {
        
// existed, remove it
        
$respData str_ireplace($established_header''$respData);
        
// Subtract the proxy header size unless the cURL bug prior to 7.30.0
        // is present which prevented the proxy header size from being taken into
        // account.
        // @TODO look into this
        // if (!$this->needsQuirk()) {
        //   $headerSize -= strlen($established_header);
        // }
        
break;
      }
    }

    if (
$headerSize) {
      
$responseBody substr($respData$headerSize);
      
$responseHeaders substr($respData0$headerSize);
    } else {
      
$responseSegments explode("\r\n\r\n"$respData2);
      
$responseHeaders $responseSegments[0];
      
$responseBody = isset($responseSegments[1]) ? $responseSegments[1] :
                                                    
null;
    }

    
$responseHeaders $this->parseRawHeaders($responseHeaders);

    return array(
$responseHeaders$responseBody);
  }
}