60 $IRSS = $DIC[
'resource_storage'];
64 $this->storage = $IRSS;
71 return array(
'4.5.0');
75 public function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
77 return 'http://www.ilias.de/xml/Modules/Bibliographic/' . $a_entity;
86 string $a_schema_version
90 if ($new_id = $a_mapping->
getMapping(
'Services/Container',
'objs', $a_rec[
'id'])) {
99 $new_obj->setTitle($a_rec[
'title']);
100 $new_obj->setDescription($a_rec[
'description']);
101 $new_obj->setFilename($a_rec[
'fileName']);
102 $new_obj->setOnline(
false);
103 if (!$new_obj->getId()) {
106 $this->import_bib_object = $new_obj;
107 $a_mapping->
addMapping(
'Modules/Bibliographic',
'bibl', $a_rec[
'id'], $new_obj->getId());
117 protected function getTypes(
string $a_entity,
string $a_version): array
124 "description" =>
"text",
125 "filename" =>
"text",
126 "is_online" =>
"integer",
141 ?array $a_rec = null,
148 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
150 $this->data = array();
151 if (!is_array($a_ids)) {
152 $a_ids = array($a_ids);
161 protected function _readData(
string $a_entity, array $a_ids): void
165 foreach ($a_ids as $bibl_id) {
170 'title' => $obj->getTitle(),
171 'description' => $obj->getDescription(),
172 'fileName' => $obj->getFilename(),
173 'is_online' => $obj->getOnline(),
175 $this->data[] =
$data;
187 $fileAbsolutePath = $obj->getLegacyAbsolutePath();
188 copy($fileAbsolutePath, $this->absolute_export_dir .
"/" . $obj->getFilename());
197 $bib_id = $this->import_bib_object->getId();
198 $filename = $this->import_bib_object->getFilename();
202 $stream = Streams::ofResource(@fopen($import_path,
'rb'));
203 $identification = $this->storage->manage()->stream($stream, $this->stakeholder,
$filename);
206 $this->db->manipulateF(
207 'UPDATE `il_bibl_data` SET `rid` = %s WHERE `id` = %s;',
210 $identification->serialize(),
importLibraryFile(\ilImportMapping $a_mapping)
readData(string $a_entity, string $a_version, array $a_ids)
array $import_temp_refs_props
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Bibliographic dataset class.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getXmlNamespace(string $a_entity, string $a_schema_version)
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
Return dependencies form entities to other entities (in our case these are all the DB relations) ...
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
_readData(string $a_entity, array $a_ids)
Build data array, data is read from cache except bibl object itself.
getMapping(string $a_comp, string $a_entity, string $a_old_id)
getTypes(string $a_entity, string $a_version)
Map XML attributes of entities to datatypes (text, integer...)
Class ilObjBibliographicStakeholder.
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
Needs to be overwritten for import use case.
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)
ilObjBibliographicStakeholder $stakeholder
Class ilObjBibliographic.
static _lookupType(int $id, bool $reference=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
exportLibraryFile(int $a_id)