| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 | #pragma warning disable CS1591using System;using System.Collections.Generic;using System.IO;using System.Linq;namespace MediaBrowser.Model.Net{    /// <summary>    /// Class MimeTypes    /// </summary>    public static class MimeTypes    {        /// <summary>        /// Any extension in this list is considered a video file        /// </summary>        private static readonly HashSet<string> _videoFileExtensions = new HashSet<string>(StringComparer.OrdinalIgnoreCase)        {            ".mkv",            ".m2t",            ".m2ts",            ".img",            ".iso",            ".mk3d",            ".ts",            ".rmvb",            ".mov",            ".avi",            ".mpg",            ".mpeg",            ".wmv",            ".mp4",            ".divx",            ".dvr-ms",            ".wtv",            ".ogm",            ".ogv",            ".asf",            ".m4v",            ".flv",            ".f4v",            ".3gp",            ".webm",            ".mts",            ".m2v",            ".rec"        };        // http://en.wikipedia.org/wiki/Internet_media_type        // Add more as needed        private static readonly Dictionary<string, string> _mimeTypeLookup = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase)        {            // Type application            { ".cbz", "application/x-cbz" },            { ".cbr", "application/epub+zip" },            { ".eot", "application/vnd.ms-fontobject" },            { ".epub", "application/epub+zip" },            { ".js", "application/x-javascript" },            { ".json", "application/json" },            { ".map", "application/x-javascript" },            { ".pdf", "application/pdf" },            { ".ttml", "application/ttml+xml" },            { ".m3u8", "application/x-mpegURL" },            { ".mobi", "application/x-mobipocket-ebook" },            { ".xml", "application/xml" },            { ".wasm", "application/wasm" },            // Type image            { ".jpg", "image/jpeg" },            { ".jpeg", "image/jpeg" },            { ".tbn", "image/jpeg" },            { ".png", "image/png" },            { ".gif", "image/gif" },            { ".tiff", "image/tiff" },            { ".webp", "image/webp" },            { ".ico", "image/vnd.microsoft.icon" },            { ".svg", "image/svg+xml" },            { ".svgz", "image/svg+xml" },            // Type font            { ".ttf" , "font/ttf" },            { ".woff" , "font/woff" },            // Type text            { ".ass", "text/x-ssa" },            { ".ssa", "text/x-ssa" },            { ".css", "text/css" },            { ".csv", "text/csv" },            { ".txt", "text/plain" },            { ".vtt", "text/vtt" },            // Type video            { ".mpg", "video/mpeg" },            { ".ogv", "video/ogg" },            { ".mov", "video/quicktime" },            { ".webm", "video/webm" },            { ".mkv", "video/x-matroska" },            { ".wmv", "video/x-ms-wmv" },            { ".flv", "video/x-flv" },            { ".avi", "video/x-msvideo" },            { ".asf", "video/x-ms-asf" },            { ".m4v", "video/x-m4v" },            { ".m4s", "video/mp4" },            { ".3gp", "video/3gpp" },            { ".3g2", "video/3gpp2" },            { ".mpd", "video/vnd.mpeg.dash.mpd" },            { ".ts", "video/mp2t" },            { ".mpegts", "video/mp2t" },            // Type audio            { ".mp3", "audio/mpeg" },            { ".m4a", "audio/mp4" },            { ".aac", "audio/mp4" },            { ".webma", "audio/webm" },            { ".wav", "audio/wav" },            { ".wma", "audio/x-ms-wma" },            { ".ogg", "audio/ogg" },            { ".oga", "audio/ogg" },            { ".opus", "audio/ogg" },            { ".ac3", "audio/ac3" },            { ".dsf", "audio/dsf" },            { ".m4b", "audio/m4b" },            { ".xsp", "audio/xsp" },            { ".dsp", "audio/dsp" },            { ".flac", "audio/flac" },            { ".ape", "audio/x-ape" },            { ".wv", "audio/x-wavpack" },        };        private static readonly Dictionary<string, string> _extensionLookup = CreateExtensionLookup();        private static Dictionary<string, string> CreateExtensionLookup()        {            var dict = _mimeTypeLookup                .GroupBy(i => i.Value)                .ToDictionary(x => x.Key, x => x.First().Key, StringComparer.OrdinalIgnoreCase);            dict["image/jpg"] = ".jpg";            dict["image/x-png"] = ".png";            dict["audio/x-aac"] = ".aac";            return dict;        }        public static string GetMimeType(string path) => GetMimeType(path, true);        /// <summary>        /// Gets the type of the MIME.        /// </summary>        public static string GetMimeType(string path, bool enableStreamDefault)        {            if (string.IsNullOrEmpty(path))            {                throw new ArgumentNullException(nameof(path));            }            var ext = Path.GetExtension(path);            if (_mimeTypeLookup.TryGetValue(ext, out string result))            {                return result;            }            // Catch-all for all video types that don't require specific mime types            if (_videoFileExtensions.Contains(ext))            {                return "video/" + ext.Substring(1);            }            // Type text            if (string.Equals(ext, ".html", StringComparison.OrdinalIgnoreCase)                || string.Equals(ext, ".htm", StringComparison.OrdinalIgnoreCase))            {                return "text/html; charset=UTF-8";            }            if (string.Equals(ext, ".log", StringComparison.OrdinalIgnoreCase)                || string.Equals(ext, ".srt", StringComparison.OrdinalIgnoreCase))            {                return "text/plain";            }            // Misc            if (string.Equals(ext, ".dll", StringComparison.OrdinalIgnoreCase))            {                return "application/octet-stream";            }            return enableStreamDefault ? "application/octet-stream" : null;        }        public static string ToExtension(string mimeType)        {            if (string.IsNullOrEmpty(mimeType))            {                throw new ArgumentNullException(nameof(mimeType));            }            // handle text/html; charset=UTF-8            mimeType = mimeType.Split(';')[0];            if (_extensionLookup.TryGetValue(mimeType, out string result))            {                return result;            }            return null;        }    }}
 |