29 define(
"IL_MODE_ALIAS", 1);
30 define(
"IL_MODE_OUTPUT", 2);
31 define(
"IL_MODE_FULL", 3);
54 $this->
user = $DIC->user();
55 $this->app_event_handler = $DIC[
"ilAppEventHandler"];
56 $this->
lng = $DIC->language();
57 $this->is_alias =
false;
58 $this->media_items = array();
59 $this->contains_int_link =
false;
62 $this->image_converter = $DIC->fileConverters()->legacyImages();
63 $this->domain = $DIC->mediaObjects()->internal()->domain();
64 $this->manager = $this->domain->mediaObject();
65 $this->thumbs = $this->domain->thumbs();
70 bool $reference =
false,
73 if (is_int(strpos($id,
"_"))) {
83 public function delete():
bool 86 $mob_logger->debug(
"ilObjMediaObject: Delete called for media object ID '" . $this->
getId() .
"'.");
88 if (!($this->
getId() > 0)) {
94 $mob_logger->debug(
"ilObjMediaObject: ... Found " . count($usages) .
" usages.");
96 if (count($usages) == 0) {
105 self::handleQuotaUpdate($this);
110 $mob_logger->debug(
"ilObjMediaObject: ... deleted.");
112 foreach ($usages as $u) {
113 $mob_logger->debug(
"ilObjMediaObject: ... usage type:" . $u[
"type"] .
115 ", lang:" . ($u[
"lang"] ??
"") .
116 ", hist_nr:" . ($u[
"hist_nr"] ??
"") .
".");
118 $mob_logger->debug(
"ilObjMediaObject: ... not deleted.");
125 switch ($a_element) {
128 $paths = $this->domain->metadata()->learningObjectMetadata()->paths();
129 $reader = $this->domain->metadata()->learningObjectMetadata()->read(
133 $paths->custom()->withNextStep(
'general')->get()
147 $this->domain->metadata()->learningObjectMetadata()->derive()->fromBasicProperties(
150 $ilUser->getPref(
'language')
158 $paths = $this->domain->metadata()->learningObjectMetadata()->paths();
160 $manipulator = $this->domain->metadata()->learningObjectMetadata()
162 ->prepareCreateOrUpdate($paths->title(), $this->
getTitle());
165 $manipulator = $manipulator->prepareCreateOrUpdate($paths->firstDescription(), $this->
getDescription());
167 $manipulator = $manipulator->prepareDelete($paths->firstDescription());
170 $manipulator->execute();
178 $this->domain->metadata()->learningObjectMetadata()
188 $this->media_items[] = $a_item;
202 foreach ($this->media_items as $media_item) {
203 if ($media_item->getPurpose() == $a_purpose) {
213 foreach ($this->media_items as $key => $media_item) {
214 if ($media_item->getPurpose() == $a_purpose) {
215 unset($this->media_items[$key]);
220 $media_items = array();
221 foreach ($this->media_items as $media_item) {
222 $media_items [$i] = $media_item;
223 $media_item->setMobId($this->
getId());
224 $media_item->setNr($i);
232 $this->media_items = array();
264 $this->is_alias = $a_is_alias;
277 $this->origin_id = $a_id;
286 bool $a_create_meta_data =
false,
287 bool $a_save_media_items =
true,
290 $id = parent::create();
292 if (!$a_create_meta_data) {
295 $this->manager->create(
301 if ($a_save_media_items) {
303 for ($i = 0; $i < count($media_items); $i++) {
304 $item = $media_items[$i];
305 $item->setMobId($this->
getId());
306 $item->setNr($i + 1);
311 self::handleQuotaUpdate($this);
314 $ilAppEventHandler->
raise(
315 'components/ILIAS/MediaObjects',
317 array(
'object' => $this,
319 'obj_id' => $this->
getId())
325 public function update(
bool $a_upload =
false): bool
338 foreach ($media_items as $key => $val) {
340 if (is_object($item)) {
341 $item->setMobId($this->
getId());
343 if ($item->getLocationType() ==
"Reference") {
344 $item->extractUrlParameters();
351 self::handleQuotaUpdate($this);
353 $ilAppEventHandler->
raise(
354 'components/ILIAS/MediaObjects',
356 array(
'object' => $this,
358 'obj_id' => $this->
getId())
386 return "mobs/mm_" . $a_mob_id;
403 bool $a_url_encode =
false,
405 string $a_purpose =
"" 407 if ($a_purpose ==
"") {
408 $a_purpose =
"Standard";
411 if (preg_match(
"/https?\:/i",
$location)) {
434 if (!is_dir(
$path)) {
440 string $dir_path =
"" 442 return $this->manager->getFilesOfPath(
459 bool $a_sign_locals =
false,
460 bool $offline =
false 466 $xml =
"<MediaObject>";
467 $xml .=
"<MediaAlias OriginId=\"il__mob_" . $this->
getId() .
"\"/>";
469 for ($i = 0; $i < count($media_items); $i++) {
470 $item = $media_items[$i];
471 $xml .=
"<MediaAliasItem Purpose=\"" . $item->getPurpose() .
"\">";
474 $width = ($item->getWidth() !=
"")
475 ?
"Width=\"" . $item->getWidth() .
"\"" 477 $height = ($item->getHeight() !=
"")
478 ?
"Height=\"" . $item->getHeight() .
"\"" 480 $halign = ($item->getHAlign() !=
"")
481 ?
"HorizontalAlign=\"" . $item->getHAlign() .
"\"" 483 $xml .=
"<Layout $width $height $halign />";
486 if ($item->getCaption() !=
"") {
487 $xml .=
"<Caption Align=\"bottom\">" .
492 if ($item->getTextRepresentation() !=
"") {
493 $xml .=
"<TextRepresentation>" .
494 $this->
escapeProperty($item->getTextRepresentation()) .
"</TextRepresentation>";
498 $parameters = $item->getParameters();
499 foreach ($parameters as $name => $value) {
500 $xml .=
"<Parameter Name=\"$name\" Value=\"" . $this->
escapeProperty($value) .
"\"/>";
502 $xml .= $item->getMapAreasXML();
503 $xml .=
"</MediaAliasItem>";
512 $xml =
"<MediaObject Id=\"il__mob_" . $this->
getId() .
"\">";
515 for ($i = 0; $i < count($media_items); $i++) {
516 $item = $media_items[$i];
518 $xml .=
"<MediaItem Purpose=\"" . $item->getPurpose() .
"\">";
519 if ($a_sign_locals && $item->getLocationType() ==
"LocalFile") {
523 $location = substr($location, strrpos($location,
"/") + 1);
537 if ($item->getLocationType() ===
"LocalFile" &&
544 if ($item->getLocationType() !=
"LocalFile") {
549 $xml .=
"<Location Type=\"" . $item->getLocationType() .
"\">" .
553 $xml .=
"<Format>" . $item->getFormat() .
"</Format>";
556 $width = ($item->getWidth() !=
"")
557 ?
"Width=\"" . $item->getWidth() .
"\"" 559 $height = ($item->getHeight() !=
"")
560 ?
"Height=\"" . $item->getHeight() .
"\"" 562 $halign = ($item->getHAlign() !=
"")
563 ?
"HorizontalAlign=\"" . $item->getHAlign() .
"\"" 565 $xml .=
"<Layout $width $height $halign />";
568 if ($item->getCaption() !=
"") {
569 $xml .=
"<Caption Align=\"bottom\">" .
574 if ($item->getTextRepresentation() !=
"") {
575 $xml .=
"<TextRepresentation>" .
576 $this->
escapeProperty($item->getTextRepresentation()) .
"</TextRepresentation>";
586 $parameters = $item->getParameters();
587 if ($item->getFormat() ===
"video/vimeo") {
590 foreach ($parameters as $name => $value) {
591 $xml .=
"<Parameter Name=\"$name\" Value=\"" . $this->
escapeProperty($value) .
"\"/>";
593 $xml .= $item->getMapAreasXML();
596 if ($item->getPurpose() ==
"Standard") {
598 foreach ($srts as $srt) {
601 if ($ilUser->getLanguage() != $meta_lang &&
602 $ilUser->getLanguage() == $srt[
"language"]) {
603 $def =
' Default="true" ';
605 $xml .=
"<Subtitle File=\"" . $srt[
"full_path"] .
606 "\" Language=\"" . $srt[
"language"] .
"\" " . $def .
"/>";
613 if ($item->getLocationType() ==
"LocalFile") {
616 $xml .=
"<Url Base=\"" . $base_url .
619 $xml .=
"</MediaItem>";
627 $xml =
"<MediaObject>";
631 $md2xml->setExportMode(
true);
632 $md2xml->startExport();
633 $xml .= $md2xml->getXML();
636 for ($i = 0; $i < count($media_items); $i++) {
637 $item = $media_items[$i];
640 $xml .=
"<MediaItem Purpose=\"" . $item->getPurpose() .
"\">";
643 $xml .=
"<Location Type=\"" . $item->getLocationType() .
"\">" .
644 $this->
handleAmps($item->getLocation()) .
"</Location>";
647 $xml .=
"<Format>" . $item->getFormat() .
"</Format>";
650 $width = ($item->getWidth() !=
"")
651 ?
"Width=\"" . $item->getWidth() .
"\"" 653 $height = ($item->getHeight() !=
"")
654 ?
"Height=\"" . $item->getHeight() .
"\"" 656 $halign = ($item->getHAlign() !=
"")
657 ?
"HorizontalAlign=\"" . $item->getHAlign() .
"\"" 659 $xml .=
"<Layout $width $height $halign />";
662 if ($item->getCaption() !=
"") {
663 $xml .=
"<Caption Align=\"bottom\">" .
664 str_replace(
"&",
"&", $item->getCaption()) .
"</Caption>";
668 if ($item->getTextRepresentation() !=
"") {
669 $xml .=
"<TextRepresentation>" .
670 str_replace(
"&",
"&", $item->getTextRepresentation()) .
"</TextRepresentation>";
674 $parameters = $item->getParameters();
675 foreach ($parameters as $name => $value) {
676 $xml .=
"<Parameter Name=\"$name\" Value=\"$value\"/>";
678 $xml .= $item->getMapAreasXML(
true, $a_inst);
679 $xml .=
"</MediaItem>";
683 $xml .=
"</MediaObject>";
693 return htmlspecialchars($a_value);
703 $a_str = str_replace(
"&",
"&", $a_str);
704 $a_str = str_replace(
"&",
"&", $a_str);
739 if ($a_tag ==
"Identifier" && $a_param ==
"Entry") {
756 bool $a_contains_link
758 $this->contains_int_link = $a_contains_link;
773 ?
int $a_usage_hist_nr = 0,
778 $ilDB = $DIC->database();
781 if (!is_null($a_usage_hist_nr)) {
782 $and_hist =
" AND usage_hist_nr = " .
$ilDB->quote($a_usage_hist_nr,
"integer");
786 $set =
$ilDB->query(
"SELECT id FROM mob_usage" .
787 " WHERE usage_type = " .
$ilDB->quote($a_type,
"text") .
788 " AND usage_id = " .
$ilDB->quote($a_id,
"integer") .
789 " AND usage_lang = " .
$ilDB->quote($a_lang,
"text") .
791 while ($row =
$ilDB->fetchAssoc($set)) {
792 $mob_ids[] = $row[
"id"];
795 $q =
"DELETE FROM mob_usage WHERE usage_type = " .
796 $ilDB->quote($a_type,
"text") .
797 " AND usage_id= " .
$ilDB->quote($a_id,
"integer") .
798 " AND usage_lang = " .
$ilDB->quote($a_lang,
"text") .
802 foreach ($mob_ids as $mob_id) {
803 self::handleQuotaUpdate(
new self($mob_id));
813 int $a_usage_hist_nr = 0,
818 $ilDB = $DIC->database();
822 $lstr =
" AND usage_lang = " .
$ilDB->quote($a_lang,
"text");
825 if ($a_usage_hist_nr > 0) {
826 $hist_str =
" AND usage_hist_nr = " .
$ilDB->quote($a_usage_hist_nr,
"integer");
829 $q =
"SELECT * FROM mob_usage WHERE " .
830 "usage_type = " .
$ilDB->quote($a_type,
"text") .
" AND " .
831 "usage_id = " .
$ilDB->quote($a_id,
"integer") .
835 while ($mob_rec =
$ilDB->fetchAssoc($mob_set)) {
836 $mob_id = (
int) $mob_rec[
'id'];
838 $mobs[$mob_id] = $mob_id;
852 int $a_usage_hist_nr = 0,
857 $ilDB = $DIC->database();
862 "id" => array(
"integer", $a_mob_id),
863 "usage_type" => array(
"text", $a_type),
864 "usage_id" => array(
"integer", $a_id),
865 "usage_lang" => array(
"text", $a_lang),
866 "usage_hist_nr" => array(
"integer", $a_usage_hist_nr)
871 self::handleQuotaUpdate(
new self($a_mob_id));
881 int $a_usage_hist_nr = 0,
886 $ilDB = $DIC->database();
888 $q =
"DELETE FROM mob_usage WHERE " .
889 " id = " .
$ilDB->quote($a_mob_id,
"integer") .
" AND " .
890 " usage_type = " .
$ilDB->quote($a_type,
"text") .
" AND " .
891 " usage_id = " .
$ilDB->quote($a_id,
"integer") .
" AND " .
892 " usage_lang = " .
$ilDB->quote($a_lang,
"text") .
" AND " .
893 " usage_hist_nr = " .
$ilDB->quote($a_usage_hist_nr,
"integer");
896 self::handleQuotaUpdate(
new self($a_mob_id));
903 bool $a_include_history =
true 905 return self::lookupUsages($this->
getId(), $a_include_history);
915 bool $a_include_history =
true 919 $ilDB = $DIC->database();
922 if ($a_include_history) {
923 $hist_str =
", usage_hist_nr";
927 $q =
"SELECT DISTINCT usage_type, usage_id, usage_lang" . $hist_str .
" FROM mob_usage WHERE id = " .
928 $ilDB->quote($a_id,
"integer");
930 if (!$a_include_history) {
931 $q .=
" AND usage_hist_nr = " .
$ilDB->quote(0,
"integer");
936 while ($us_rec =
$ilDB->fetchAssoc($us_set)) {
939 if (is_int(strpos($us_rec[
"usage_type"],
":"))) {
940 $us_arr = explode(
":", $us_rec[
"usage_type"]);
955 "type" => $us_rec[
"usage_type"],
956 "id" => $us_rec[
"usage_id"],
957 "lang" => $us_rec[
"usage_lang"],
958 "hist_nr" => ($us_rec[
"usage_hist_nr"] ?? 0)
964 $q =
"SELECT DISTINCT mep_id FROM mep_tree JOIN mep_item ON (child = obj_id) WHERE mep_item.foreign_id = " .
965 $ilDB->quote($a_id,
"integer") .
" AND mep_item.type = " .
$ilDB->quote(
"mob",
"text");
967 while ($us_rec =
$ilDB->fetchAssoc($us_set)) {
968 $ret[] = array(
"type" =>
"mep",
969 "id" => $us_rec[
"mep_id"]);
974 foreach ($news_usages as $nu) {
980 $q =
"SELECT DISTINCT mob_id FROM media_item it, map_area area " .
981 " WHERE area.item_id = it.id " .
982 " AND area.link_type = " .
$ilDB->quote(
"int",
"text") .
" " .
983 " AND area.target = " .
$ilDB->quote(
"il__mob_" . $a_id,
"text");
985 while ($us_rec =
$ilDB->fetchAssoc($us_set)) {
986 $ret[] = array(
"type" =>
"map",
987 "id" => $us_rec[
"mob_id"]);
992 foreach ($users as $user) {
993 $ret[] = array(
"type" =>
"clip",
1006 bool $a_include_all_access_obj_ids =
false 1009 if (is_int(strpos($a_usage[
"type"],
":"))) {
1010 $us_arr = explode(
":", $a_usage[
"type"]);
1012 $cont_type = $us_arr[0];
1014 $type = $a_usage[
"type"];
1017 $id = $a_usage[
"id"];
1024 switch ($cont_type) {
1028 $qinfo = $DIC->testQuestion()->getGeneralQuestionProperties(
$id);
1029 if ($qinfo->getOriginalId() > 0) {
1032 $obj_id = (
int) ($qinfo[
"obj_fi"] ?? 0);
1040 $parent_id = $quest->getObjId();
1043 if ($quest->getOriginalId() &&
1049 $obj_id = (
int) $parent_id;
1058 $returned_pk = $a_usage[
'id'];
1065 $post_pk = $a_usage[
'id'];
1067 $frm_pk = $oPost->getForumId();
1073 $draft_id = $a_usage[
'id'];
1076 $frm_pk = $oDraft->getForumId();
1080 $history_id = $a_usage[
'id'];
1084 $frm_pk = $oDraft->getForumId();
1090 $obj_id = (
int) $a_usage[
'id'];
1108 switch ($cont_type) {
1113 if ($cont_type ==
"qfbg") {
1119 $qinfo = $DIC->testQuestion()->getGeneralQuestionProperties(
$id);
1120 if ($qinfo->getOriginalId() > 0) {
1123 $obj_id = $qinfo[
"obj_fi"];
1127 if ($pinfo && $pinfo[
"parent_type"] ==
"lm") {
1201 bool $a_constrain_prop =
false 1204 $file_path = pathinfo($a_file);
1205 $location = substr($file_path[
"basename"], 0, strlen($file_path[
"basename"]) -
1206 strlen($file_path[
"extension"]) - 1) .
"_" .
1208 $a_height .
"." . $file_path[
"extension"];
1209 $target_file = $file_path[
"dirname"] .
"/" .
1212 $returned_target_file = $DIC->fileConverters()
1214 ->resizeToFixedSize(
1222 if ($returned_target_file !== $target_file) {
1234 bool $a_external =
false 1236 $mime = MimeType::lookupMimeType($a_file, MimeType::APPLICATION__OCTET_STREAM, $a_external);
1244 string $a_reference,
1245 bool $a_constrain_proportions,
1246 bool $a_use_original,
1247 ?
int $a_user_width =
null,
1248 ?
int $a_user_height =
null 1252 $lng = $DIC->language();
1271 if ($a_type ==
"File") {
1278 if (!isset($size[0])) {
1281 if (!isset($size[1])) {
1285 if ($a_use_original) {
1286 if ($size[0] > 0 && $size[1] > 0) {
1292 $info =
$lng->
txt(
"cont_could_not_determine_resource_size");
1296 $h = $a_user_height;
1301 if ($size[0] > 0 && $size[1] > 0) {
1303 $wr = $size[0] / $w;
1306 $hr = $size[1] / $h;
1312 $width = (
int) round($size[0] /
$r);
1313 $height = (
int) round($size[1] /
$r);
1321 if ($width == 0 && is_null($a_user_width)) {
1324 if ($height == 0 && is_null($a_user_height)) {
1327 return array(
"width" => $width,
"height" => $height,
"info" => $info);
1347 $media_object->setTitle($name);
1348 $media_object->setDescription(
"");
1349 $media_object->create();
1352 $media_object->createDirectory();
1355 $file = $mob_dir .
"/" . $name;
1357 $media_item = $media_object->addMediaItemFromLegacyUpload(
1367 $media_item = $media_object->addMediaItemFromLocalFile(
1387 $media_object->setTitle($name);
1388 $media_object->setDescription($media_item->getFormat());
1389 $media_item->setHAlign(
"Left");
1396 $media_object->update();
1398 return $media_object;
1405 int $resize_width = 0,
1406 int $resize_height = 0,
1407 bool $constrain_proportions =
true,
1408 bool $deduce_size =
false 1412 $media_item->setPurpose($purpose);
1415 $this->manager->addFileFromLegacyUpload($this->
getId(), $tmp_name);
1418 $format = self::getMimeType(
$location,
true);
1421 if ($resize_width > 0 && $resize_height > 0 && is_int(strpos($format,
"image"))) {
1441 $media_item->setFormat($format);
1443 $media_item->setLocationType(
"LocalFile");
1444 if ($purpose ===
"Standard") {
1445 $this->generatePreviewPic(320, 240);
1453 string $upload_hash =
"",
1457 $media_item->setPurpose($purpose);
1458 $this->manager->addFileFromUpload($this->
getId(), $result);
1461 $format = self::getMimeType($result->
getName(),
true);
1464 $media_item->setFormat($format);
1465 $media_item->setLocation($result->
getName());
1466 $media_item->setLocationType(
"LocalFile");
1467 if ($upload_hash !==
"") {
1468 $media_item->setUploadHash($upload_hash);
1470 if ($purpose ===
"Standard") {
1471 $this->generatePreviewPic(320, 240);
1483 $media_item->setPurpose($purpose);
1485 $this->manager->addFileFromLocal($this->
getId(), $tmp_name, $name);
1488 $format = self::getMimeType(
$location,
true);
1491 $media_item->setFormat($format);
1493 $media_item->setLocationType(
"LocalFile");
1494 if ($purpose ===
"Standard") {
1495 $this->generatePreviewPic(320, 240);
1503 string $upload_hash =
"",
1506 $this->manager->removeLocation($this->
getId(), $media_item->getLocation());
1507 $this->manager->addFileFromUpload($this->
getId(), $result);
1510 $format = self::getMimeType($result->
getName(),
true);
1513 $media_item->setFormat($format);
1514 $media_item->setLocation($result->
getName());
1515 $media_item->setLocationType(
"LocalFile");
1516 if ($upload_hash !==
"") {
1517 $media_item->setUploadHash($upload_hash);
1519 if ($purpose ===
"Standard") {
1520 $this->generatePreviewPic(320, 240);
1531 string $a_subdir =
"",
1532 string $a_mode =
"move_uploaded" 1534 $a_subdir = str_replace(
"..",
"", $a_subdir);
1535 if ($a_mode ==
"rename") {
1536 $this->manager->addFileFromLocal(
1539 $a_subdir .
"/" . $a_name
1542 $this->manager->addFileFromLegacyUpload(
1545 $a_subdir .
"/" . $a_name
1554 $this->manager->addFileFromUpload(
1564 string $a_mode =
"move_uploaded" 1566 if (is_file($a_tmp_name) && $a_language !=
"") {
1577 if (!is_dir($srt_dir)) {
1583 $srt_files = array();
1584 foreach ($items as $i) {
1585 if (!in_array($i[
"entry"], array(
".",
"..")) && $i[
"type"] ==
"file") {
1586 $name = explode(
".", $i[
"entry"]);
1587 if ($name[1] ==
"srt" && substr($name[0], 0, 9) ==
"subtitle_") {
1588 $srt_files[] = array(
"file" => $i[
"entry"],
1589 "full_path" =>
"srt/" . $i[
"entry"],
"language" => substr($name[0], 9, 2));
1604 $format = self::getMimeType($source,
true);
1605 $this->manager->generatePreview(
1618 $this->manager->removeLocation(
1630 array $a_ignore = []
1637 foreach ($med_items as $med_item) {
1639 foreach ($int_links as $k => $int_link) {
1640 if ($int_link[
"Type"] ==
"MediaObject") {
1643 if (!in_array($l_id, $linked) &&
1644 !in_array($l_id, $a_ignore)) {
1659 return in_array($a_type, iterator_to_array(
1660 $DIC->mediaObjects()->internal()->domain()->mediaType()->getAllowedSuffixes()
1670 $new_obj->setTitle($this->
getTitle());
1675 $new_obj->addMediaItem($val);
1685 $this->domain->metadata()->learningObjectMetadata()
1687 ->fromObject(0, $this->
getId(),
"mob")
1688 ->forObject(0, $new_obj->getId(),
"mob");
1701 $pi = pathinfo($a_prevpic[
"name"]);
1702 $ext = $pi[
"extension"];
1703 if (in_array($ext, array(
"jpg",
"jpeg",
"png"))) {
1708 public function generatePreviewPic(
1714 $logger =
$GLOBALS[
'DIC']->logger()->mob();
1717 if ($item->getFormat() ===
"image/svg+xml") {
1721 $logger->debug(
"Generate preview pic...");
1722 $logger->debug(
"..." . $item->getFormat());
1724 $this->manager->generatePreview(
1726 $item->getLocation(),
1727 $item->getLocationType() ===
"LocalFile",
1734 bool $a_filename_only =
false 1737 if (!$a_filename_only) {
1738 $src = $this->thumbs->getPreviewSrc($this->
getId());
1745 $ppics = array(
"mob_vpreview.jpg",
1746 "mob_vpreview.jpeg",
1747 "mob_vpreview.png");
1749 if ($med && $med->getFormat() ===
"image/svg+xml" && $med->getLocationType() ===
"LocalFile") {
1750 $ppics[] = $med->getLocation();
1752 foreach ($ppics as $p) {
1753 if (is_file($dir .
"/" . $p)) {
1754 if ($a_filename_only) {
1757 return $dir .
"/" . $p;
1772 $rchars = array(
"`",
"=",
"$",
"{",
"}",
"'",
";",
" ",
"(",
")");
1773 $a_name = str_replace($rchars,
"_", $a_name);
1774 $a_name = str_replace(
"__",
"_", $a_name);
1796 if (!is_file($a_file[
"tmp_name"])) {
1804 $this->domain->resources()->zip()->unzipFile($dir .
"/multi_srt.zip");
1822 $lang_codes = $this->domain->metadata()->getLOMLanguageCodes();
1826 foreach ($files as $k => $i) {
1828 if ($i[
"type"] ==
"file" && !in_array($k, array(
".",
".."))) {
1829 if (pathinfo($k, PATHINFO_EXTENSION) ==
"srt") {
1831 if (substr($k, strlen($k) - 7, 1) ==
"_") {
1832 $lang = substr($k, strlen($k) - 6, 2);
1833 if (!in_array(
$lang, $lang_codes)) {
1837 $items[] = array(
"filename" => $k,
"lang" =>
$lang);
1848 if (!self::isTypeAllowed(
"html")) {
1857 if ($st_item->getLocationType() ==
"Reference") {
1859 $st_item->setFormat(
"video/vimeo");
1862 $this->
setTitle($meta[
"title"] ??
"");
1863 $description = str_replace(
"\n",
"", $meta[
"description"] ??
"");
1864 $description = str_replace([
"<br>",
"<br />"], [
"\n",
"\n"], $description);
1865 $description = strip_tags($description);
1867 $st_item->setDuration((
int) ($meta[
"duration"] ?? 0));
1868 $url = parse_url($meta[
"thumbnail_url"] ??
"");
1869 $file = basename(
$url[
"path"]);
1870 $ext = pathinfo($file, PATHINFO_EXTENSION);
1874 $this->manager->addPreviewFromUrl(
1876 $meta[
"thumbnail_url"],
1877 "/mob_vpreview." . $ext
1880 if (ilExternalMediaAnalyzer::isYoutube($st_item->getLocation())) {
1881 $st_item->setFormat(
"video/youtube");
1882 $par = ilExternalMediaAnalyzer::extractYoutubeParameters($st_item->getLocation());
1885 $this->
setTitle($meta[
"title"] ??
"");
1886 $description = str_replace(
"\n",
"", $meta[
"description"] ??
"");
1888 $this->
setTitle($st_item->getLocation());
1891 $description = str_replace([
"<br>",
"<br />"], [
"\n",
"\n"], $description);
1892 $description = strip_tags($description);
1894 $st_item->setDuration((
int) ($meta[
"duration"] ?? 0));
1895 $thumbnail_url = $meta[
"thumbnail_url"] ??
"";
1896 $url = parse_url($thumbnail_url);
1897 if ($thumbnail_url !==
"") {
1898 $file = basename(
$url[
"path"]);
1899 $this->manager->addPreviewFromUrl(
1901 $meta[
"thumbnail_url"],
1903 pathinfo($file, PATHINFO_EXTENSION)
1922 return (
string) $this->
getMediaItem($purpose)?->getLocationSrc();
static getWebspaceDir(string $mode="filesystem")
get webspace directory
static _writeTitle(int $obj_id, string $title)
write title to db (static)
static getLogger(string $a_component_id)
Get component logger.
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...
static _extractObjIdOfTarget(string $a_target)
Extract object id out of target.
static _getIntLinks(int $a_item_id)
get all internal links of a media items map areas
static _getPageForQuestionId(int $a_q_id, string $a_parent_type="")
static rCopy(string $a_sdir, string $a_tdir, bool $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
static rRenameSuffix(string $a_dir, string $a_old_suffix, string $a_new_suffix)
Renames all files with certain suffix and gives them a new suffix.
appendXML(string $a_str)
append xml string to document
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
static secureUrl(string $url)
static _lookupTestObjIdForQuestionId(int $q_id)
Get test Object ID for question ID.
Class ilForumDraftHistory.
static getASCIIFilename(string $a_filename)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static renameExecutables(string $a_dir)
ilAppEventHandler $app_event_handler
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
static _exists(string $a_parent_type, int $a_id, string $a_lang="", bool $a_no_cache=false)
Checks whether page exists.
static _lookupObjIdForForumId(int $a_for_id)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static lookupExerciseIdForReturnedId(int $a_returned_id)
Get exercise from submission id (used in ilObjMediaObject)
static getDir(string $a_dir, bool $a_rec=false, ?string $a_sub_dir="")
get directory
static getHtmlPath(string $relative_path)
get url of path
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
static lookupParentId(int $a_id, string $a_type)
static _lookupSurveyObjId(int $a_question_id)
static deducibleSize(string $a_mime)
checks if mime type is provided by getimagesize()
static _getUsersForClipboadObject(string $a_type, int $a_id)
get all users, that have a certain object within their clipboard
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
static lookupObjIdByPage(int $a_page_id)
returns the wiki/object id to a given page id
static findPortfolioForPage(int $a_page_id)
Get portfolio id of page id.
static _lookupContObjID(int $a_id)
get learning module id for lm object
getLongDescription()
get object long description (stored in object_description)
static signFile(string $path_to_file)
static _lookupMediaObjectUsages(int $a_mob_id)
Lookup media object usage(s)
static newInstanceByDraftId(int $draft_id)
static _lookupType(int $id, bool $reference=false)
static insertInstIntoID(string $a_value)
inserts installation id into ILIAS id
static _instanciateQuestion(int $question_id)
Get question object.
static _lookupContextObjId(int $a_news_id)
Context Object ID.
setDescription(string $description)
raise(string $a_component, string $a_event, array $a_parameter=[])
Raise an event.
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static _writeDescription(int $obj_id, string $desc)
write description to db (static)
static _lookGlossaryID(int $term_id)
get glossary id form term id