ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ilImport Class Reference

Import class. More...

+ Inheritance diagram for ilImport:
+ Collaboration diagram for ilImport:

Public Member Functions

 __construct ($a_target_id=0)
 Constructor. More...
 
 getConfig ($a_comp)
 Get configuration (note that configurations are optional, null may be returned!) More...
 
 getMapping ()
 Get mapping object. More...
 
 setEntityTypes ($a_val)
 Set entity types. More...
 
 getEntityTypes ()
 Get entity types. More...
 
 addSkipEntity ($a_component, $a_entity, $skip=true)
 Add skip entity. More...
 
 setCurrentDataset ($a_val)
 Set currrent dataset. More...
 
 getCurrentDataset ()
 Get currrent dataset. More...
 
 afterEntityTypes ()
 After entity types are parsed. More...
 
 importRecord ($a_entity, $a_types, $a_record)
 After entity types are parsed. More...
 
 importEntity ($a_tmp_file, $a_filename, $a_entity, $a_component, $a_copy_file=false)
 Import entity. More...
 
 importObject ($a_new_obj, $a_tmp_file, $a_filename, $a_type, $a_comp="", $a_copy_file=false)
 Import repository object export file. More...
 
 importFromDirectory ($dir, $a_type, $a_comp)
 Import from directory. More...
 
 getTemporaryImportDir ()
 Get temporary import directory. More...
 
 processItemXml ($a_entity, $a_schema_version, $a_id, $a_xml, $a_install_id, $a_install_url)
 Process item xml. More...
 

Protected Member Functions

 setTemporaryImportDir ($a_val)
 Set temporary import directory. More...
 
 doImportObject ($dir, $a_type, $a_component="", $a_tmpdir="")
 Import repository object export file. More...
 

Protected Attributes

 $log
 
 $install_id = ""
 
 $install_url = ""
 
 $entities = ""
 
 $tmp_import_dir = ""
 
 $mapping = null
 
 $skip_entity = array()
 
 $configs = array()
 

Detailed Description

Import class.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
$Id$

Definition at line 11 of file class.ilImport.php.

Constructor & Destructor Documentation

◆ __construct()

ilImport::__construct (   $a_target_id = 0)

Constructor.

Parameters
intid of parent container
Returns

Definition at line 33 of file class.ilImport.php.

References ilLoggerFactory\getLogger().

34  {
35  include_once("./Services/Export/classes/class.ilImportMapping.php");
36  $this->mapping = new ilImportMapping();
37  $this->mapping->setTargetId($a_target_id);
38  $this->log = ilLoggerFactory::getLogger('exp');
39  }
static getLogger($a_component_id)
Get component logger.
+ Here is the call graph for this function:

Member Function Documentation

◆ addSkipEntity()

ilImport::addSkipEntity (   $a_component,
  $a_entity,
  $skip = true 
)

Add skip entity.

Parameters
string$a_valcomponent
string$a_valentity

Definition at line 107 of file class.ilImport.php.

108  {
109  $this->skip_entity[$a_component][$a_entity] = $skip;
110  }

◆ afterEntityTypes()

ilImport::afterEntityTypes ( )

After entity types are parsed.

Definition at line 136 of file class.ilImport.php.

References getCurrentDataset().

137  {
138  $this->getCurrentDataset()->setImport($this);
139  }
getCurrentDataset()
Get currrent dataset.
+ Here is the call graph for this function:

◆ doImportObject()

ilImport::doImportObject (   $dir,
  $a_type,
  $a_component = "",
  $a_tmpdir = "" 
)
protected

Import repository object export file.

Parameters
stringabsolute filename of temporary upload file

Definition at line 247 of file class.ilImport.php.

References $a_type, $parser, $success, ilObject\_lookupType(), ilObject\_writeImportId(), array, getMapping(), and ilManifestFileNotFoundImportException\setManifestDir().

Referenced by importFromDirectory(), and importObject().

