ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MediaObjectManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\MediaObjects;
22 
32 
34 {
38 
39  public function __construct(
40  protected InternalDataService $data,
41  InternalRepoService $repo,
42  protected InternalDomainService $domain,
43  protected \ilMobStakeholder $stakeholder
44  ) {
45  $this->repo = $repo->mediaObject();
46  $this->image_converters = new Images(true);
47  $this->output_options = new ImageOutputOptions();
48  }
49 
50  public function create(
51  int $id,
52  string $title,
53  int $from_mob_id = 0
54  ): void {
55  $this->repo->create(
56  $id,
57  $title,
58  $this->stakeholder,
59  $from_mob_id
60  );
61  }
62 
63  public function addLocalDirectory(int $mob_id, string $dir): void
64  {
65  $this->repo->addLocalDirectory($mob_id, $dir);
66  }
67 
68  public function addFileFromLegacyUpload(int $mob_id, string $tmp_name, string $target_path = ""): void
69  {
70  $this->repo->addFileFromLegacyUpload($mob_id, $tmp_name, $target_path);
71  }
72 
73  public function addFileFromUpload(
74  int $mob_id,
75  UploadResult $result,
76  string $path = "/"
77  ): void {
78  $this->repo->addFileFromUpload($mob_id, $result, $path);
79  }
80 
81  public function addFileFromLocal(int $mob_id, string $tmp_name, string $path): void
82  {
83  $this->repo->addFileFromLocal($mob_id, $tmp_name, $path);
84  }
85 
86  public function removeLocation(
87  int $mob_id,
88  string $location
89  ): void {
90  $this->repo->removeLocation($mob_id, $location);
91  }
92 
93  public function getLocationStream(
94  int $mob_id,
95  string $location
96  ): ZIPStream {
97  return $this->repo->getLocationStream($mob_id, $location);
98  }
99 
100  public function addStream(
101  int $mob_id,
102  string $location,
103  FileStream $stream
104  ): void {
105  $this->repo->addStream($mob_id, $location, $stream);
106  }
107 
108  public function getLocalSrc(int $mob_id, string $location): string
109  {
110  $src = $this->repo->getLocalSrc(
111  $mob_id,
112  $location
113  );
114  if ($src === "") { // fallback: old source
115  $path_to_file = \ilObjMediaObject::_getURL($mob_id) . "/" . $location;
116  try {
117  $src = \ilWACSignedPath::signFile($path_to_file);
118  } catch (Exception $e) {
119  }
120  }
121  return $src;
122  }
123 
124  public function hasLocalFile(int $mob_id, string $location): bool
125  {
126  return $this->repo->hasLocalFile($mob_id, $location);
127  }
128 
129  public function getContainerResource(
130  int $mob_id
131  ): ?StorableResource {
132  return $this->repo->getContainerResource($mob_id);
133  }
134 
135  public function getContainerResourceId(
136  int $mob_id
138  return $this->repo->getContainerResourceId($mob_id);
139  }
140 
141  public function getFilesOfPath(
142  int $mob_id,
143  string $dir_path
144  ): array {
145  return $this->repo->getFilesOfPath($mob_id, $dir_path);
146  }
147 
148  public function getInfoOfEntry(
149  int $mob_id,
150  string $path
151  ): array {
152  return $this->repo->getInfoOfEntry(
153  $mob_id,
154  $path
155  );
156  }
157 
158  public function deliverEntry(
159  int $mob_id,
160  string $path
161  ): void {
162  $this->repo->deliverEntry($mob_id, $path);
163  }
164 
165 
166  public function generatePreview(
167  int $mob_id,
168  string $location,
169  bool $local,
170  string $format,
171  int $sec = 1,
172  string $target_location = "mob_vpreview.png"
173  ): void {
174 
175  $is_image = is_int(strpos($format, "image/"));
176  $is_video = in_array($format, ["video/mp4", "video/webm"]);
177 
178  if ($local) {
179  if ($is_image) {
180  $width = $height = \ilObjMediaObject::DEFAULT_PREVIEW_SIZE;
181  $image_quality = 60;
182 
183  // the zip stream is not seekable, which is needed by Imagick
184  // so we create a seekable stream first
185  $tempStream = fopen('php://temp', 'w+');
186  stream_copy_to_stream($this->repo->getLocationStream($mob_id, $location)->detach(), $tempStream);
187  rewind($tempStream);
188  $stream = new Stream($tempStream);
189 
190  $converter = $this->image_converters->resizeToFixedSize(
191  $stream,
192  $width,
193  $height,
194  true,
195  $this->output_options
196  ->withQuality($image_quality)
197  ->withFormat(ImageOutputOptions::FORMAT_PNG)
198  );
199  $this->repo->addStream(
200  $mob_id,
201  $target_location,
202  $converter->getStream()
203  );
204  fclose($tempStream);
205  }
206  if ($is_video) {
207  $zip_uri = $this->repo->getContainerPath($mob_id);
209  $zip_uri,
210  $location,
211  $sec
212  );
213  $png_res = fopen('php://memory', 'r+');
214  fwrite($png_res, $image_str);
215  rewind($png_res);
216  $png_stream = new Stream($png_res);
217  $this->repo->addStream(
218  $mob_id,
219  $target_location,
220  $png_stream
221  );
222  }
223  }
224  }
225 
226  public function addPreviewFromUrl(
227  int $mob_id,
228  string $url,
229  string $target_location
230  ): void {
231  $str = file_get_contents($url);
232  $res = fopen('php://memory', 'r+');
233  fwrite($res, $str);
234  rewind($res);
235  $stream = new Stream($res);
236  $this->repo->addStream(
237  $mob_id,
238  $target_location,
239  $stream
240  );
241  }
242 
243 }
hasLocalFile(int $mob_id, string $location)
create(int $id, string $title, int $from_mob_id=0)
$res
Definition: ltiservices.php:66
__construct(protected InternalDataService $data, InternalRepoService $repo, protected InternalDomainService $domain, protected \ilMobStakeholder $stakeholder)
$location
Definition: buildRTE.php:22
getLocalSrc(int $mob_id, string $location)
addFileFromUpload(int $mob_id, UploadResult $result, string $path="/")
$url
Definition: shib_logout.php:66
$path
Definition: ltiservices.php:29
addPreviewFromUrl(int $mob_id, string $url, string $target_location)
static extractPNGFromVideoInZip(string $zip, string $path, int $sec=1)
addFileFromLocal(int $mob_id, string $tmp_name, string $path)
getFilesOfPath(int $mob_id, string $dir_path)
getLocationStream(int $mob_id, string $location)
removeLocation(int $mob_id, string $location)
addFileFromLegacyUpload(int $mob_id, string $tmp_name, string $target_path="")
addLocalDirectory(int $mob_id, string $dir)
getInfoOfEntry(int $mob_id, string $path)
generatePreview(int $mob_id, string $location, bool $local, string $format, int $sec=1, string $target_location="mob_vpreview.png")
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static signFile(string $path_to_file)
static _getURL(int $a_mob_id)
get directory for files of media object
addStream(int $mob_id, string $location, FileStream $stream)
deliverEntry(int $mob_id, string $path)
The base interface for all filesystem streams.
Definition: FileStream.php:31