44 'ContentItemSelection',
221 $this->secret = null;
222 $this->signatureMethod =
'HMAC-SHA1';
223 $this->encryptionMethod =
'';
224 $this->rsaKey = null;
227 $this->platformId = null;
228 $this->clientId = null;
229 $this->deploymentId = null;
230 $this->ltiVersion = null;
231 $this->consumerName = null;
232 $this->consumerVersion = null;
233 $this->consumerGuid = null;
234 $this->profile = null;
235 $this->toolProxy = null;
237 $this->
protected =
false;
238 $this->enabled =
false;
239 $this->enableFrom = null;
240 $this->enableUntil = null;
241 $this->lastAccess = null;
243 $this->defaultEmail =
'';
244 $this->created = null;
245 $this->updated = null;
265 return $this->dataConnector->savePlatform($this);
273 public function delete():
bool 275 return $this->dataConnector->deletePlatform($this);
287 if (!empty($this->key)) {
289 } elseif (!empty($this->platformId)) {
291 if (!empty($this->clientId)) {
294 if (!empty($this->deploymentId)) {
312 if (!empty($this->consumerVersion)) {
314 $pos = strpos($familyCode,
'-');
315 if ($pos !==
false) {
316 $familyCode = substr($familyCode, 0, $pos);
343 if ($ok && !is_null($this->enableFrom)) {
344 $ok = $this->enableFrom <= $now;
346 if ($ok && !is_null($this->enableUntil)) {
347 $ok = $this->enableUntil > $now;
360 $has = !empty($this->
getSetting(
'custom_system_setting_url'));
376 if (!empty($this->
getSetting(
'custom_system_setting_url'))) {
380 $this->lastServiceRequest =
$service->getHttpMessage();
385 $hook =
new $className($this);
386 $settings = $hook->getToolSettings($simple);
400 if (!empty($this->
getSetting(
'custom_system_setting_url'))) {
404 $this->lastServiceRequest =
$service->getHttpMessage();
408 $hook =
new $className($this);
422 return $this->dataConnector->getTools();
432 $has = !empty($this->
getSetting(
'custom_oauth2_access_token_url'));
446 if ($this->ok && is_null($this->messageParameters)) {
459 if ($this->debugMode) {
463 if (!empty($parameters[
'client_id'])) {
478 $errorMessage =
"Request failed with reason: '{$this->reason}'";
479 if (!empty($this->details)) {
480 $errorMessage .= PHP_EOL .
'Debug information:';
481 foreach ($this->details as $detail) {
482 $errorMessage .= PHP_EOL .
" {$detail}";
499 $platform->key =
$key;
502 if ($ok && $autoEnable) {
503 $platform->enabled =
true;
552 ### PROTECTED METHODS 565 $hasSession = !empty(session_id());
569 $_SESSION[
'ceLTIc_lti_initiated_login'] = array(
570 'messageUrl' => $url,
571 'login_hint' => $loginHint,
572 'lti_message_hint' => $ltiMessageHint,
576 session_write_close();
587 $hasSession = !empty(session_id());
591 if (isset($_SESSION[
'ceLTIc_lti_initiated_login'])) {
592 $login = $_SESSION[
'ceLTIc_lti_initiated_login'];
594 if ($parameters[
'login_hint'] !== $login[
'login_hint'] ||
595 (isset($login[
'lti_message_hint']) && (!isset($parameters[
'lti_message_hint']) || ($parameters[
'lti_message_hint'] !== $login[
'lti_message_hint'])))) {
597 $this->messageParameters[
'error'] =
'access_denied';
600 $this->messageParameters = $login[
'params'];
602 unset($_SESSION[
'ceLTIc_lti_initiated_login']);
605 session_write_close();
614 $this->reason =
'No onContentItem method found for platform';
623 $this->reason =
'No onLtiStartAssessment method found for platform';
663 $this->messageParameters = array();
665 $this->ok = isset($parameters[
'scope']) && isset($parameters[
'response_type']) &&
666 isset($parameters[
'client_id']) && isset($parameters[
'redirect_uri']) &&
667 isset($parameters[
'login_hint']) && isset($parameters[
'nonce']);
669 $this->messageParameters[
'error'] =
'invalid_request';
672 $scopes = explode(
' ', $parameters[
'scope']);
673 $this->ok = in_array(
'openid',
$scopes);
675 $this->messageParameters[
'error'] =
'invalid_scope';
678 if ($this->ok && ($parameters[
'response_type'] !==
'id_token')) {
680 $this->messageParameters[
'error'] =
'unsupported_response_type';
682 if ($this->ok && ($parameters[
'client_id'] !== $this->clientId)) {
684 $this->messageParameters[
'error'] =
'unauthorized_client';
687 $this->ok = in_array($parameters[
'redirect_uri'],
Tool::$defaultTool->redirectionUris);
689 $this->messageParameters[
'error'] =
'invalid_request';
690 $this->messageParameters[
'error_description'] =
'Unregistered redirect_uri';
694 if (isset($parameters[
'response_mode'])) {
695 $this->ok = ($parameters[
'response_mode'] ===
'form_post');
700 $this->messageParameters[
'error'] =
'invalid_request';
701 $this->messageParameters[
'error_description'] =
'Invalid response_mode';
704 if ($this->ok && (!isset($parameters[
'prompt']) || ($parameters[
'prompt'] !==
'none'))) {
706 $this->messageParameters[
'error'] =
'invalid_request';
707 $this->messageParameters[
'error_description'] =
'Invalid prompt';
716 $this->messageParameters,
722 if (isset($parameters[
'state'])) {
723 $this->messageParameters[
'state'] = $parameters[
'state'];
725 $html =
Util::sendForm($parameters[
'redirect_uri'], $this->messageParameters);
getSetting(string $a_keyword, ?string $a_default_value=null)
read one value from settingstable
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
loadPlatform(\ILIAS\LTI\ToolProvider\Platform $platform)
Load platform object.