ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBibliographicDataSet.php
Go to the documentation of this file.
1 <?php
20 
28 {
32  private const EXP_DIRECTORY = "/Modules/Bibliographic/set_1/expDir_1/";
36  private const EXP_DIRECTORY_NEW = "/components/ILIAS/Bibliographic/set_1/expDir_1/";
40  protected $storage;
41  protected \ilObjBibliographicStakeholder $stakeholder;
45  protected $import_bib_object;
49  protected $user;
50  protected array $import_temp_refs = [];
51  protected array $import_temp_refs_props = [];
52 
53 
54  public function __construct()
55  {
56  global $DIC;
57  $ilDB = $DIC['ilDB'];
58  $ilUser = $DIC['ilUser'];
59  $IRSS = $DIC['resource_storage'];
61  $this->db = $ilDB;
62  $this->user = $ilUser;
63  $this->storage = $IRSS;
64  $this->stakeholder = new ilObjBibliographicStakeholder();
65  }
66 
67 
68 
69  public function getSupportedVersions(): array
70  {
71  return ['4.5.0'];
72  }
73 
74 
75  public function getXmlNamespace(string $a_entity, string $a_schema_version): string
76  {
77  return 'http://www.ilias.de/xml/Modules/Bibliographic/' . $a_entity;
78  }
79 
80 
81  public function importRecord(
82  string $a_entity,
83  array $a_types,
84  array $a_rec,
85  ilImportMapping $a_mapping,
86  string $a_schema_version
87  ): void {
88  if ($a_entity === 'bibl') {
89  if ($new_id = $a_mapping->getMapping('components/ILIAS/Container', 'objs', $a_rec['id'])) {
90  // container content
91  $new_obj = ilObjectFactory::getInstanceByObjId($new_id, false);
92  } else {
93  $new_obj = new ilObjBibliographic();
94  }
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) {
102  $new_obj->create();
103  }
104  $new_obj->getObjectProperties()->storePropertyIsOnline(
105  new ilObjectPropertyIsOnline(false)
106  );
107  $this->import_bib_object = $new_obj;
108  $a_mapping->addMapping('components/ILIAS/Bibliographic', 'bibl', $a_rec['id'], $new_obj->getId());
109  $this->importLibraryFile($a_mapping);
110  }
111  }
112 
113 
117  protected function getTypes(string $a_entity, string $a_version): array
118  {
119  return match ($a_entity) {
120  'bibl' => ["id" => "integer", "title" => "text", "description" => "text", "filename" => "text"],
121  default => [],
122  };
123  }
124 
125 
130  #[\Override]
131  protected function getDependencies(
132  string $a_entity,
133  string $a_version,
134  ?array $a_rec = null,
135  ?array $a_ids = null
136  ): array {
137  return [];
138  }
139 
140 
141  public function readData(string $a_entity, string $a_version, array $a_ids): void
142  {
143  $this->data = [];
144  if (!is_array($a_ids)) {
145  $a_ids = [$a_ids];
146  }
147  $this->_readData($a_entity, $a_ids);
148  }
149 
150 
154  protected function _readData(string $a_entity, array $a_ids): void
155  {
156  switch ($a_entity) {
157  case 'bibl':
158  foreach ($a_ids as $bibl_id) {
159  if (ilObject::_lookupType($bibl_id) === 'bibl') {
160  $obj = new ilObjBibliographic($bibl_id);
161  $data = ['id' => $bibl_id, 'title' => $obj->getTitle(), 'description' => $obj->getDescription(), 'fileName' => $obj->getFilename()];
162  $this->data[] = $data;
163  }
164  }
165  break;
166  default:
167  }
168  }
169 
170 
171  public function exportLibraryFile(int $a_id, string $absolute_export_dir): void
172  {
173  $obj = new ilObjBibliographic($a_id);
174  if (($rid = $obj->getResourceId()) === null) {
175  return;
176  }
177  $fileAbsolutePath = $this->irss->consume()->stream($rid)->getStream()->getMetadata()['uri'] ?? null;
178  ilFileUtils::makeDirParents($absolute_export_dir . self::EXP_DIRECTORY_NEW);
179  copy($fileAbsolutePath, $absolute_export_dir . self::EXP_DIRECTORY_NEW . $obj->getFilename());
180  }
181 
182 
186  public function importLibraryFile(\ilImportMapping $a_mapping): void
187  {
188  $bib_id = $this->import_bib_object->getId();
189  $filename = $this->import_bib_object->getFilename();
190  $import_path_legacy = $this->getImportDirectory() . self::EXP_DIRECTORY . $filename;
191  $import_path_new = $this->getImportDirectory() . self::EXP_DIRECTORY_NEW . $filename;
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;
196  } else {
197  return;
198  }
199 
200  // create new resource from stream
201  $resource = @fopen($import_path, 'rb');
202 
203  $stream = Streams::ofResource($resource);
204  $identification = $this->storage->manage()->stream($stream, $this->stakeholder, $filename);
205 
206  // insert rid of the new resource into the data table
207  $this->db->manipulateF(
208  'UPDATE `il_bibl_data` SET `rid` = %s WHERE `id` = %s;',
209  ['text', 'integer'],
210  [
211  $identification->serialize(),
212  $bib_id,
213  ]
214  );
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();
219  }
220 }
importLibraryFile(\ilImportMapping $a_mapping)
readData(string $a_entity, string $a_version, array $a_ids)
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.
global $DIC
Definition: shib_login.php:22
$filename
Definition: buildRTE.php:78
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)