]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
More specific exceptions for mimetype/extension issues.
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 6 Jul 2016 07:14:59 +0000 (09:14 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 6 Jul 2016 07:14:59 +0000 (09:14 +0200)
lib/unknownextensionmimeexception.php [new file with mode: 0644]
lib/unknownmimeextensionexception.php
lib/util.php

diff --git a/lib/unknownextensionmimeexception.php b/lib/unknownextensionmimeexception.php
new file mode 100644 (file)
index 0000000..faa6e9c
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+/**
+ * Class for unknown extension MIME type exception
+ *
+ * Thrown when we don't know the MIME type for a given file extension.
+ *
+ * @category Exception
+ * @package  GNUsocial
+ * @author   Mikael Nordfeldth <mmn@hethane.se>
+ * @license  https://www.gnu.org/licenses/agpl-3.0.html
+ * @link     https://gnu.io/social
+ */
+
+class UnknownExtensionMimeException extends ServerException
+{
+    public function __construct($ext)
+    {
+        // TRANS: We accept the file type (we probably just accept all files)
+        // TRANS: but don't know the file extension for it. %1$s is the extension.
+        $msg = sprintf(_('Unknown MIME type for file extension: %1$s'), _ve($ext));
+
+        parent::__construct($msg);
+    }
+}
index 0937467d07b6357c5cbce494a722987b50951120..fbc3a6774233c090baaeedb7686bd247071c945d 100644 (file)
@@ -17,14 +17,11 @@ if (!defined('GNUSOCIAL')) { exit(1); }
 
 class UnknownMimeExtensionException extends ServerException
 {
-    public function __construct($msg=null)
+    public function __construct($mimetype)
     {
-        if ($msg === null) {
-            // TRANS: We accept the file type (we probably just accept all files)
-            // TRANS: but don't know the file extension for it.
-            $msg = _('Supported mimetype but unknown extension relation.');
-        }
-
+        // TRANS: We accept the file type (we probably just accept all files)
+        // TRANS: but don't know the file extension for it.
+        $msg = sprintf(_('Supported mimetype but unknown extension relation: %1$s'), _ve($mimetype));
         parent::__construct($msg);
     }
 }
index 8d95ec2305e9f66857e4a85fc027f9cf4c00ca28..846605bc7fae42de9ac1bee38770c16d250c5c3f 100644 (file)
@@ -2000,7 +2000,7 @@ function common_supported_ext_to_mime($fileext)
 
     $supported = common_config('attachments', 'supported');
     if ($supported === true) {
-        throw new ServerException('Supported extension but unknown mimetype relation.');
+        throw new UnknownExtensionMimeException($fileext);
     }
     foreach($supported as $type => $ext) {
         if ($ext === $fileext) {
@@ -2016,7 +2016,7 @@ function common_supported_mime_to_ext($mimetype)
 {
     $supported = common_config('attachments', 'supported');
     if ($supported === true) {
-        throw new UnknownMimeExtensionException();
+        throw new UnknownMimeExtensionException($mimetype);
     }
     foreach($supported as $type => $ext) {
         if ($mimetype === $type) {