248  {
249  if ($a_component == "")
250  {
251  include_once("./Services/Export/classes/class.ilImportExportFactory.php");
252  $a_component = ilImportExportFactory::getComponentForExport($a_type);
253  }
254  $this->comp = $a_component;
255 
256  // get import class
257  $success = true;
258 
259  // process manifest file
260  include_once("./Services/Export/classes/class.ilManifestParser.php");
261  if (!is_file($dir."/manifest.xml"))
262  {
263  include_once("./Services/Export/exceptions/class.ilManifestFileNotFoundImportException.php");
264  $mess = (DEVMODE)
265  ? 'Manifest file not found: "'.$dir."/manifest.xml".'".'
266  : 'Manifest file not found: "manifest.xml."';
268  $e->setManifestDir($dir);
269  $e->setTmpDir($a_tmpdir);
270  throw $e;
271  }
272  $parser = new ilManifestParser($dir."/manifest.xml");
273  $this->mapping->setInstallUrl($parser->getInstallUrl());
274  $this->mapping->setInstallId($parser->getInstallId());
275 
276  // check for correct type
277  if ($parser->getMainEntity() != $a_type)
278  {
279  include_once("./Services/Export/exceptions/class.ilImportObjectTypeMismatchException.php");
280  $e = new ilImportObjectTypeMismatchException("Object type does not match. Import file has type '".$parser->getMainEntity()."' but import being processed for '".$a_type."'.");
281  throw $e;
282  }
283 
284  // process export files
285  $expfiles = $parser->getExportFiles();
286 
287  include_once("./Services/Export/classes/class.ilExportFileParser.php");
288  include_once("./Services/Export/classes/class.ilImportExportFactory.php");
289  $all_importers = array();
290  foreach ($expfiles as $expfile)
291  {
292  $comp = $expfile["component"];
293  $class = ilImportExportFactory::getImporterClass($comp);
294 
295  $this->log->debug("create new class = $class");
296 
297  $this->importer = new $class();
298  $this->importer->setImport($this);
299  $all_importers[] = $this->importer;
300  $this->importer->setImportDirectory($dir);
301  $this->importer->init();
302  $this->current_comp = $comp;
303  try {
304  $this->log->debug("Process file: ".$dir."/".$expfile["path"]);
305  $parser = new ilExportFileParser($dir."/".$expfile["path"],$this, "processItemXml");
306  }
307  catch(Exception $e)
308  {
309  $this->log->error("Import failed: ".$e->getMessage());
310  throw $e;
311  }
312  }
313 
314  // write import ids before(!) final processing
315  $obj_map = $this->getMapping()->getMappingsOfEntity('Services/Container', 'objs');
316  if (is_array($obj_map))
317  {
318  foreach ($obj_map as $obj_id_old => $obj_id_new)
319  {
320  ilObject::_writeImportId($obj_id_new, "il_".$this->mapping->getInstallId()."_".ilObject::_lookupType($obj_id_new)."_".$obj_id_old);
321  }
322  }
323 
324  // final processing
325  foreach ($all_importers as $imp)
326  {
327  $this->log->debug("Call finalProcessing for: ".get_class($imp));
328  $imp->finalProcessing($this->mapping);
329  }
330 
331  // we should only get on mapping here
332  $top_mapping = $this->mapping->getMappingsOfEntity($this->comp, $a_type);
333  $new_id = (int) current($top_mapping);
334  return array(
335  'new_id' => $new_id,
336  'importers' => (array) $all_importers
337  );
338  }
getMapping()
Get mapping object.
$a_type
Definition: workflow.php:93
$success
Definition: Utf8Test.php:86
manifest.xml file not found-exception for import
Create styles array
The data for the language used.
static _lookupType($a_id, $a_reference=false)
lookup object type
Manifest parser for ILIAS standard export files.
$parser
Definition: BPMN2Parser.php:24
static _writeImportId($a_obj_id, $a_import_id)
write import id to db (static)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getConfig()

ilImport::getConfig (   $a_comp)

Get configuration (note that configurations are optional, null may be returned!)

Parameters
string$a_compcomponent (e.g. "Modules/Glossary")
Returns
ilImportConfig $a_comp configuration object or null
Exceptions
ilImportException

Definition at line 48 of file class.ilImport.php.

49  {
50  // if created, return existing config object
51  if (isset($this->configs[$a_comp]))
52  {
53  return $this->configs[$a_comp];
54  }
55 
56  // create instance of export config object
57  $comp_arr = explode("/", $a_comp);
58  $a_class = "il".$comp_arr[1]."ImportConfig";
59  $import_config_file = "./".$a_comp."/classes/class.".$a_class.".php";
60  if (!is_file($import_config_file))
61  {
62  include_once("./Services/Export/exceptions/class.ilImportException.php");
63  throw new ilImportException('Component "'.$a_comp.'" does not provide ImportConfig class.');
64  }
65  include_once($import_config_file);
66  $imp_config = new $a_class();
67  $this->configs[$a_comp] = $imp_config;
68 
69  return $imp_config;
70  }
General import exception.

