42 $lng = $DIC->language();
43 $this->zip = $DIC->mediaObjects()->internal()->domain()->resources()->zip();
44 $this->md = $DIC->mediaObjects()->internal()->domain()->metadata();
47 $this->multi_srt = $a_multi_srt;
55 return $this->multi_srt->getUploadDir();
69 if (!is_file($a_file[
"tmp_name"])) {
77 $this->zip->unzipFile($dir .
"/multi_srt.zip");
95 $lang_codes = $this->md->getLOMLanguageCodes();
99 foreach ($files as $k => $i) {
101 if ($i[
"type"] ==
"file" && !in_array($k, array(
".",
".."))) {
102 if (pathinfo($k, PATHINFO_EXTENSION) ==
"srt") {
104 if (substr($k, strlen($k) - 7, 1) ==
"_") {
105 $lang = substr($k, strlen($k) - 6, 2);
106 if (!in_array(
$lang, $lang_codes)) {
110 $items[] = array(
"filename" => $k,
"lang" =>
$lang);
115 foreach ($this->multi_srt->getMobIds() as $mob) {
117 $mi = $m->getMediaItem(
"Standard");
118 if ($mi->getLocationType() ==
"LocalFile" && is_int(strpos($mi->getFormat(),
"video"))) {
121 $loc = pathinfo($mi->getLocation(), PATHINFO_FILENAME);
122 foreach ($items as $i => $item) {
123 if (substr($item[
"filename"], 0, strlen($loc)) == $loc &&
124 substr($item[
"filename"], strlen($loc), 1) ==
"_" &&
125 pathinfo($item[
"filename"], PATHINFO_EXTENSION) ==
"srt") {
126 $l = substr($item[
"filename"], strlen($loc) + 1, 2);
127 if (in_array($l, $lang_codes)) {
128 $items[$i][
"lang"] = $l;
129 $items[$i][
"mob"] = $mob;
130 $items[$i][
"mob_title"] = $m->getTitle();
147 foreach ($items as $i) {
148 if ($i[
"mob"] > 0 && $i[
"lang"] !=
"") {
150 $mob->uploadSrtFile($this->
getMultiSrtUploadDir() .
"/" . $i[
"filename"], $i[
"lang"],
"rename");
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
getMultiSrtFiles()
Get all srt files of srt multi upload.
__construct(ilMobMultiSrtInt $a_multi_srt)
getMultiSrtUploadDir()
Get directory for multi srt upload.
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static getDir(string $a_dir, bool $a_rec=false, ?string $a_sub_dir="")
get directory
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
clearMultiSrtDirectory()
Clear multi feedback directory.
moveMultiSrtFiles()
Move all srt files that could be mapped to media objects.
Handler class for multi srt upload.
ilMobMultiSrtInt $multi_srt
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
uploadMultipleSubtitleFile(array $a_file)
Upload multi srt file.