28 const CMI5_XSD =
'cmi5_v1_CourseStructure.xsd';
37 self::CMI5_XML, self::TINCAN_XML
44 self::CMI5_XML => self::CMI5_XSD,
45 self::TINCAN_XML => self::TINCAN_XSD
101 $fileInfo = pathinfo($serverFile);
103 switch ($fileInfo[
'extension']) {
104 case self::IMP_FILE_EXTENSION_XML:
109 case self::IMP_FILE_EXTENSION_ZIP:
134 $fileData[
'tmp_name']
152 if ($DIC->upload()->hasUploads()) {
153 if (!$DIC->upload()->hasBeenProcessed()) {
154 $DIC->upload()->process();
159 $results = $DIC->upload()->getResults();
161 if (isset(
$results[$uploadFilePath])) {
164 if (
$result->getStatus() == FileUploadProcessingStatus::OK) {
169 'upload processing failed with message ' .
170 '"' .
$result->getStatus()->getMessage() .
'"' 187 case self::IMP_FILE_EXTENSION_XML:
192 case self::IMP_FILE_EXTENSION_ZIP:
210 $dom =
new DOMDocument();
211 $dom->load($xmlFilePath);
213 switch (basename($xmlFilePath)) {
223 case self::TINCAN_XML:
241 $dom =
new DOMDocument();
242 $dom->load($xmlFilePath);
243 switch (basename($xmlFileName)) {
253 case self::TINCAN_XML:
266 if (!$dom->schemaValidate($xsdFilePath)) {
274 $zar =
new ZipArchive();
275 $zar->open($uploadFilePath);
276 $zar->extractTo($targetPath);
291 return implode(DIRECTORY_SEPARATOR, $dirs);
299 return self::RELATIVE_CONTENT_DIRECTORY_NAMEBASE . $this->
object->getId();
308 return pathinfo($uploadResult->getName(), PATHINFO_EXTENSION);
326 foreach (self::$CONTENT_XML_FILENAMES as $xmlFileName) {
329 if ($DIC->filesystem()->web()->has($xmlFilePath)) {
343 return ILIAS_ABSOLUTE_PATH . DIRECTORY_SEPARATOR . self::RELATIVE_XSD_DIRECTORY . DIRECTORY_SEPARATOR . $xsdFileName;
349 $xPath =
new DOMXPath($dom);
351 $courseNode = $xPath->query(
"//*[local-name()='course']")->item(0);
353 $title = $xPath->query(
"//*[local-name()='title']/*[local-name()='langstring']", $courseNode)->item(0)->nodeValue;
354 $this->
object->setTitle(trim($title));
356 $description = $xPath->query(
"//*[local-name()='description']/*[local-name()='langstring']", $courseNode)->item(0)->nodeValue;
357 $this->
object->setDescription(trim($description));
359 $publisherId = trim($courseNode->getAttribute(
'id'));
360 $this->
object->setPublisherId($publisherId);
363 $this->
object->setActivityId($activityId);
365 foreach ($xPath->query(
"//*[local-name()='au']") as $assignedUnitNode) {
366 $relativeLaunchUrl = $xPath->query(
"//*[local-name()='url']", $assignedUnitNode)->item(0)->nodeValue;
367 $launchParameters = $xPath->query(
"//*[local-name()='launchParameters']", $assignedUnitNode)->item(0)->nodeValue;
368 $moveOn = trim($assignedUnitNode->getAttribute(
'moveOn'));
369 $entitlementKey = $xPath->query(
"//*[local-name()='entitlementKey']", $assignedUnitNode)->item(0)->nodeValue;
370 $masteryScore = trim($assignedUnitNode->getAttribute(
'masteryScore'));
372 if (!empty($relativeLaunchUrl)) {
373 $this->
object->setLaunchUrl(trim($relativeLaunchUrl));
375 if (!empty($launchParameters)) {
376 $this->
object->setLaunchParameters(trim($launchParameters));
378 if (!empty($moveOn)) {
382 $this->
object->setMoveOn($moveOn);
384 if (!empty($entitlementKey)) {
385 $this->
object->setEntitlementKey($entitlementKey);
387 if (!empty($masteryScore)) {
388 $this->
object->setMasteryScore($masteryScore);
395 $xml_str = $dom->saveXML();
396 $this->
object->setXmlManifest($xml_str);
397 $this->
object->update();
398 $this->
object->save();
416 $lpSettings->setMode($mode);
417 $lpSettings->update();
422 $xPath =
new DOMXPath($dom);
424 foreach ($xPath->query(
"//*[local-name()='activity']") as $activityNode) {
425 $title = $xPath->query(
"//*[local-name()='name']", $activityNode)->item(0)->nodeValue;
426 $this->
object->setTitle(trim($title));
428 $description = $xPath->query(
"//*[local-name()='description']", $activityNode)->item(0)->nodeValue;
429 $this->
object->setDescription(trim($description));
431 $activityId = $activityNode->getAttribute(
'id');
432 $this->
object->setActivityId(trim($activityId));
434 $relativeLaunchUrl = $xPath->query(
"//*[local-name()='launch']", $activityNode)->item(0)->nodeValue;
435 $this->
object->setLaunchUrl(trim($relativeLaunchUrl));
440 $xml_str = $dom->saveXML();
441 $this->
object->setXmlManifest($xml_str);
442 $this->
object->update();
443 $this->
object->save();
449 $objId = $this->
object->getId();
const LP_MODE_CMIX_COMPLETED
const LP_MODE_CMIX_COMPLETED_OR_PASSED
const IMP_FILE_EXTENSION_XML
fetchFileExtension(FileUploadResult $uploadResult)
const MOVEON_COMPLETED_AND_PASSED
importServerFile($serverFile)
handleFile(string $serverFile)
const LP_MODE_CMIX_PASSED
getUpload($uploadFilePath)
initObjectFromCmi5Xml($dom)
ensureCreatedObjectDirectory()
const RELATIVE_CONTENT_DIRECTORY_NAMEBASE
handleUpload(FileUploadResult $uploadResult)
importFormUpload(ilFileInputGUI $uploadInput)
getXsdFilePath($xsdFileName)
sanitizeObjectDirectory()
const IMP_FILE_EXTENSION_ZIP
static $CONTENT_XSD_FILENAMES
__construct(ilObjCmiXapi $object)
ilCmiXapiContentUploadImporter constructor.
validateXmlFile(DOMDocument $dom, $xsdFilePath)
handleZipContentUpload($uploadFilePath)
getAbsoluteObjectDirectory()
const LP_MODE_DEACTIVATED
static renameExecutables($a_dir)
Rename uploaded executables for security reasons.
initObjectFromTincanXml($dom)
handleXmlFile($xmlFilePath)
generateActivityId($publisherId)
static $CONTENT_XML_FILENAMES
handleXmlFileFromUpload($xmlFileName, $xmlFilePath)
static getWebspaceDir($mode="filesystem")
get webspace directory
const MOVEON_COMPLETED_OR_PASSED
getWebDataDirRelativeObjectDirectory()
const RELATIVE_XSD_DIRECTORY