19 declare(strict_types=1);
48 $this->
logger = $DIC->logger()->wsrv();
52 $this->
logger->warning(
'Using deprecated call.');
63 public function addHeader(
string $a_name,
string $a_value): void
65 $this->header_strings[] = ($a_name .
': ' . $a_value);
73 public function setHeader(array $a_header_strings): void
75 $this->header_strings = $a_header_strings;
100 public function addAuth(
string $a_post,
int $a_target_mid): string
102 $this->
logger->info(__METHOD__ .
': Add new Auth resource...');
104 $this->path_postfix =
'/sys/auths';
109 $this->
addHeader(
'Content-Type',
'application/json');
110 $this->
addHeader(
'Accept',
'application/json');
111 $this->
addHeader(self::HEADER_MEMBERSHIPS, (
string) $a_target_mid);
113 $this->curl->setOpt(CURLOPT_HTTPHEADER, $this->
getHeader());
114 $this->curl->setOpt(CURLOPT_POST,
true);
115 $this->curl->setOpt(CURLOPT_POSTFIELDS, $a_post);
116 $ret = $this->
call();
118 $info = $this->curl->getInfo(CURLINFO_HTTP_CODE);
120 $this->
logger->info(__METHOD__ .
': Checking HTTP status...');
121 if ($info !== self::HTTP_CODE_CREATED) {
122 $this->
logger->info(__METHOD__ .
': Cannot create auth resource, did not receive HTTP 201. ');
123 $this->
logger->info(__METHOD__ .
': POST was: ' . $a_post);
124 $this->
logger->info(__METHOD__ .
': HTTP code: ' . $info);
127 $this->
logger->info(__METHOD__ .
': ... got HTTP 201 (created)');
128 $this->
logger->info(__METHOD__ .
': POST was: ' . $a_post);
131 $auth = $result->getResult();
133 $this->
logger->info(__METHOD__ .
': ... got hash: ' . $auth->hash);
147 public function getAuth(
string $a_hash,
bool $a_details_only =
false)
149 if ($a_hash ===
'') {
150 $this->
logger->error(__METHOD__ .
': No auth hash given. Aborting.');
154 $this->path_postfix =
'/sys/auths/' . $a_hash;
156 if ($a_details_only) {
157 $this->path_postfix .= (
'/details');
164 $info = $this->curl->getInfo(CURLINFO_HTTP_CODE);
166 $this->
logger->info(__METHOD__ .
': Checking HTTP status...');
167 if ($info !== self::HTTP_CODE_OK) {
168 $this->
logger->info(__METHOD__ .
': Cannot get auth resource, did not receive HTTP 200. ');
171 $this->
logger->info(__METHOD__ .
': ... got HTTP 200 (ok)');
175 if ($a_details_only) {
177 $details->loadFromJson($ecs_result->getResult());
186 ####################################################### 188 ##################################################### 197 $this->path_postfix =
'/sys/events/fifo';
201 $this->
addHeader(
'Content-Type',
'application/json');
202 $this->
addHeader(
'Accept',
'application/json');
205 $this->curl->setOpt(CURLOPT_POST,
true);
206 $this->curl->setOpt(CURLOPT_POSTFIELDS,
'');
211 $info = $this->curl->getInfo(CURLINFO_HTTP_CODE);
212 if ($info !== self::HTTP_CODE_OK) {
213 $this->
logger->info(__METHOD__ .
': Cannot read event fifo, did not receive HTTP 200. ');
221 $this->curl->close();
231 $this->path_postfix = $a_path;
235 $this->curl->setOpt(CURLOPT_HTTPHEADER, $this->
getHeader());
239 $info = $this->curl->getInfo(CURLINFO_HTTP_CODE);
240 $this->
logger->debug(__METHOD__ .
': Checking HTTP status...');
241 if ($info !== self::HTTP_CODE_OK) {
242 $this->
logger->debug(__METHOD__ .
': Cannot get ressource list, did not receive HTTP 200. ');
245 $this->
logger->debug(__METHOD__ .
': ... got HTTP 200 (ok)');
262 if ($a_econtent_id) {
263 $this->
logger->debug(__METHOD__ .
': Get resource with ID: ' . $a_econtent_id);
265 $this->
logger->debug(__METHOD__ .
': Get all resources ...');
268 $this->path_postfix = $a_path;
269 if ($a_econtent_id) {
270 $this->path_postfix .= (
'/' . $a_econtent_id);
272 if ($a_details_only) {
273 $this->path_postfix .= (
'/details');
281 $info = (
int) $this->curl->getInfo(CURLINFO_HTTP_CODE);
282 $this->
logger->debug(__METHOD__ .
': Checking HTTP status...');
283 if ($info !== self::HTTP_CODE_OK) {
284 $this->
logger->debug(__METHOD__ .
': Cannot get ressource, did not receive HTTP 200. ');
287 $this->
logger->debug(__METHOD__ .
': ... got HTTP 200 (ok)');
290 $result->setHeaders($this->curl->getResponseHeaderArray());
291 $result->setHTTPCode($info);
311 $this->
logger->info(__METHOD__ .
': Add new EContent...');
313 $this->path_postfix = $a_path;
318 $this->
addHeader(
'Content-Type',
'application/json');
320 $this->curl->setOpt(CURLOPT_HTTPHEADER, $this->
getHeader());
321 $this->curl->setOpt(CURLOPT_HEADER,
true);
322 $this->curl->setOpt(CURLOPT_POST,
true);
323 $this->curl->setOpt(CURLOPT_POSTFIELDS, $a_post);
326 $info = $this->curl->getInfo(CURLINFO_HTTP_CODE);
328 $this->
logger->debug(__METHOD__ .
': Checking HTTP status...');
329 if ($info !== self::HTTP_CODE_CREATED) {
330 $this->
logger->debug(__METHOD__ .
': Cannot create econtent, did not receive HTTP 201. ');
333 $this->
logger->debug(__METHOD__ .
': ... got HTTP 201 (created)');
349 public function updateResource(
string $a_path,
int $a_econtent_id,
string $a_post_string): void
351 $this->
logger->debug(__METHOD__ .
': Update resource with id ' . $a_econtent_id);
353 $this->path_postfix = $a_path;
355 if ($a_econtent_id) {
356 $this->path_postfix .= (
'/' . $a_econtent_id);
362 $this->
addHeader(
'Content-Type',
'application/json');
363 $this->
addHeader(
'Accept',
'application/json');
365 $this->curl->setOpt(CURLOPT_HTTPHEADER, $this->
getHeader());
366 $this->curl->setOpt(CURLOPT_HEADER,
true);
367 $this->curl->setOpt(CURLOPT_PUT,
true);
370 $this->
logger->info(__METHOD__ .
': Created new tempfile: ' . $tempfile);
372 $fp = fopen($tempfile,
'wb');
373 fwrite($fp, $a_post_string);
376 $this->curl->setOpt(CURLOPT_UPLOAD,
true);
377 $this->curl->setOpt(CURLOPT_INFILESIZE, filesize($tempfile));
378 $fp = fopen($tempfile,
'rb');
379 $this->curl->setOpt(CURLOPT_INFILE, $fp);
386 $info = $this->curl->getInfo(CURLINFO_HTTP_CODE);
387 $this->
logger->debug(__METHOD__ .
': Checking HTTP status...');
388 if ($info !== self::HTTP_CODE_OK) {
389 $this->
logger->debug(__METHOD__ .
': Cannot update resource. ', $a_path, $a_econtent_id);
406 $this->
logger->debug(__METHOD__ .
': Delete resource with id ' . $a_econtent_id);
408 $this->path_postfix = $a_path;
410 if ($a_econtent_id) {
411 $this->path_postfix .= (
'/' . $a_econtent_id);
418 $this->curl->setOpt(CURLOPT_CUSTOMREQUEST,
'DELETE');
420 $info = $this->curl->getInfo(CURLINFO_HTTP_CODE);
440 $this->
logger->debug(__METHOD__ .
': Get existing memberships');
442 $this->path_postfix =
'/sys/memberships';
444 $this->
logger->debug(__METHOD__ .
': Read membership with id: ' . $a_mid);
445 $this->path_postfix .= (
'/' . $a_mid);
451 $this->curl->setOpt(CURLOPT_HTTPHEADER, array(0 =>
'X-EcsQueryStrings: sender=true'));
454 $info = $this->curl->getInfo(CURLINFO_HTTP_CODE);
455 if ($info !== self::HTTP_CODE_OK) {
456 $this->
logger->debug(__METHOD__ .
': Cannot get memberships, did not receive HTTP 200. ');
462 throw new ilECSConnectorException(
'Error calling ECS service: ' . $exc->getMessage() . $exc->getTraceAsString(), 0, $exc);
475 $this->curl->
init(
true);
476 $this->curl->setOpt(CURLOPT_HTTPHEADER, array(0 =>
'Accept: application/json'));
477 $this->curl->setOpt(CURLOPT_RETURNTRANSFER, 1);
478 $this->curl->setOpt(CURLOPT_VERBOSE, 1);
479 $this->curl->setOpt(CURLOPT_TIMEOUT_MS, 90000);
480 $this->curl->setOpt(CURLOPT_FORBID_REUSE,
true);
481 $this->curl->setOpt(CURLOPT_FRESH_CONNECT,
true);
484 $this->curl->setOpt(CURLOPT_VERBOSE, 1);
487 switch ($this->
getServer()->getAuthType()) {
489 $this->curl->setOpt(CURLOPT_SSL_VERIFYPEER, 1);
490 #$this->curl->setOpt(CURLOPT_SSL_VERIFYHOST,0); 491 $this->curl->setOpt(CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
499 $this->curl->setOpt(CURLOPT_SSL_VERIFYPEER, 1);
501 $this->curl->setOpt(CURLOPT_SSL_VERIFYHOST, 2);
502 $this->curl->setOpt(CURLOPT_CAINFO, $this->
settings->getCACertPath());
503 $this->curl->setOpt(CURLOPT_SSLCERT, $this->
settings->getClientCertPath());
504 $this->curl->setOpt(CURLOPT_SSLKEY, $this->
settings->getKeyPath());
505 $this->curl->setOpt(CURLOPT_SSLKEYPASSWD, $this->
settings->getKeyPassword());
523 return $this->curl->exec();
525 $this->
logger->error($exc->getMessage());
537 $location_parts = [];
538 foreach ($a_header as $header => $value) {
539 if (strcasecmp(
'Location', $header) === 0) {
540 $location_parts = explode(
'/', $value);
544 if (!$location_parts) {
545 $this->
logger->error(__METHOD__ .
': Cannot find location headers.');
548 if (count($location_parts) === 1) {
549 $this->
logger->warning(__METHOD__ .
': Cannot find path seperator.');
552 $econtent_id = end($location_parts);
553 $this->
logger->info(__METHOD__ .
': Received EContentId ' . $econtent_id);
554 return (
int) $econtent_id;
updateResource(string $a_path, int $a_econtent_id, string $a_post_string)
update resource
const RESULT_TYPE_URL_LIST
__construct(?ilECSSetting $settings=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMemberships(int $a_mid=0)
readEventFifo(bool $a_delete=false)
Read event fifo.
addHeader(string $a_name, string $a_value)
Add Header.
Presentation of ecs content details (http://...campusconnect/courselinks/id/details) ...
init(bool $set_proxy=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addAuth(string $a_post, int $a_target_mid)
Add auth resource.
getResource(string $a_path, int $a_econtent_id, bool $a_details_only=false)
Get resources from ECS server.
addResource(string $a_path, $a_post)
Add resource.
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
_fetchEContentIdFromHeader(array $a_header)
fetch new econtent id from location header
getResourceList(string $a_path)
getServer()
Get current server setting.
setHeader(array $a_header_strings)
deleteResource(string $a_path, int $a_econtent_id)
Delete resource.
prepareConnection()
prepare connection
const HTTP_CODE_NOT_FOUND
getAuth(string $a_hash, bool $a_details_only=false)
get auth resource