ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjMediaPool.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected ?int $default_width = null;
27  protected ?int $default_height = null;
28  protected ilTree $mep_tree;
29  public bool $for_translation = false;
30 
31  public function __construct(
32  int $a_id = 0,
33  bool $a_call_by_reference = true
34  ) {
35  global $DIC;
36 
37  $this->db = $DIC->database();
38  $this->lng = $DIC->language();
39  // this also calls read() method! (if $a_id is set)
40  $this->type = "mep";
41  parent::__construct($a_id, $a_call_by_reference);
42  }
43 
44  public function setDefaultWidth(?int $a_val): void
45  {
46  if ($a_val === 0) {
47  $a_val = null;
48  }
49  $this->default_width = $a_val;
50  }
51 
52  public function getDefaultWidth(): ?int
53  {
54  return $this->default_width;
55  }
56 
57  public function setDefaultHeight(?int $a_val): void
58  {
59  if ($a_val === 0) {
60  $a_val = null;
61  }
62  $this->default_height = $a_val;
63  }
64 
65  public function getDefaultHeight(): ?int
66  {
67  return $this->default_height;
68  }
69 
73  public function setForTranslation(bool $a_val): void
74  {
75  $this->for_translation = $a_val;
76  }
77 
78  public function getForTranslation(): bool
79  {
81  }
82 
83  public function read(): void
84  {
85  $ilDB = $this->db;
86 
87  parent::read();
88 
89  $set = $ilDB->query(
90  "SELECT * FROM mep_data " .
91  " WHERE id = " . $ilDB->quote($this->getId(), "integer")
92  );
93  if ($rec = $ilDB->fetchAssoc($set)) {
94  $this->setDefaultWidth($rec["default_width"]);
95  $this->setDefaultHeight($rec["default_height"]);
96  $this->setForTranslation($rec["for_translation"]);
97  }
98  $this->mep_tree = self::_getPoolTree($this->getId());
99  }
100 
101 
105  public static function _getPoolTree(int $a_obj_id): ilTree
106  {
107  $tree = new ilTree($a_obj_id);
108  $tree->setTreeTablePK("mep_id");
109  $tree->setTableNames("mep_tree", "mep_item");
110 
111  return $tree;
112  }
113 
114  public function getPoolTree(): ilTree
115  {
116  return self::_getPoolTree($this->getId());
117  }
118 
119  public function create(): int
120  {
121  $ilDB = $this->db;
122 
123  $id = parent::create();
124 
125  $this->createMetaData();
126 
127  $ilDB->manipulate("INSERT INTO mep_data " .
128  "(id, default_width, default_height, for_translation) VALUES (" .
129  $ilDB->quote($this->getId(), "integer") . ", " .
130  $ilDB->quote($this->getDefaultWidth(), "integer") . ", " .
131  $ilDB->quote($this->getDefaultHeight(), "integer") . ", " .
132  $ilDB->quote($this->getForTranslation(), "integer") .
133  ")");
134 
135  $this->createMepTree();
136  return $id;
137  }
138 
139  public function createMepTree(): void
140  {
141  // create media pool tree
142  $this->mep_tree = new ilTree($this->getId());
143  $this->mep_tree->setTreeTablePK("mep_id");
144  $this->mep_tree->setTableNames('mep_tree', 'mep_item');
145  $this->mep_tree->addTree($this->getId(), 1);
146  }
147 
148  public function getTree(): ilTree
149  {
150  return $this->mep_tree;
151  }
152 
153  public function update(): bool
154  {
155  $ilDB = $this->db;
156 
157  if (!parent::update()) {
158  return false;
159  }
160 
161  $this->updateMetaData();
162 
163  // put here object specific stuff
164  $ilDB->manipulate(
165  "UPDATE mep_data SET " .
166  " default_width = " . $ilDB->quote($this->getDefaultWidth(), "integer") . "," .
167  " default_height = " . $ilDB->quote($this->getDefaultHeight(), "integer") . "," .
168  " for_translation = " . $ilDB->quote($this->getForTranslation(), "integer") . " " .
169  " WHERE id = " . $ilDB->quote($this->getId(), "integer")
170  );
171 
172  return true;
173  }
174 
175 
176  public function delete(): bool
177  {
178  // always call parent delete function first!!
179  if (!parent::delete()) {
180  return false;
181  }
182 
183  $this->deleteMetaData();
184 
185  // get childs
186  $childs = $this->mep_tree->getSubTree($this->mep_tree->getNodeData($this->mep_tree->readRootId()));
187 
188  // delete tree
189  $this->mep_tree->removeTree($this->mep_tree->getTreeId());
190 
191  // delete childs
192  foreach ($childs as $child) {
193  $fid = ilMediaPoolItem::lookupForeignId($child["obj_id"]);
194  switch ($child["type"]) {
195  case "mob":
196  if (ilObject::_lookupType($fid) === "mob") {
197  $mob = new ilObjMediaObject($fid);
198  $mob->delete();
199  }
200  break;
201  }
202  }
203 
204  return true;
205  }
206 
210  public function getChilds(
211  int $obj_id = 0,
212  string $a_type = ""
213  ): array {
214  $objs = array();
215  $mobs = array();
216  $pgs = array();
217  if ($obj_id === 0) {
218  $obj_id = $this->mep_tree->getRootId();
219  }
220 
221  if ($a_type === "fold" || $a_type === "") {
222  $objs = $this->mep_tree->getChildsByType($obj_id, "fold");
223  }
224  if ($a_type === "mob" || $a_type === "") {
225  $mobs = $this->mep_tree->getChildsByType($obj_id, "mob");
226  }
227  foreach ($mobs as $key => $mob) {
228  $objs[] = $mob;
229  }
230  if ($a_type === "pg" || $a_type === "") {
231  $pgs = $this->mep_tree->getChildsByType($obj_id, "pg");
232  }
233  foreach ($pgs as $key => $pg) {
234  $objs[] = $pg;
235  }
236 
237  return $objs;
238  }
239 
240  public function getChildsExceptFolders(
241  int $obj_id = 0
242  ): array {
243  if ($obj_id === 0) {
244  $obj_id = $this->mep_tree->getRootId();
245  }
246 
247  return $this->mep_tree->getFilteredChilds(array("fold", "dummy"), $obj_id);
248  }
249 
254  public static function getAllMobIds(int $a_id): array
255  {
256  global $DIC;
257 
258  $ilDB = $DIC->database();
259 
260  $query = "SELECT foreign_id as id FROM " .
261  " mep_tree JOIN mep_item ON (mep_tree.child = mep_item.obj_id) " .
262  " JOIN object_data ON (mep_item.foreign_id = object_data.obj_id) " .
263  " WHERE mep_tree.mep_id = " . $ilDB->quote($a_id, "integer") .
264  " AND mep_item.type = " . $ilDB->quote("mob", "text") .
265  " AND object_data.type = " . $ilDB->quote("mob", "text");
266  $set = $ilDB->query($query);
267  $ids = array();
268  while ($rec = $ilDB->fetchAssoc($set)) {
269  $ids[] = (int) $rec["id"];
270  }
271  return $ids;
272  }
273 
277  public function getUsedFormats(): array
278  {
279  $ilDB = $this->db;
280  $lng = $this->lng;
281 
282  $query = "SELECT DISTINCT media_item.format f FROM mep_tree " .
283  " JOIN mep_item ON (mep_item.obj_id = mep_tree.child) " .
284  " JOIN object_data ON (mep_item.foreign_id = object_data.obj_id) " .
285  " JOIN media_item ON (media_item.mob_id = object_data.obj_id) " .
286  " WHERE mep_tree.mep_id = " . $ilDB->quote($this->getId(), "integer") .
287  " AND object_data.type = " . $ilDB->quote("mob", "text") .
288  " ORDER BY f";
289  $formats = array();
290  $set = $ilDB->query($query);
291  while ($rec = $ilDB->fetchAssoc($set)) {
292  if ($rec["f"] != "") {
293  $formats[$rec["f"]] = $rec["f"];
294  } else {
295  $formats["unknown"] = $lng->txt("mep_unknown");
296  }
297  }
298 
299  return $formats;
300  }
301 
302  public function getParentId(int $obj_id = 0): ?int
303  {
304  if ($obj_id === 0) {
305  return null;
306  }
307  if ($obj_id === $this->mep_tree->getRootId()) {
308  return null;
309  }
310 
311  return (int) $this->mep_tree->getParentId($obj_id);
312  }
313 
317  public function insertInTree(
318  int $a_obj_id,
319  ?int $a_parent = null
320  ): bool {
321  if (!$this->mep_tree->isInTree($a_obj_id)) {
322  $parent = (is_null($a_parent))
323  ? $this->mep_tree->getRootId()
324  : $a_parent;
325  $this->mep_tree->insertNode($a_obj_id, $parent);
326  return true;
327  }
328 
329  return false;
330  }
331 
332 
336  public function deleteChild(int $obj_id): void
337  {
338  $node_data = $this->mep_tree->getNodeData($obj_id);
339  $subtree = $this->mep_tree->getSubTree($node_data);
340 
341  // delete tree
342  if ($this->mep_tree->isInTree($obj_id)) {
343  $this->mep_tree->deleteTree($node_data);
344  }
345 
346  // delete objects
347  foreach ($subtree as $node) {
348  $fid = ilMediaPoolItem::lookupForeignId($node["child"]);
349  if ($node["type"] === "mob" && ilObject::_lookupType($fid) === "mob") {
350  $obj = new ilObjMediaObject($fid);
351  $obj->delete();
352  }
353 
354  if ($node["type"] === "fold" && $fid > 0 && ilObject::_lookupType($fid) === "fold") {
355  $obj = new ilObjFolder($fid, false);
356  $obj->delete();
357  }
358 
359  if ($node["type"] === "pg" && ilPageObject::_exists("mep", $node["child"])) {
360  $pg = new ilMediaPoolPage($node["child"]);
361  $pg->delete();
362  }
363 
364  $item = new ilMediaPoolItem($node["child"]);
365  $item->delete();
366  }
367  }
368 
372  public static function isForeignIdInTree(
373  int $a_pool_id,
374  int $a_foreign_id
375  ): bool {
376  global $DIC;
377 
378  $ilDB = $DIC->database();
379 
380  $set = $ilDB->query(
381  "SELECT * FROM mep_tree JOIN mep_item ON (child = obj_id) WHERE " .
382  " foreign_id = " . $ilDB->quote($a_foreign_id, "integer") .
383  " AND mep_id = " . $ilDB->quote($a_pool_id, "integer")
384  );
385  if ($rec = $ilDB->fetchAssoc($set)) {
386  return true;
387  }
388  return false;
389  }
390 
394  public static function isItemIdInTree(
395  int $a_pool_id,
396  int $a_item_id
397  ): bool {
398  global $DIC;
399 
400  $ilDB = $DIC->database();
401 
402  $set = $ilDB->query("SELECT * FROM mep_tree WHERE child = " .
403  $ilDB->quote($a_item_id, "integer") .
404  " AND mep_id = " . $ilDB->quote($a_pool_id, "integer"));
405  if ($rec = $ilDB->fetchAssoc($set)) {
406  return true;
407  }
408  return false;
409  }
410 
411  public function createFolder(
412  string $a_title,
413  int $a_parent = 0
414  ): ?int {
415  // perform save
416  $mep_item = new ilMediaPoolItem();
417  $mep_item->setTitle($a_title);
418  $mep_item->setType("fold");
419  $mep_item->create();
420  if ($mep_item->getId() > 0) {
421  $tree = $this->getTree();
422  $parent = $a_parent > 0
423  ? $a_parent
424  : $tree->getRootId();
425  $this->insertInTree($mep_item->getId(), $parent);
426  return $mep_item->getId();
427  }
428  return null;
429  }
430 
437  public function cloneObject(int $target_id, int $copy_id = 0, bool $omit_tree = false): ?ilObject
438  {
440  $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
441 
442  $new_obj->setTitle($this->getTitle());
443  $new_obj->setDescription($this->getDescription());
444  $new_obj->setDefaultWidth($this->getDefaultWidth());
445  $new_obj->setDefaultHeight($this->getDefaultHeight());
446  $new_obj->update();
447 
448  // copy content
449  $this->copyTreeContent(
450  $new_obj,
451  $new_obj->getTree()->readRootId(),
452  $this->getTree()->readRootId()
453  );
454 
455  $this->cloneMetaData($new_obj);
456 
457  return $new_obj;
458  }
459 
460  public function copyTreeContent(
461  ilObjMediaPool $a_new_obj,
462  int $a_target_parent,
463  int $a_source_parent
464  ): void {
465  // get all childs
466  $nodes = $this->getTree()->getChilds($a_source_parent);
467  foreach ($nodes as $node) {
468  $item = new ilMediaPoolItem();
469  $item->setType($node["type"]);
470  switch ($node["type"]) {
471  case "mob":
472  $mob_id = ilMediaPoolItem::lookupForeignId($node["child"]);
473  $mob = new ilObjMediaObject($mob_id);
474  $new_mob = $mob->duplicate();
475  $item->setForeignId($new_mob->getId());
476  $item->setTitle($new_mob->getTitle());
477  $item->create();
478  break;
479 
480  case "pg":
481  $item->setTitle($node["title"]);
482  $item->create();
483  $page = new ilMediaPoolPage($node["child"]);
484  $new_page = new ilMediaPoolPage();
485  $new_page->setParentId($a_new_obj->getId());
486  $new_page->setId($item->getId());
487  $new_page->create(false);
488 
489  // copy page
490  $page->copy($new_page->getId(), $new_page->getParentType(), $new_page->getParentId(), true);
491  break;
492 
493  case "fold":
494  $item->setTitle($node["title"]);
495  $item->create();
496  break;
497  }
498 
499  // insert item into tree
500  $a_new_obj->insertInTree($item->getId(), $a_target_parent);
501 
502  // handle childs
503  $this->copyTreeContent($a_new_obj, $item->getId(), $node["child"]);
504  }
505  }
506 
510  public function exportXML(string $a_mode = ""): void
511  {
512  if (in_array($a_mode, array("master", "masternomedia"))) {
513  $exp = new ilExport();
514  $conf = $exp->getConfig("components/ILIAS/MediaPool");
515  $conf->setMasterLanguageOnly(true, ($a_mode === "master"));
516  $exp->exportObject($this->getType(), $this->getId(), "4.4.0");
517  }
518  }
519 
520  public static function getAdvMDSubItemTitle(int $a_obj_id, string $a_sub_type, int $a_sub_id): string
521  {
523  $snippets = $repo->getItems((int) $a_obj_id);
524  foreach ($snippets as $snippet) {
525  if ((int) $snippet['obj_id'] === (int) $a_sub_id) {
526  return $snippet['title'];
527  }
528  }
529  return '';
530  }
531 }
Class ilObjFolder.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
__construct(int $a_id=0, bool $a_call_by_reference=true)
static lookupForeignId(int $a_id)
setForTranslation(bool $a_val)
ilTree $tree
setTreeTablePK(string $a_column_name)
set column containing primary key in tree table
static getAdvMDSubItemTitle(int $a_obj_id, string $a_sub_type, int $a_sub_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
insertInTree(int $a_obj_id, ?int $a_parent=null)
Insert into tree.
getChilds(int $obj_id=0, string $a_type="")
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setTableNames(string $a_table_tree, string $a_table_obj_data, string $a_table_obj_reference="")
set table names The primary key of the table containing your object_data must be &#39;obj_id&#39; You may use...
getChildsExceptFolders(int $obj_id=0)
cloneMetaData(ilObject $target_obj)
Copy meta data.
exportXML(string $a_mode="")
createFolder(string $a_title, int $a_parent=0)
Interface for repository objects to use adv md with subitems.
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
ilLanguage $lng
ilDBInterface $db
static getAllMobIds(int $a_id)
global $DIC
Definition: shib_login.php:22
static isForeignIdInTree(int $a_pool_id, int $a_foreign_id)
Check whether foreign id is in tree.
getParentId(int $obj_id=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getPoolTree(int $a_obj_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
deleteChild(int $obj_id)
Delete a child of media tree.
__construct(Container $dic, ilPlugin $plugin)
setDefaultWidth(?int $a_val)
static _lookupType(int $id, bool $reference=false)
copyTreeContent(ilObjMediaPool $a_new_obj, int $a_target_parent, int $a_source_parent)
static isItemIdInTree(int $a_pool_id, int $a_item_id)
Check whether a mep item id is in the media pool.
setDefaultHeight(?int $a_val)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...