< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Net.MimeTypes
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Net/MimeTypes.cs
Line coverage
97%
Covered lines: 125
Uncovered lines: 3
Coverable lines: 128
Total lines: 201
Line coverage: 97.6%
Branch coverage
60%
Covered branches: 6
Total branches: 10
Branch coverage: 60%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.cctor()100%11100%
GetMimeType(...)100%11100%
GetMimeType(...)50%7666.66%
ToExtension(...)75%44100%
IsImage(...)100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Net/MimeTypes.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System;
 4using System.Collections.Frozen;
 5using System.Collections.Generic;
 6using System.Diagnostics.CodeAnalysis;
 7using System.IO;
 8using System.Linq;
 9using System.Net.Mime;
 10using Jellyfin.Extensions;
 11
 12namespace 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>
 431        private static readonly FrozenSet<string> _videoFileExtensions = new[]
 432        {
 433            ".3gp",
 434            ".asf",
 435            ".avi",
 436            ".divx",
 437            ".dvr-ms",
 438            ".f4v",
 439            ".flv",
 440            ".img",
 441            ".iso",
 442            ".m2t",
 443            ".m2ts",
 444            ".m2v",
 445            ".m4v",
 446            ".mk3d",
 447            ".mkv",
 448            ".mov",
 449            ".mp4",
 450            ".mpg",
 451            ".mpeg",
 452            ".mts",
 453            ".ogg",
 454            ".ogm",
 455            ".ogv",
 456            ".rec",
 457            ".ts",
 458            ".rmvb",
 459            ".webm",
 460            ".wmv",
 461            ".wtv",
 462        }.ToFrozenSet(StringComparer.OrdinalIgnoreCase);
 63
 64        /// <summary>
 65        /// Used for extensions not in <see cref="Model.MimeTypes"/> or to override them.
 66        /// </summary>
 467        private static readonly FrozenDictionary<string, string> _mimeTypeLookup = new KeyValuePair<string, string>[]
 468        {
 469            // Type application
 470            new(".azw3", "application/vnd.amazon.ebook"),
 471            new(".cb7", "application/x-cb7"),
 472            new(".cba", "application/x-cba"),
 473            new(".cbr", "application/vnd.comicbook-rar"),
 474            new(".cbt", "application/x-cbt"),
 475            new(".cbz", "application/vnd.comicbook+zip"),
 476
 477            // Type image
 478            new(".tbn", "image/jpeg"),
 479
 480            // Type text
 481            new(".ass", "text/x-ssa"),
 482            new(".ssa", "text/x-ssa"),
 483            new(".edl", "text/plain"),
 484            new(".html", "text/html; charset=UTF-8"),
 485            new(".htm", "text/html; charset=UTF-8"),
 486
 487            // Type video
 488            new(".mpegts", "video/mp2t"),
 489
 490            // Type audio
 491            new(".aac", "audio/aac"),
 492            new(".ac3", "audio/ac3"),
 493            new(".ape", "audio/x-ape"),
 494            new(".dsf", "audio/dsf"),
 495            new(".dsp", "audio/dsp"),
 496            new(".flac", "audio/flac"),
 497            new(".m4b", "audio/mp4"),
 498            new(".mp3", "audio/mpeg"),
 499            new(".vorbis", "audio/vorbis"),
 4100            new(".webma", "audio/webm"),
 4101            new(".wv", "audio/x-wavpack"),
 4102            new(".xsp", "audio/xsp"),
 4103        }.ToFrozenDictionary(pair => pair.Key, pair => pair.Value, StringComparer.OrdinalIgnoreCase);
 104
 4105        private static readonly FrozenDictionary<string, string> _extensionLookup = new KeyValuePair<string, string>[]
 4106        {
 4107            // Type application
 4108            new("application/vnd.comicbook-rar", ".cbr"),
 4109            new("application/vnd.comicbook+zip", ".cbz"),
 4110            new("application/x-cb7", ".cb7"),
 4111            new("application/x-cba", ".cba"),
 4112            new("application/x-cbr", ".cbr"),
 4113            new("application/x-cbt", ".cbt"),
 4114            new("application/x-cbz", ".cbz"),
 4115            new("application/x-javascript", ".js"),
 4116            new("application/xml", ".xml"),
 4117            new("application/x-mpegURL", ".m3u8"),
 4118
 4119            // Type audio
 4120            new("audio/aac", ".aac"),
 4121            new("audio/ac3", ".ac3"),
 4122            new("audio/dsf", ".dsf"),
 4123            new("audio/dsp", ".dsp"),
 4124            new("audio/flac", ".flac"),
 4125            new("audio/m4b", ".m4b"),
 4126            new("audio/vorbis", ".vorbis"),
 4127            new("audio/x-ape", ".ape"),
 4128            new("audio/xsp", ".xsp"),
 4129            new("audio/x-aac", ".aac"),
 4130            new("audio/x-wavpack", ".wv"),
 4131
 4132            // Type image
 4133            new("image/jpeg", ".jpg"),
 4134            new("image/tiff", ".tiff"),
 4135            new("image/x-png", ".png"),
 4136            new("image/x-icon", ".ico"),
 4137
 4138            // Type text
 4139            new("text/plain", ".txt"),
 4140            new("text/rtf", ".rtf"),
 4141            new("text/x-ssa", ".ssa"),
 4142
 4143            // Type video
 4144            new("video/vnd.mpeg.dash.mpd", ".mpd"),
 4145            new("video/x-matroska", ".mkv"),
 4146        }.ToFrozenDictionary(pair => pair.Key, pair => pair.Value, StringComparer.OrdinalIgnoreCase);
 147
 3148        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        {
 84159            ArgumentException.ThrowIfNullOrEmpty(filename);
 160
 84161            var ext = Path.GetExtension(filename);
 162
 84163            if (_mimeTypeLookup.TryGetValue(ext, out string? result))
 164            {
 26165                return result;
 166            }
 167
 58168            if (Model.MimeTypes.TryGetMimeType(filename, out var mimeType))
 169            {
 58170                return mimeType;
 171            }
 172
 173            // Catch-all for all video types that don't require specific mime types
 0174            if (_videoFileExtensions.Contains(ext))
 175            {
 0176                return string.Concat("video/", ext.AsSpan(1));
 177            }
 178
 0179            return defaultValue;
 180        }
 181
 182        public static string? ToExtension(string mimeType)
 183        {
 82184            ArgumentException.ThrowIfNullOrEmpty(mimeType);
 185
 186            // handle text/html; charset=UTF-8
 82187            mimeType = mimeType.AsSpan().LeftPart(';').ToString();
 188
 82189            if (_extensionLookup.TryGetValue(mimeType, out string? result))
 190            {
 33191                return result;
 192            }
 193
 49194            var extension = Model.MimeTypes.GetMimeTypeExtensions(mimeType).FirstOrDefault();
 49195            return string.IsNullOrEmpty(extension) ? null : "." + extension;
 196        }
 197
 198        public static bool IsImage(ReadOnlySpan<char> mimeType)
 12199            => mimeType.StartsWith("image/", StringComparison.OrdinalIgnoreCase);
 200    }
 201}