ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMediaObjectDataSet.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/DataSet/classes/class.ilDataSet.php");
5 
20 {
21  protected $use_previous_import_ids = false;
22 
26  public function __construct()
27  {
29  $this->mob_log = ilLoggerFactory::getLogger('mob');
30  }
31 
37  public function setUsePreviousImportIds($a_val)
38  {
39  $this->use_previous_import_ids = $a_val;
40  }
41 
47  public function getUsePreviousImportIds()
48  {
50  }
51 
58  public function getSupportedVersions()
59  {
60  return array("5.1.0", "4.3.0", "4.1.0");
61  }
62 
69  public function getXmlNamespace($a_entity, $a_schema_version)
70  {
71  return "http://www.ilias.de/xml/Services/MediaObject/" . $a_entity;
72  }
73 
80  protected function getTypes($a_entity, $a_version)
81  {
82  // mob
83  if ($a_entity == "mob") {
84  switch ($a_version) {
85  case "4.1.0":
86  case "4.3.0":
87  return array(
88  "Id" => "integer",
89  "Title" => "text",
90  "Description" => "text",
91  "Dir" => "directory"
92  );
93 
94  case "5.1.0":
95  return array(
96  "Id" => "integer",
97  "Title" => "text",
98  "Description" => "text",
99  "Dir" => "directory",
100  "ImportId" => "text"
101  );
102  }
103  }
104 
105  // media item
106  if ($a_entity == "mob_media_item") {
107  switch ($a_version) {
108  case "4.1.0":
109  return array(
110  "Id" => "integer",
111  "MobId" => "integer",
112  "Width" => "integer",
113  "Height" => "integer",
114  "Halign" => "text",
115  "Caption" => "text",
116  "Nr" => "integer",
117  "Purpose" => "text",
118  "Location" => "text",
119  "LocationType" => "text",
120  "Format" => "text",
121  "TextRepresentation" => "text"
122  );
123 
124  case "4.3.0":
125  case "5.1.0":
126  return array(
127  "Id" => "integer",
128  "MobId" => "integer",
129  "Width" => "integer",
130  "Height" => "integer",
131  "Halign" => "text",
132  "Caption" => "text",
133  "Nr" => "integer",
134  "Purpose" => "text",
135  "Location" => "text",
136  "LocationType" => "text",
137  "Format" => "text",
138  "TextRepresentation" => "text"
139  );
140  }
141  }
142 
143  // map areas
144  if ($a_entity == "mob_mi_map_area") {
145  switch ($a_version) {
146  case "4.1.0":
147  case "4.3.0":
148  case "5.1.0":
149  return array(
150  "MiId" => "integer",
151  "Nr" => "integer",
152  "Shape" => "text",
153  "Coords" => "text",
154  "LinkType" => "text",
155  "Title" => "text",
156  "Href" => "text",
157  "Target" => "text",
158  "Type" => "text",
159  "TargetFrame" => "text",
160  "HighlightMode" => "text",
161  "HighlightText" => "text"
162  );
163  }
164  }
165 
166  // media item parameter
167  if ($a_entity == "mob_mi_parameter") {
168  switch ($a_version) {
169  case "4.1.0":
170  case "4.3.0":
171  case "5.1.0":
172  return array(
173  "MiId" => "integer",
174  "Name" => "text",
175  "Value" => "text"
176  );
177  }
178  }
179  }
180 
187  public function readData($a_entity, $a_version, $a_ids, $a_field = "")
188  {
189  $ilDB = $this->db;
190 
191  if (!is_array($a_ids)) {
192  $a_ids = array($a_ids);
193  }
194 
195  // mob
196  if ($a_entity == "mob") {
197  $this->data = array();
198 
199  switch ($a_version) {
200  case "4.1.0":
201  case "4.3.0":
202  foreach ($a_ids as $mob_id) {
203  if (ilObject::_lookupType($mob_id) == "mob") {
204  $this->data[] = array("Id" => $mob_id,
205  "Title" => ilObject::_lookupTitle($mob_id),
206  "Description" => ilObject::_lookupDescription($mob_id)
207  );
208  }
209  }
210  break;
211 
212  case "5.1.0":
213  foreach ($a_ids as $mob_id) {
214  if (ilObject::_lookupType($mob_id) == "mob") {
215  $this->data[] = array("Id" => $mob_id,
216  "Title" => ilObject::_lookupTitle($mob_id),
217  "Description" => ilObject::_lookupDescription($mob_id),
218  "ImportId" => ilObject::_lookupImportId($mob_id)
219  );
220  }
221  }
222  break;
223  }
224  }
225 
226  // media item
227  if ($a_entity == "mob_media_item") {
228  switch ($a_version) {
229  case "4.1.0":
230  $this->getDirectDataFromQuery("SELECT id, mob_id, width, height, halign," .
231  "caption, nr, purpose, location, location_type, format, text_representation" .
232  " FROM media_item WHERE " .
233  $ilDB->in("mob_id", $a_ids, false, "integer"));
234  break;
235 
236  case "4.3.0":
237  case "5.1.0":
238  $this->getDirectDataFromQuery("SELECT id, mob_id, width, height, halign," .
239  "caption, nr, purpose, location, location_type, format, text_representation" .
240  " FROM media_item WHERE " .
241  $ilDB->in("mob_id", $a_ids, false, "integer"));
242  break;
243  }
244  }
245 
246 
247  // media item map area
248  if ($a_entity == "mob_mi_map_area") {
249  switch ($a_version) {
250  case "4.1.0":
251  case "4.3.0":
252  case "5.1.0":
253  foreach ($this->getDirectDataFromQuery("SELECT item_id mi_id, nr" .
254  " ,shape, coords, link_type, title, href, target, type, target_frame, " .
255  " highlight_mode, highlight_class" .
256  " FROM map_area " .
257  " WHERE " .
258  $ilDB->in("item_id", $a_ids, false, "integer") .
259  " ORDER BY nr", true, false) as $r) {
260  $r["Target"] = ilUtil::insertInstIntoID($r["Target"]);
261 
262  // see ilPageObject::insertInstIntoIDs
263  if ($r["Type"] == "RepositoryItem") {
264  $id_arr = explode("_", $r["Target"]);
265  $ref_id = $id_arr[3];
266  $obj_id = ilObject::_lookupObjId($id_arr[3]);
267 
268  $otype = ilObject::_lookupType($obj_id);
269  if ($obj_id > 0) {
270  $id = $otype . "_" . $obj_id . "_" . $ref_id;
271  $r["Target"] = "il_" . $id_arr[1] . "_" . $id;
272  }
273  }
274 
275  $this->data[] = $r;
276  }
277  break;
278  }
279  }
280 
281  // media item parameter
282  if ($a_entity == "mob_mi_parameter") {
283  switch ($a_version) {
284  case "4.1.0":
285  case "4.3.0":
286  case "5.1.0":
287  $this->getDirectDataFromQuery("SELECT med_item_id mi_id, name, value" .
288  " FROM mob_parameter " .
289  " WHERE " .
290  $ilDB->in("med_item_id", $a_ids, false, "integer"));
291  break;
292  }
293  }
294  }
295 
299  protected function getDependencies($a_entity, $a_version, $a_rec, $a_ids)
300  {
301  switch ($a_entity) {
302  case "mob":
303  return array(
304  "mob_media_item" => array("ids" => $a_rec["Id"])
305  );
306 
307  case "mob_media_item":
308  return array(
309  "mob_mi_map_area" => array("ids" => $a_rec["Id"]),
310  "mob_mi_parameter" => array("ids" => $a_rec["Id"])
311  );
312  }
313  return false;
314  }
315 
322  public function getXmlRecord($a_entity, $a_version, $a_set)
323  {
324  if ($a_entity == "mob") {
325  include_once("./Services/MediaObjects/classes/class.ilObjMediaObject.php");
326  $dir = ilObjMediaObject::_getDirectory($a_set["Id"]);
327  $a_set["Dir"] = $dir;
328  }
329 
330  return $a_set;
331  }
332 
339  public function importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
340  {
341  $a_rec = $this->stripTags($a_rec);
342 
343  switch ($a_entity) {
344  case "mob":
345 
346 //var_dump($a_rec);
347 
348  include_once("./Services/MediaObjects/classes/class.ilObjMediaObject.php");
349  $newObj = new ilObjMediaObject();
350  $newObj->setType("mob");
351  $newObj->setTitle($a_rec["Title"]);
352  $newObj->setDescription($a_rec["Description"]);
353  // on translation re-import we are interested in the "previous" import id
354  if ($this->getUsePreviousImportIds()) {
355  $newObj->setImportId($a_rec["ImportId"]);
356  } else {
357  $newObj->setImportId("il_" . $this->getCurrentInstallationId() . "_mob_" . $a_rec["Id"]);
358  }
359  $newObj->create();
360  $newObj->createDirectory();
362  $this->current_mob = $newObj;
363 
364  $dir = str_replace("..", "", $a_rec["Dir"]);
365  if ($dir != "" && $this->getImportDirectory() != "") {
366  $source_dir = $this->getImportDirectory() . "/" . $dir;
367  $target_dir = $dir = ilObjMediaObject::_getDirectory($newObj->getId());
368  $this->mob_log->debug("s:-$source_dir-,t:-$target_dir-");
369  ilUtil::rCopy($source_dir, $target_dir);
371  include_once("./Services/MediaObjects/classes/class.ilMediaSvgSanitizer.php");
372  ilMediaSvgSanitizer::sanitizeDir($target_dir); // see #20339
373  }
374 
375  $a_mapping->addMapping("Services/MediaObjects", "mob", $a_rec["Id"], $newObj->getId());
376 //echo "<br>++add++"."0:".$a_rec["Id"].":mob+0:".$newObj->getId().":mob"."+";
377  $a_mapping->addMapping(
378  "Services/MetaData",
379  "md",
380  "0:" . $a_rec["Id"] . ":mob",
381  "0:" . $newObj->getId() . ":mob"
382  );
383  break;
384 
385  case "mob_media_item":
386 
387  // determine parent mob
388  include_once("./Services/MediaObjects/classes/class.ilObjMediaObject.php");
389  $mob_id = (int) $a_mapping->getMapping("Services/MediaObjects", "mob", $a_rec["MobId"]);
390  if (is_object($this->current_mob) && $this->current_mob->getId() == $mob_id) {
391  $mob = $this->current_mob;
392  } else {
393  $mob = new ilObjMediaObject($mob_id);
394  }
395 
396  include_once("./Services/MediaObjects/classes/class.ilMediaItem.php");
397  $newObj = new ilMediaItem();
398  $newObj->setMobId($mob_id);
399  $newObj->setWidth($a_rec["Width"]);
400  $newObj->setHeight($a_rec["Height"]);
401  $newObj->setCaption($a_rec["Caption"]);
402  $newObj->setNr($a_rec["Nr"]);
403  $newObj->setPurpose($a_rec["Purpose"]);
404  $newObj->setLocation($a_rec["Location"]);
405  $newObj->setLocationType($a_rec["LocationType"]);
406  $newObj->setFormat($a_rec["Format"]);
407  $newObj->setTextRepresentation($a_rec["TextRepresentation"]);
408  $newObj->create();
409  $this->current_media_item = $newObj;
410 
411  $a_mapping->addMapping("Services/MediaObjects", "mob_media_item", $a_rec["Id"], $newObj->getId());
412 
413  break;
414 
415  case "mob_mi_parameter":
416 
417  // get media item
418  include_once("./Services/MediaObjects/classes/class.ilMediaItem.php");
419  $med_id = (int) $a_mapping->getMapping("Services/MediaObjects", "mob_media_item", $a_rec["MiId"]);
420  if (is_object($this->current_media_item) && $this->current_media_item->getId() == $med_id) {
421  $med = $this->current_media_item;
422  } else {
423  $med = new ilMediaItem($med_id);
424  }
425  $med->writeParameter($a_rec["Name"], $a_rec["Value"]);
426 
427  break;
428 
429  case "mob_mi_map_area":
430  // get media item
431  include_once("./Services/MediaObjects/classes/class.ilMediaItem.php");
432  $med_id = (int) $a_mapping->getMapping("Services/MediaObjects", "mob_media_item", $a_rec["MiId"]);
433  if (is_object($this->current_media_item) && $this->current_media_item->getId() == $med_id) {
434  $med = $this->current_media_item;
435  } else {
436  $med = new ilMediaItem($med_id);
437  }
438 
439  include_once("./Services/MediaObjects/classes/class.ilMapArea.php");
440  $map_area = new ilMapArea();
441  $map_area->setItemId($med_id);
442  $map_area->setNr($a_rec["Nr"]);
443  $map_area->setShape($a_rec["Shape"]);
444  $map_area->setCoords($a_rec["Coords"]);
445  $map_area->setLinkType($a_rec["LinkType"]);
446  $map_area->setTitle($a_rec["Title"]);
447  $map_area->setHref($a_rec["Href"]);
448  $map_area->setTarget($a_rec["Target"]);
449  $map_area->setType($a_rec["Type"]);
450  $map_area->setTargetFrame($a_rec["TargetFrame"]);
451  $map_area->setHighlightMode($a_rec["HighlightMode"]);
452  $map_area->setHighlightClass($a_rec["HighlightClass"]);
453  $map_area->create();
454 
455  break;
456  }
457  }
458 }
getDependencies($a_entity, $a_version, $a_rec, $a_ids)
Determine the dependent sets of data.
getTypes($a_entity, $a_version)
Get field types for entity.
setUsePreviousImportIds($a_val)
Set use previous import ids.
getDirectDataFromQuery($a_query, $a_convert_to_leading_upper=true, $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
static rCopy($a_sdir, $a_tdir, $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
static sanitizeDir($a_path)
Sanitize directory recursively.
getXmlNamespace($a_entity, $a_schema_version)
Get xml namespace.
getSupportedVersions()
Get supported versions.
static _lookupTitle($a_id)
lookup object title
getImportDirectory()
Get import directory.
static _getDirectory($a_mob_id)
Get absolute directory.
importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
Import record.
static renameExecutables($a_dir)
Rename executables.
static _lookupDescription($a_id)
lookup object description
static _lookupObjId($a_id)
Class ilMediaItem Media Item, component of a media object (file or reference)
Class ilObjMediaObject.
getCurrentInstallationId()
Get current installation id.
static _lookupImportId($a_obj_id)
getUsePreviousImportIds()
Get use previous import ids.
static _lookupType($a_id, $a_reference=false)
lookup object type
Media Pool Data set class.
getXmlRecord($a_entity, $a_version, $a_set)
Get xml record.
static _createThumbnailDirectory($a_obj_id)
Create thumbnail directory.
Class ilMapArea.
__construct(Container $dic, ilPlugin $plugin)
global $ilDB
static insertInstIntoID($a_value)
inserts installation id into ILIAS id
static getLogger($a_component_id)
Get component logger.
stripTags(array $rec, array $omit_keys=[])
A dataset contains in data in a common structure that can be shared and transformed for different pur...
readData($a_entity, $a_version, $a_ids, $a_field="")
Read data.