44 GuzzleHttp\RequestOptions::VERIFY =>
true,
45 GuzzleHttp\RequestOptions::CONNECT_TIMEOUT => 10,
46 GuzzleHttp\RequestOptions::HTTP_ERRORS =>
false 50 'Authorization' => $this->basicAuth,
51 'X-Experience-API-Version' =>
'1.0.3' 56 $promises[
'default'] =
$client->sendAsync($request, $req_opts);
57 $responses = GuzzleHttp\Promise\Utils::settle($promises)->wait();
58 self::checkResponse($responses[
'default'], $body);
62 throw new Exception(
"LRS Connection Problems");
69 $status =
$response[
'value']->getStatusCode();
70 if (in_array($status, $allowedStatus)) {
87 public static function buildQuery(array $params, $encoding = PHP_QUERY_RFC3986)
93 if ($encoding ===
false) {
94 $encoder =
function ($str) {
97 } elseif ($encoding === PHP_QUERY_RFC3986) {
98 $encoder =
'rawurlencode';
99 } elseif ($encoding === PHP_QUERY_RFC1738) {
100 $encoder =
'urlencode';
102 throw new \InvalidArgumentException(
'Invalid type');
106 foreach ($params as $k => $v) {
111 $qs .=
'=' . $encoder($v);
115 foreach ($v as $vv) {
118 $qs .=
'=' . $encoder($vv);
124 return $qs ? (string) substr($qs, 0, -1) :
'';
if($_SERVER['argc']< 4) $client
__construct(string $basicAuth)
ilCmiXapiAbstractRequest constructor.
static checkResponse($response, &$body, $allowedStatus=[200, 204])
static buildQuery(array $params, $encoding=PHP_QUERY_RFC3986)