| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Frozen; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Diagnostics.CodeAnalysis; |
| | 7 | | using System.IO; |
| | 8 | | using System.Linq; |
| | 9 | | using System.Net.Mime; |
| | 10 | | using Jellyfin.Extensions; |
| | 11 | |
|
| | 12 | | namespace MediaBrowser.Model.Net |
| | 13 | | { |
| | 14 | | /// <summary> |
| | 15 | | /// Class MimeTypes. |
| | 16 | | /// </summary> |
| | 17 | | /// |
| | 18 | | /// <remarks> |
| | 19 | | /// For more information on MIME types: |
| | 20 | | /// <list type="bullet"> |
| | 21 | | /// <item>http://en.wikipedia.org/wiki/Internet_media_type</item> |
| | 22 | | /// <item>https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types</item> |
| | 23 | | /// <item>http://www.iana.org/assignments/media-types/media-types.xhtml</item> |
| | 24 | | /// </list> |
| | 25 | | /// </remarks> |
| | 26 | | public static class MimeTypes |
| | 27 | | { |
| | 28 | | /// <summary> |
| | 29 | | /// Any extension in this list is considered a video file. |
| | 30 | | /// </summary> |
| 4 | 31 | | private static readonly FrozenSet<string> _videoFileExtensions = new[] |
| 4 | 32 | | { |
| 4 | 33 | | ".3gp", |
| 4 | 34 | | ".asf", |
| 4 | 35 | | ".avi", |
| 4 | 36 | | ".divx", |
| 4 | 37 | | ".dvr-ms", |
| 4 | 38 | | ".f4v", |
| 4 | 39 | | ".flv", |
| 4 | 40 | | ".img", |
| 4 | 41 | | ".iso", |
| 4 | 42 | | ".m2t", |
| 4 | 43 | | ".m2ts", |
| 4 | 44 | | ".m2v", |
| 4 | 45 | | ".m4v", |
| 4 | 46 | | ".mk3d", |
| 4 | 47 | | ".mkv", |
| 4 | 48 | | ".mov", |
| 4 | 49 | | ".mp4", |
| 4 | 50 | | ".mpg", |
| 4 | 51 | | ".mpeg", |
| 4 | 52 | | ".mts", |
| 4 | 53 | | ".ogg", |
| 4 | 54 | | ".ogm", |
| 4 | 55 | | ".ogv", |
| 4 | 56 | | ".rec", |
| 4 | 57 | | ".ts", |
| 4 | 58 | | ".rmvb", |
| 4 | 59 | | ".webm", |
| 4 | 60 | | ".wmv", |
| 4 | 61 | | ".wtv", |
| 4 | 62 | | }.ToFrozenSet(StringComparer.OrdinalIgnoreCase); |
| | 63 | |
|
| | 64 | | /// <summary> |
| | 65 | | /// Used for extensions not in <see cref="Model.MimeTypes"/> or to override them. |
| | 66 | | /// </summary> |
| 4 | 67 | | private static readonly FrozenDictionary<string, string> _mimeTypeLookup = new KeyValuePair<string, string>[] |
| 4 | 68 | | { |
| 4 | 69 | | // Type application |
| 4 | 70 | | new(".azw3", "application/vnd.amazon.ebook"), |
| 4 | 71 | | new(".cb7", "application/x-cb7"), |
| 4 | 72 | | new(".cba", "application/x-cba"), |
| 4 | 73 | | new(".cbr", "application/vnd.comicbook-rar"), |
| 4 | 74 | | new(".cbt", "application/x-cbt"), |
| 4 | 75 | | new(".cbz", "application/vnd.comicbook+zip"), |
| 4 | 76 | |
|
| 4 | 77 | | // Type image |
| 4 | 78 | | new(".tbn", "image/jpeg"), |
| 4 | 79 | |
|
| 4 | 80 | | // Type text |
| 4 | 81 | | new(".ass", "text/x-ssa"), |
| 4 | 82 | | new(".ssa", "text/x-ssa"), |
| 4 | 83 | | new(".edl", "text/plain"), |
| 4 | 84 | | new(".html", "text/html; charset=UTF-8"), |
| 4 | 85 | | new(".htm", "text/html; charset=UTF-8"), |
| 4 | 86 | |
|
| 4 | 87 | | // Type video |
| 4 | 88 | | new(".mpegts", "video/mp2t"), |
| 4 | 89 | |
|
| 4 | 90 | | // Type audio |
| 4 | 91 | | new(".aac", "audio/aac"), |
| 4 | 92 | | new(".ac3", "audio/ac3"), |
| 4 | 93 | | new(".ape", "audio/x-ape"), |
| 4 | 94 | | new(".dsf", "audio/dsf"), |
| 4 | 95 | | new(".dsp", "audio/dsp"), |
| 4 | 96 | | new(".flac", "audio/flac"), |
| 4 | 97 | | new(".m4b", "audio/mp4"), |
| 4 | 98 | | new(".mp3", "audio/mpeg"), |
| 4 | 99 | | new(".vorbis", "audio/vorbis"), |
| 4 | 100 | | new(".webma", "audio/webm"), |
| 4 | 101 | | new(".wv", "audio/x-wavpack"), |
| 4 | 102 | | new(".xsp", "audio/xsp"), |
| 4 | 103 | | }.ToFrozenDictionary(pair => pair.Key, pair => pair.Value, StringComparer.OrdinalIgnoreCase); |
| | 104 | |
|
| 4 | 105 | | private static readonly FrozenDictionary<string, string> _extensionLookup = new KeyValuePair<string, string>[] |
| 4 | 106 | | { |
| 4 | 107 | | // Type application |
| 4 | 108 | | new("application/vnd.comicbook-rar", ".cbr"), |
| 4 | 109 | | new("application/vnd.comicbook+zip", ".cbz"), |
| 4 | 110 | | new("application/x-cb7", ".cb7"), |
| 4 | 111 | | new("application/x-cba", ".cba"), |
| 4 | 112 | | new("application/x-cbr", ".cbr"), |
| 4 | 113 | | new("application/x-cbt", ".cbt"), |
| 4 | 114 | | new("application/x-cbz", ".cbz"), |
| 4 | 115 | | new("application/x-javascript", ".js"), |
| 4 | 116 | | new("application/xml", ".xml"), |
| 4 | 117 | | new("application/x-mpegURL", ".m3u8"), |
| 4 | 118 | |
|
| 4 | 119 | | // Type audio |
| 4 | 120 | | new("audio/aac", ".aac"), |
| 4 | 121 | | new("audio/ac3", ".ac3"), |
| 4 | 122 | | new("audio/dsf", ".dsf"), |
| 4 | 123 | | new("audio/dsp", ".dsp"), |
| 4 | 124 | | new("audio/flac", ".flac"), |
| 4 | 125 | | new("audio/m4b", ".m4b"), |
| 4 | 126 | | new("audio/vorbis", ".vorbis"), |
| 4 | 127 | | new("audio/x-ape", ".ape"), |
| 4 | 128 | | new("audio/xsp", ".xsp"), |
| 4 | 129 | | new("audio/x-aac", ".aac"), |
| 4 | 130 | | new("audio/x-wavpack", ".wv"), |
| 4 | 131 | |
|
| 4 | 132 | | // Type image |
| 4 | 133 | | new("image/jpeg", ".jpg"), |
| 4 | 134 | | new("image/tiff", ".tiff"), |
| 4 | 135 | | new("image/x-png", ".png"), |
| 4 | 136 | | new("image/x-icon", ".ico"), |
| 4 | 137 | |
|
| 4 | 138 | | // Type text |
| 4 | 139 | | new("text/plain", ".txt"), |
| 4 | 140 | | new("text/rtf", ".rtf"), |
| 4 | 141 | | new("text/x-ssa", ".ssa"), |
| 4 | 142 | |
|
| 4 | 143 | | // Type video |
| 4 | 144 | | new("video/vnd.mpeg.dash.mpd", ".mpd"), |
| 4 | 145 | | new("video/x-matroska", ".mkv"), |
| 4 | 146 | | }.ToFrozenDictionary(pair => pair.Key, pair => pair.Value, StringComparer.OrdinalIgnoreCase); |
| | 147 | |
|
| 3 | 148 | | public static string GetMimeType(string path) => GetMimeType(path, MediaTypeNames.Application.Octet); |
| | 149 | |
|
| | 150 | | /// <summary> |
| | 151 | | /// Gets the type of the MIME. |
| | 152 | | /// </summary> |
| | 153 | | /// <param name="filename">The filename to find the MIME type of.</param> |
| | 154 | | /// <param name="defaultValue">The default value to return if no fitting MIME type is found.</param> |
| | 155 | | /// <returns>The correct MIME type for the given filename, or <paramref name="defaultValue"/> if it wasn't found |
| | 156 | | [return: NotNullIfNotNull("defaultValue")] |
| | 157 | | public static string? GetMimeType(string filename, string? defaultValue = null) |
| | 158 | | { |
| 84 | 159 | | ArgumentException.ThrowIfNullOrEmpty(filename); |
| | 160 | |
|
| 84 | 161 | | var ext = Path.GetExtension(filename); |
| | 162 | |
|
| 84 | 163 | | if (_mimeTypeLookup.TryGetValue(ext, out string? result)) |
| | 164 | | { |
| 26 | 165 | | return result; |
| | 166 | | } |
| | 167 | |
|
| 58 | 168 | | if (Model.MimeTypes.TryGetMimeType(filename, out var mimeType)) |
| | 169 | | { |
| 58 | 170 | | return mimeType; |
| | 171 | | } |
| | 172 | |
|
| | 173 | | // Catch-all for all video types that don't require specific mime types |
| 0 | 174 | | if (_videoFileExtensions.Contains(ext)) |
| | 175 | | { |
| 0 | 176 | | return string.Concat("video/", ext.AsSpan(1)); |
| | 177 | | } |
| | 178 | |
|
| 0 | 179 | | return defaultValue; |
| | 180 | | } |
| | 181 | |
|
| | 182 | | public static string? ToExtension(string mimeType) |
| | 183 | | { |
| 82 | 184 | | ArgumentException.ThrowIfNullOrEmpty(mimeType); |
| | 185 | |
|
| | 186 | | // handle text/html; charset=UTF-8 |
| 82 | 187 | | mimeType = mimeType.AsSpan().LeftPart(';').ToString(); |
| | 188 | |
|
| 82 | 189 | | if (_extensionLookup.TryGetValue(mimeType, out string? result)) |
| | 190 | | { |
| 33 | 191 | | return result; |
| | 192 | | } |
| | 193 | |
|
| 49 | 194 | | var extension = Model.MimeTypes.GetMimeTypeExtensions(mimeType).FirstOrDefault(); |
| 49 | 195 | | return string.IsNullOrEmpty(extension) ? null : "." + extension; |
| | 196 | | } |
| | 197 | |
|
| | 198 | | public static bool IsImage(ReadOnlySpan<char> mimeType) |
| 12 | 199 | | => mimeType.StartsWith("image/", StringComparison.OrdinalIgnoreCase); |
| | 200 | | } |
| | 201 | | } |