26 protected \ilDBInterface
$db;
36 if (!$db->tableColumnExists(
'media_item',
'duration')) {
55 "SELECT * FROM settings " .
56 " WHERE module = %s AND keyword = %s ",
58 [
"mobs",
"black_list_file_types"]
61 while ($rec = $db->fetchAssoc($set)) {
62 $black_list_str = $rec[
"value"] ??
"";
64 $black_list = explode(
",", $black_list_str);
66 foreach ($black_list as $type) {
67 $type = strtolower(trim($type));
69 case "html": $type =
"text/html";
71 case "mp4": $type =
"video/mp4";
73 case "webm": $type =
"video/webm";
75 case "mp3": $type =
"audio/mpeg";
77 case "png": $type =
"image/png";
80 case "jpg": $type =
"image/jpeg";
82 case "gif": $type =
"image/gif";
84 case "webp": $type =
"image/webp";
86 case "svg": $type =
"image/svg+xml";
88 case "pdf": $type =
"application/pdf";
91 if (in_array($type, [
"video/vimeo",
"video/youtube",
"video/mp4",
"video/webm",
"audio/mpeg",
92 "image/png",
"image/jpeg",
"image/gif",
"image/webp",
"image/svg+xml",
93 "text/html",
"application/pdf"])) {
94 if (!in_array($type, $new_black_list)) {
95 $new_black_list[] = $type;
102 "value" => [
"text", implode(
",", $new_black_list)]
105 "module" => [
"text",
"mobs"],
106 "keyword" => [
"text",
"black_list_file_types"]
144 if (!$this->db->indexExistsByFields(
'media_item', [
'mob_id'])) {
145 $this->db->addIndex(
'media_item', [
'mob_id'],
'i1');
modifyTableColumn(string $table, string $column, array $attributes)
addPrimaryKey(string $table_name, array $primary_keys)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addTableColumn(string $table_name, string $column_name, array $attributes)
queryF(string $query, array $types, array $values)
createTable(string $table_name, array $fields, bool $drop_table=false, bool $ignore_erros=false)