19 declare(strict_types=1);
61 $this->log = $DIC->logger()->exp();
65 string $export_dir_in_container
71 ExportPathInfoInterface $export_path_info
82 return $this->export_path_info->getPathToComponentDirInContainer();
92 return $this->export_path_info->getPathToComponentExpDirInContainer();
96 string $a_dir_relative,
97 string $a_dir_absolute
99 $this->dir_relative = $a_dir_relative;
100 $this->dir_absolute = $a_dir_absolute;
114 ilExportHandlerConsumerExportWriterInterface $export_writer,
133 if (isset($this->configs[$a_comp])) {
134 return $this->configs[$a_comp];
138 $comp_arr = explode(
"/", $a_comp);
139 $component = str_replace(
"_",
"", $comp_arr[2]);
140 $a_class =
"il" . $component .
"ExportConfig";
141 $exp_config =
new $a_class();
142 $this->configs[$a_comp] = $exp_config;
155 $tree = $DIC->repositoryTree();
157 $valid_items = array();
158 $sub_items = $tree->getSubTree($tree->getNodeData($a_ref_id));
159 foreach ($sub_items as $sub_item) {
160 if (in_array($sub_item[
"type"], self::$export_implementer)) {
162 "type" => (string) $sub_item[
"type"],
163 "title" => (
string) $sub_item[
"title"],
164 "ref_id" => (
int) $sub_item[
"child"],
165 "obj_id" => (
int) $sub_item[
"obj_id"],
183 if (is_array($files)) {
185 return (
int) $files[0][
"timestamp"];
201 string $a_obj_type =
"" 204 if (is_array($files)) {
222 string $a_type =
"xml",
223 string $a_obj_type =
"",
224 string $a_entity =
"" 228 $logger = $DIC->logger()->exp();
229 $objDefinition = $DIC[
'objDefinition'];
231 $ent = ($a_entity ==
"")
235 if ($a_obj_type ==
"") {
239 if (in_array($a_obj_type, self::$new_file_structure)) {
241 $dir .=
'il' . $objDefinition->getClassName($a_obj_type) . $ent . DIRECTORY_SEPARATOR;
242 $dir .= self::createPathFromId($a_obj_id, $a_obj_type) . DIRECTORY_SEPARATOR;
243 $dir .= ($a_type ==
'xml' ?
'export' :
'export_' . $a_type);
247 $exporter_class = ilImportExportFactory::getExporterClass($a_obj_type);
248 $export_dir = call_user_func(
249 array($exporter_class,
'lookupExportDirectory'),
256 $logger->debug(
'Export dir is ' . $export_dir);
267 public static function _getExportFiles(
int $a_obj_id, $a_export_types =
"",
string $a_obj_type =
""): array
269 if ($a_obj_type ==
"") {
273 if ($a_export_types ==
"") {
274 $a_export_types = array(
"xml");
276 if (!is_array($a_export_types)) {
277 $a_export_types = array($a_export_types);
283 $types = $a_export_types;
285 foreach ($types as $type) {
289 if (!is_dir($dir) || !is_writable($dir)) {
297 while ($entry = $h_dir->read()) {
298 if ($entry !==
"." &&
300 substr($entry, -4) ===
".zip" &&
301 preg_match(
"/^[0-9]{10}_{2}[0-9]+_{2}(" . $a_obj_type .
"_)*[0-9]+\.zip\$/", $entry)) {
302 $ts = substr($entry, 0, strpos($entry,
"__"));
303 $file[$entry . $type] = [
304 "type" => (string) $type,
305 "file" => (
string) $entry,
306 "size" => (
int) filesize($dir .
"/" . $entry),
307 "timestamp" => (
int) $ts
324 string $a_export_type =
"xml",
325 string $a_obj_type =
"" 331 if ($a_obj_type ==
"") {
353 $lng = $DIC->language();
354 $lng->loadLanguageModule(
"export");
361 $a_tpl->setVariable(
"LOCATION_STYLESHEET", $location_stylesheet);
362 $a_tpl->loadStandardTemplate();
364 $a_tpl->setDescription(
$lng->txt(
"export_export_date") .
": " .
365 date(
'Y-m-d H:i:s', time()) .
" (" . date_default_timezone_get() .
")");
366 $f_tpl =
new ilTemplate(
"tpl.export_list.html",
true,
true,
"components/ILIAS/Export");
367 foreach ($a_files as $file) {
368 $f_tpl->setCurrentBlock(
"file_row");
369 $f_tpl->setVariable(
"TITLE", $file[
"title"]);
370 $f_tpl->setVariable(
"TYPE",
$lng->txt(
"obj_" . $file[
"type"]));
371 $f_tpl->setVariable(
"FILE", $file[
"file"]);
372 $f_tpl->parseCurrentBlock();
374 $a_tpl->setContent($f_tpl->get());
375 $index_content = $a_tpl->getSpecial(
"DEFAULT",
false,
false,
false,
true,
false,
false);
377 $f = fopen($a_filename,
"w");
378 fwrite(
$f, $index_content);
404 string $a_target_release =
"" 406 $this->log->debug(
"export type: $a_type, id: $a_id, target_release: " . $a_target_release);
409 if ($a_target_release ==
"") {
411 $a_target_release = $v[0] .
"." . $v[1] .
".0";
412 $this->log->debug(
"target_release set to: " . $a_target_release);
417 $this->manifest_writer->xmlHeader();
418 $this->manifest_writer->xmlStartTag(
421 "MainEntity" => $a_type,
425 "InstallationUrl" => ILIAS_HTTP_PATH
435 $sub_dir = $ts .
'__' .
IL_INST_ID .
'__' . $a_type .
'_' . $a_id;
436 $new_file = $sub_dir .
'.zip';
438 $this->export_run_dir = $export_dir .
"/" . $sub_dir;
440 $this->log->debug(
"export dir: " . $this->export_run_dir);
442 $this->cnt = array();
444 $class = ilImportExportFactory::getExporterClass($a_type);
445 $comp = ilImportExportFactory::getComponentForExport($a_type);
447 $success = $this->
processExporter($comp, $class, $a_type, $a_target_release, [$a_id]);
449 $this->manifest_writer->xmlEndTag(
'Manifest');
450 $this->manifest_writer->xmlDumpFile($this->export_run_dir .
"/manifest.xml",
false);
453 $this->log->debug(
"zip: " . $export_dir .
"/" . $new_file);
454 $this->log->debug(
"run dir: " . $this->export_run_dir);
461 $exp->setVersion($a_target_release);
463 $exp->setExportType(
'xml');
464 $exp->setFilename($new_file);
469 "success" => $success,
471 "directory" => $export_dir
487 string $a_target_release,
490 string $a_export_dir,
491 string $a_type_for_file =
"" 495 $objDefinition = $DIC[
'objDefinition'];
499 if ($a_target_release ==
"") {
501 $a_target_release = $v[0] .
"." . $v[1] .
".0";
504 if ($a_type_for_file ==
"") {
505 $a_type_for_file = $a_entity;
508 $comp = $a_component;
509 $c = explode(
"/", $comp);
510 $component = str_replace(
"_",
"",
$c[2]);
511 $class =
"il" . $component .
"Exporter";
515 $this->manifest_writer->xmlHeader();
516 $this->manifest_writer->xmlStartTag(
519 "MainEntity" => $a_entity,
523 "InstallationUrl" => ILIAS_HTTP_PATH
527 $export_dir = $a_export_dir;
531 $sub_dir = $ts .
'__' .
IL_INST_ID .
'__' . $a_type_for_file .
'_' . $a_id;
532 $new_file = $sub_dir .
'.zip';
534 $this->export_run_dir = $export_dir .
"/" . $sub_dir;
537 $this->cnt = array();
538 $success = $this->
processExporter($comp, $class, $a_entity, $a_target_release, [$a_id]);
539 $this->manifest_writer->xmlEndTag(
'Manifest');
540 $this->manifest_writer->xmlDumpFile($this->export_run_dir .
"/manifest.xml",
false);
547 "success" => $success,
549 "directory" => $export_dir
568 string $a_target_release,
572 $this->log->debug(
"process exporter, comp: " . $a_comp .
", class: " . $a_class .
", entity: " . $a_entity .
573 ", target release " . $a_target_release .
", id: " . print_r($a_id,
true));
575 if (!is_array($a_id)) {
579 $a_id = array($a_id);
583 if (!class_exists($a_class)) {
584 $a_class = substr($a_class, 0, 2) .
"ILIAS" . substr($a_class, 2);
585 if (!class_exists($a_class)) {
586 $export_class_file =
"./" . $a_comp .
"/classes/class." . $a_class .
".php";
587 if (!is_file($export_class_file)) {
588 throw new ilExportException(
'Export class file "' . $export_class_file .
'" not found.');
593 $exp =
new $a_class();
594 $exp->setExport($this);
595 if (!isset($this->cnt[$a_comp])) {
596 $this->cnt[$a_comp] = 1;
598 $this->cnt[$a_comp]++;
600 $set_dir_relative = $a_comp .
"/set_" . $this->cnt[$a_comp];
601 $set_dir_absolute = $this->export_run_dir .
"/" . $set_dir_relative;
603 $this->log->debug(
"dir: " . $set_dir_absolute);
605 $this->log->debug(
"init exporter");
609 $this->log->debug(
"process head dependencies for " . $a_entity);
610 $sequence = $exp->getXmlExportHeadDependencies($a_entity, $a_target_release, $a_id);
611 foreach ($sequence as $s) {
612 $comp = explode(
"/", $s[
"component"]);
613 $component = str_replace(
"_",
"", $comp[2]);
614 $exp_class =
"il" . $component .
"Exporter";
629 $export_writer->xmlHeader();
631 $sv = $exp->determineSchemaVersion($a_entity, $a_target_release);
632 $sv[
"uses_dataset"] ??=
false;
633 $sv[
'xsd_file'] ??=
'';
634 $this->log->debug(
"schema version for entity: $a_entity, target release: $a_target_release");
635 $this->log->debug(
"...is: " . $sv[
"schema_version"] .
", namespace: " . $sv[
"namespace"] .
636 ", xsd file: " . $sv[
"xsd_file"] .
", uses_dataset: " . ((
int) $sv[
"uses_dataset"]));
638 $attribs = array(
"InstallationId" =>
IL_INST_ID,
639 "InstallationUrl" => ILIAS_HTTP_PATH,
640 "Entity" => $a_entity,
641 "SchemaVersion" => $sv[
"schema_version"],
643 "xmlns:xsi" =>
"http://www.w3.org/2001/XMLSchema-instance",
644 "xmlns:exp" =>
"http://www.ilias.de/Services/Export/exp/4_1",
645 "xsi:schemaLocation" =>
"http://www.ilias.de/Services/Export/exp/4_1 " . ILIAS_HTTP_PATH .
"/components/ILIAS/Export/xml/ilias_export_4_1.xsd" 647 if ($sv[
"namespace"] !=
"" && $sv[
"xsd_file"] !=
"") {
648 $attribs[
"xsi:schemaLocation"] .=
" " . $sv[
"namespace"] .
" " .
649 ILIAS_HTTP_PATH .
"/components/ILIAS/Export/xml/" . $sv[
"xsd_file"];
650 $attribs[
"xmlns"] = $sv[
"namespace"];
652 if ($sv[
"uses_dataset"]) {
653 $attribs[
"xsi:schemaLocation"] .=
" " .
654 "http://www.ilias.de/Services/DataSet/ds/4_3 " . ILIAS_HTTP_PATH .
"/components/ILIAS/Export/xml/ilias_ds_4_3.xsd";
655 $attribs[
"xmlns:ds"] =
"http://www.ilias.de/Services/DataSet/ds/4_3";
657 $export_writer->xmlStartTag(
'exp:Export', $attribs);
660 foreach ($a_id as
$id) {
661 $exp->setExportDirectories(
662 $set_dir_relative .
"/expDir_" . $dir_cnt,
663 $set_dir_absolute .
"/expDir_" . $dir_cnt
665 $export_writer->xmlStartTag(
'exp:ExportItem', array(
"Id" => $id));
666 $xml = $exp->getXmlRepresentation($a_entity, $sv[
"schema_version"], (
string) $id);
667 $export_writer->appendXML($xml);
668 $export_writer->xmlEndTag(
'exp:ExportItem');
672 $export_writer->xmlEndTag(
'exp:Export');
673 $export_writer->xmlDumpFile($set_dir_absolute .
"/export.xml",
false);
675 $this->manifest_writer->xmlElement(
677 array(
"Component" => $a_comp,
"Path" => $set_dir_relative .
"/export.xml")
681 $this->log->debug(
"process tail dependencies of " . $a_entity);
682 $sequence = $exp->getXmlExportTailDependencies($a_entity, $a_target_release, $a_id);
683 foreach ($sequence as $s) {
684 if (empty((array) ($s[
"ids"] ?? []))) {
688 $comp = explode(
"/", $s[
"component"]);
689 $component = str_replace(
"_",
"", $comp[2]);
690 $exp_class =
"il" . $component .
"Exporter";
703 $this->log->debug(
"returning " . ((
int) $success) .
" for " . $a_entity);
714 $num = $a_container_id;
716 for ($i = $max_exponent; $i > 0; $i--) {
717 $factor = pow($factor, $i);
718 if (($tmp = (
int) ($num / $factor)) or $found) {
720 $num = $num % $factor;
725 $path_string = (implode(
'/',
$path) .
'/');
727 return $path_string . $a_name .
'_' . $a_container_id;
ilExportHandlerConsumerExportWriterInterface $export_writer
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
static _getLastExportFileDate(int $a_obj_id, string $a_type="", string $a_obj_type="")
Get date of last export file
getPathToComponentExpDirInContainer()
special template class to simplify handling of ITX/PEAR
getConfig(string $a_comp)
Get configuration (note that configurations are optional, null may be returned!)
static array $new_file_structure
exportEntity(string $a_entity, string $a_id, string $a_target_release, string $a_component, string $a_title, string $a_export_dir, string $a_type_for_file="")
Export an ILIAS entity
setExportDirInContainer(string $export_dir_in_container)
processExporter(string $a_comp, string $a_class, string $a_entity, string $a_target_release, ?array $a_id=null)
Process exporter
setPathInfo(ExportPathInfoInterface $export_path_info)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
static _getExportDirectory(int $a_obj_id, string $a_type="xml", string $a_obj_type="", string $a_entity="")
Get export directory for an repository object
getExportDirInContainer()
static _getValidExportSubItems(int $a_ref_id)
Get a list of subitems of a repository resource, that implement the export.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const ILIAS_VERSION_NUMERIC
Export configuration class parent class.
static _lookupTitle(int $obj_id)
static _generateIndexFile(string $a_filename, int $a_obj_id, array $a_files, string $a_type="")
Generates an index.html file including links to all xml files included (for container exports) ...
static _createExportDirectory(int $a_obj_id, string $a_export_type="xml", string $a_obj_type="")
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
ExportPathInfoInterface $export_path_info
static _getExportFiles(int $a_obj_id, $a_export_types="", string $a_obj_type="")
ilXmlWriter $manifest_writer
Stores information of creation date and versions of export files
getAbsoluteExportDirectory()
getRelativeExportDirectory()
exportObject(string $a_type, int $a_id, string $a_target_release="")
Export an ILIAS object (the object type must be known by objDefinition)
static getDataDir()
get data directory (outside webspace)
setExportWriter(ilExportHandlerConsumerExportWriterInterface $export_writer,)
string $export_dir_in_container
static _getLastExportFileInformation(int $a_obj_id, string $a_type="", string $a_obj_type="")
Get last export file information
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static array $export_implementer
static createPathFromId(int $a_container_id, string $a_name)
static zip(string $a_dir, string $a_file, bool $compress_content=false)
static _lookupType(int $id, bool $reference=false)
setExportDirectories(string $a_dir_relative, string $a_dir_absolute)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)