jellyfin/MediaBrowser.WebDashboard/Api/PackageCreator.cs

545 lines
21 KiB
C#
Raw Normal View History

2015-05-19 03:46:31 +02:00
using MediaBrowser.Common.IO;
2014-10-20 22:23:40 +02:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Localization;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Serialization;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
2015-09-26 04:31:13 +02:00
using MediaBrowser.Controller.Net;
2015-05-12 15:58:03 +02:00
using WebMarkupMin.Core;
2014-10-20 22:23:40 +02:00
using WebMarkupMin.Core.Minifiers;
2015-01-18 06:45:10 +01:00
using WebMarkupMin.Core.Settings;
2014-10-20 22:23:40 +02:00
namespace MediaBrowser.WebDashboard.Api
{
public class PackageCreator
{
private readonly IFileSystem _fileSystem;
private readonly ILocalizationManager _localization;
private readonly ILogger _logger;
private readonly IServerConfigurationManager _config;
private readonly IJsonSerializer _jsonSerializer;
public PackageCreator(IFileSystem fileSystem, ILocalizationManager localization, ILogger logger, IServerConfigurationManager config, IJsonSerializer jsonSerializer)
{
_fileSystem = fileSystem;
_localization = localization;
_logger = logger;
_config = config;
_jsonSerializer = jsonSerializer;
}
2015-01-18 06:45:10 +01:00
public async Task<Stream> GetResource(string path,
2015-05-12 15:58:03 +02:00
string mode,
2014-10-20 22:23:40 +02:00
string localizationCulture,
2015-05-12 15:58:03 +02:00
string appVersion,
2015-05-02 18:34:27 +02:00
bool enableMinification)
2014-10-20 22:23:40 +02:00
{
Stream resourceStream;
2015-12-14 16:43:03 +01:00
if (path.Equals("css/all.css", StringComparison.OrdinalIgnoreCase))
2014-10-20 22:23:40 +02:00
{
2015-01-18 06:45:10 +01:00
resourceStream = await GetAllCss(enableMinification).ConfigureAwait(false);
2015-05-16 21:09:02 +02:00
enableMinification = false;
2014-10-20 22:23:40 +02:00
}
else
{
resourceStream = GetRawResourceStream(path);
}
if (resourceStream != null)
{
// Don't apply any caching for html pages
// jQuery ajax doesn't seem to handle if-modified-since correctly
2015-05-29 04:53:05 +02:00
if (IsFormat(path, "html"))
{
2015-08-22 20:09:02 +02:00
if (IsCoreHtml(path))
2015-06-20 06:48:45 +02:00
{
2015-07-18 00:32:00 +02:00
resourceStream = await ModifyHtml(resourceStream, mode, appVersion, localizationCulture, enableMinification).ConfigureAwait(false);
2015-06-20 06:48:45 +02:00
}
2015-05-29 04:53:05 +02:00
}
else if (IsFormat(path, "js"))
2015-05-17 05:17:23 +02:00
{
2015-12-14 16:43:03 +01:00
if (path.IndexOf(".min.", StringComparison.OrdinalIgnoreCase) == -1 && path.IndexOf("bower_components", StringComparison.OrdinalIgnoreCase) == -1)
2015-05-17 05:17:23 +02:00
{
resourceStream = await ModifyJs(resourceStream, enableMinification).ConfigureAwait(false);
}
}
else if (IsFormat(path, "css"))
{
2015-12-14 16:43:03 +01:00
if (path.IndexOf(".min.", StringComparison.OrdinalIgnoreCase) == -1 && path.IndexOf("bower_components", StringComparison.OrdinalIgnoreCase) == -1)
2015-05-17 05:17:23 +02:00
{
resourceStream = await ModifyCss(resourceStream, enableMinification).ConfigureAwait(false);
}
2014-10-20 22:23:40 +02:00
}
}
return resourceStream;
}
/// <summary>
/// Determines whether the specified path is HTML.
/// </summary>
/// <param name="path">The path.</param>
2015-05-17 05:17:23 +02:00
/// <param name="format">The format.</param>
2014-10-20 22:23:40 +02:00
/// <returns><c>true</c> if the specified path is HTML; otherwise, <c>false</c>.</returns>
2015-05-17 05:17:23 +02:00
private bool IsFormat(string path, string format)
2014-10-20 22:23:40 +02:00
{
2015-05-17 05:17:23 +02:00
return Path.GetExtension(path).EndsWith(format, StringComparison.OrdinalIgnoreCase);
2014-10-20 22:23:40 +02:00
}
/// <summary>
/// Gets the dashboard UI path.
/// </summary>
/// <value>The dashboard UI path.</value>
public string DashboardUIPath
{
get
{
if (!string.IsNullOrEmpty(_config.Configuration.DashboardSourcePath))
{
return _config.Configuration.DashboardSourcePath;
}
return Path.Combine(_config.ApplicationPaths.ApplicationResourcesPath, "dashboard-ui");
2014-10-20 22:23:40 +02:00
}
}
/// <summary>
/// Gets the dashboard resource path.
/// </summary>
/// <param name="virtualPath">The virtual path.</param>
/// <returns>System.String.</returns>
private string GetDashboardResourcePath(string virtualPath)
{
2015-05-13 06:16:55 +02:00
var rootPath = DashboardUIPath;
var fullPath = Path.Combine(rootPath, virtualPath.Replace('/', Path.DirectorySeparatorChar));
2015-07-08 18:10:34 +02:00
try
{
fullPath = Path.GetFullPath(fullPath);
}
catch (Exception ex)
{
_logger.ErrorException("Error in Path.GetFullPath", ex);
}
2015-05-13 06:16:55 +02:00
// Don't allow file system access outside of the source folder
if (!_fileSystem.ContainsSubPath(rootPath, fullPath))
{
2015-09-26 04:31:13 +02:00
throw new SecurityException("Access denied");
2015-05-13 06:16:55 +02:00
}
return fullPath;
2014-10-20 22:23:40 +02:00
}
2015-05-16 21:09:02 +02:00
public async Task<Stream> ModifyCss(Stream sourceStream, bool enableMinification)
{
using (sourceStream)
{
string content;
using (var memoryStream = new MemoryStream())
{
await sourceStream.CopyToAsync(memoryStream).ConfigureAwait(false);
content = Encoding.UTF8.GetString(memoryStream.ToArray());
if (enableMinification)
{
try
{
var result = new KristensenCssMinifier().Minify(content, false, Encoding.UTF8);
if (result.Errors.Count > 0)
{
_logger.Error("Error minifying css: " + result.Errors[0].Message);
}
else
{
content = result.MinifiedContent;
}
}
catch (Exception ex)
{
_logger.ErrorException("Error minifying css", ex);
}
}
}
var bytes = Encoding.UTF8.GetBytes(content);
return new MemoryStream(bytes);
}
}
public async Task<Stream> ModifyJs(Stream sourceStream, bool enableMinification)
{
using (sourceStream)
{
string content;
using (var memoryStream = new MemoryStream())
{
await sourceStream.CopyToAsync(memoryStream).ConfigureAwait(false);
content = Encoding.UTF8.GetString(memoryStream.ToArray());
if (enableMinification)
{
try
{
var result = new CrockfordJsMinifier().Minify(content, false, Encoding.UTF8);
if (result.Errors.Count > 0)
{
_logger.Error("Error minifying javascript: " + result.Errors[0].Message);
}
else
{
content = result.MinifiedContent;
}
}
catch (Exception ex)
{
_logger.ErrorException("Error minifying javascript", ex);
}
}
}
var bytes = Encoding.UTF8.GetBytes(content);
return new MemoryStream(bytes);
}
}
2015-08-22 20:09:02 +02:00
public bool IsCoreHtml(string path)
2015-06-20 06:48:45 +02:00
{
2015-08-22 20:09:02 +02:00
if (path.IndexOf(".template.html", StringComparison.OrdinalIgnoreCase) != -1)
{
return false;
}
2015-06-20 06:48:45 +02:00
path = GetDashboardResourcePath(path);
var parent = Path.GetDirectoryName(path);
var basePath = DashboardUIPath;
return string.Equals(basePath, parent, StringComparison.OrdinalIgnoreCase) ||
string.Equals(Path.Combine(basePath, "voice"), parent, StringComparison.OrdinalIgnoreCase);
}
2014-10-20 22:23:40 +02:00
/// <summary>
/// Modifies the HTML by adding common meta tags, css and js.
/// </summary>
/// <param name="sourceStream">The source stream.</param>
2015-05-02 18:34:27 +02:00
/// <param name="mode">The mode.</param>
2015-07-18 00:32:00 +02:00
/// <param name="appVersion">The application version.</param>
2014-10-20 22:23:40 +02:00
/// <param name="localizationCulture">The localization culture.</param>
2015-01-18 06:45:10 +01:00
/// <param name="enableMinification">if set to <c>true</c> [enable minification].</param>
2014-10-20 22:23:40 +02:00
/// <returns>Task{Stream}.</returns>
2015-07-18 00:32:00 +02:00
public async Task<Stream> ModifyHtml(Stream sourceStream, string mode, string appVersion, string localizationCulture, bool enableMinification)
2014-10-20 22:23:40 +02:00
{
using (sourceStream)
{
string html;
using (var memoryStream = new MemoryStream())
{
await sourceStream.CopyToAsync(memoryStream).ConfigureAwait(false);
html = Encoding.UTF8.GetString(memoryStream.ToArray());
2015-05-16 21:09:02 +02:00
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
{
html = ModifyForCordova(html);
}
2014-10-20 22:23:40 +02:00
if (!string.IsNullOrWhiteSpace(localizationCulture))
{
var lang = localizationCulture.Split('-').FirstOrDefault();
2015-07-27 20:18:10 +02:00
html = html.Replace("<html>", "<html data-culture=\"" + localizationCulture + "\" lang=\"" + lang + "\">");
2014-10-20 22:23:40 +02:00
}
2015-01-18 06:45:10 +01:00
if (enableMinification)
{
try
{
2015-05-12 15:58:03 +02:00
var minifier = new HtmlMinifier(new HtmlMinificationSettings
{
AttributeQuotesRemovalMode = HtmlAttributeQuotesRemovalMode.KeepQuotes,
RemoveOptionalEndTags = false,
RemoveTagsWithoutContent = false
});
2015-01-18 06:45:10 +01:00
var result = minifier.Minify(html, false);
2014-10-20 22:23:40 +02:00
2015-01-18 06:45:10 +01:00
if (result.Errors.Count > 0)
{
_logger.Error("Error minifying html: " + result.Errors[0].Message);
}
else
{
html = result.MinifiedContent;
}
}
catch (Exception ex)
{
_logger.ErrorException("Error minifying html", ex);
}
}
2015-07-28 05:32:33 +02:00
html = html.Replace("<body>", "<body><paper-drawer-panel class=\"mainDrawerPanel mainDrawerPanelPreInit\" forceNarrow><div class=\"mainDrawer\" drawer></div><div class=\"mainDrawerPanelContent\" main><!--<div class=\"pageContainer\">")
.Replace("</body>", "</div>--></div></paper-drawer-panel></body>");
2014-10-20 22:23:40 +02:00
}
2015-07-27 21:16:30 +02:00
html = html.Replace("<head>", "<head>" + GetMetaTags(mode) + GetCommonCss(mode, appVersion));
2015-12-14 16:43:03 +01:00
html = html.Replace("</body>", GetCommonJavascript(mode, appVersion) + "</body>");
2014-10-20 22:23:40 +02:00
var bytes = Encoding.UTF8.GetBytes(html);
return new MemoryStream(bytes);
}
}
2015-05-16 21:09:02 +02:00
private string ModifyForCordova(string html)
{
// Replace CORDOVA_REPLACE_SUPPORTER_SUBMIT_START
2015-05-21 22:53:14 +02:00
html = ReplaceBetween(html, "<!--CORDOVA_REPLACE_SUPPORTER_SUBMIT_START-->", "<!--CORDOVA_REPLACE_SUPPORTER_SUBMIT_END-->", "<i class=\"fa fa-check\"></i><span>${ButtonPurchase}</span>");
2015-05-16 21:09:02 +02:00
return html;
}
private string ReplaceBetween(string html, string startToken, string endToken, string newHtml)
{
2015-05-18 03:27:48 +02:00
var start = html.IndexOf(startToken, StringComparison.OrdinalIgnoreCase);
2015-05-21 22:53:14 +02:00
if (start == -1)
2015-05-18 03:27:48 +02:00
{
return html;
}
2015-05-21 22:53:14 +02:00
var end = html.IndexOf(endToken, start, StringComparison.OrdinalIgnoreCase);
if (end == -1)
{
return html;
}
string result = html.Substring(start, end - start);
2015-05-18 03:27:48 +02:00
html = html.Replace(result, newHtml);
return ReplaceBetween(html, startToken, endToken, newHtml);
2015-05-16 21:09:02 +02:00
}
2014-10-20 22:23:40 +02:00
private string GetLocalizationToken(string phrase)
{
return "${" + phrase + "}";
}
/// <summary>
/// Gets the meta tags.
/// </summary>
/// <returns>System.String.</returns>
2015-05-02 18:34:27 +02:00
private static string GetMetaTags(string mode)
2014-10-20 22:23:40 +02:00
{
var sb = new StringBuilder();
2015-05-02 18:34:27 +02:00
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
{
2015-12-14 16:43:03 +01:00
sb.Append("<meta http-equiv=\"Content-Security-Policy\" content=\"default-src * 'unsafe-inline' 'unsafe-eval'\">");
2015-05-02 18:34:27 +02:00
}
2015-12-14 16:43:03 +01:00
sb.Append("<link rel=\"manifest\" href=\"manifest.json\">");
2014-10-20 22:23:40 +02:00
sb.Append("<meta http-equiv=\"X-UA-Compatibility\" content=\"IE=Edge\">");
2015-05-02 18:34:27 +02:00
sb.Append("<meta name=\"format-detection\" content=\"telephone=no\">");
sb.Append("<meta name=\"msapplication-tap-highlight\" content=\"no\">");
2015-06-19 06:23:55 +02:00
sb.Append("<meta name=\"viewport\" content=\"user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width\">");
2015-04-26 05:25:07 +02:00
sb.Append("<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">");
2014-10-20 22:23:40 +02:00
sb.Append("<meta name=\"mobile-web-app-capable\" content=\"yes\">");
2015-03-21 17:10:02 +01:00
sb.Append("<meta name=\"application-name\" content=\"Emby\">");
2014-10-20 22:23:40 +02:00
//sb.Append("<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">");
2016-01-05 17:45:36 +01:00
sb.Append("<meta name=\"robots\" content=\"noindex, nofollow, noarchive\">");
2014-10-20 22:23:40 +02:00
2015-07-02 07:08:05 +02:00
// Open graph tags
2016-01-05 17:45:36 +01:00
sb.Append("<meta property=\"og:title\" content=\"Emby\">");
sb.Append("<meta property=\"og:site_name\" content=\"Emby\">");
sb.Append("<meta property=\"og:url\" content=\"http://emby.media\">");
sb.Append("<meta property=\"og:description\" content=\"Energize your media.\">");
sb.Append("<meta property=\"og:type\" content=\"article\">");
sb.Append("<meta property=\"fb:app_id\" content=\"1618309211750238\">");
2015-07-02 07:08:05 +02:00
2014-10-20 22:23:40 +02:00
// http://developer.apple.com/library/ios/#DOCUMENTATION/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html
2016-01-05 17:45:36 +01:00
sb.Append("<link rel=\"apple-touch-icon\" href=\"css/images/touchicon.png\">");
sb.Append("<link rel=\"apple-touch-icon\" sizes=\"72x72\" href=\"css/images/touchicon72.png\">");
sb.Append("<link rel=\"apple-touch-icon\" sizes=\"114x114\" href=\"css/images/touchicon114.png\">");
sb.Append("<link rel=\"apple-touch-startup-image\" href=\"css/images/iossplash.png\">");
sb.Append("<link rel=\"shortcut icon\" href=\"css/images/favicon.ico\">");
sb.Append("<meta name=\"msapplication-TileImage\" content=\"css/images/touchicon144.png\">");
sb.Append("<meta name=\"msapplication-TileColor\" content=\"#333333\">");
2014-10-20 22:23:40 +02:00
return sb.ToString();
}
/// <summary>
/// Gets the common CSS.
/// </summary>
2015-05-02 18:34:27 +02:00
/// <param name="mode">The mode.</param>
2014-10-20 22:23:40 +02:00
/// <param name="version">The version.</param>
/// <returns>System.String.</returns>
2015-07-20 05:43:13 +02:00
private string GetCommonCss(string mode, string version)
2014-10-20 22:23:40 +02:00
{
2015-05-02 18:34:27 +02:00
var versionString = !string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase) ? "?v=" + version : string.Empty;
2014-10-20 22:23:40 +02:00
var files = new[]
{
"css/all.css" + versionString
};
2015-12-14 16:43:03 +01:00
var tags = files.Select(s => string.Format("<link rel=\"stylesheet\" href=\"{0}\" async />", s)).ToArray();
2014-10-20 22:23:40 +02:00
return string.Join(string.Empty, tags);
}
2015-07-12 18:06:23 +02:00
/// <summary>
/// Gets the common javascript.
/// </summary>
/// <param name="mode">The mode.</param>
/// <param name="version">The version.</param>
/// <returns>System.String.</returns>
2015-12-14 16:43:03 +01:00
private string GetCommonJavascript(string mode, string version)
2015-07-12 18:06:23 +02:00
{
var builder = new StringBuilder();
2015-12-14 16:43:03 +01:00
builder.Append("<script>");
if (!string.IsNullOrWhiteSpace(mode))
2015-07-12 18:06:23 +02:00
{
2015-12-14 16:43:03 +01:00
builder.AppendFormat("window.appMode='{0}';", mode);
}
2015-07-12 18:06:23 +02:00
2015-12-14 16:43:03 +01:00
if (!string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
{
builder.AppendFormat("window.dashboardVersion='{0}';", version);
}
2015-07-12 18:06:23 +02:00
2015-12-14 16:43:03 +01:00
builder.Append("</script>");
2014-10-20 22:23:40 +02:00
2015-05-02 18:34:27 +02:00
var versionString = !string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase) ? "?v=" + version : string.Empty;
2014-10-20 22:23:40 +02:00
2015-12-21 18:48:14 +01:00
var files = new List<string>();
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
2015-05-02 18:34:27 +02:00
{
2015-12-21 18:48:14 +01:00
files.Add("bower_components/requirejs/require.js");
}
else
{
files.Add("bower_components" + version + "/requirejs/require.js");
}
files.Add("scripts/site.js" + versionString);
2014-10-20 22:23:40 +02:00
2015-05-02 18:34:27 +02:00
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
{
files.Insert(0, "cordova.js");
}
2015-12-14 16:43:03 +01:00
var tags = files.Select(s =>
2015-05-02 18:34:27 +02:00
{
2015-12-14 16:43:03 +01:00
if (s.IndexOf("require", StringComparison.OrdinalIgnoreCase) == -1)
2015-01-18 06:45:10 +01:00
{
2015-12-14 16:43:03 +01:00
return string.Format("<script src=\"{0}\" async></script>", s);
2015-01-18 06:45:10 +01:00
}
2015-12-14 16:43:03 +01:00
return string.Format("<script src=\"{0}\"></script>", s);
2014-10-20 22:23:40 +02:00
2015-12-14 16:43:03 +01:00
}).ToArray();
2014-10-20 22:23:40 +02:00
2015-12-14 16:43:03 +01:00
builder.Append(string.Join(string.Empty, tags));
2014-10-20 22:23:40 +02:00
2015-12-14 16:43:03 +01:00
return builder.ToString();
2014-10-20 22:23:40 +02:00
}
/// <summary>
/// Gets all CSS.
/// </summary>
/// <returns>Task{Stream}.</returns>
2015-01-18 06:45:10 +01:00
private async Task<Stream> GetAllCss(bool enableMinification)
2014-10-20 22:23:40 +02:00
{
2015-06-17 17:39:46 +02:00
var memoryStream = new MemoryStream();
2015-07-08 18:10:34 +02:00
2014-10-20 22:23:40 +02:00
var files = new[]
{
2015-07-02 07:08:05 +02:00
"css/site.css",
"css/librarymenu.css",
"css/librarybrowser.css",
"thirdparty/paper-button-style.css"
2014-10-20 22:23:40 +02:00
};
var builder = new StringBuilder();
foreach (var file in files)
{
2015-07-02 07:08:05 +02:00
var path = GetDashboardResourcePath(file);
2014-10-20 22:23:40 +02:00
using (var fs = _fileSystem.GetFileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true))
{
using (var streamReader = new StreamReader(fs))
{
var text = await streamReader.ReadToEndAsync().ConfigureAwait(false);
builder.Append(text);
builder.Append(Environment.NewLine);
}
}
}
var css = builder.ToString();
2015-01-18 06:45:10 +01:00
if (enableMinification)
{
try
{
var result = new KristensenCssMinifier().Minify(builder.ToString(), false, Encoding.UTF8);
2014-10-20 22:23:40 +02:00
2015-01-18 06:45:10 +01:00
if (result.Errors.Count > 0)
{
_logger.Error("Error minifying css: " + result.Errors[0].Message);
}
else
{
css = result.MinifiedContent;
}
}
catch (Exception ex)
{
_logger.ErrorException("Error minifying css", ex);
}
}
2014-10-20 22:23:40 +02:00
2015-06-17 17:39:46 +02:00
var bytes = Encoding.UTF8.GetBytes(css);
memoryStream.Write(bytes, 0, bytes.Length);
2014-10-20 22:23:40 +02:00
memoryStream.Position = 0;
return memoryStream;
}
/// <summary>
/// Gets the raw resource stream.
/// </summary>
/// <param name="path">The path.</param>
/// <returns>Task{Stream}.</returns>
private Stream GetRawResourceStream(string path)
{
return _fileSystem.GetFileStream(GetDashboardResourcePath(path), FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true);
}
}
}