ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMetaDataImporter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
27 {
30  protected ilLogger $logger;
31 
32  public function init(): void
33  {
34  global $DIC;
35 
36  $services = new InternalServices($DIC);
37 
38  $this->reader = $services->xml()->standardReader();
39  $this->repository = $services->repository()->repository();
40  $this->logger = $DIC->logger()->meta();
41  }
42 
43  public function importXmlRepresentation(
44  string $a_entity,
45  string $a_id,
46  string $a_xml,
47  ilImportMapping $a_mapping
48  ): void {
49  $new_id = $a_mapping->getMapping("components/ILIAS/MetaData", "md", $a_id);
50 
51  if (!is_string($new_id) || $new_id === "") {
52  $this->logger->error(
53  'Import of LOM aborted for ' . $new_id . ', ID mapping failed.'
54  );
55  return;
56  }
57 
58  $id = explode(":", $new_id);
59 
60  $obj_id = (int) $id[0];
61  $sub_id = (int) $id[1];
62  $type = (string) $id[2];
63 
64  if ($sub_id === 0) {
65  $sub_id = $obj_id;
66  }
67 
68  $version = Version::tryFrom($this->getSchemaVersion());
69  if (is_null($version)) {
70  $this->logger->error(
71  'Import of LOM aborted for ' . $new_id .
72  ', invalid schema version: ' . $this->getSchemaVersion()
73  );
74  return;
75  }
76 
77  $md = $this->reader->read(
78  new SimpleXMLElement($a_xml),
79  $version
80  );
81  $this->repository->transferMD($md, $obj_id, $sub_id, $type, false);
82  }
83 }
$version
Definition: plugin.php:24
repository()
description: > Example for rendering a repository card
Definition: repository.php:33
getMapping(string $a_comp, string $a_entity, string $a_old_id)
global $DIC
Definition: shib_login.php:22
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
Xml importer class.
RepositoryInterface $repository