58 $ilUser = $DIC[
'ilUser'];
59 $IRSS = $DIC[
'resource_storage'];
62 $this->
user = $ilUser;
63 $this->storage = $IRSS;
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
88 if ($a_entity ===
'bibl') {
89 if ($new_id = $a_mapping->
getMapping(
'components/ILIAS/Container',
'objs', $a_rec[
'id'])) {
98 $new_obj->setTitle($a_rec[
'title']);
99 $new_obj->setDescription($a_rec[
'description']);
100 $new_obj->setFilename($a_rec[
'fileName']);
101 if ($new_obj->getId() === 0) {
104 $new_obj->getObjectProperties()->storePropertyIsOnline(
107 $this->import_bib_object = $new_obj;
108 $a_mapping->
addMapping(
'components/ILIAS/Bibliographic',
'bibl', $a_rec[
'id'], $new_obj->getId());
117 protected function getTypes(
string $a_entity,
string $a_version): array
119 return match ($a_entity) {
120 'bibl' => [
"id" =>
"integer",
"title" =>
"text",
"description" =>
"text",
"filename" =>
"text"],
134 ?array $a_rec =
null,
141 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
144 if (!is_array($a_ids)) {
154 protected function _readData(
string $a_entity, array $a_ids): void
158 foreach ($a_ids as $bibl_id) {
161 $data = [
'id' => $bibl_id,
'title' => $obj->getTitle(),
'description' => $obj->getDescription(),
'fileName' => $obj->getFilename()];
162 $this->data[] =
$data;
174 if (($rid = $obj->getResourceId()) ===
null) {
177 $fileAbsolutePath = $this->irss->consume()->stream($rid)->getStream()->getMetadata()[
'uri'] ??
null;
179 copy($fileAbsolutePath, $absolute_export_dir . self::EXP_DIRECTORY_NEW . $obj->getFilename());
188 $bib_id = $this->import_bib_object->getId();
189 $filename = $this->import_bib_object->getFilename();
192 if (file_exists($import_path_legacy)) {
193 $import_path = $import_path_legacy;
194 } elseif (file_exists($import_path_new)) {
195 $import_path = $import_path_new;
201 $resource = @fopen($import_path,
'rb');
203 $stream = Streams::ofResource($resource);
204 $identification = $this->storage->manage()->stream($stream, $this->stakeholder,
$filename);
207 $this->db->manipulateF(
208 'UPDATE `il_bibl_data` SET `rid` = %s WHERE `id` = %s;',
211 $identification->serialize(),
215 $this->import_bib_object->setResourceId($identification);
216 $this->import_bib_object->setMigrated(
true);
217 $this->import_bib_object->update();
218 $this->import_bib_object->parseFileToDatabase();
importLibraryFile(\ilImportMapping $a_mapping)
readData(string $a_entity, string $a_version, array $a_ids)
array $import_temp_refs_props
Bibliographic dataset class.
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)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
_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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
exportLibraryFile(int $a_id, string $absolute_export_dir)