19 declare(strict_types=1);
41 if ($response[
'state'] ==
'fulfilled') {
42 $status = $response[
'value']->getStatusCode();
43 if ($status === 200 || $status === 204 || $status === 404) {
46 $this->xapiproxy->log()->error(
"LRS error {$endpoint}: " . $response[
'value']->getBody());
51 $this->xapiproxy->log()->error(
"Connection error {$endpoint}: " . $response[
'reason']->getMessage());
53 $this->xapiproxy->log()->error(
"error {$endpoint}:" . $e->getMessage());
68 if ($fakePostBody !==
null) {
69 $origBody = $response->getBody();
70 $this->xapiproxy->log()->debug($this->msg(
"orig body: " . $origBody));
71 $this->xapiproxy->log()->debug($this->msg(
"fake body: " . json_encode($fakePostBody)));
74 $this->fakeResponseBlocked($fakePostBody);
76 $status = $response->getStatusCode();
77 $headers = $response->getHeaders();
78 if (array_key_exists(
'Transfer-Encoding', $headers) && $headers[
'Transfer-Encoding'][0] ==
"chunked") {
79 $this->xapiproxy->log()->debug($this->msg(
"sniff response transfer-encoding for unallowed Content-length"));
80 $body = (string) $response->getBody();
81 unset($headers[
'Transfer-Encoding']);
82 $headers[
'Content-Length'] = array(strlen($body));
83 $response2 = new \GuzzleHttp\Psr7\Response($status, $headers, $body);
84 $this->emit($response2);
86 $this->emit($response);
96 $this->xapiproxy->log()->debug($this->msg(
"fakeResponseFromBlockedRequest"));
98 $this->xapiproxy->log()->debug($this->msg(
"post === NULL"));
101 if (isset($origin) && $origin !=
"") {
102 header(
'Access-Control-Allow-Origin: ' . $origin);
104 $this->xapiproxy->log()->warning(
"could not get \$_SERVER[\"HTTP_ORIGIN\"] or \$_SERVER[\"HTTP_REFERRER\"]");
107 $this->xapiproxy->log()->warning($e->getMessage());
109 header(
'Access-Control-Allow-Credentials: true');
110 header(
'X-Experience-API-Version: 1.0.3');
111 header(
'HTTP/1.1 204 No Content');
114 $ids = json_encode(
$post);
115 $this->xapiproxy->log()->debug($this->msg(
"post: " . $ids));
118 if (isset($origin) && $origin !=
"") {
119 header(
'Access-Control-Allow-Origin: ' . $origin);
121 $this->xapiproxy->log()->warning(
"could not get \$_SERVER[\"HTTP_ORIGIN\"] or \$_SERVER[\"HTTP_REFERRER\"]");
124 $this->xapiproxy->log()->warning($e->getMessage());
126 header(
'Access-Control-Allow-Credentials: true');
127 header(
'X-Experience-API-Version: 1.0.3');
128 header(
'Content-Length: ' . strlen($ids));
129 header(
'Content-Type: application/json; charset=utf-8');
130 header(
'HTTP/1.1 200 Ok');
140 if (isset($origin) && $origin !=
"") {
141 header(
'Access-Control-Allow-Origin: ' . $origin);
143 $this->xapiproxy->log()->warning(
"could not get \$_SERVER[\"HTTP_ORIGIN\"] or \$_SERVER[\"HTTP_REFERRER\"]");
146 $this->xapiproxy->log()->warning($e->getMessage());
148 header(
'Access-Control-Allow-Credentials: true');
149 header(
'X-Experience-API-Version: 1.0.3');
150 header(
"HTTP/1.1 412 Wrong Response");
151 echo
"HTTP/1.1 412 Wrong Response";
159 if (isset($origin) && $origin !=
"") {
160 header(
'Access-Control-Allow-Origin: ' . $origin);
162 $this->xapiproxy->log()->warning(
"could not get \$_SERVER[\"HTTP_ORIGIN\"] or \$_SERVER[\"HTTP_REFERRER\"]");
165 $this->xapiproxy->log()->warning($e->getMessage());
167 header(
'Access-Control-Allow-Credentials: true');
168 header(
'X-Experience-API-Version: 1.0.3');
169 header(
"HTTP/1.1 500 XapiProxy Error (Ask For Logs)");
170 echo
"HTTP/1.1 500 XapiProxy Error (Ask For Logs)";
178 if (isset($origin) && $origin !=
"") {
179 header(
'Access-Control-Allow-Origin: ' . $origin);
181 $this->xapiproxy->log()->warning(
"could not get \$_SERVER[\"HTTP_ORIGIN\"] or \$_SERVER[\"HTTP_REFERRER\"]");
184 $this->xapiproxy->log()->warning($e->getMessage());
186 header(
'Access-Control-Allow-Credentials: true');
187 header(
'X-Experience-API-Version: 1.0.3');
188 header(
"HTTP/1.1 400 XapiProxy Bad Request (Ask For Logs)");
189 echo
"HTTP/1.1 400 XapiProxy Bad Request (Ask For Logs)";
195 $this->xapiproxy->log()->debug($this->msg(
"sendData: " . $obj));
198 if (isset($origin) && $origin !=
"") {
199 header(
'Access-Control-Allow-Origin: ' . $origin);
201 $this->xapiproxy->log()->warning(
"could not get \$_SERVER[\"HTTP_ORIGIN\"] or \$_SERVER[\"HTTP_REFERRER\"]");
204 $this->xapiproxy->log()->warning($e->getMessage());
206 header(
'Access-Control-Allow-Credentials: true');
207 header(
'X-Experience-API-Version: 1.0.3');
208 header(
'Content-Length: ' . strlen($obj));
209 header(
'Content-Type: application/json; charset=utf-8');
210 header(
'HTTP/1.1 200 Ok');
217 $this->xapiproxy->log()->debug($this->msg(
'emitting response'));
218 if (headers_sent()) {
219 $this->xapiproxy->log()->error($this->msg(
"Headers already sent!"));
220 $this->exitProxyError();
222 if (ob_get_level() > 0 && ob_get_length() > 0) {
223 $this->xapiproxy->log()->error($this->msg(
"Outputstream not empty!"));
224 $this->exitProxyError();
227 $reasonPhrase = $response->getReasonPhrase();
228 $statusCode = $response->getStatusCode();
231 foreach ($response->getHeaders() as $header => $values) {
232 $name = ucwords($header,
'-');
233 $first = $name ===
'Set-Cookie' ? false :
true;
234 foreach ($values as $value) {
239 ), $first, $statusCode);
247 $response->getProtocolVersion(),
249 ($reasonPhrase ?
' ' . $reasonPhrase :
'')
250 ),
true, $statusCode);
253 echo $response->getBody();
256 private function msg(
string $msg): string
258 return $this->xapiproxy->msg($msg);
handleResponse(Request $request, Response $response, array|string|null $fakePostBody=null)
emit(\GuzzleHttp\Psr7\Response $response)
__construct(XapiProxy $xapiproxy)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
checkResponse(array $response, string $endpoint)
fakeResponseBlocked(array|string|null $post=null)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...