jellyfin/MediaBrowser.WebDashboard/Api/PackageCreator.cs

153 lines
5.0 KiB
C#
Raw Normal View History

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