This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/handle_flash/main.php

47 lines
1.2 KiB
PHP
Raw Normal View History

2020-01-26 13:19:35 +00:00
<?php declare(strict_types=1);
class FlashFileHandler extends DataHandlerExtension
{
public function onMediaCheckProperties(MediaCheckPropertiesEvent $event)
{
switch ($event->ext) {
case "swf":
2020-01-29 20:22:50 +00:00
$event->image->lossless = true;
$event->image->video = true;
$info = getimagesize($event->file_name);
if (!$info) {
return null;
}
2020-01-29 20:22:50 +00:00
$event->image->image = false;
2020-01-29 20:22:50 +00:00
$event->image->width = $info[0];
$event->image->height = $info[1];
break;
}
}
protected function create_thumb(string $hash, string $type): bool
{
if (!Media::create_thumbnail_ffmpeg($hash)) {
copy("ext/handle_flash/thumb.jpg", warehouse_path(Image::THUMBNAIL_DIR, $hash));
}
return true;
}
protected function supported_ext(string $ext): bool
{
$exts = ["swf"];
return in_array(strtolower($ext), $exts);
}
protected function check_contents(string $tmpname): bool
{
$fp = fopen($tmpname, "r");
$head = fread($fp, 3);
fclose($fp);
2020-02-23 18:14:15 +00:00
return in_array($head, ["CWS", "FWS"]);
}
}