3 declare(strict_types=1);
55 $this->
user = $DIC->user();
56 $this->
ctrl = $DIC->ctrl();
69 $this->
ctrl->redirectToURL($launchLink);
77 $launchLink = $this->
object->getLaunchUrl();
79 if (preg_match(
"/^(https?:\/\/)/", $this->
object->getLaunchUrl()) == 1) {
80 $launchLink = $this->
object->getLaunchUrl();
82 $launchLink = implode(
'/', [
88 $launchLink .= DIRECTORY_SEPARATOR . $this->
object->getLaunchUrl();
106 if ($this->
object->isBypassProxyEnabled()) {
107 $params[
'endpoint'] = urlencode(rtrim($this->
object->getLrsType()->getLrsEndpoint(),
'/') .
'/');
109 $params[
'endpoint'] = urlencode(rtrim(ILIAS_HTTP_PATH .
'/' . self::XAPI_PROXY_ENDPOINT,
'/') .
'/');
112 if ($this->
object->isAuthFetchUrlEnabled()) {
115 if ($this->
object->isBypassProxyEnabled()) {
116 $params[
'auth'] = urlencode($this->
object->getLrsType()->getBasicAuth());
118 $params[
'auth'] = urlencode(
'Basic ' . base64_encode(
124 $params[
'activity_id'] = urlencode($this->
object->getActivityId());
125 $params[
'activityId'] = urlencode($this->
object->getActivityId());
126 $params[
'actor'] = urlencode(json_encode($this->
object->getStatementActor($this->cmixUser)));
128 $registration = $this->cmixUser->getRegistration();
130 if ($registration ==
'') {
133 $params[
'registration'] = $registration;
145 $link = implode(
'/', [
146 ILIAS_HTTP_PATH,
'Modules',
'CmiXapi',
'xapitoken.php' 151 return iLUtil::appendUrlParameterString($link,
"param={$param}");
160 session_name() => session_id(),
161 'obj_id' => $this->
object->getId(),
162 'ref_id' => $this->
object->getRefId(),
167 return urlencode(base64_encode(openssl_encrypt(
179 $this->
user->getId(),
180 $this->
object->getRefId(),
181 $this->
object->getId(),
182 $this->
object->getLrsType()->getTypeId()
189 $this->cmixUser =
new ilCmiXapiUser($this->
object->getId(), $this->
user->getId(), $this->
object->getPrivacyIdent());
191 if ($user_ident ==
'' || $user_ident == null) {
193 $this->cmixUser->setUsrIdent($user_ident);
198 $this->cmixUser->save();
210 $language = $this->
user->getLanguage();
213 "languagePreference" =>
"{$language}",
214 "audioPreference" =>
"{$audio}" 229 $lrsType = $this->
object->getLrsType();
230 $defaultLrs = $lrsType->getLrsEndpoint();
232 $defaultBasicAuth = $lrsType->getBasicAuth();
235 'X-Experience-API-Version' =>
'1.0.3',
236 'Authorization' => $defaultBasicAuth,
237 'Content-Type' =>
'application/json;charset=utf-8',
238 'Cache-Control' =>
'no-cache, no-store, must-revalidate' 241 $registration = $this->cmixUser->getRegistration();
243 if ($registration ==
'') {
247 $activityId = $this->
object->getActivityId();
251 $defaultAgentProfileUrl = $defaultLrs .
"/agents/profile";
252 $profileParams[
'agent'] = json_encode($this->
object->getStatementActor($this->cmixUser));
253 $profileParams[
'profileId'] =
'cmi5LearnerPreferences';
257 $launchDataParams = [];
258 $defaultStateUrl = $defaultLrs .
"/activities/state";
260 $launchDataParams[
'agent'] = json_encode($this->
object->getStatementActor($this->cmixUser));
261 $launchDataParams[
'activityId'] = $activityId;
262 $launchDataParams[
'activity_id'] = $activityId;
263 $launchDataParams[
'registration'] = $registration;
264 $launchDataParams[
'stateId'] =
'LMS.LaunchData';
267 $cmi5LearnerPreferences = json_encode($cmi5LearnerPreferencesObj);
268 $lang = $cmi5LearnerPreferencesObj[
'languagePreference'];
271 $oldSession = $tokenObject->getCmi5Session();
272 $oldSessionLaunchedTimestamp =
'';
275 if ($oldSession != null && !empty($oldSession)) {
276 $oldSessionData = json_decode($tokenObject->getCmi5SessionData());
277 $oldSessionLaunchedTimestamp = $oldSessionData->launchedTimestamp;
278 $tokenObject->delete();
281 $lastStatement = $this->
object->getLastStatement($oldSession);
283 if (isset($lastStatement[0][
'statement'][
'verb'][
'id']) && $lastStatement[0][
'statement'][
'verb'][
'id'] !=
ilCmiXapiVerbList::getInstance()->getVerbUri(
'terminated')) {
285 $start =
new DateTime($oldSessionLaunchedTimestamp);
286 $end =
new DateTime($lastStatement[0][
'statement'][
'timestamp']);
287 $diff = $end->diff($start);
297 $lpMode = $this->
object->getLPMode();
304 $tokenObject->setCmi5Session($cmi5_session);
305 $sessionData = array();
306 $sessionData[
'cmi5LearnerPreferences'] = $cmi5LearnerPreferencesObj;
309 $sessionData[
'launchedTimestamp'] = $now->toXapiTimestamp();
310 $tokenObject->setCmi5SessionData(json_encode($sessionData));
311 $tokenObject->update();
312 $defaultStatementsUrl = $defaultLrs .
"/statements";
315 $launchData = json_encode($this->
object->getLaunchData($this->cmixUser,
$lang, $this->launchedByRefId));
316 $launchedStatement = $this->
object->getLaunchedStatement($this->cmixUser);
317 $launchedStatementParams = [];
318 $launchedStatementParams[
'statementId'] = $launchedStatement[
'id'];
323 $abandonedStatement = $this->
object->getAbandonedStatement($oldSession, $duration, $this->cmixUser);
324 $abandonedStatementParams = [];
325 $abandonedStatementParams[
'statementId'] = $abandonedStatement[
'id'];
330 $satisfiedStatement = $this->
object->getSatisfiedStatement($this->cmixUser);
331 $satisfiedStatementParams = [];
332 $satisfiedStatementParams[
'statementId'] = $satisfiedStatement[
'id'];
337 GuzzleHttp\RequestOptions::VERIFY =>
true,
338 GuzzleHttp\RequestOptions::CONNECT_TIMEOUT => 10,
339 GuzzleHttp\RequestOptions::HTTP_ERRORS =>
false 345 $cmi5LearnerPreferences
349 $defaultLaunchDataUrl,
355 $defaultLaunchedStatementUrl,
357 json_encode($launchedStatement)
362 $defaultAbandonedStatementUrl,
364 json_encode($abandonedStatement)
370 $defaultSatisfiedStatementUrl,
372 json_encode($satisfiedStatement)
376 $promises[
'defaultProfile'] =
$client->sendAsync($defaultProfileRequest, $req_opts);
377 $promises[
'defaultLaunchData'] =
$client->sendAsync($defaultLaunchDataRequest, $req_opts);
378 $promises[
'defaultLaunchedStatement'] =
$client->sendAsync($defaultLaunchedStatementRequest, $req_opts);
380 $promises[
'defaultAbandonedStatement'] =
$client->sendAsync($defaultAbandonedStatementRequest, $req_opts);
383 $promises[
'defaultSatisfiedStatement'] =
$client->sendAsync($defaultSatisfiedStatementRequest, $req_opts);
386 $responses = GuzzleHttp\Promise\Utils::settle($promises)->wait();
392 $this->
log()->error(
'error:' . $e->getMessage());
394 return array(
'cmi5_session' => $cmi5_session,
'token' => $token);
406 return \ilLoggerFactory::getLogger(
'cmix');
static getWebspaceDir(string $mode="filesystem")
get webspace directory
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
static generateRegistration(ilObjCmiXapi $obj, ilObjUser $user)
static getInstanceByToken(string $token)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
buildLaunchLink(string $token)
static fillToken(int $usrId, int $refId, int $objId, int $lrsTypeId=0)
const OPENSSL_ENCRYPTION_METHOD
const RELATIVE_CONTENT_DIRECTORY_NAMEBASE
static generateCMI5Registration(int $objId, int $usrId)
static getIdent(int $userIdentMode, ilObjUser $user)
getLaunchParameters(string $token)
buildAuthTokenFetchParam()
CMI5preLaunch(string $token)
Prelaunch post cmi5LearnerPreference (agent profile) post LMS.LaunchData.
const XAPI_PROXY_ENDPOINT
static _isAnonymous(int $usr_id)
static guidv4(?string $data=null)
const LP_MODE_DEACTIVATED
static buildQuery(array $params, $encoding=PHP_QUERY_RFC3986)
getCmi5LearnerPreferences()
static checkResponse(array $response, &$body, array $allowedStatus=[200, 204])
__construct(ilObjCmiXapi $object, ?int $launchedByRefId=null)
static dateIntervalToISO860Duration(\DateInterval $d)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)