ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDGeneral.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 class ilMDGeneral extends ilMDBase
29 {
33  private const STRUCTURE_TRANSLATION = [
34  'atomic' => 'Atomic',
35  'collection' => 'Collection',
36  'networked' => 'Networked',
37  'hierarchical' => 'Hierarchical',
38  'linear' => 'Linear'
39  ];
40 
42 
43  private string $coverage = '';
44  private string $structure = '';
45  private string $title = '';
47 
51  private int $coverage_id = 0;
52 
56  public function getPossibleSubelements(): array
57  {
58  $subs['Keyword'] = 'meta_keyword';
59  $subs['Language'] = 'meta_language';
60  $subs['Identifier'] = 'meta_identifier';
61  $subs['Description'] = 'meta_description';
62 
63  return $subs;
64  }
65 
66  // Subelements (Identifier, Language, Description, Keyword)
67 
71  public function getIdentifierIds(): array
72  {
73  return ilMDIdentifier::_getIds($this->getRBACId(), $this->getObjId(), (int) $this->getMetaId(), 'meta_general');
74  }
75 
76  public function getIdentifier(int $a_identifier_id): ?ilMDIdentifier
77  {
78  if (!$a_identifier_id) {
79  return null;
80  }
81  $ide = new ilMDIdentifier();
82  $ide->setMetaId($a_identifier_id);
83 
84  return $ide;
85  }
86 
87  public function addIdentifier(): ilMDIdentifier
88  {
89  $ide = new ilMDIdentifier($this->getRBACId(), $this->getObjId(), $this->getObjType());
90  $ide->setParentId($this->getMetaId());
91  $ide->setParentType('meta_general');
92 
93  return $ide;
94  }
95 
99  public function getLanguageIds(): array
100  {
101  return ilMDLanguage::_getIds($this->getRBACId(), $this->getObjId(), (int) $this->getMetaId(), 'meta_general');
102  }
103 
104  public function getLanguage(int $a_language_id): ?ilMDLanguage
105  {
106  if (!$a_language_id) {
107  return null;
108  }
109  $lan = new ilMDLanguage();
110  $lan->setMetaId($a_language_id);
111 
112  return $lan;
113  }
114 
115  public function addLanguage(): ilMDLanguage
116  {
117  $lan = new ilMDLanguage($this->getRBACId(), $this->getObjId(), $this->getObjType());
118  $lan->setParentId($this->getMetaId());
119  $lan->setParentType('meta_general');
120 
121  return $lan;
122  }
123 
127  public function getDescriptionIds(): array
128  {
129  return ilMDDescription::_getIds($this->getRBACId(), $this->getObjId(), (int) $this->getMetaId(), 'meta_general');
130  }
131 
132  public function getDescription(int $a_description_id): ?ilMDDescription
133  {
134  if (!$a_description_id) {
135  return null;
136  }
137  $des = new ilMDDescription();
138  $des->setMetaId($a_description_id);
139 
140  return $des;
141  }
142 
143  public function addDescription(): ilMDDescription
144  {
145  $des = new ilMDDescription($this->getRBACId(), $this->getObjId(), $this->getObjType());
146  $des->setParentId($this->getMetaId());
147  $des->setParentType('meta_general');
148 
149  return $des;
150  }
151 
155  public function getKeywordIds(): array
156  {
157  return ilMDKeyword::_getIds($this->getRBACId(), $this->getObjId(), (int) $this->getMetaId(), 'meta_general');
158  }
159 
160  public function getKeyword(int $a_keyword_id): ?ilMDKeyword
161  {
162  if (!$a_keyword_id) {
163  return null;
164  }
165  $key = new ilMDKeyword();
166  $key->setMetaId($a_keyword_id);
167 
168  return $key;
169  }
170 
171  public function addKeyword(): ilMDKeyword
172  {
173  $key = new ilMDKeyword($this->getRBACId(), $this->getObjId(), $this->getObjType());
174  $key->setParentId($this->getMetaId());
175  $key->setParentType('meta_general');
176 
177  return $key;
178  }
179 
180  // SET/GET
181  public function setStructure(string $a_structure): bool
182  {
183  switch ($a_structure) {
184  case 'Atomic':
185  case 'Collection':
186  case 'Networked':
187  case 'Hierarchical':
188  case 'Linear':
189  $this->structure = $a_structure;
190  return true;
191 
192  default:
193  return false;
194  }
195  }
196 
197  public function getStructure(): string
198  {
199  return $this->structure;
200  }
201 
202  public function setTitle(string $a_title): void
203  {
204  $this->title = $a_title;
205  }
206 
207  public function getTitle(): string
208  {
209  return $this->title;
210  }
211 
212  public function setTitleLanguage(ilMDLanguageItem $lng_obj): void
213  {
214  $this->title_language = $lng_obj;
215  }
216 
217  public function getTitleLanguage(): ?ilMDLanguageItem
218  {
219  return is_object($this->title_language) ? $this->title_language : null;
220  }
221 
222  public function getTitleLanguageCode(): string
223  {
224  return is_object($this->title_language) ? $this->title_language->getLanguageCode() : '';
225  }
226 
227  public function setCoverage(string $a_coverage): void
228  {
229  $this->coverage = $a_coverage;
230  }
231 
232  public function getCoverage(): string
233  {
234  return $this->coverage;
235  }
236 
237  public function setCoverageLanguage(ilMDLanguageItem $lng_obj): void
238  {
239  $this->coverage_language = $lng_obj;
240  }
241 
243  {
244  return is_object($this->coverage_language) ? $this->coverage_language : null;
245  }
246 
247  public function getCoverageLanguageCode(): string
248  {
249  return is_object($this->coverage_language) ? $this->coverage_language->getLanguageCode() : '';
250  }
251 
252  public function save(): int
253  {
254  $fields = $this->__getFields();
255  $fields['meta_general_id'] = array('integer', $next_id = $this->db->nextId('il_meta_general'));
256 
257  $this->log->debug("Insert General " . print_r($fields, true));
258  $this->log->logStack(ilLogLevel::DEBUG);
259  //ilUtil::printBacktrace(10);
260 
261  if ($this->db->insert('il_meta_general', $fields)) {
262  $this->setMetaId($next_id);
263  $this->createOrUpdateCoverage();
264  return $this->getMetaId();
265  }
266  return 0;
267  }
268 
269  public function update(): bool
270  {
271  if (!$this->getMetaId()) {
272  return false;
273  }
274 
275  $this->createOrUpdateCoverage();
276 
277  return (bool) $this->db->update(
278  'il_meta_general',
279  $this->__getFields(),
280  array("meta_general_id" => array('integer', $this->getMetaId()))
281  );
282  }
283 
284  public function delete(): bool
285  {
286  if (!$this->getMetaId()) {
287  return false;
288  }
289  // Identifier
290  foreach ($this->getIdentifierIds() as $id) {
291  $ide = $this->getIdentifier($id);
292  $ide->delete();
293  }
294 
295  // Language
296  foreach ($this->getLanguageIds() as $id) {
297  $lan = $this->getLanguage($id);
298  $lan->delete();
299  }
300 
301  // Description
302  foreach ($this->getDescriptionIds() as $id) {
303  $des = $this->getDescription($id);
304  $des->delete();
305  }
306 
307  // Keyword
308  foreach ($this->getKeywordIds() as $id) {
309  $key = $this->getKeyword($id);
310  $key->delete();
311  }
312 
313  if ($this->getMetaId()) {
314  $query = "DELETE FROM il_meta_general " .
315  "WHERE meta_general_id = " . $this->db->quote($this->getMetaId(), 'integer');
316  $res = $this->db->manipulate($query);
317 
318  $this->deleteAllCoverages();
319  return true;
320  }
321 
322  return false;
323  }
324 
328  public function __getFields(): array
329  {
333  $structure = (string) array_search(
334  $this->getStructure(),
335  self::STRUCTURE_TRANSLATION
336  );
337 
338  return array(
339  'rbac_id' => array('integer', $this->getRBACId()),
340  'obj_id' => array('integer', $this->getObjId()),
341  'obj_type' => array('text', $this->getObjType()),
342  'general_structure' => array('text', $structure),
343  'title' => array('text', $this->getTitle()),
344  'title_language' => array('text', $this->getTitleLanguageCode()),
345  //'coverage' => array('text', $this->getCoverage()),
346  //'coverage_language' => array('text', $this->getCoverageLanguageCode())
347  );
348  }
349 
350  public function read(): bool
351  {
352  if ($this->getMetaId()) {
353  $query = "SELECT * FROM il_meta_general " .
354  "WHERE meta_general_id = " . $this->db->quote($this->getMetaId(), 'integer');
355 
356  $res = $this->db->query($query);
357  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
361  if (key_exists($row->general_structure ?? '', self::STRUCTURE_TRANSLATION)) {
362  $row->general_structure = self::STRUCTURE_TRANSLATION[$row->general_structure ?? ''];
363  }
364 
365  $this->setRBACId((int) $row->rbac_id);
366  $this->setObjId((int) $row->obj_id);
367  $this->setObjType((string) $row->obj_type);
368  $this->setStructure((string) $row->general_structure);
369  $this->setTitle((string) $row->title);
370  $this->setTitleLanguage(new ilMDLanguageItem($row->title_language ?? ''));
371  //$this->setCoverage((string) $row->coverage);
372  //$this->setCoverageLanguage(new ilMDLanguageItem($row->coverage_language ?? ''));
373  }
374 
375  $this->readFirstCoverage();
376  }
377  return true;
378  }
379 
380  public function toXML(ilXmlWriter $writer): void
381  {
382  $writer->xmlStartTag('General', array(
383  'Structure' => $this->getStructure() ?: 'Atomic'
384  ));
385 
386  // Identifier
387  $first = true;
388  $identifiers = $this->getIdentifierIds();
389  foreach ($identifiers as $id) {
390  $ide = $this->getIdentifier($id);
391  $ide->setExportMode($this->getExportMode());
392  $ide->toXML($writer);
393  $first = false;
394  }
395  if (!count($identifiers)) {
396  $ide = new ilMDIdentifier(
397  $this->getRBACId(),
398  $this->getObjId(),
399  $this->getObjType()
400  ); // added type, alex, 31 Oct 2007
401  $ide->setExportMode(true);
402  $ide->toXML($writer);
403  }
404 
405  // Title
406  $writer->xmlElement(
407  'Title',
408  array(
409  'Language' => $this->getTitleLanguageCode() ?: 'en'
410  ),
411  $this->getTitle()
412  );
413 
414  // Language
415  $languages = $this->getLanguageIds();
416  foreach ($languages as $id) {
417  $lan = $this->getLanguage($id);
418  $lan->toXML($writer);
419  }
420 
421  // Description
422  $descriptions = $this->getDescriptionIds();
423  foreach ($descriptions as $id) {
424  $des = $this->getDescription($id);
425  $des->toXML($writer);
426  }
427  if (!count($descriptions)) {
428  // Default
429 
430  $des = new ilMDDescription($this->getRBACId(), $this->getObjId());
431  $des->toXML($writer);
432  }
433 
434  // Keyword
435  $keywords = $this->getKeywordIds();
436  foreach ($keywords as $id) {
437  $key = $this->getKeyword($id);
438  $key->toXML($writer);
439  }
440  if (!count($keywords)) {
441  // Default
442 
443  $key = new ilMDKeyword($this->getRBACId(), $this->getObjId());
444  $key->toXML($writer);
445  }
446 
447  // Copverage
448  if ($this->getCoverage() !== '') {
449  $writer->xmlElement(
450  'Coverage',
451  array(
452  'Language' => $this->getCoverageLanguageCode() ?: 'en'
453  ),
454  $this->getCoverage()
455  );
456  }
457  $writer->xmlEndTag('General');
458  }
459 
460  // STATIC
461  public static function _getId(int $a_rbac_id, int $a_obj_id): int
462  {
463  global $DIC;
464 
465  $ilDB = $DIC->database();
466 
467  $query = "SELECT meta_general_id FROM il_meta_general " .
468  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
469  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer');
470 
471  $res = $ilDB->query($query);
472  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
473  return (int) $row->meta_general_id;
474  }
475  return 0;
476  }
477 
481  protected function createOrUpdateCoverage(): void
482  {
483  if ($this->getCoverage() === '' && $this->getCoverageLanguageCode() === '') {
484  return;
485  }
486 
487  if (!$this->getCoverageId()) {
488  $this->db->insert(
489  'il_meta_coverage',
490  [
491  'meta_coverage_id' => ['integer', $next_id = $this->db->nextId('il_meta_coverage')],
492  'rbac_id' => ['integer', $this->getRBACId()],
493  'obj_id' => ['integer', $this->getObjId()],
494  'obj_type' => ['text', $this->getObjType()],
495  'parent_type' => ['text', 'meta_general'],
496  'parent_id' => ['integer', $this->getMetaId()],
497  'coverage' => ['text', $this->getCoverage()],
498  'coverage_language' => ['text', $this->getCoverageLanguageCode()]
499  ]
500  );
501  $this->coverage_id = $next_id;
502  return;
503  }
504 
505  $this->db->update(
506  'il_meta_coverage',
507  [
508  'coverage' => ['text', $this->getCoverage()],
509  'coverage_language' => ['text', $this->getCoverageLanguageCode()]
510  ],
511  ['meta_coverage_id' => ['integer', $this->getCoverageId()]]
512  );
513  }
514 
518  protected function deleteAllCoverages(): void
519  {
520  $query = "DELETE FROM il_meta_coverage WHERE parent_type = 'meta_general'
521  AND parent_id = " . $this->db->quote($this->getMetaId(), 'integer');
522  $res = $this->db->manipulate($query);
523  }
524 
528  protected function readFirstCoverage(): void
529  {
530  $query = "SELECT * FROM il_meta_coverage WHERE meta_coverage_id = " .
531  $this->db->quote($this->getCoverageId(), 'integer');
532 
533  $res = $this->db->query($query);
534  if ($row = $this->db->fetchAssoc($res)) {
535  $this->setCoverage((string) $row['coverage']);
536  $this->setCoverageLanguage(new ilMDLanguageItem((string) $row['coverage_language']));
537  }
538  }
539 
543  protected function getCoverageId(): int
544  {
545  return $this->coverage_id;
546  }
547 
551  protected function readCoverageId(int $parent_id): void
552  {
553  $query = "SELECT meta_coverage_id FROM il_meta_coverage WHERE parent_type = 'meta_general'
554  AND parent_id = " . $this->db->quote($parent_id, 'integer') .
555  " ORDER BY meta_coverage_id";
556 
557  $res = $this->db->query($query);
558  if ($row = $this->db->fetchAssoc($res)) {
559  $this->coverage_id = (int) $row['meta_coverage_id'];
560  }
561  }
562 
566  public function setMetaId(int $a_meta_id, bool $a_read_data = true): void
567  {
568  $this->readCoverageId($a_meta_id);
569  parent::setMetaId($a_meta_id, $a_read_data);
570  }
571 }
int $coverage_id
Compatibility fix for legacy MD classes for new db tables.
$res
Definition: ltiservices.php:66
getIdentifier(int $a_identifier_id)
getCoverageId()
Compatibility fix for legacy MD classes for new db tables.
setTitle(string $a_title)
deleteAllCoverages()
Compatibility fix for legacy MD classes for new db tables.
setStructure(string $a_structure)
readCoverageId(int $parent_id)
Compatibility fix for legacy MD classes for new db tables.
static _getId(int $a_rbac_id, int $a_obj_id)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
setRBACId(int $a_id)
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setCoverage(string $a_coverage)
setObjId(int $a_id)
ilMDLanguageItem $title_language
const ilMDLanguageItem $coverage_language
setMetaId(int $a_meta_id, bool $a_read_data=true)
Compatibility fix for legacy MD classes for new db tables.
global $DIC
Definition: shib_login.php:22
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
getDescription(int $a_description_id)
toXML(ilXmlWriter $writer)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
createOrUpdateCoverage()
Compatibility fix for legacy MD classes for new db tables.
readFirstCoverage()
Compatibility fix for legacy MD classes for new db tables.
setTitleLanguage(ilMDLanguageItem $lng_obj)
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
getLanguage(int $a_language_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
getKeyword(int $a_keyword_id)
const STRUCTURE_TRANSLATION
Compatibility fix for legacy MD classes for new db tables.
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setCoverageLanguage(ilMDLanguageItem $lng_obj)
setObjType(string $a_type)