3 declare(strict_types=1);
55 $this->log = $DIC->logger()->exp();
67 if (isset($this->configs[$a_comp])) {
68 return $this->configs[$a_comp];
72 $comp_arr = explode(
"/", $a_comp);
73 $a_class =
"il" . $comp_arr[1] .
"ExportConfig";
74 $exp_config =
new $a_class();
75 $this->configs[$a_comp] = $exp_config;
88 $tree = $DIC->repositoryTree();
90 $valid_items = array();
91 $sub_items = $tree->getSubTree($tree->getNodeData($a_ref_id));
92 foreach ($sub_items as $sub_item) {
93 if (in_array($sub_item[
"type"], self::$export_implementer)) {
95 "type" => (string) $sub_item[
"type"],
96 "title" => (
string) $sub_item[
"title"],
97 "ref_id" => (
int) $sub_item[
"child"],
98 "obj_id" => (
int) $sub_item[
"obj_id"],
115 if (is_array($files)) {
117 return (
int) $files[0][
"timestamp"];
132 string $a_obj_type =
"" 135 if (is_array($files)) {
152 string $a_type =
"xml",
153 string $a_obj_type =
"",
154 string $a_entity =
"" 158 $logger = $DIC->logger()->exp();
159 $objDefinition = $DIC[
'objDefinition'];
161 $ent = ($a_entity ==
"")
165 if ($a_obj_type ==
"") {
169 if (in_array($a_obj_type, self::$new_file_structure)) {
171 $dir .=
'il' . $objDefinition->getClassName($a_obj_type) . $ent . DIRECTORY_SEPARATOR;
172 $dir .= self::createPathFromId($a_obj_id, $a_obj_type) . DIRECTORY_SEPARATOR;
173 $dir .= ($a_type ==
'xml' ?
'export' :
'export_' . $a_type);
177 $exporter_class = ilImportExportFactory::getExporterClass($a_obj_type);
178 $export_dir = call_user_func(
179 array($exporter_class,
'lookupExportDirectory'),
186 $logger->debug(
'Export dir is ' . $export_dir);
196 public static function _getExportFiles(
int $a_obj_id, $a_export_types =
"",
string $a_obj_type =
""): array
198 if ($a_obj_type ==
"") {
202 if ($a_export_types ==
"") {
203 $a_export_types = array(
"xml");
205 if (!is_array($a_export_types)) {
206 $a_export_types = array($a_export_types);
212 $types = $a_export_types;
214 foreach ($types as
$type) {
218 if (!is_dir($dir) || !is_writable($dir)) {
226 while ($entry = $h_dir->read()) {
227 if ($entry !==
"." &&
229 substr($entry, -4) ===
".zip" &&
230 preg_match(
"/^[0-9]{10}_{2}[0-9]+_{2}(" . $a_obj_type .
"_)*[0-9]+\.zip\$/", $entry)) {
231 $ts = substr($entry, 0, strpos($entry,
"__"));
232 $file[$entry .
$type] = [
233 "type" => (string) $type,
234 "file" => (
string) $entry,
235 "size" => (
int) filesize($dir .
"/" . $entry),
236 "timestamp" => (
int) $ts
253 string $a_export_type =
"xml",
254 string $a_obj_type =
"" 260 if ($a_obj_type ==
"") {
281 $lng = $DIC->language();
282 $lng->loadLanguageModule(
"export");
289 $a_tpl->setVariable(
"LOCATION_STYLESHEET", $location_stylesheet);
290 $a_tpl->loadStandardTemplate();
292 $a_tpl->setDescription(
$lng->txt(
"export_export_date") .
": " .
293 date(
'Y-m-d H:i:s', time()) .
" (" . date_default_timezone_get() .
")");
294 $f_tpl =
new ilTemplate(
"tpl.export_list.html",
true,
true,
"Services/Export");
295 foreach ($a_files as $file) {
296 $f_tpl->setCurrentBlock(
"file_row");
297 $f_tpl->setVariable(
"TITLE", $file[
"title"]);
298 $f_tpl->setVariable(
"TYPE",
$lng->txt(
"obj_" . $file[
"type"]));
299 $f_tpl->setVariable(
"FILE", $file[
"file"]);
300 $f_tpl->parseCurrentBlock();
302 $a_tpl->setContent($f_tpl->get());
303 $index_content = $a_tpl->getSpecial(
"DEFAULT",
false,
false,
false,
true,
false,
false);
305 $f = fopen($a_filename,
"w");
306 fwrite(
$f, $index_content);
331 string $a_target_release =
"" 333 $this->log->debug(
"export type: $a_type, id: $a_id, target_release: " . $a_target_release);
336 if ($a_target_release ==
"") {
338 $a_target_release = $v[0] .
"." . $v[1] .
".0";
339 $this->log->debug(
"target_release set to: " . $a_target_release);
344 $this->manifest_writer->xmlHeader();
345 $this->manifest_writer->xmlStartTag(
348 "MainEntity" => $a_type,
352 "InstallationUrl" => ILIAS_HTTP_PATH
362 $sub_dir = $ts .
'__' .
IL_INST_ID .
'__' . $a_type .
'_' . $a_id;
363 $new_file = $sub_dir .
'.zip';
365 $this->export_run_dir = $export_dir .
"/" . $sub_dir;
367 $this->log->debug(
"export dir: " . $this->export_run_dir);
369 $this->cnt = array();
371 $class = ilImportExportFactory::getExporterClass($a_type);
372 $comp = ilImportExportFactory::getComponentForExport($a_type);
374 $success = $this->
processExporter($comp, $class, $a_type, $a_target_release, [$a_id]);
376 $this->manifest_writer->xmlEndTag(
'Manifest');
377 $this->manifest_writer->xmlDumpFile($this->export_run_dir .
"/manifest.xml",
false);
380 $this->log->debug(
"zip: " . $export_dir .
"/" . $new_file);
381 $this->log->debug(
"run dir: " . $this->export_run_dir);
388 $exp->setVersion($a_target_release);
390 $exp->setExportType(
'xml');
391 $exp->setFilename($new_file);
396 "success" => $success,
398 "directory" => $export_dir
413 string $a_target_release,
416 string $a_export_dir,
417 string $a_type_for_file =
"" 421 $objDefinition = $DIC[
'objDefinition'];
425 if ($a_target_release ==
"") {
427 $a_target_release = $v[0] .
"." . $v[1] .
".0";
430 if ($a_type_for_file ==
"") {
431 $a_type_for_file = $a_entity;
434 $comp = $a_component;
435 $c = explode(
"/", $comp);
436 $class =
"il" .
$c[1] .
"Exporter";
440 $this->manifest_writer->xmlHeader();
441 $this->manifest_writer->xmlStartTag(
444 "MainEntity" => $a_entity,
448 "InstallationUrl" => ILIAS_HTTP_PATH
452 $export_dir = $a_export_dir;
456 $sub_dir = $ts .
'__' .
IL_INST_ID .
'__' . $a_type_for_file .
'_' . $a_id;
457 $new_file = $sub_dir .
'.zip';
459 $this->export_run_dir = $export_dir .
"/" . $sub_dir;
462 $this->cnt = array();
463 $success = $this->
processExporter($comp, $class, $a_entity, $a_target_release, [$a_id]);
464 $this->manifest_writer->xmlEndTag(
'Manifest');
465 $this->manifest_writer->xmlDumpFile($this->export_run_dir .
"/manifest.xml",
false);
472 "success" => $success,
474 "directory" => $export_dir
492 string $a_target_release,
496 $this->log->debug(
"process exporter, comp: " . $a_comp .
", class: " . $a_class .
", entity: " . $a_entity .
497 ", target release " . $a_target_release .
", id: " . print_r($a_id,
true));
499 if (!is_array($a_id)) {
503 $a_id = array($a_id);
507 if (!class_exists($a_class)) {
508 $export_class_file =
"./" . $a_comp .
"/classes/class." . $a_class .
".php";
509 if (!is_file($export_class_file)) {
510 throw new ilExportException(
'Export class file "' . $export_class_file .
'" not found.');
514 $exp =
new $a_class();
515 $exp->setExport($this);
516 if (!isset($this->cnt[$a_comp])) {
517 $this->cnt[$a_comp] = 1;
519 $this->cnt[$a_comp]++;
521 $set_dir_relative = $a_comp .
"/set_" . $this->cnt[$a_comp];
522 $set_dir_absolute = $this->export_run_dir .
"/" . $set_dir_relative;
524 $this->log->debug(
"dir: " . $set_dir_absolute);
526 $this->log->debug(
"init exporter");
530 $this->log->debug(
"process head dependencies for " . $a_entity);
531 $sequence = $exp->getXmlExportHeadDependencies($a_entity, $a_target_release, $a_id);
532 foreach ($sequence as $s) {
533 $comp = explode(
"/", $s[
"component"]);
534 $exp_class =
"il" . $comp[1] .
"Exporter";
549 $export_writer->xmlHeader();
551 $sv = $exp->determineSchemaVersion($a_entity, $a_target_release);
552 $sv[
"uses_dataset"] ??=
false;
553 $sv[
'xsd_file'] ??=
'';
554 $this->log->debug(
"schema version for entity: $a_entity, target release: $a_target_release");
555 $this->log->debug(
"...is: " . $sv[
"schema_version"] .
", namespace: " . $sv[
"namespace"] .
556 ", xsd file: " . $sv[
"xsd_file"] .
", uses_dataset: " . ((
int) $sv[
"uses_dataset"]));
558 $attribs = array(
"InstallationId" =>
IL_INST_ID,
559 "InstallationUrl" => ILIAS_HTTP_PATH,
560 "Entity" => $a_entity,
561 "SchemaVersion" => $sv[
"schema_version"],
563 "xmlns:xsi" =>
"http://www.w3.org/2001/XMLSchema-instance",
564 "xmlns:exp" =>
"http://www.ilias.de/Services/Export/exp/4_1",
565 "xsi:schemaLocation" =>
"http://www.ilias.de/Services/Export/exp/4_1 " . ILIAS_HTTP_PATH .
"/xml/ilias_export_4_1.xsd" 567 if ($sv[
"namespace"] !=
"" && $sv[
"xsd_file"] !=
"") {
568 $attribs[
"xsi:schemaLocation"] .=
" " . $sv[
"namespace"] .
" " .
569 ILIAS_HTTP_PATH .
"/xml/" . $sv[
"xsd_file"];
570 $attribs[
"xmlns"] = $sv[
"namespace"];
572 if ($sv[
"uses_dataset"]) {
573 $attribs[
"xsi:schemaLocation"] .=
" " .
574 "http://www.ilias.de/Services/DataSet/ds/4_3 " . ILIAS_HTTP_PATH .
"/xml/ilias_ds_4_3.xsd";
575 $attribs[
"xmlns:ds"] =
"http://www.ilias.de/Services/DataSet/ds/4_3";
577 $export_writer->xmlStartTag(
'exp:Export', $attribs);
580 foreach ($a_id as
$id) {
581 $exp->setExportDirectories(
582 $set_dir_relative .
"/expDir_" . $dir_cnt,
583 $set_dir_absolute .
"/expDir_" . $dir_cnt
585 $export_writer->xmlStartTag(
'exp:ExportItem', array(
"Id" => $id));
587 $xml = $exp->getXmlRepresentation($a_entity, $sv[
"schema_version"], (
string) $id);
588 $export_writer->appendXML(
$xml);
589 $export_writer->xmlEndTag(
'exp:ExportItem');
593 $export_writer->xmlEndTag(
'exp:Export');
594 $export_writer->xmlDumpFile($set_dir_absolute .
"/export.xml",
false);
596 $this->manifest_writer->xmlElement(
598 array(
"Component" => $a_comp,
"Path" => $set_dir_relative .
"/export.xml")
602 $this->log->debug(
"process tail dependencies of " . $a_entity);
603 $sequence = $exp->getXmlExportTailDependencies($a_entity, $a_target_release, $a_id);
604 foreach ($sequence as $s) {
605 $comp = explode(
"/", $s[
"component"]);
606 $exp_class =
"il" . $comp[1] .
"Exporter";
619 $this->log->debug(
"returning " . ((
int) $success) .
" for " . $a_entity);
630 $num = $a_container_id;
632 for (
$i = $max_exponent;
$i > 0;
$i--) {
633 $factor = pow($factor,
$i);
634 if (($tmp = (
int) ($num / $factor)) or $found) {
636 $num = $num % $factor;
641 $path_string = (implode(
'/',
$path) .
'/');
643 return $path_string . $a_name .
'_' . $a_container_id;
static _getLastExportFileDate(int $a_obj_id, string $a_type="", string $a_obj_type="")
Get date of last export file.
const ILIAS_VERSION_NUMERIC
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getStyleSheetLocation(string $mode="output", string $a_css_name="", string $a_css_location="")
get full style sheet file name (path inclusive) of current user
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.
static _getValidExportSubItems(int $a_ref_id)
Get a list of subitems of a repository resource, that implement the export.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
processExporter(string $a_comp, string $a_class, string $a_entity, string $a_target_release, array $a_id=null)
Process exporter.
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
static _getExportFiles(int $a_obj_id, $a_export_types="", string $a_obj_type="")
ilXmlWriter $manifest_writer
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
static _getLastExportFileInformation(int $a_obj_id, string $a_type="", string $a_obj_type="")
Get last export file information.
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)
zips given directory/file into given zip.file
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
static _lookupType(int $id, bool $reference=false)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)