jellyfin/MediaBrowser.WebDashboard/Api/PackageCreator.cs

162 lines
5.9 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
2014-10-20 13:23:40 -07:00
using System;
using System.Globalization;
2014-10-20 13:23:40 -07:00
using System.IO;
using System.Text;
using System.Threading.Tasks;
2018-09-12 10:26:21 -07:00
using MediaBrowser.Controller;
2014-10-20 13:23:40 -07:00
namespace MediaBrowser.WebDashboard.Api
{
public class PackageCreator
{
2017-02-07 00:33:24 -07:00
private readonly string _basePath;
2019-06-09 15:53:16 -07:00
private readonly IResourceFileManager _resourceFileManager;
2014-10-20 13:23:40 -07:00
2019-06-09 15:53:16 -07:00
public PackageCreator(string basePath, IResourceFileManager resourceFileManager)
2014-10-20 13:23:40 -07:00
{
2017-02-07 00:33:24 -07:00
_basePath = basePath;
2018-09-12 10:26:21 -07:00
_resourceFileManager = resourceFileManager;
2014-10-20 13:23:40 -07:00
}
2019-06-09 15:53:16 -07:00
public async Task<Stream> GetResource(
string virtualPath,
2015-05-12 06:58:03 -07:00
string mode,
2014-10-20 13:23:40 -07:00
string localizationCulture,
string appVersion)
2014-10-20 13:23:40 -07:00
{
2019-06-09 15:53:16 -07:00
var resourcePath = _resourceFileManager.GetResourcePath(_basePath, virtualPath);
Stream resourceStream = File.OpenRead(resourcePath);
2014-10-20 13:23:40 -07:00
2019-06-09 15:53:16 -07:00
if (resourceStream != null && IsCoreHtml(virtualPath))
2014-10-20 13:23:40 -07:00
{
bool isMainIndexPage = string.Equals(virtualPath, "index.html", StringComparison.OrdinalIgnoreCase);
resourceStream = await ModifyHtml(isMainIndexPage, resourceStream, mode, appVersion, localizationCulture).ConfigureAwait(false);
2014-10-20 13:23:40 -07:00
}
return resourceStream;
}
2019-06-09 15:53:16 -07:00
public static bool IsCoreHtml(string path)
2015-06-19 21:48:45 -07:00
{
2015-08-22 11:09:02 -07:00
if (path.IndexOf(".template.html", StringComparison.OrdinalIgnoreCase) != -1)
{
return false;
}
2019-06-09 15:53:16 -07:00
return string.Equals(Path.GetExtension(path), ".html", StringComparison.OrdinalIgnoreCase);
2015-06-19 21:48:45 -07:00
}
2014-10-20 13:23:40 -07:00
/// <summary>
/// Modifies the source HTML stream by adding common meta tags, css and js.
2014-10-20 13:23:40 -07:00
/// </summary>
/// <param name="isMainIndexPage">True if the stream contains content for the main index page.</param>
/// <param name="sourceStream">The stream whose content should be modified.</param>
/// <param name="mode">The client mode ('cordova', 'android', etc).</param>
/// <param name="appVersion">The application version.</param>
/// <param name="localizationCulture">The localization culture.</param>
/// <returns>
/// A task that represents the async operation to read and modify the input stream.
/// The task result contains a stream containing the modified HTML content.
/// </returns>
public static async Task<Stream> ModifyHtml(
bool isMainIndexPage,
2019-06-09 15:53:16 -07:00
Stream sourceStream,
string mode,
string appVersion,
string localizationCulture)
2014-10-20 13:23:40 -07:00
{
2019-06-09 15:53:16 -07:00
string html;
using (var reader = new StreamReader(sourceStream, Encoding.UTF8))
2014-10-20 13:23:40 -07:00
{
2019-06-09 15:53:16 -07:00
html = await reader.ReadToEndAsync().ConfigureAwait(false);
}
2016-10-25 19:04:49 -07:00
2019-06-09 15:53:16 -07:00
if (isMainIndexPage && !string.IsNullOrWhiteSpace(localizationCulture))
{
var lang = localizationCulture.Split('-')[0];
2014-10-20 13:23:40 -07:00
html = html.Replace("<html", "<html data-culture=\"" + localizationCulture + "\" lang=\"" + lang + "\"", StringComparison.Ordinal);
2019-06-09 15:53:16 -07:00
}
2017-01-31 14:25:14 -07:00
2019-06-09 15:53:16 -07:00
if (isMainIndexPage)
{
html = html.Replace("<head>", "<head>" + GetMetaTags(mode), StringComparison.Ordinal);
2019-06-09 15:53:16 -07:00
}
2014-10-20 13:23:40 -07:00
2019-06-09 15:53:16 -07:00
// Disable embedded scripts from plugins. We'll run them later once resources have loaded
if (html.IndexOf("<script", StringComparison.OrdinalIgnoreCase) != -1)
{
html = html.Replace("<script", "<!--<script", StringComparison.Ordinal);
html = html.Replace("</script>", "</script>-->", StringComparison.Ordinal);
2019-06-09 15:53:16 -07:00
}
2015-07-27 12:16:30 -07:00
2019-06-09 15:53:16 -07:00
if (isMainIndexPage)
{
html = html.Replace("</body>", GetCommonJavascript(mode, appVersion) + "</body>", StringComparison.Ordinal);
2019-06-09 15:53:16 -07:00
}
2014-10-20 13:23:40 -07:00
2019-06-09 15:53:16 -07:00
var bytes = Encoding.UTF8.GetBytes(html);
2016-03-17 23:52:47 -07:00
2019-06-09 15:53:16 -07:00
return new MemoryStream(bytes);
2014-10-20 13:23:40 -07:00
}
/// <summary>
/// Gets the meta tags.
/// </summary>
/// <returns>System.String.</returns>
2019-06-09 15:53:16 -07:00
private static string GetMetaTags(string mode)
2014-10-20 13:23:40 -07:00
{
var sb = new StringBuilder();
2019-06-09 15:53:16 -07:00
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase)
|| string.Equals(mode, "android", StringComparison.OrdinalIgnoreCase))
2015-05-02 09:34:27 -07:00
{
2016-09-22 23:20:56 -07:00
sb.Append("<meta http-equiv=\"Content-Security-Policy\" content=\"default-src * 'self' 'unsafe-inline' 'unsafe-eval' data: gap: file: filesystem: ws: wss:;\">");
2016-09-01 18:54:30 -07:00
}
2014-10-20 13:23:40 -07:00
return sb.ToString();
}
2015-07-12 09:06:23 -07:00
/// <summary>
/// Gets the common javascript.
/// </summary>
/// <param name="mode">The mode.</param>
/// <param name="version">The version.</param>
/// <returns>System.String.</returns>
2019-06-09 15:53:16 -07:00
private static string GetCommonJavascript(string mode, string version)
2015-07-12 09:06:23 -07:00
{
var builder = new StringBuilder();
2015-12-14 08:43:03 -07:00
builder.Append("<script>");
if (!string.IsNullOrWhiteSpace(mode))
2015-07-12 09:06:23 -07:00
{
builder.AppendFormat(CultureInfo.InvariantCulture, "window.appMode='{0}';", mode);
2015-12-14 08:43:03 -07:00
}
2017-10-04 11:51:26 -07:00
else
2015-12-14 08:43:03 -07:00
{
builder.AppendFormat(CultureInfo.InvariantCulture, "window.dashboardVersion='{0}';", version);
2015-12-14 08:43:03 -07:00
}
2015-07-12 09:06:23 -07:00
2015-12-14 08:43:03 -07:00
builder.Append("</script>");
2014-10-20 13:23:40 -07:00
2015-05-02 09:34:27 -07:00
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
{
2019-06-09 15:53:16 -07:00
builder.Append("<script src=\"cordova.js\" defer></script>");
2015-05-02 09:34:27 -07:00
}
2019-06-09 15:53:16 -07:00
builder.Append("<script src=\"scripts/apploader.js");
if (!string.IsNullOrWhiteSpace(version))
{
builder.Append("?v=");
builder.Append(version);
}
2014-10-20 13:23:40 -07:00
2019-06-09 15:53:16 -07:00
builder.Append("\" defer></script>");
2014-10-20 13:23:40 -07:00
2015-12-14 08:43:03 -07:00
return builder.ToString();
2014-10-20 13:23:40 -07:00
}
}
}