ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWebResourceImporter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
29 
30  protected ilLogger $logger;
31 
32  public function __construct()
33  {
34  global $DIC;
35 
37  $this->logger = $DIC->logger()->webr();
38  }
39 
43  public function importXmlRepresentation(
44  string $a_entity,
45  string $a_id,
46  string $a_xml,
47  ilImportMapping $a_mapping
48  ): void {
49  if ($new_id = $a_mapping->getMapping(
50  'components/ILIAS/Container',
51  'objs',
52  $a_id
53  )) {
54  $this->link = ilObjectFactory::getInstanceByObjId((int) $new_id, false);
55  if (!$this->link instanceof ilObjLinkResource) {
56  throw new ilObjectNotFoundException(
57  'Invalid id given ' . $a_id
58  );
59  }
60  } else {
61  $this->link = new ilObjLinkResource();
62  $this->link->setType('webr');
63  $this->link->create(true);
64  }
65 
66  try {
67  $parser = new ilWebLinkXmlParser($this->link, $a_xml);
68  $parser->setMode(ilWebLinkXmlParser::MODE_CREATE);
69  $parser->start();
70  $a_mapping->addMapping(
71  'components/ILIAS/WebResource',
72  'webr',
73  $a_id,
74  (string) $this->link->getId()
75  );
76 
77  $a_mapping->addMapping(
78  'components/ILIAS/MetaData',
79  'md',
80  $a_id . ':0:webr',
81  $this->link->getId() . ':0:webr'
82  );
83  } catch (ilSaxParserException $e) {
84  $this->logger->error(
85  ': Parsing failed with message, "' . $e->getMessage() . '".'
86  );
87  } catch (ilWebLinkXMLParserException $e) {
88  $this->logger->error(
89  ': Parsing failed with message, "' . $e->getMessage() . '".'
90  );
91  }
92  }
93 }
XML parser for weblink xml.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
importXmlRepresentation(string $a_entity, string $a_id, string $a_xml, ilImportMapping $a_mapping)
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getMapping(string $a_comp, string $a_entity, string $a_old_id)
global $DIC
Definition: shib_login.php:22
Webresource xml importer.
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
__construct(Container $dic, ilPlugin $plugin)
link(string $caption, string $href, bool $new_viewport=false)
Class ilObjLinkResource.
Xml importer class.