37 include_once(
"./Services/Export/classes/class.ilImportMapping.php");
39 $this->mapping->setTargetId($a_target_id);
53 if (isset($this->configs[$a_comp])) {
54 return $this->configs[$a_comp];
58 $comp_arr = explode(
"/", $a_comp);
59 $a_class =
"il" . $comp_arr[1] .
"ImportConfig";
60 $imp_config =
new $a_class();
61 $this->configs[$a_comp] = $imp_config;
82 $this->entity_types = $a_val;
92 return $this->entity_types;
103 $this->skip_entity[$a_component][$a_entity] = $skip;
114 $this->skip_importer[$a_component] = $skip;
124 $this->current_dataset = $a_val;
135 return $this->current_dataset;
167 $this->
importObject(null, $a_tmp_file, $a_filename, $a_entity, $a_component, $a_copy_file);
189 copy($a_tmp_file, $tmpdir .
"/" . $a_filename);
194 $this->log->debug(
"unzip: " . $tmpdir .
"/" . $a_filename);
197 $dir = $tmpdir .
"/" . substr($a_filename, 0, strlen($a_filename) - 4);
201 $this->log->debug(
"dir: " . $dir);
205 if (is_array(
$ret)) {
206 $new_id =
$ret[
'new_id'];
224 if (is_array(
$ret)) {
225 return $ret[
'new_id'];
238 $this->tmp_import_dir = $a_val;
258 if ($a_component ==
"") {
259 include_once(
"./Services/Export/classes/class.ilImportExportFactory.php");
260 $a_component = ilImportExportFactory::getComponentForExport(
$a_type);
262 $this->comp = $a_component;
268 include_once(
"./Services/Export/classes/class.ilManifestParser.php");
269 if (!is_file($dir .
"/manifest.xml")) {
270 include_once(
"./Services/Export/exceptions/class.ilManifestFileNotFoundImportException.php");
272 ?
'Manifest file not found: "' . $dir .
"/manifest.xml" .
'".' 273 :
'Manifest file not found: "manifest.xml."';
275 $e->setManifestDir($dir);
276 $e->setTmpDir($a_tmpdir);
280 $this->mapping->setInstallUrl(
$parser->getInstallUrl());
281 $this->mapping->setInstallId(
$parser->getInstallId());
285 include_once(
"./Services/Export/exceptions/class.ilImportObjectTypeMismatchException.php");
291 $expfiles =
$parser->getExportFiles();
293 include_once(
"./Services/Export/classes/class.ilExportFileParser.php");
294 include_once(
"./Services/Export/classes/class.ilImportExportFactory.php");
295 $all_importers = array();
296 foreach ($expfiles as $expfile) {
297 $comp = $expfile[
"component"];
299 if (isset($this->skip_importer[$comp]) && $this->skip_importer[$comp] ===
true) {
303 $class = ilImportExportFactory::getImporterClass($comp);
309 $this->log->warning(
"no class found for component: $comp");
313 $this->log->debug(
"create new class = $class");
315 $this->importer =
new $class();
316 $this->importer->setImport($this);
317 $all_importers[] = $this->importer;
318 $this->importer->setImportDirectory($dir);
319 $this->importer->init();
320 $this->current_comp = $comp;
322 $this->log->debug(
"Process file: " . $dir .
"/" . $expfile[
"path"]);
325 $this->log->error(
"Import failed: " . $e->getMessage());
331 $obj_map = $this->
getMapping()->getMappingsOfEntity(
'Services/Container',
'objs');
332 if (is_array($obj_map)) {
333 foreach ($obj_map as $obj_id_old => $obj_id_new) {
339 foreach ($all_importers as $imp) {
340 $this->log->debug(
"Call finalProcessing for: " . get_class($imp));
341 $imp->finalProcessing($this->mapping);
345 $top_mapping = $this->mapping->getMappingsOfEntity($this->comp,
$a_type);
346 $new_id = (int) current($top_mapping);
349 'importers' => (array) $all_importers
358 public function processItemXml($a_entity, $a_schema_version, $a_id, $a_xml, $a_install_id, $a_install_url)
362 $objDefinition = $DIC[
'objDefinition'];
365 if ($this->skip_entity[$this->current_comp][$a_entity]) {
369 if ($objDefinition->isRBACObject($a_entity) &&
370 $this->
getMapping()->getMapping(
'Services/Container',
'imported', $a_id)) {
371 $this->log->info(
'Ignoring referenced ' . $a_entity .
' with id ' . $a_id);
374 $this->importer->setInstallId($a_install_id);
375 $this->importer->setInstallUrl($a_install_url);
376 $this->importer->setSchemaVersion($a_schema_version);
377 $this->importer->setSkipEntities($this->skip_entity);
378 $new_id = $this->importer->importXmlRepresentation($a_entity, $a_id, $a_xml, $this->mapping);
381 if ($objDefinition->isRBACObject($a_entity)) {
382 $this->
getMapping()->addMapping(
'Services/Container',
'imported', $a_id, 1);
386 if ($new_id && $new_id !==
true) {
387 $this->mapping->addMapping($this->comp, $a_entity, $a_id, $new_id);
importEntity( $a_tmp_file, $a_filename, $a_entity, $a_component, $a_copy_file=false)
Import entity.
setEntityTypes($a_val)
Set entity types.
doImportObject($dir, $a_type, $a_component="", $a_tmpdir="")
Import repository object export file.
afterEntityTypes()
After entity types are parsed.
getMapping()
Get mapping object.
processItemXml($a_entity, $a_schema_version, $a_id, $a_xml, $a_install_id, $a_install_url)
Process item xml.
static unzip($a_file, $overwrite=false, $a_flat=false)
unzip file
importFromDirectory($dir, $a_type, $a_comp)
Import from directory.
addSkipEntity($a_component, $a_entity, $skip=true)
Add skip entity.
getTemporaryImportDir()
Get temporary import directory.
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
manifest.xml file not found-exception for import
setCurrentDataset($a_val)
Set currrent dataset.
importObject( $a_new_obj, $a_tmp_file, $a_filename, $a_type, $a_comp="", $a_copy_file=false)
Import repository object export file.
static _lookupType($a_id, $a_reference=false)
lookup object type
getConfig($a_comp)
Get configuration (note that configurations are optional, null may be returned!)
Manifest parser for ILIAS standard export files.
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
getEntityTypes()
Get entity types.
static ilTempnam($a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
static _writeImportId($a_obj_id, $a_import_id)
write import id to db (static)
static getLogger($a_component_id)
Get component logger.
importRecord($a_entity, $a_types, $a_record)
After entity types are parsed.
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
addSkipImporter($a_component, $skip=true)
Add skip entity.
Import object type does not match.
setTemporaryImportDir($a_val)
Set temporary import directory.
getCurrentDataset()
Get currrent dataset.
__construct($a_target_id=0)
Constructor.