2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2009-07-19 07:38:13 +00:00
|
|
|
/**
|
2014-04-29 05:33:03 +00:00
|
|
|
* Class Extension
|
|
|
|
*
|
2009-05-15 08:52:55 +00:00
|
|
|
* send_event(BlahEvent()) -> onBlah($event)
|
|
|
|
*
|
|
|
|
* Also loads the theme object into $this->theme if available
|
|
|
|
*
|
2012-02-08 12:07:01 +00:00
|
|
|
* The original concept came from Artanis's Extension extension
|
2020-03-25 11:47:00 +00:00
|
|
|
* --> https://github.com/Artanis/simple-extension/tree/master
|
2009-05-15 08:52:55 +00:00
|
|
|
* Then re-implemented by Shish after he broke the forum and couldn't
|
|
|
|
* find the thread where the original was posted >_<
|
2009-05-11 21:08:32 +00:00
|
|
|
*/
|
2019-05-28 16:59:38 +00:00
|
|
|
abstract class Extension
|
|
|
|
{
|
2020-01-26 13:19:35 +00:00
|
|
|
/** @var string */
|
2019-08-07 19:53:59 +00:00
|
|
|
public $key;
|
2019-05-28 16:59:38 +00:00
|
|
|
|
2020-01-26 13:19:35 +00:00
|
|
|
/** @var Themelet */
|
|
|
|
protected $theme;
|
2019-05-28 16:59:38 +00:00
|
|
|
|
2020-01-26 13:19:35 +00:00
|
|
|
/** @var ExtensionInfo */
|
2019-08-01 16:20:09 +00:00
|
|
|
public $info;
|
|
|
|
|
2019-08-07 19:53:59 +00:00
|
|
|
private static $enabled_extensions = [];
|
2019-05-28 16:59:38 +00:00
|
|
|
|
2019-08-07 19:53:59 +00:00
|
|
|
public function __construct($class = null)
|
2019-05-28 16:59:38 +00:00
|
|
|
{
|
2019-08-07 19:53:59 +00:00
|
|
|
$class = $class ?? get_called_class();
|
|
|
|
$this->theme = $this->get_theme_object($class);
|
|
|
|
$this->info = ExtensionInfo::get_for_extension_class($class);
|
2019-09-29 13:30:55 +00:00
|
|
|
if ($this->info===null) {
|
2020-01-26 13:19:35 +00:00
|
|
|
throw new ScoreException("Info class not found for extension $class");
|
2019-08-01 16:20:09 +00:00
|
|
|
}
|
2019-08-07 19:53:59 +00:00
|
|
|
$this->key = $this->info->key;
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the theme object for a given extension.
|
|
|
|
*/
|
|
|
|
private function get_theme_object(string $base): ?Themelet
|
|
|
|
{
|
|
|
|
$custom = 'Custom'.$base.'Theme';
|
|
|
|
$normal = $base.'Theme';
|
|
|
|
|
|
|
|
if (class_exists($custom)) {
|
|
|
|
return new $custom();
|
|
|
|
} elseif (class_exists($normal)) {
|
|
|
|
return new $normal();
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override this to change the priority of the extension,
|
|
|
|
* lower numbered ones will receive events first.
|
|
|
|
*/
|
|
|
|
public function get_priority(): int
|
|
|
|
{
|
|
|
|
return 50;
|
|
|
|
}
|
2019-08-07 19:53:59 +00:00
|
|
|
|
|
|
|
public static function determine_enabled_extensions()
|
|
|
|
{
|
|
|
|
self::$enabled_extensions = [];
|
2019-09-29 13:30:55 +00:00
|
|
|
foreach (array_merge(
|
|
|
|
ExtensionInfo::get_core_extensions(),
|
|
|
|
explode(",", EXTRA_EXTS)
|
|
|
|
) as $key) {
|
2019-08-07 19:53:59 +00:00
|
|
|
$ext = ExtensionInfo::get_by_key($key);
|
2019-09-29 13:50:31 +00:00
|
|
|
if ($ext===null || !$ext->is_supported()) {
|
2019-08-07 19:53:59 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-09-29 13:50:31 +00:00
|
|
|
// FIXME: error if one of our dependencies isn't supported
|
2019-08-07 19:53:59 +00:00
|
|
|
self::$enabled_extensions[] = $ext->key;
|
2019-09-29 13:30:55 +00:00
|
|
|
if (!empty($ext->dependencies)) {
|
2019-08-07 21:32:28 +00:00
|
|
|
foreach ($ext->dependencies as $dep) {
|
|
|
|
self::$enabled_extensions[] = $dep;
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 19:53:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function is_enabled(string $key): ?bool
|
|
|
|
{
|
|
|
|
return in_array($key, self::$enabled_extensions);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function get_enabled_extensions(): array
|
|
|
|
{
|
|
|
|
return self::$enabled_extensions;
|
|
|
|
}
|
|
|
|
public static function get_enabled_extensions_as_string(): string
|
|
|
|
{
|
2019-09-29 13:30:55 +00:00
|
|
|
return implode(",", self::$enabled_extensions);
|
2019-08-07 19:53:59 +00:00
|
|
|
}
|
2019-11-03 19:04:57 +00:00
|
|
|
|
|
|
|
protected function get_version(string $name): int
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
return $config->get_int($name, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function set_version(string $name, int $ver)
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
$config->set_int($name, $ver);
|
|
|
|
log_info("upgrade", "Set version for $name to $ver");
|
|
|
|
}
|
2009-05-11 21:08:32 +00:00
|
|
|
}
|
2008-08-23 12:05:24 +00:00
|
|
|
|
2019-08-01 16:20:09 +00:00
|
|
|
abstract class ExtensionInfo
|
|
|
|
{
|
2019-08-07 19:53:59 +00:00
|
|
|
// Every credit you get costs us RAM. It stops now.
|
|
|
|
public const SHISH_NAME = "Shish";
|
|
|
|
public const SHISH_EMAIL = "webmaster@shishnet.org";
|
2020-03-25 11:47:00 +00:00
|
|
|
public const SHIMMIE_URL = "https://code.shishnet.org/shimmie2/";
|
2019-08-07 19:53:59 +00:00
|
|
|
public const SHISH_AUTHOR = [self::SHISH_NAME=>self::SHISH_EMAIL];
|
|
|
|
|
|
|
|
public const LICENSE_GPLV2 = "GPLv2";
|
|
|
|
public const LICENSE_MIT = "MIT";
|
|
|
|
public const LICENSE_WTFPL = "WTFPL";
|
|
|
|
|
|
|
|
public const VISIBLE_ADMIN = "admin";
|
2019-08-07 21:32:28 +00:00
|
|
|
public const VISIBLE_HIDDEN = "hidden";
|
|
|
|
private const VALID_VISIBILITY = [self::VISIBLE_ADMIN, self::VISIBLE_HIDDEN];
|
2019-08-07 19:53:59 +00:00
|
|
|
|
|
|
|
public $key;
|
|
|
|
|
|
|
|
public $core = false;
|
|
|
|
|
|
|
|
public $beta = false;
|
|
|
|
|
2019-08-01 16:20:09 +00:00
|
|
|
public $name;
|
2019-08-07 19:53:59 +00:00
|
|
|
public $authors = [];
|
2019-08-01 16:20:09 +00:00
|
|
|
public $link;
|
|
|
|
public $license;
|
|
|
|
public $version;
|
2019-08-07 21:32:28 +00:00
|
|
|
public $dependencies = [];
|
2019-08-01 16:20:09 +00:00
|
|
|
public $visibility;
|
|
|
|
public $description;
|
|
|
|
public $documentation;
|
|
|
|
|
2019-08-07 19:53:59 +00:00
|
|
|
/** @var array which DBs this ext supports (blank for 'all') */
|
|
|
|
public $db_support = [];
|
|
|
|
|
2020-01-26 13:19:35 +00:00
|
|
|
/** @var bool */
|
2019-08-07 19:53:59 +00:00
|
|
|
private $supported = null;
|
2020-01-26 13:19:35 +00:00
|
|
|
|
|
|
|
/** @var string */
|
2019-08-07 19:53:59 +00:00
|
|
|
private $support_info = null;
|
|
|
|
|
|
|
|
public function is_supported(): bool
|
2019-08-01 16:20:09 +00:00
|
|
|
{
|
2019-09-29 13:30:55 +00:00
|
|
|
if ($this->supported===null) {
|
2019-08-07 19:53:59 +00:00
|
|
|
$this->check_support();
|
|
|
|
}
|
|
|
|
return $this->supported;
|
2019-08-01 16:20:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 19:53:59 +00:00
|
|
|
public function get_support_info(): string
|
|
|
|
{
|
2019-09-29 13:30:55 +00:00
|
|
|
if ($this->supported===null) {
|
2019-08-07 19:53:59 +00:00
|
|
|
$this->check_support();
|
|
|
|
}
|
|
|
|
return $this->support_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static $all_info_by_key = [];
|
|
|
|
private static $all_info_by_class = [];
|
|
|
|
private static $core_extensions = [];
|
|
|
|
|
|
|
|
protected function __construct()
|
|
|
|
{
|
2019-10-02 08:03:14 +00:00
|
|
|
assert(!empty($this->key), "key field is required");
|
|
|
|
assert(!empty($this->name), "name field is required for extension $this->key");
|
|
|
|
assert(empty($this->visibility) || in_array($this->visibility, self::VALID_VISIBILITY), "Invalid visibility for extension $this->key");
|
|
|
|
assert(is_array($this->db_support), "db_support has to be an array for extension $this->key");
|
|
|
|
assert(is_array($this->authors), "authors has to be an array for extension $this->key");
|
|
|
|
assert(is_array($this->dependencies), "dependencies has to be an array for extension $this->key");
|
2019-08-07 19:53:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function is_enabled(): bool
|
|
|
|
{
|
|
|
|
return Extension::is_enabled($this->key);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function check_support()
|
2019-08-01 16:20:09 +00:00
|
|
|
{
|
|
|
|
global $database;
|
2019-08-07 19:53:59 +00:00
|
|
|
$this->support_info = "";
|
2019-09-29 13:50:31 +00:00
|
|
|
if (!empty($this->db_support) && !in_array($database->get_driver_name(), $this->db_support)) {
|
2019-08-07 19:53:59 +00:00
|
|
|
$this->support_info .= "Database not supported. ";
|
|
|
|
}
|
|
|
|
// Additional checks here as needed
|
|
|
|
|
|
|
|
$this->supported = empty($this->support_info);
|
2019-08-01 16:20:09 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 19:53:59 +00:00
|
|
|
public static function get_all(): array
|
|
|
|
{
|
|
|
|
return array_values(self::$all_info_by_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function get_all_keys(): array
|
|
|
|
{
|
|
|
|
return array_keys(self::$all_info_by_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function get_core_extensions(): array
|
|
|
|
{
|
|
|
|
return self::$core_extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function get_by_key(string $key): ?ExtensionInfo
|
|
|
|
{
|
2019-09-29 13:30:55 +00:00
|
|
|
if (array_key_exists($key, self::$all_info_by_key)) {
|
2019-08-07 19:53:59 +00:00
|
|
|
return self::$all_info_by_key[$key];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function get_for_extension_class(string $base): ?ExtensionInfo
|
2019-08-01 16:20:09 +00:00
|
|
|
{
|
|
|
|
$normal = $base.'Info';
|
|
|
|
|
2019-08-07 19:53:59 +00:00
|
|
|
if (array_key_exists($normal, self::$all_info_by_class)) {
|
|
|
|
return self::$all_info_by_class[$normal];
|
2019-08-01 16:20:09 +00:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 19:53:59 +00:00
|
|
|
|
|
|
|
public static function load_all_extension_info()
|
|
|
|
{
|
2020-02-23 16:39:55 +00:00
|
|
|
foreach (getSubclassesOf("ExtensionInfo") as $class) {
|
|
|
|
$extension_info = new $class();
|
|
|
|
if (array_key_exists($extension_info->key, self::$all_info_by_key)) {
|
|
|
|
throw new ScoreException("Extension Info $class with key $extension_info->key has already been loaded");
|
|
|
|
}
|
2019-08-07 19:53:59 +00:00
|
|
|
|
2020-02-23 16:39:55 +00:00
|
|
|
self::$all_info_by_key[$extension_info->key] = $extension_info;
|
|
|
|
self::$all_info_by_class[$class] = $extension_info;
|
|
|
|
if ($extension_info->core===true) {
|
|
|
|
self::$core_extensions[] = $extension_info->key;
|
2019-08-07 19:53:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-01 16:20:09 +00:00
|
|
|
}
|
|
|
|
|
2009-07-19 07:38:13 +00:00
|
|
|
/**
|
2014-04-29 05:33:03 +00:00
|
|
|
* Class FormatterExtension
|
|
|
|
*
|
|
|
|
* Several extensions have this in common, make a common API.
|
2008-08-23 12:05:24 +00:00
|
|
|
*/
|
2019-05-28 16:59:38 +00:00
|
|
|
abstract class FormatterExtension extends Extension
|
|
|
|
{
|
|
|
|
public function onTextFormatting(TextFormattingEvent $event)
|
|
|
|
{
|
|
|
|
$event->formatted = $this->format($event->formatted);
|
|
|
|
$event->stripped = $this->strip($event->stripped);
|
|
|
|
}
|
|
|
|
|
|
|
|
abstract public function format(string $text): string;
|
|
|
|
abstract public function strip(string $text): string;
|
2007-04-16 11:58:25 +00:00
|
|
|
}
|
2009-07-16 19:20:53 +00:00
|
|
|
|
2009-07-19 07:38:13 +00:00
|
|
|
/**
|
2014-04-29 05:33:03 +00:00
|
|
|
* Class DataHandlerExtension
|
|
|
|
*
|
2009-07-19 03:48:25 +00:00
|
|
|
* This too is a common class of extension with many methods in common,
|
2014-04-29 05:33:03 +00:00
|
|
|
* so we have a base class to extend from.
|
2009-07-19 03:48:25 +00:00
|
|
|
*/
|
2019-05-28 16:59:38 +00:00
|
|
|
abstract class DataHandlerExtension extends Extension
|
|
|
|
{
|
2020-05-28 15:05:20 +00:00
|
|
|
protected $SUPPORTED_MIME = [];
|
2020-02-23 18:37:22 +00:00
|
|
|
|
2020-02-08 13:35:53 +00:00
|
|
|
protected function move_upload_to_archive(DataUploadEvent $event)
|
|
|
|
{
|
|
|
|
$target = warehouse_path(Image::IMAGE_DIR, $event->hash);
|
|
|
|
if (!@copy($event->tmpname, $target)) {
|
|
|
|
$errors = error_get_last();
|
|
|
|
throw new UploadException(
|
|
|
|
"Failed to copy file from uploads ({$event->tmpname}) to archive ($target): ".
|
|
|
|
"{$errors['type']} / {$errors['message']}"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-28 16:59:38 +00:00
|
|
|
public function onDataUpload(DataUploadEvent $event)
|
|
|
|
{
|
|
|
|
$supported_ext = $this->supported_ext($event->type);
|
|
|
|
$check_contents = $this->check_contents($event->tmpname);
|
|
|
|
if ($supported_ext && $check_contents) {
|
2020-02-08 13:35:53 +00:00
|
|
|
$this->move_upload_to_archive($event);
|
2019-05-28 16:59:38 +00:00
|
|
|
send_event(new ThumbnailGenerationEvent($event->hash, $event->type));
|
|
|
|
|
|
|
|
/* Check if we are replacing an image */
|
2020-04-25 20:38:11 +00:00
|
|
|
if (!is_null($event->replace_id)) {
|
2019-05-28 16:59:38 +00:00
|
|
|
/* hax: This seems like such a dirty way to do this.. */
|
|
|
|
|
|
|
|
/* Check to make sure the image exists. */
|
2020-04-25 20:38:11 +00:00
|
|
|
$existing = Image::by_id($event->replace_id);
|
2019-05-28 16:59:38 +00:00
|
|
|
|
|
|
|
if (is_null($existing)) {
|
|
|
|
throw new UploadException("Image to replace does not exist!");
|
|
|
|
}
|
|
|
|
if ($existing->hash === $event->metadata['hash']) {
|
|
|
|
throw new UploadException("The uploaded image is the same as the one to replace.");
|
|
|
|
}
|
|
|
|
|
|
|
|
// even more hax..
|
|
|
|
$event->metadata['tags'] = $existing->get_tag_list();
|
2019-06-15 16:18:52 +00:00
|
|
|
$image = $this->create_image_from_data(warehouse_path(Image::IMAGE_DIR, $event->metadata['hash']), $event->metadata);
|
2019-05-28 16:59:38 +00:00
|
|
|
if (is_null($image)) {
|
|
|
|
throw new UploadException("Data handler failed to create image object from data");
|
|
|
|
}
|
2020-06-02 23:02:04 +00:00
|
|
|
if (empty($image->ext)) {
|
|
|
|
throw new UploadException("Unable to determine extension for ". $event->tmpname);
|
|
|
|
}
|
2020-01-29 20:22:50 +00:00
|
|
|
try {
|
|
|
|
send_event(new MediaCheckPropertiesEvent($image));
|
|
|
|
} catch (MediaException $e) {
|
|
|
|
throw new UploadException("Unable to scan media properties: ".$e->getMessage());
|
|
|
|
}
|
2019-05-28 16:59:38 +00:00
|
|
|
|
2020-04-25 20:38:11 +00:00
|
|
|
send_event(new ImageReplaceEvent($event->replace_id, $image));
|
|
|
|
$event->image_id = $event->replace_id;
|
2019-05-28 16:59:38 +00:00
|
|
|
} else {
|
2019-06-15 16:18:52 +00:00
|
|
|
$image = $this->create_image_from_data(warehouse_path(Image::IMAGE_DIR, $event->hash), $event->metadata);
|
2019-05-28 16:59:38 +00:00
|
|
|
if (is_null($image)) {
|
|
|
|
throw new UploadException("Data handler failed to create image object from data");
|
|
|
|
}
|
2020-06-02 23:02:04 +00:00
|
|
|
if (empty($image->ext)) {
|
|
|
|
throw new UploadException("Unable to determine extension for ". $event->tmpname);
|
|
|
|
}
|
2020-01-29 20:22:50 +00:00
|
|
|
try {
|
|
|
|
send_event(new MediaCheckPropertiesEvent($image));
|
|
|
|
} catch (MediaException $e) {
|
|
|
|
throw new UploadException("Unable to scan media properties: ".$e->getMessage());
|
|
|
|
}
|
|
|
|
|
2020-01-28 21:19:59 +00:00
|
|
|
$iae = send_event(new ImageAdditionEvent($image));
|
2019-05-28 16:59:38 +00:00
|
|
|
$event->image_id = $iae->image->id;
|
2019-06-20 00:40:25 +00:00
|
|
|
$event->merged = $iae->merged;
|
2019-05-28 16:59:38 +00:00
|
|
|
|
|
|
|
// Rating Stuff.
|
|
|
|
if (!empty($event->metadata['rating'])) {
|
|
|
|
$rating = $event->metadata['rating'];
|
|
|
|
send_event(new RatingSetEvent($image, $rating));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Locked Stuff.
|
|
|
|
if (!empty($event->metadata['locked'])) {
|
|
|
|
$locked = $event->metadata['locked'];
|
|
|
|
send_event(new LockSetEvent($image, !empty($locked)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} elseif ($supported_ext && !$check_contents) {
|
2020-01-29 20:22:50 +00:00
|
|
|
// We DO support this extension - but the file looks corrupt
|
2019-05-28 16:59:38 +00:00
|
|
|
throw new UploadException("Invalid or corrupted file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function onThumbnailGeneration(ThumbnailGenerationEvent $event)
|
|
|
|
{
|
2019-06-09 18:22:48 +00:00
|
|
|
$result = false;
|
2019-05-28 16:59:38 +00:00
|
|
|
if ($this->supported_ext($event->type)) {
|
2019-06-14 12:47:50 +00:00
|
|
|
if ($event->force) {
|
2019-06-14 17:34:53 +00:00
|
|
|
$result = $this->create_thumb($event->hash, $event->type);
|
2019-05-28 16:59:38 +00:00
|
|
|
} else {
|
2019-06-15 16:18:52 +00:00
|
|
|
$outname = warehouse_path(Image::THUMBNAIL_DIR, $event->hash);
|
2019-06-14 12:47:50 +00:00
|
|
|
if (file_exists($outname)) {
|
2019-06-09 18:22:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-06-14 17:34:53 +00:00
|
|
|
$result = $this->create_thumb($event->hash, $event->type);
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-14 12:47:50 +00:00
|
|
|
if ($result) {
|
2019-06-09 18:22:48 +00:00
|
|
|
$event->generated = true;
|
|
|
|
}
|
2019-05-28 16:59:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function onDisplayingImage(DisplayingImageEvent $event)
|
|
|
|
{
|
|
|
|
global $page;
|
|
|
|
if ($this->supported_ext($event->image->ext)) {
|
2020-03-13 09:23:54 +00:00
|
|
|
/** @noinspection PhpPossiblePolymorphicInvocationInspection */
|
2019-05-28 16:59:38 +00:00
|
|
|
$this->theme->display_image($page, $event->image);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-23 18:37:22 +00:00
|
|
|
public function onMediaCheckProperties(MediaCheckPropertiesEvent $event)
|
|
|
|
{
|
|
|
|
if ($this->supported_ext($event->ext)) {
|
|
|
|
$this->media_check_properties($event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-23 16:05:09 +00:00
|
|
|
protected function create_image_from_data(string $filename, array $metadata): Image
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
$image = new Image();
|
|
|
|
|
|
|
|
$image->filesize = $metadata['size'];
|
|
|
|
$image->hash = $metadata['hash'];
|
|
|
|
$image->filename = (($pos = strpos($metadata['filename'], '?')) !== false) ? substr($metadata['filename'], 0, $pos) : $metadata['filename'];
|
|
|
|
if ($config->get_bool("upload_use_mime")) {
|
2020-05-28 15:05:20 +00:00
|
|
|
$image->ext = get_extension_for_file($filename);
|
2020-06-02 23:02:04 +00:00
|
|
|
}
|
|
|
|
if (empty($image->ext)) {
|
2020-02-23 16:05:09 +00:00
|
|
|
$image->ext = (($pos = strpos($metadata['extension'], '?')) !== false) ? substr($metadata['extension'], 0, $pos) : $metadata['extension'];
|
|
|
|
}
|
2020-06-02 23:02:04 +00:00
|
|
|
|
2020-02-23 16:05:09 +00:00
|
|
|
$image->tag_array = is_array($metadata['tags']) ? $metadata['tags'] : Tag::explode($metadata['tags']);
|
|
|
|
$image->source = $metadata['source'];
|
|
|
|
|
|
|
|
return $image;
|
|
|
|
}
|
|
|
|
|
2020-02-23 18:37:22 +00:00
|
|
|
abstract protected function media_check_properties(MediaCheckPropertiesEvent $event): void;
|
2019-05-28 16:59:38 +00:00
|
|
|
abstract protected function check_contents(string $tmpname): bool;
|
2019-06-14 17:34:53 +00:00
|
|
|
abstract protected function create_thumb(string $hash, string $type): bool;
|
2020-02-23 16:39:55 +00:00
|
|
|
|
2020-02-23 18:37:22 +00:00
|
|
|
protected function supported_ext(string $ext): bool
|
|
|
|
{
|
2020-05-28 15:05:20 +00:00
|
|
|
return in_array(get_mime_for_extension($ext), $this->SUPPORTED_MIME);
|
2020-02-23 18:37:22 +00:00
|
|
|
}
|
|
|
|
|
2020-02-23 18:12:14 +00:00
|
|
|
public static function get_all_supported_exts(): array
|
|
|
|
{
|
2020-02-23 16:39:55 +00:00
|
|
|
$arr = [];
|
2020-02-23 18:12:14 +00:00
|
|
|
foreach (getSubclassesOf("DataHandlerExtension") as $handler) {
|
2020-05-28 15:05:20 +00:00
|
|
|
$handler = (new $handler());
|
|
|
|
|
2020-06-02 23:02:04 +00:00
|
|
|
foreach ($handler->SUPPORTED_MIME as $mime) {
|
2020-05-28 15:05:20 +00:00
|
|
|
$arr = array_merge($arr, get_all_extension_for_mime($mime));
|
|
|
|
}
|
2020-02-23 16:39:55 +00:00
|
|
|
}
|
2020-05-28 15:05:20 +00:00
|
|
|
$arr = array_unique($arr);
|
2020-02-23 16:39:55 +00:00
|
|
|
return $arr;
|
|
|
|
}
|
2009-07-16 19:20:53 +00:00
|
|
|
}
|