jellyfin/MediaBrowser.WebDashboard/Api/PackageCreator.cs

153 lines
5 KiB
C#
Raw Normal View History

2014-10-20 22:23:40 +02:00
using System;
using System.IO;
using System.Text;
using System.Threading.Tasks;
2018-09-12 19:26:21 +02:00
using MediaBrowser.Controller;
2014-10-20 22:23:40 +02:00
namespace MediaBrowser.WebDashboard.Api
{
public class PackageCreator
{
2017-02-07 08:33:24 +01:00
private readonly string _basePath;
2019-06-10 00:53:16 +02:00
private readonly IResourceFileManager _resourceFileManager;
2014-10-20 22:23:40 +02:00
2019-06-10 00:53:16 +02:00
public PackageCreator(string basePath, IResourceFileManager resourceFileManager)
2014-10-20 22:23:40 +02:00
{
2017-02-07 08:33:24 +01:00
_basePath = basePath;
2018-09-12 19:26:21 +02:00
_resourceFileManager = resourceFileManager;
2014-10-20 22:23:40 +02:00
}
2019-06-10 00:53:16 +02:00
public async Task<Stream> GetResource(
string virtualPath,
2015-05-12 15:58:03 +02:00
string mode,
2014-10-20 22:23:40 +02:00
string localizationCulture,
string appVersion)
2014-10-20 22:23:40 +02:00
{
2019-06-10 00:53:16 +02:00
var resourcePath = _resourceFileManager.GetResourcePath(_basePath, virtualPath);
Stream resourceStream = File.OpenRead(resourcePath);
2014-10-20 22:23:40 +02:00
2019-06-10 00:53:16 +02:00
if (resourceStream != null && IsCoreHtml(virtualPath))
2014-10-20 22:23:40 +02:00
{
2019-06-10 00:53:16 +02:00
resourceStream = await ModifyHtml(virtualPath, resourceStream, mode, appVersion, localizationCulture).ConfigureAwait(false);
2014-10-20 22:23:40 +02:00
}
return resourceStream;
}
2019-06-10 00:53:16 +02:00
public static 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;
}
2019-06-10 00:53:16 +02:00
return string.Equals(Path.GetExtension(path), ".html", StringComparison.OrdinalIgnoreCase);
2015-06-20 06:48:45 +02:00
}
2014-10-20 22:23:40 +02:00
/// <summary>
/// Modifies the HTML by adding common meta tags, css and js.
/// </summary>
/// <returns>Task{Stream}.</returns>
2019-06-10 00:53:16 +02:00
public async Task<Stream> ModifyHtml(
string path,
Stream sourceStream,
string mode,
string appVersion,
string localizationCulture)
2014-10-20 22:23:40 +02:00
{
2018-09-12 19:26:21 +02:00
var isMainIndexPage = string.Equals(path, "index.html", StringComparison.OrdinalIgnoreCase);
2019-06-10 00:53:16 +02:00
string html;
using (var reader = new StreamReader(sourceStream, Encoding.UTF8))
2014-10-20 22:23:40 +02:00
{
2019-06-10 00:53:16 +02:00
html = await reader.ReadToEndAsync().ConfigureAwait(false);
}
2016-10-26 04:04:49 +02:00
2019-06-10 00:53:16 +02:00
if (isMainIndexPage && !string.IsNullOrWhiteSpace(localizationCulture))
{
var lang = localizationCulture.Split('-')[0];
2014-10-20 22:23:40 +02:00
2019-06-10 00:53:16 +02:00
html = html.Replace("<html", "<html data-culture=\"" + localizationCulture + "\" lang=\"" + lang + "\"");
}
2017-01-31 22:25:14 +01:00
2019-06-10 00:53:16 +02:00
if (isMainIndexPage)
{
html = html.Replace("<head>", "<head>" + GetMetaTags(mode));
}
2014-10-20 22:23:40 +02:00
2019-06-10 00:53:16 +02: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");
html = html.Replace("</script>", "</script>-->");
}
2015-07-27 21:16:30 +02:00
2019-06-10 00:53:16 +02:00
if (isMainIndexPage)
{
html = html.Replace("</body>", GetCommonJavascript(mode, appVersion) + "</body>");
}
2014-10-20 22:23:40 +02:00
2019-06-10 00:53:16 +02:00
var bytes = Encoding.UTF8.GetBytes(html);
2016-03-18 07:52:47 +01:00
2019-06-10 00:53:16 +02:00
return new MemoryStream(bytes);
2014-10-20 22:23:40 +02:00
}
/// <summary>
/// Gets the meta tags.
/// </summary>
/// <returns>System.String.</returns>
2019-06-10 00:53:16 +02:00
private static string GetMetaTags(string mode)
2014-10-20 22:23:40 +02:00
{
var sb = new StringBuilder();
2019-06-10 00:53:16 +02:00
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase)
|| string.Equals(mode, "android", StringComparison.OrdinalIgnoreCase))
2015-05-02 18:34:27 +02:00
{
2016-09-23 08:20:56 +02: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-02 03:54:30 +02:00
}
2014-10-20 22:23:40 +02:00
return sb.ToString();
}
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>
2019-06-10 00:53:16 +02:00
private static 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);
}
2017-10-04 20:51:26 +02:00
else
2015-12-14 16:43:03 +01:00
{
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
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
{
2019-06-10 00:53:16 +02:00
builder.Append("<script src=\"cordova.js\" defer></script>");
2015-05-02 18:34:27 +02:00
}
2019-06-10 00:53:16 +02:00
builder.Append("<script src=\"scripts/apploader.js");
if (!string.IsNullOrWhiteSpace(version))
{
builder.Append("?v=");
builder.Append(version);
}
2014-10-20 22:23:40 +02:00
2019-06-10 00:53:16 +02:00
builder.Append("\" defer></script>");
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
}
}
}