59 $this->db = $DIC->database();
60 $this->
lng = $DIC->language();
61 $this->parameters = array();
62 $this->mapareas = array();
74 public function setId(
int $a_id): void
89 $this->mob_id = $a_mob_id;
100 public function setNr(
int $a_nr): void
119 $a_desired_type = strtolower($a_desired_type);
121 $im_types = ImageTypes();
123 switch ($a_desired_type) {
126 if ($im_types & IMG_JPG) {
129 if ($im_types & IMG_GIF) {
132 if ($im_types & IMG_PNG) {
138 if ($im_types & IMG_GIF) {
141 if ($im_types & IMG_JPG) {
144 if ($im_types & IMG_PNG) {
151 if ($im_types & IMG_PNG) {
154 if ($im_types & IMG_JPG) {
157 if ($im_types & IMG_GIF) {
168 $this->duration = $a_val;
178 $this->text_representation = $a_val;
188 $this->upload_hash = $a_val;
200 $item_id =
$ilDB->nextId(
"media_item");
201 $query =
"INSERT INTO media_item (id,mob_id, purpose, location, " .
202 "location_type, format, width, " .
203 "height, halign, caption, nr, text_representation, upload_hash, duration) VALUES " .
205 $ilDB->quote($item_id,
"integer") .
"," .
215 $ilDB->quote($this->
getNr(),
"integer") .
"," .
222 $this->
setId($item_id);
227 $query =
"INSERT INTO mob_parameter (med_item_id, name, value) VALUES " .
228 "(" .
$ilDB->quote($item_id,
"integer") .
"," .
230 $ilDB->quote($value,
"text") .
")";
235 for (
$i = 0;
$i < count($this->mapareas);
$i++) {
236 if (is_object($this->mapareas[
$i])) {
237 $this->mapareas[
$i]->setItemId($this->
getId());
238 $this->mapareas[
$i]->setNr($i + 1);
239 $this->mapareas[
$i]->create();
248 $query =
"UPDATE media_item SET " .
249 " mob_id = " .
$ilDB->quote($this->
getMobId(),
"integer") .
"," .
254 " width = " .
$ilDB->quote($this->
getWidth(),
"text") .
"," .
258 " nr = " .
$ilDB->quote($this->
getNr(),
"integer") .
"," .
262 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
266 $query =
"DELETE FROM mob_parameter WHERE med_item_id = " .
273 $query =
"INSERT INTO mob_parameter (med_item_id, name, value) VALUES " .
274 "(" .
$ilDB->quote($this->
getId(),
"integer") .
"," .
276 $ilDB->quote($value,
"text") .
")";
287 $query =
"INSERT INTO mob_parameter (med_item_id, name, value) VALUES " .
288 "(" .
$ilDB->quote($this->
getId(),
"integer") .
"," .
289 $ilDB->quote($a_name,
"text") .
"," .
290 $ilDB->quote($a_value,
"text") .
")";
301 $item_id = $this->
getId();
303 $nr = $this->
getNr();
306 $query =
"SELECT * FROM media_item WHERE id = " .
308 } elseif ($mob_id > 0 && $nr > 0) {
309 $query =
"SELECT * FROM media_item WHERE mob_id = " .
311 "AND nr=" .
$ilDB->quote($this->
getNr(),
"integer");
315 $item_rec =
$ilDB->fetchAssoc($item_set);
317 $this->
setLocation((
string) $item_rec[
"location"]);
319 $this->
setFormat((
string) $item_rec[
"format"]);
320 $this->
setWidth((
string) $item_rec[
"width"]);
321 $this->
setHeight((
string) $item_rec[
"height"]);
322 $this->
setHAlign((
string) $item_rec[
"halign"]);
323 $this->
setCaption((
string) $item_rec[
"caption"]);
324 $this->
setPurpose((
string) $item_rec[
"purpose"]);
325 $this->
setNr((
int) $item_rec[
"nr"]);
326 $this->
setMobId((
int) $item_rec[
"mob_id"]);
327 $this->
setId((
int) $item_rec[
"id"]);
334 $query =
"SELECT * FROM mob_parameter WHERE med_item_id = " .
337 while ($par_rec =
$ilDB->fetchAssoc($par_set)) {
338 $this->
setParameter($par_rec[
"name"], $par_rec[
"value"]);
343 for (
$i = 1;
$i <= $max;
$i++) {
357 $q =
"UPDATE media_item SET tried_thumb = " .
358 $ilDB->quote($a_tried,
"text") .
359 " WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
361 $ilDB->manipulate($q);
370 $ilDB = $DIC->database();
373 $query =
"SELECT * FROM media_item WHERE mob_id = " .
374 $ilDB->quote($a_mob_id,
"integer") .
" " .
375 "AND purpose = " .
$ilDB->quote($a_purpose,
"text");
377 if ($rec =
$ilDB->fetchAssoc($set)) {
378 return $rec[
"location"];
389 $ilDB = $DIC->database();
392 $query =
"SELECT * FROM media_item WHERE id = " .
393 $ilDB->quote($a_med_id,
"integer");
395 if ($rec =
$ilDB->fetchAssoc($set)) {
396 return (
int) $rec[
"mob_id"];
414 $ilDB = $DIC->database();
417 $query =
"SELECT * FROM media_item WHERE mob_id = " .
418 $ilDB->quote($a_mobId,
"integer") .
" " .
419 "AND purpose=" .
$ilDB->quote($a_purpose,
"text") .
" ORDER BY nr";
422 while ($item_rec =
$ilDB->fetchAssoc($item_set)) {
436 $ilDB = $DIC->database();
439 $query =
"SELECT * FROM media_item WHERE mob_id = " .
440 $ilDB->quote($a_mob->
getId(),
"integer") .
" " .
443 while ($item_rec =
$ilDB->fetchAssoc($item_set)) {
445 $media_item->setNr((
int) $item_rec[
"nr"]);
446 $media_item->setId((
int) $item_rec[
"id"]);
447 $media_item->setLocation((
string) $item_rec[
"location"]);
448 $media_item->setLocationType((
string) $item_rec[
"location_type"]);
449 $media_item->setFormat((
string) $item_rec[
"format"]);
450 $media_item->setWidth((
string) $item_rec[
"width"]);
451 $media_item->setHeight((
string) $item_rec[
"height"]);
452 $media_item->setHAlign((
string) $item_rec[
"halign"]);
453 $media_item->setCaption((
string) $item_rec[
"caption"]);
454 $media_item->setPurpose((
string) $item_rec[
"purpose"]);
455 $media_item->setMobId((
int) $item_rec[
"mob_id"]);
456 $media_item->setThumbTried((
string) $item_rec[
"tried_thumb"]);
457 $media_item->setTextRepresentation((
string) $item_rec[
"text_representation"]);
458 $media_item->setUploadHash((
string) $item_rec[
"upload_hash"]);
459 $media_item->setDuration((
int) $item_rec[
"duration"]);
462 $query =
"SELECT * FROM mob_parameter WHERE med_item_id = " .
463 $ilDB->quote($item_rec[
"id"],
"integer");
465 while ($par_rec =
$ilDB->fetchAssoc($par_set)) {
466 $media_item->setParameter($par_rec[
"name"], $par_rec[
"value"]);
471 for (
$i = 1;
$i <= $max;
$i++) {
473 $media_item->addMapArea($area);
485 $ilDB = $DIC->database();
488 $query =
"SELECT * FROM media_item WHERE mob_id = " .
489 $ilDB->quote($a_mob_id,
"integer");
491 while ($item_rec =
$ilDB->fetchAssoc($item_set)) {
493 $query =
"DELETE FROM mob_parameter WHERE med_item_id = " .
494 $ilDB->quote($item_rec[
"id"],
"integer");
498 $query =
"DELETE FROM map_area WHERE item_id = " .
499 $ilDB->quote($item_rec[
"id"],
"integer");
504 $query =
"DELETE FROM media_item WHERE mob_id = " .
505 $ilDB->quote($a_mob_id,
"integer");
511 $this->purpose = $a_purpose;
521 $this->location = $a_location;
531 $this->location_type = $a_type;
541 $this->format = $a_format;
551 $this->tried_thumb = $a_tried;
569 $this->mapareas[
$i - 2] = $this->mapareas[
$i - 1];
570 $this->mapareas[
$i - 2]->setNr(
$i - 1);
573 if ($nr <= $this->map_cnt) {
574 unset($this->mapareas[$this->map_cnt - 1]);
581 return $this->mapareas[$nr - 1] ?? null;
596 $this->width = $a_width;
606 $this->height = $a_height;
621 if ($size[0] > 0 && $size[1] > 0) {
622 return array(
"width" => $size[0],
"height" => $size[1]);
631 $this->caption = $a_caption;
644 $this->halign = $a_halign;
656 if (self::checkParameter($a_name, $a_value)) {
657 $this->parameters[$a_name] = $a_value;
663 $this->parameters = [];
673 if (is_array($par_arr)) {
674 foreach ($par_arr as $par => $val) {
688 if (substr(strtolower(trim($a_par)), 0, 2) ==
"on") {
692 if (is_int(strpos(strtolower($a_val),
"javascript"))) {
696 if (strtolower(trim($a_par)) ==
"src") {
710 if (is_array($this->parameters)) {
712 foreach ($this->parameters as $par => $val) {
722 return (
string) ($this->parameters[$a_name] ??
"");
742 if (!is_dir($work_dir)) {
754 return $loc_arr[count($loc_arr) - 1];
762 return self::getGDSupportedImageType($this->
getSuffix());
770 bool $a_reference_copy =
false 773 $o_file = $file_arr[count($file_arr) - 1];
774 $file_arr = explode(
".", $o_file);
775 unset($file_arr[count($file_arr) - 1]);
776 $file = implode(
".", $file_arr);
778 if (!$a_reference_copy) {
797 string $a_mode =
"filesystem" 811 if (is_file($jpeg_file)) {
814 if (is_int(strpos($this->
getFormat(),
"image"))) {
821 if (is_file($thumb_file)) {
824 if (is_file($thumb_file_small)) {
825 unlink($thumb_file_small);
831 if (is_file($med_file)) {
837 if ($this->
getFormat() ===
"image/svg+xml") {
840 if ($a_size ==
"small") {
841 if (is_file($thumb_file_small)) {
842 $random = new \ilRandom();
844 $this->
getPurpose() .
"_small." . $format .
"?dummy=" . $random->int(1, 999999);
847 if (is_file($thumb_file)) {
848 $random = new \ilRandom();
850 $this->
getPurpose() .
"." . $format .
"?dummy=" . $random->int(1, 999999);
884 if ($handle && $lcopy) {
885 while (!feof($handle)) {
886 $content = fread($handle, 4096);
887 fwrite($lcopy, $content);
914 bool $a_exclude =
false 924 if ($size[0] > 0 && $this->
getWidth() > 0) {
925 $x_ratio = $this->
getWidth() / $size[0];
928 if ($size[1] > 0 && $this->
getHeight() > 0) {
929 $y_ratio = $this->
getHeight() / $size[1];
933 for (
$i = 0;
$i < count($this->mapareas);
$i++) {
934 if ((((
$i + 1) == $a_area_nr) && !$a_exclude) ||
935 (((
$i + 1) != $a_area_nr) && $a_exclude) ||
938 $area = $this->mapareas[
$i];
967 if ($size[0] > 0 && $this->
getWidth() > 0) {
968 $x_ratio = $this->
getWidth() / $size[0];
971 if ($size[1] > 0 && $this->
getHeight() > 0) {
972 $y_ratio = $this->
getHeight() / $size[1];
977 $area->setShape($a_shape);
978 $area->setCoords($a_coords);
997 header(
"Pragma: no-cache");
998 header(
"Expires: 0");
1028 if (imagecolorstotal($this->map_image) > 250) {
1029 $this->color1 = imagecolorclosest($this->map_image, 0, 0, 0);
1030 $this->color2 = imagecolorclosest($this->map_image, 255, 255, 255);
1032 $this->color1 = imagecolorallocate($this->map_image, 0, 0, 0);
1033 $this->color2 = imagecolorallocate($this->map_image, 255, 255, 255);
1060 imagedestroy($this->map_image);
1075 bool $a_insert_inst =
false,
1081 for (
$i = 0;
$i < count($this->mapareas);
$i++) {
1082 $area = $this->mapareas[
$i];
1086 if ($area->getHighlightMode() !=
"") {
1087 $hm =
' HighlightMode="' . $area->getHighlightMode() .
'" ';
1088 $hcl = ($area->getHighlightClass() !=
"")
1089 ? $area->getHighlightClass()
1091 $hm .=
'HighlightClass="' . $hcl .
'" ';
1094 $xml .=
"<MapArea Shape=\"" . $area->getShape() .
"\" Coords=\"" . $area->getCoords() .
"\" " . $hm .
">";
1096 $target_frame = $area->getTargetFrame();
1098 if ($area->getType() ==
"GlossaryItem" && $target_frame ==
"") {
1099 $target_frame =
"Glossary";
1102 $tf_str = ($target_frame ==
"")
1104 :
"TargetFrame=\"" . $target_frame .
"\"";
1106 $xml .=
"<IntLink Target=\"" . $area->getTarget($a_insert_inst, $a_inst) .
"\" Type=\"" .
1107 $area->getType() .
"\" $tf_str>";
1109 $xml .= htmlspecialchars($area->getTitle(), ENT_QUOTES);
1110 $xml .=
"</IntLink>";
1112 $xml .=
"<ExtLink Href=\"" . str_replace(
"&",
"&", $area->getHref()) .
"\" Title=\"" .
1113 str_replace(
"&",
"&", $area->getExtTitle()) .
"\">";
1114 $xml .= str_replace(
"&",
"&", $area->getTitle());
1115 $xml .=
"</ExtLink>";
1117 $xml .=
"</MapArea>";
1131 $ilDB = $DIC->database();
1135 $query =
"SELECT * FROM media_item WHERE mob_id = " .
1136 $ilDB->quote($a_mob_id,
"integer") .
" " .
1139 while ($item_rec =
$ilDB->fetchAssoc($item_set)) {
1153 $ilDB = $DIC->database();
1156 $query =
"SELECT * FROM media_item WHERE mob_id = " .
1157 $ilDB->quote($a_mob_id,
"integer") .
" ORDER BY nr";
1161 while ($item_rec =
$ilDB->fetchAssoc($item_set)) {
1163 foreach ($map_links as
$key => $map_link) {
1164 $links[
$key] = $map_link;
1179 foreach ($par as $k => $v) {
1191 if ($meta[
"duration"] > 0) {
1202 if (substr($file, 0, 4) ==
"http") {
1203 if ($fp_remote = fopen($file,
'rb')) {
1206 $localtempfilename = tempnam($tmpdir,
'getID3');
1207 if ($fp_local = fopen($localtempfilename,
'wb')) {
1208 while ($buffer = fread($fp_remote, 8192)) {
1209 fwrite($fp_local, $buffer);
1212 $file = $localtempfilename;
1218 $ana->setFile($file);
1219 $ana->analyzeFile();
1220 $this->
setDuration((
int) $ana->getPlaytimeSeconds());
1223 unlink($localtempfilename);
1240 $db = $DIC->database();
1243 "SELECT * FROM media_item " .
1244 " WHERE upload_hash = %s ",
1248 $media_items = array();
1250 $media_items[] = $rec;
1252 return $media_items;
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
fetchAssoc(ilDBStatement $statement)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
static _getMaxNr(int $a_item_id)
get maximum nr of media item (static)
static _getIntLinks(int $a_item_id)
get all internal links of a media items map areas
static _resolveIntLinks(int $a_item_id)
resolve internal links of an item id
static createDirectory(string $a_dir, int $a_mod=0755)
create directory
static getDataDir()
get data directory (outside webspace)
static convertImage(string $a_from, string $a_to, string $a_target_format="", string $a_geometry="", string $a_background_color="")
convert image
queryF(string $query, array $types, array $values)
static deducibleSize(string $a_mime)
checks if mime type is provided by getimagesize()
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
static extractParameterString(string $a_parstr)
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...