19 declare(strict_types=1);
103 public function __construct(
int $a_id = 0,
bool $a_reference =
true)
165 return $this->mastery_score * 100;
170 $this->mastery_score = $mastery_score_percent / 100;
200 return $this->launchMethod == self::LAUNCH_METHOD_OWN_WIN;
205 return $this->launchMethod == self::LAUNCH_METHOD_EMBEDDED;
250 if ($this->
getProvider()->isProviderKeyCustomizable()) {
259 if ($this->
getProvider()->isProviderKeyCustomizable()) {
288 if (strlen($this->
getProvider()->getXapiActivityId())) {
317 $param = explode(
'=', $param);
319 if ($param[0] !=
'') {
320 $value = isset($param[1]) ? $param[1] :
'';
321 $paramsAsArray[$param[0]] = $value;
325 return $paramsAsArray;
340 $param = explode(
'=', $param);
342 if ($param[0] !=
'') {
343 $value = isset($param[1]) ? $param[1] :
'';
344 $paramsAsArray[$param[0]] = $value;
348 return $paramsAsArray;
360 $query =
"SELECT * FROM {$this->dbTableName()} WHERE obj_id = %s";
361 $res = $DIC->database()->queryF(
$query, [
'integer'], [$this->
getId()]);
363 while ($row = $DIC->database()->fetchAssoc(
$res)) {
402 'obj_id' => [
'integer', $this->
getId()]
409 'use_xapi' => [
'integer',$this->
getUseXapi()],
427 if ($this->ref_id > 0) {
429 switch ($activation[
"timing_type"]) {
432 if (!is_null($activation[
"timing_start"])) {
433 $activation[
"timing_start"] = (
int) $activation[
"timing_start"];
436 if (!is_null($activation[
"timing_end"])) {
437 $activation[
"timing_end"] = (
int) $activation[
"timing_end"];
452 if ($this->ref_id > 0) {
465 $item->update($this->ref_id);
471 return self::DB_TABLE_NAME;
483 $this->_highscore_enabled = $a_enabled;
502 $this->_highscore_achieved_ts = $a_achieved_ts;
520 $this->_highscore_percentage = $a_percentage;
538 $this->_highscore_wtime = $a_wtime;
558 $this->_highscore_own_table = $a_own_table;
576 $this->_highscore_top_table = $a_top_table;
597 $this->_highscore_top_num = $a_top_num;
611 if ($this->_highscore_top_num != 0) {
622 return self::HIGHSCORE_SHOW_ALL_TABLES;
625 return self::HIGHSCORE_SHOW_TOP_TABLE;
629 return self::HIGHSCORE_SHOW_OWN_TABLE;
639 case self::HIGHSCORE_SHOW_ALL_TABLES:
644 case self::HIGHSCORE_SHOW_TOP_TABLE:
649 case self::HIGHSCORE_SHOW_OWN_TABLE:
664 $roles = $DIC->access()->checkAccess(
'write',
'', $this->
getRefId()) ?
"Instructor" :
"Learner";
666 if ($DIC->rbac()->review()->isAssigned($DIC->user()->getId(),
SYSTEM_ROLE_ID)) {
667 $roles =
"Administrator";
670 if ($this->
getProvider()->getAlwaysLearner() ==
true) {
674 $resource_link_id = $this->
getRefId();
675 if ($this->
getProvider()->getUseProviderId() ==
true) {
676 $resource_link_id =
'p' . $this->
getProvider()->getId();
680 if ($this->
getProvider()->getIncludeUserPicture()) {
681 $usrImage = self::getIliasHttpPath() .
"/" . $DIC->user()->getPersonalPicturePath(
"small");
684 $documentTarget =
"window";
686 $documentTarget =
"iframe";
694 $nameGiven = $DIC->user()->getFirstname();
695 $nameFull = $DIC->user()->getFirstname();
698 $usrName = $DIC->user()->getUTitle() ? $DIC->user()->getUTitle() .
' ' :
'';
699 $usrName .= $DIC->user()->getLastname();
700 $nameFamily = $usrName;
701 $nameFull = $usrName;
704 $nameGiven = $DIC->user()->getFirstname();
705 $nameFamily = $DIC->user()->getLastname();
706 $nameFull = $DIC->user()->getFullname();
720 $provider_custom_params = self::getProviderCustomParamsArray($this->
getProvider());
722 $merged_params = array_merge($provider_custom_params, $custom_params);
724 $toolConsumerInstanceGuid =
CLIENT_ID .
".";
725 $parseIliasUrl = parse_url(self::getIliasHttpPath());
726 if (array_key_exists(
"path", $parseIliasUrl)) {
727 $toolConsumerInstanceGuid .= implode(
".", array_reverse(explode(
"/", $parseIliasUrl[
"path"])));
729 $toolConsumerInstanceGuid .= $parseIliasUrl[
"host"];
731 "lti_message_type" =>
"basic-lti-launch-request",
732 "lti_version" =>
"LTI-1p0",
733 "resource_link_id" => $resource_link_id,
734 "resource_link_title" => $this->
getTitle(),
736 "user_id" => $userIdLTI,
737 "user_image" => $usrImage,
739 "lis_person_name_given" => $nameGiven,
740 "lis_person_name_family" => $nameFamily,
741 "lis_person_name_full" => $nameFull,
742 "lis_person_contact_email_primary" => $emailPrimary,
743 "context_id" => $contextId,
744 "context_type" => $contextType,
745 "context_title" => $contextTitle,
746 "context_label" => $contextType .
" " . $contextId,
747 "launch_presentation_locale" => $this->
lng->getLangKey(),
748 "launch_presentation_document_target" => $documentTarget,
749 "launch_presentation_width" =>
"",
750 "launch_presentation_height" =>
"",
751 "launch_presentation_return_url" => $returnUrl,
752 "tool_consumer_instance_guid" => $toolConsumerInstanceGuid,
753 "tool_consumer_instance_name" => $DIC->settings()->get(
"short_inst_name") ? $DIC->settings()->get(
"short_inst_name") :
CLIENT_ID,
754 "tool_consumer_instance_description" => ilObjSystemFolder::_getHeaderTitle(),
756 "tool_consumer_instance_contact_email" => $DIC->settings()->get(
"admin_email"),
757 "launch_presentation_css_url" =>
"",
758 "tool_consumer_info_product_family_code" =>
"ilias",
760 "lis_result_sourcedid" =>
$token,
761 "lis_outcome_service_url" => self::getIliasHttpPath() .
"/Modules/LTIConsumer/result.php?client_id=" .
CLIENT_ID,
762 "role_scope_mentor" =>
"" 769 "callback" =>
"about:blank",
770 "http_method" =>
"POST",
771 "sign_method" =>
"HMAC_SHA1",
773 "data" => ($launch_vars + $merged_params)
787 $roles = $DIC->access()->checkAccess(
'write',
'', $this->
getRefId()) ?
"Instructor" :
"Learner";
788 if ($DIC->rbac()->review()->isAssigned($DIC->user()->getId(),
SYSTEM_ROLE_ID)) {
789 $roles =
"Administrator";
791 if ($this->
getProvider()->getAlwaysLearner() ==
true) {
795 $resource_link_id = $this->
getRefId();
796 if ($this->
getProvider()->getUseProviderId() ==
true) {
797 $resource_link_id =
'p' . $this->
getProvider()->getId();
801 if ($this->
getProvider()->getIncludeUserPicture()) {
802 $usrImage = self::getIliasHttpPath() .
"/" . $DIC->user()->getPersonalPicturePath(
"small");
805 $documentTarget =
"window";
807 $documentTarget =
"iframe";
815 $nameGiven = $DIC->user()->getFirstname();
816 $nameFull = $DIC->user()->getFirstname();
819 $usrName = $DIC->user()->getUTitle() ? $DIC->user()->getUTitle() .
' ' :
'';
820 $usrName .= $DIC->user()->getLastname();
821 $nameFamily = $usrName;
822 $nameFull = $usrName;
825 $nameGiven = $DIC->user()->getFirstname();
826 $nameFamily = $DIC->user()->getLastname();
827 $nameFull = $DIC->user()->getFullname();
837 $toolConsumerInstanceGuid =
CLIENT_ID .
".";
838 $parseIliasUrl = parse_url(self::getIliasHttpPath());
839 if (array_key_exists(
"path", $parseIliasUrl)) {
840 $toolConsumerInstanceGuid .= implode(
".", array_reverse(explode(
"/", $parseIliasUrl[
"path"])));
842 $toolConsumerInstanceGuid .= $parseIliasUrl[
"host"];
844 "lti_message_type" =>
"basic-lti-launch-request",
845 "lti_version" =>
"1.3.0",
846 "resource_link_id" => (string) $resource_link_id,
847 "resource_link_title" => $this->
getTitle(),
849 "user_id" => (string) $userIdLTI,
850 "user_image" => $usrImage,
852 "lis_person_name_given" => $nameGiven,
853 "lis_person_name_family" => $nameFamily,
854 "lis_person_name_full" => $nameFull,
855 "lis_person_contact_email_primary" => $emailPrimary,
856 "context_id" => $contextId,
857 "context_type" => $contextType,
858 "context_title" => $contextTitle,
859 "context_label" => $contextType .
" " . $contextId,
860 "launch_presentation_locale" => $this->
lng->getLangKey(),
861 "launch_presentation_document_target" => $documentTarget,
862 "launch_presentation_width" =>
"",
863 "launch_presentation_height" =>
"",
864 "launch_presentation_return_url" => $returnUrl,
865 "tool_consumer_instance_guid" => $toolConsumerInstanceGuid,
866 "tool_consumer_instance_name" => $DIC->settings()->get(
"short_inst_name") ? $DIC->settings()->get(
"short_inst_name") :
CLIENT_ID,
867 "tool_consumer_instance_description" => ilObjSystemFolder::_getHeaderTitle(),
869 "tool_consumer_instance_contact_email" => $DIC->settings()->get(
"admin_email"),
870 "launch_presentation_css_url" =>
"",
871 "tool_consumer_info_product_family_code" =>
"ilias",
873 "lis_result_sourcedid" =>
"",
874 "lis_outcome_service_url" => self::getIliasHttpPath() .
"/Modules/LTIConsumer/result.php?client_id=" .
CLIENT_ID,
875 "role_scope_mentor" =>
"" 878 $provider_custom_params = self::getProviderCustomParamsArray($this->
getProvider());
880 $merged_params = array_merge($provider_custom_params, $custom_params);
881 foreach ($merged_params as
$key => $value) {
882 $launch_vars[
'custom_' .
$key] = $value;
886 include_once(
"Modules/LTIConsumer/classes/class.ilLTIConsumerGradeService.php");
888 $launch_vars[
'custom_lineitem_url'] = self::getIliasHttpPath() .
"/Modules/LTIConsumer/ltiservices.php/gradeservice/" . $contextId .
"/lineitems/" . $this->
id .
"/lineitem";
892 $launch_vars[
'custom_lineitems_url'] = self::getIliasHttpPath() .
"/Modules/LTIConsumer/ltiservices.php/gradeservice/" . $contextId .
"/linetitems/";
894 $launch_vars[
'custom_ags_scopes'] = implode(
",", $gradeservice->getPermittedScopes());
897 if (!empty(self::verifyPrivateKey())) {
898 $DIC->ui()->mainTemplate()->setOnScreenMessage(
'failure',
'ERROR_OPEN_SSL_CONF',
true);
901 return self::LTISignJWT($launch_vars, $endpoint, $clientId, $deploymentId, $nonce);
915 $deploymentId = $provider->
getId();
917 $context = $ilLTIConsumerLaunch->getContext();
918 $contextType = $ilLTIConsumerLaunch::getLTIContextType(
$context[
"type"]);
922 $roles =
"Instructor";
925 $usrImage = self::getIliasHttpPath() .
"/" . $DIC->user()->getPersonalPicturePath(
"small");
927 $documentTarget =
"window";
929 $documentTarget =
"iframe";
936 $nameGiven = $DIC->user()->getFirstname();
937 $nameFull = $DIC->user()->getFirstname();
940 $usrName = $DIC->user()->getUTitle() ? $DIC->user()->getUTitle() .
' ' :
'';
941 $usrName .= $DIC->user()->getLastname();
942 $nameFamily = $usrName;
943 $nameFull = $usrName;
946 $nameGiven = $DIC->user()->getFirstname();
947 $nameFamily = $DIC->user()->getLastname();
948 $nameFull = $DIC->user()->getFullname();
954 $toolConsumerInstanceGuid =
CLIENT_ID .
".";
955 $parseIliasUrl = parse_url(self::getIliasHttpPath());
956 if (array_key_exists(
"path", $parseIliasUrl)) {
957 $toolConsumerInstanceGuid .= implode(
".", array_reverse(explode(
"/", $parseIliasUrl[
"path"])));
959 $toolConsumerInstanceGuid .= $parseIliasUrl[
"host"];
961 $content_select_vars = [
962 "lti_message_type" =>
"ContentItemSelectionRequest",
963 "lti_version" =>
"1.3.0",
964 "user_id" => (string) $userIdLTI,
965 "user_image" => $usrImage,
967 "lis_person_name_given" => $nameGiven,
968 "lis_person_name_family" => $nameFamily,
969 "lis_person_name_full" => $nameFull,
970 "lis_person_contact_email_primary" => $emailPrimary,
971 "context_id" => (
string) $contextId,
972 "context_type" => $contextType,
973 "context_title" => $contextTitle,
974 "context_label" => $contextType .
" " . $contextId,
975 "launch_presentation_locale" => $DIC->language()->getLangKey(),
976 "launch_presentation_document_target" => $documentTarget,
977 "launch_presentation_width" =>
"",
978 "launch_presentation_height" =>
"",
979 "tool_consumer_instance_guid" => $toolConsumerInstanceGuid,
980 "tool_consumer_instance_name" => $DIC->settings()->get(
"short_inst_name") ? $DIC->settings()->get(
"short_inst_name") :
CLIENT_ID,
981 "tool_consumer_instance_description" => ilObjSystemFolder::_getHeaderTitle(),
983 "tool_consumer_instance_contact_email" => $DIC->settings()->get(
"admin_email"),
984 "tool_consumer_info_product_family_code" =>
"ilias",
986 "content_item_return_url" => $returnUrl,
987 "accept_types" =>
"ltiResourceLink",
988 "accept_presentation_document_targets" =>
"iframe,window,embed",
989 "accept_multiple" =>
true,
990 "auto_create" =>
true,
992 $provider_custom_params = self::getProviderCustomParamsArray($provider);
993 foreach ($provider_custom_params as
$key => $value) {
994 $content_select_vars[
'custom_' .
$key] = $value;
997 if (!empty(self::verifyPrivateKey())) {
998 $DIC->ui()->mainTemplate()->setOnScreenMessage(
'failure',
'ERROR_OPEN_SSL_CONF',
true);
1001 return self::LTISignJWT($content_select_vars,
'',
$clientId, $deploymentId, $nonce);
1004 public static function LTISignJWT(array $parms,
string $endpoint,
string $oAuthConsumerKey,
$typeId = 0,
string $nonce =
''): array
1010 if (isset($parms[
'lti_message_type']) && array_key_exists($parms[
'lti_message_type'], $messageTypeMapping)) {
1011 $parms[
'lti_message_type'] = $messageTypeMapping[$parms[
'lti_message_type']];
1013 if (isset($parms[
'roles'])) {
1014 $roles = explode(
',', $parms[
'roles']);
1015 $newRoles = array();
1016 foreach ($roles as $role) {
1017 if (strpos($role,
'urn:lti:role:ims/lis/') === 0) {
1018 $role =
'http://purl.imsglobal.org/vocab/lis/v2/membership#' . substr($role, 21);
1019 } elseif (strpos($role,
'urn:lti:instrole:ims/lis/') === 0) {
1020 $role =
'http://purl.imsglobal.org/vocab/lis/v2/institution/person#' . substr($role, 25);
1021 } elseif (strpos($role,
'urn:lti:sysrole:ims/lis/') === 0) {
1022 $role =
'http://purl.imsglobal.org/vocab/lis/v2/system/person#' . substr($role, 24);
1023 } elseif ((strpos($role,
'://') ===
false) && (strpos($role,
'urn:') !== 0)) {
1024 $role =
"http://purl.imsglobal.org/vocab/lis/v2/membership#{$role}";
1026 $newRoles[] = $role;
1028 $parms[
'roles'] = implode(
',', $newRoles);
1031 if (empty($nonce)) {
1032 $nonce = bin2hex(openssl_random_pseudo_bytes(10));
1040 $payLoad[
'iss'] = self::getIliasHttpPath();
1041 $payLoad[
'aud'] = $oAuthConsumerKey;
1042 $payLoad[self::LTI_JWT_CLAIM_PREFIX .
'/claim/deployment_id'] = strval(
$typeId);
1043 if (!empty($endpoint)) {
1044 $payLoad[self::LTI_JWT_CLAIM_PREFIX .
'/claim/target_link_uri'] = $endpoint;
1047 foreach ($parms as
$key => $value) {
1048 $claim = self::LTI_JWT_CLAIM_PREFIX;
1049 if (array_key_exists(
$key, $claimMapping)) {
1050 $mapping = $claimMapping[
$key];
1052 if (isset($mapping[
'isArray']) && $mapping[
'isArray']) {
1053 $value = explode(
',', $value);
1055 } elseif (isset($mapping[
'isBoolean'])) {
1056 $value = $mapping[
'isBoolean'];
1058 if (!empty($mapping[
'suffix'])) {
1059 $claim .=
"-{$mapping['suffix']}";
1061 $claim .=
'/claim/';
1062 if (is_null($mapping[
'group'])) {
1063 $payLoad[$mapping[
'claim']] = $value;
1064 } elseif (empty($mapping[
'group'])) {
1065 $payLoad[
"{$claim}{$mapping['claim']}"] = $value;
1067 $claim .= $mapping[
'group'];
1068 $payLoad[$claim][$mapping[
'claim']] = $value;
1070 } elseif (strpos(
$key,
'custom_') === 0) {
1071 $payLoad[
"{$claim}/claim/custom"][substr(
$key, 7)] = $value;
1072 } elseif (strpos(
$key,
'ext_') === 0) {
1073 $payLoad[
"{$claim}/claim/ext"][substr(
$key, 4)] = $value;
1077 if (!empty(self::verifyPrivateKey())) {
1083 $newParms[
'id_token'] =
$jwt;
1090 $err = self::verifyPrivateKey();
1094 $privatekey = $ilSetting->get(self::LTI_1_3_PRIVATE_KEY);
1095 $kid = $ilSetting->get(self::LTI_1_3_KID);
1097 "key" => $privatekey,
1105 $key = $ilSetting->get(self::LTI_1_3_PRIVATE_KEY);
1108 $kid = bin2hex(openssl_random_pseudo_bytes(10));
1109 $ilSetting->set(self::LTI_1_3_KID,
$kid);
1111 "digest_alg" =>
"sha256",
1112 "private_key_bits" => 2048,
1113 "private_key_type" => self::OPENSSL_KEYTYPE_RSA
1116 openssl_pkey_export(
$res, $privatekey);
1117 if (!empty($privatekey)) {
1118 $ilSetting->set(self::LTI_1_3_PRIVATE_KEY, $privatekey);
1120 return self::ERROR_OPEN_SSL_CONF;
1131 if (
$res !==
false) {
1140 $jwks = [
'keys' => []];
1142 $privatekey = self::getPrivateKey();
1143 $res = openssl_pkey_get_private($privatekey[
'key']);
1147 $jwk[
'kty'] =
'RSA';
1148 $jwk[
'alg'] =
'RS256';
1149 $jwk[
'kid'] = $privatekey[
'kid'];
1150 $jwk[
'e'] = rtrim(strtr(base64_encode(
$details[
'rsa'][
'e']),
'+/',
'-_'),
'=');
1151 $jwk[
'n'] = rtrim(strtr(base64_encode(
$details[
'rsa'][
'n']),
'+/',
'-_'),
'=');
1152 $jwk[
'use'] =
'sig';
1154 $jwks[
'keys'][] = $jwk;
1162 if ($DIC[
'https']->isDetected()) {
1163 $protocol =
'https://';
1165 $protocol =
'http://';
1169 $rq_uri = strip_tags(
$_SERVER[
'REQUEST_URI']);
1173 if (is_int($pos = strpos($rq_uri,
"?"))) {
1174 $rq_uri = substr($rq_uri, 0, $pos);
1177 $path = pathinfo($rq_uri);
1178 if (isset(
$path[
'extension']) &&
$path[
'extension'] !==
'') {
1179 $uri = dirname($rq_uri);
1183 $uri = str_replace(
"Modules/LTIConsumer",
"", $uri);
1185 $f = new \ILIAS\Data\Factory();
1187 return $uri->getBaseURI();
1192 return self::getIliasHttpPath();
1197 return self::getIliasHttpPath() .
"/Modules/LTIConsumer/ltiauth.php";
1202 return self::getIliasHttpPath() .
"/Modules/LTIConsumer/ltitoken.php";
1207 return self::getIliasHttpPath() .
"/Modules/LTIConsumer/lticerts.php";
1212 return self::getIliasHttpPath() .
"/Modules/LTIConsumer/ltiregistration.php";
1217 return self::getIliasHttpPath() .
"/Modules/LTIConsumer/ltiregstart.php";
1222 return self::getIliasHttpPath() .
"/Modules/LTIConsumer/ltiregend.php";
1227 return self::getIliasHttpPath() .
"/Modules/LTIConsumer/lticonfig.php";
1232 $scopesSupported = array(
'openid');
1234 $scopesSupported = array_merge($scopesSupported, $gradeservice->getPermittedScopes());
1236 "issuer" => self::getPlattformId(),
1237 "authorization_endpoint" => self::getAuthenticationRequestUrl(),
1238 "token_endpoint" => self::getAccessTokenUrl(),
1239 "token_endpoint_auth_methods_supported" => [
"private_key_jwt"],
1240 "token_endpoint_auth_signing_alg_values_supported" => [
"RS256"],
1241 "jwks_uri" => self::getPublicKeysetUrl(),
1242 "registration_endpoint" => self::getRegistrationUrl(),
1243 "scopes_supported" => $scopesSupported,
1244 "response_types_supported" => [
"id_token"],
1245 "subject_types_supported" => [
"public",
"pairwise"],
1246 "id_token_signing_alg_values_supported" => [
"RS256"],
1247 "claims_supported" => [
"iss",
"aud"],
1248 "https://purl.imsglobal.org/spec/lti-platform-configuration" => [
1249 "product_family_code" =>
"ilias.de",
1251 "messages_supported" => [
1253 "type" =>
"LtiResourceLinkRequest",
1258 "type" =>
"LtiDeepLinkingRequest",
1272 $reponseData =
$data;
1274 $toolConfig = $data[
'https://purl.imsglobal.org/spec/lti-tool-configuration'];
1279 if (isset($data[
'jwks_uri'])) {
1282 foreach ($toolConfig[
'messages'] as
$message) {
1283 if (isset($message[
'type']) && $message[
'type'] ===
'LtiDeepLinkingRequest') {
1299 $reponseData[
'client_id'] = $tokenObj->aud;
1300 $reponseData[
'https://purl.imsglobal.org/spec/lti-tool-configuration'][
'deployment_id'] = $provider->
getId();
1301 return $reponseData;
1314 self::getLogger()->error(
"$code $message");
1316 $DIC->http()->saveResponse(
1317 $DIC->http()->response()
1319 ->withBody(Streams::ofString($message))
1321 $DIC->http()->sendResponse();
1322 $DIC->http()->close();
1324 $DIC->http()->close();
1332 header(
'Content-Type: application/json; charset=utf-8');
1333 header(
'Cache-Control: no-store');
1334 header(
'Pragma: no-cache');
1335 echo json_encode($obj, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT);
1337 self::sendResponseError(500,
"error in sendResponseJson");
1338 $DIC->http()->close();
1344 return new self($a_id, $a_reference);
1354 return file_get_contents(
'php://input');
1360 $keys = JWK::parseKeySet(self::getJwks());
1361 return JWT::decode($token,
$keys);
1370 $auth = $DIC->http()->request()->getHeader(
"Authorization");
1372 if (count(
$auth) < 1) {
1373 self::sendResponseError(405,
"missing Authorization header");
1375 preg_match(
'/Bearer\s+(.+)$/i',
$auth[0], $matches);
1376 if (count($matches) != 2) {
1378 self::sendResponseError(405,
"missing required Authorization Baerer token");
1383 return self::getTokenObject(
$token);
static getIdentAsId(int $userIdentMode, ilObjUser $user)
setUseXapi(bool $use_xapi)
const LAUNCH_METHOD_OWN_WIN
setInitiateLogin(string $initiate_login)
const HIGHSCORE_SHOW_TOP_TABLE
setPublicKeyset(string $public_keyset)
getHighscoreWTime()
Gets if the column with the workingtime should be shown.
setActivationEndingTime(?int $activationEndingTime=null)
static getLogger(string $a_component_id)
Get component logger.
setCustomActivityId(string $custom_activity_id)
__construct(int $a_id=0, bool $a_reference=true)
ilObjLTIConsumer constructor.
setCustomParams(string $customParams)
getActivationEndingTime()
setActivationLimited(bool $activationLimited)
setHighscoreEnabled(bool $a_enabled)
HIGHSCORE.
static getPublicKeysetUrl()
static sendResponseError(int $code, string $message, $log=true)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
getHighscorePercentage()
Gets if the percentage column should be shown.
getHighscoreEnabled()
Gets the setting which determines if the highscore feature is enabled.
setStatementsReportEnabled(bool $statementsReportEnabled)
setMasteryScorePercent(float $mastery_score_percent)
bool $activationLimited
repository object activation settings (handled by ilObject)
setHighscoreWTime(bool $a_wtime)
Sets if the workingtime of the scores should be shown.
const TIMINGS_DEACTIVATED
const AVAILABILITY_CREATE
setHighscoreAchievedTS(bool $a_achieved_ts)
Sets if the date and time of the scores achievement should be displayed.
static verifyPrivateKey()
setHighscoreTopTable(bool $a_top_table)
Sets if the top-rankings table should be shown.
setContentItemUrl(string $content_item_url)
setCustomLaunchSecret(string $customLaunchSecret)
saveRepositoryActivationSettings()
static buildContentSelectionParameters(ilLTIConsumeProvider $provider, int $refId, string $returnUrl, string $nonce)
bool $activationVisibility
static getRegistrationUrl()
static modifyHttpPath(string $httpPath)
const PRIVACY_NAME_LASTNAME
static registerClient(array $data, object $tokenObj)
const PRIVACY_IDENT_IL_UUID_RANDOM
static getIdent(int $userIdentMode, ilObjUser $user)
bool $_highscore_top_table
static getInstance(int $a_id=0, bool $a_reference=true)
bool $statementsReportEnabled
getHighscoreTopNum(int $a_retval=10)
Gets the number of entries which are to be shown in the top-rankings table.
const ALLOWED_TAGS_IN_TITLE_AND_DESCRIPTION
const LTI_1_3_PRIVATE_KEY
buildLaunchParametersLTI13(ilCmiXapiUser $cmixUser, string $endpoint, string $clientId, int $deploymentId, string $nonce, string $contextType, string $contextId, string $contextTitle, ?string $returnUrl='')
setRedirectionUris(string $redirection_uris)
loadRepositoryActivationSettings()
setLaunchMethod(string $launchMethod)
const REG_TOKEN_OP_NEW_REG
static getIliasHttpPath()
const PRIVACY_NAME_FIRSTNAME
bool $_highscore_percentage
setHighscoreOwnTable(bool $a_own_table)
Sets if the table with the own ranking should be shown.
getActivationVisibility()
static getOpenidConfigUrl()
static getAuthenticationRequestUrl()
static getTokenObject(string $token)
static LTISignJWT(array $parms, string $endpoint, string $oAuthConsumerKey, $typeId=0, string $nonce='')
static getAccessTokenUrl()
setKeyType(string $key_type)
static getRegistrationEndUrl()
ilLTIConsumeProvider $provider
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
const HIGHSCORE_SHOW_OWN_TABLE
setClientId(string $client_id)
setLtiVersion(string $lti_version)
const PRIVACY_NAME_FULLNAME
getActivationStartingTime()
isStatementsReportEnabled()
const LTI_JWT_CLAIM_PREFIX
static getRegistrationStartUrl()
const OPENSSL_KEYTYPE_RSA
static getByKeys(int $a_obj_id, int $a_usr_id, ?bool $a_create=false)
Get a result by object and user key.
int $activationEndingTime
setHighscorePercentage(bool $a_percentage)
Sets if the percentages of the scores pass should be shown.
setHighscoreMode(int $mode)
setActivationVisibility(bool $activationVisibility)
const LAUNCH_METHOD_NEW_WIN
static getItem(int $ref_id)
const REG_TOKEN_OP_UPDATE_REG
static getProviderCustomParamsArray(ilLTIConsumeProvider $provider)
setActivationStartingTime(?int $activationStartingTime=null)
static encode(array $payload, $key, string $alg, string $keyId=null, array $head=null)
Converts and signs a PHP array into a JWT string.
buildLaunchParameters(ilCmiXapiUser $cmixUser, string $token, string $contextType, string $contextId, string $contextTitle, ?string $returnUrl='')
__construct(Container $dic, ilPlugin $plugin)
setCustomLaunchKey(string $customLaunchKey)
getHighscoreTopTable()
Gets, if the top-rankings table should be shown.
int $activationStartingTime
getHighscoreAchievedTS()
Returns if date and time of the scores achievement should be displayed.
string $custom_activity_id
setHighscoreTopNum(int $a_top_num)
Sets the number of entries which are to be shown in the top-rankings table.
static sendResponseJson(array $obj)
static signOAuth(array $a_params)
sign request data with OAuth
string $customLaunchSecret
setProviderUrl(string $provider_url)
Class ilObjectActivation.
const ERROR_OPEN_SSL_CONF
setAvailability(int $availability)
const LAUNCH_METHOD_EMBEDDED
const HIGHSCORE_SHOW_ALL_TABLES
getHighscoreOwnTable()
Gets if the own rankings table should be shown.
bool $_highscore_achieved_ts
setMasteryScore(float $mastery_score)
setProviderId(int $providerId)
setIsGlobal(bool $is_global)
setProvider(ilLTIConsumeProvider $provider)
bool $_highscore_own_table