◆ getCurrentDataset()

ilImport::getCurrentDataset ( )

Get currrent dataset.

Returns
object currrent dataset

Definition at line 128 of file class.ilImport.php.

Referenced by afterEntityTypes(), and importRecord().

129  {
130  return $this->current_dataset;
131  }
+ Here is the caller graph for this function:

◆ getEntityTypes()

ilImport::getEntityTypes ( )
final

Get entity types.

Returns
array entity types

Definition at line 96 of file class.ilImport.php.

97  {
98  return $this->entity_types;
99  }

◆ getMapping()

ilImport::getMapping ( )

Get mapping object.

Returns
ilImportMapping ilImportMapping

Definition at line 76 of file class.ilImport.php.

References $mapping.

Referenced by ilImportContainer\createDummy(), ilImportContainer\doImportObject(), doImportObject(), and processItemXml().

77  {
78  return $this->mapping;
79  }
+ Here is the caller graph for this function:

◆ getTemporaryImportDir()

ilImport::getTemporaryImportDir ( )

Get temporary import directory.

Returns
string temporary import directory (used to unzip and read import)

Definition at line 237 of file class.ilImport.php.

References $tmp_import_dir.

238  {
239  return $this->tmp_import_dir;
240  }

◆ importEntity()

ilImport::importEntity (   $a_tmp_file,
  $a_filename,
  $a_entity,
  $a_component,
  $a_copy_file = false 
)
final

Import entity.

Definition at line 155 of file class.ilImport.php.

References importObject().

157  {
158  $this->importObject(null, $a_tmp_file, $a_filename, $a_entity, $a_component, $a_copy_file);
159  }
importObject($a_new_obj, $a_tmp_file, $a_filename, $a_type, $a_comp="", $a_copy_file=false)
Import repository object export file.
+ Here is the call graph for this function:

◆ importFromDirectory()

ilImport::importFromDirectory (   $dir,
  $a_type,
  $a_comp 
)

Import from directory.

Parameters

Definition at line 210 of file class.ilImport.php.

References $a_type, $ret, and doImportObject().

211  {
212  $ret = $this->doImportObject($dir, $a_type, $a_comp);
213 
214  if(is_array($ret))
215  {
216  return $ret['new_id'];
217  }
218  return null;
219  }
doImportObject($dir, $a_type, $a_component="", $a_tmpdir="")
Import repository object export file.
$a_type
Definition: workflow.php:93
$ret
Definition: parser.php:6
+ Here is the call graph for this function:

◆ importObject()

ilImport::importObject (   $a_new_obj,
  $a_tmp_file,
  $a_filename,
  $a_type,
  $a_comp = "",
  $a_copy_file = false 
)
final

Import repository object export file.

Parameters
stringabsolute filename of temporary upload file

Definition at line 167 of file class.ilImport.php.

References $a_type, $ret, ilUtil\delDir(), doImportObject(), ilUtil\ilTempnam(), ilUtil\makeDir(), ilUtil\moveUploadedFile(), setTemporaryImportDir(), and ilUtil\unzip().

Referenced by importEntity().

169  {
170 
171  // create temporary directory
172  $tmpdir = ilUtil::ilTempnam();
173  ilUtil::makeDir($tmpdir);
174  if ($a_copy_file)
175  {
176  copy($a_tmp_file, $tmpdir."/".$a_filename);
177  }
178  else
179  {
180  ilUtil::moveUploadedFile($a_tmp_file, $a_filename, $tmpdir."/".$a_filename);
181  }
182 
183  $this->log->debug("unzip: ".$tmpdir."/".$a_filename);
184 
185  ilUtil::unzip($tmpdir."/".$a_filename);
186  $dir = $tmpdir."/".substr($a_filename, 0, strlen($a_filename) - 4);
187 
188  $this->setTemporaryImportDir($dir);
189 
190  $this->log->debug("dir: ".$dir);
191 
192  $ret = $this->doImportObject($dir, $a_type, $a_comp, $tmpdir);
193  $new_id = null;
194  if(is_array($ret))
195  {
196  $new_id = $ret['new_id'];
197  }
198 
199  // delete temporary directory
200  ilUtil::delDir($tmpdir);
201  return $new_id;
202  }
doImportObject($dir, $a_type, $a_component="", $a_tmpdir="")
Import repository object export file.
static unzip($a_file, $overwrite=false, $a_flat=false)
unzip file
$a_type
Definition: workflow.php:93
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static ilTempnam($a_temp_path=null)
Create a temporary file in an ILIAS writable directory.
$ret
Definition: parser.php:6
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
setTemporaryImportDir($a_val)
Set temporary import directory.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ importRecord()

ilImport::importRecord (   $a_entity,
  $a_types,
  $a_record 
)

After entity types are parsed.

Parameters

Definition at line 146 of file class.ilImport.php.

References getCurrentDataset().

147  {
148  $this->getCurrentDataset()->importRecord($a_entity, $a_types, $a_record);
149  }
getCurrentDataset()
Get currrent dataset.
+ Here is the call graph for this function:

◆ processItemXml()

ilImport::processItemXml (   $a_entity,
  $a_schema_version,
  $a_id,
  $a_xml,
  $a_install_id,
  $a_install_url 
)

Process item xml.

ilObjectDefinition $objDefinition

Definition at line 345 of file class.ilImport.php.

References getMapping().

346  {
347  global $objDefinition;
348 
349  // skip
350  if ($this->skip_entity[$this->current_comp][$a_entity])
351  {
352  return;
353  }
354 
355  if($objDefinition->isRBACObject($a_entity) &&
356  $this->getMapping()->getMapping('Services/Container', 'imported', $a_id))
357  {
358  $this->log->info('Ignoring referenced '.$a_entity.' with id '.$a_id);
359  return;
360  }
361  $this->importer->setInstallId($a_install_id);
362  $this->importer->setInstallUrl($a_install_url);
363  $this->importer->setSchemaVersion($a_schema_version);
364  $this->importer->setSkipEntities($this->skip_entity);
365  $new_id = $this->importer->importXmlRepresentation($a_entity, $a_id, $a_xml, $this->mapping);
366 
367  // Store information about imported obj_ids in mapping to avoid double imports of references
368  if($objDefinition->isRBACObject($a_entity))
369  {
370  $this->getMapping()->addMapping('Services/Container', 'imported', $a_id, 1);
371  }
372 
373  // @TODO new id is not always set
374  if($new_id)
375  {
376  $this->mapping->addMapping($this->comp ,$a_entity, $a_id, $new_id);
377  }
378  }
getMapping()
Get mapping object.
+ Here is the call graph for this function:

◆ setCurrentDataset()

ilImport::setCurrentDataset (   $a_val)

Set currrent dataset.

Parameters
objectcurrrent dataset

Definition at line 117 of file class.ilImport.php.

118  {
119  $this->current_dataset = $a_val;
120  }

◆ setEntityTypes()

ilImport::setEntityTypes (   $a_val)
final

Set entity types.

Parameters
arrayentity types

Definition at line 86 of file class.ilImport.php.

87  {
88  $this->entity_types = $a_val;
89  }

◆ setTemporaryImportDir()

ilImport::setTemporaryImportDir (   $a_val)
protected

Set temporary import directory.

Parameters
string$a_valtemporary import directory (used to unzip and read import)

Definition at line 227 of file class.ilImport.php.

Referenced by importObject().

228  {
229  $this->tmp_import_dir = $a_val;
230  }
+ Here is the caller graph for this function:

Field Documentation

◆ $configs

ilImport::$configs = array()
protected

Definition at line 25 of file class.ilImport.php.

◆ $entities

ilImport::$entities = ""
protected

Definition at line 20 of file class.ilImport.php.

◆ $install_id

ilImport::$install_id = ""
protected

Definition at line 18 of file class.ilImport.php.

◆ $install_url

ilImport::$install_url = ""
protected

Definition at line 19 of file class.ilImport.php.

◆ $log

ilImport::$log
protected

Definition at line 16 of file class.ilImport.php.

◆ $mapping

ilImport::$mapping = null
protected

Definition at line 23 of file class.ilImport.php.

Referenced by getMapping().

◆ $skip_entity

ilImport::$skip_entity = array()
protected

Definition at line 24 of file class.ilImport.php.

◆ $tmp_import_dir

ilImport::$tmp_import_dir = ""
protected

Definition at line 21 of file class.ilImport.php.

Referenced by getTemporaryImportDir().


The documentation for this class was generated from the following file: