You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.WebDashboard/Api/PackageCreator.cs

195 lines
6.6 KiB

10 years ago
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
10 years ago
namespace MediaBrowser.WebDashboard.Api
{
public class PackageCreator
{
private readonly IFileSystem _fileSystem;
private readonly ILogger _logger;
private readonly IServerConfigurationManager _config;
private readonly string _basePath;
private IResourceFileManager _resourceFileManager;
10 years ago
public PackageCreator(string basePath, IFileSystem fileSystem, ILogger logger, IServerConfigurationManager config, IResourceFileManager resourceFileManager)
10 years ago
{
_fileSystem = fileSystem;
_logger = logger;
_config = config;
_basePath = basePath;
_resourceFileManager = resourceFileManager;
10 years ago
}
public async Task<Stream> GetResource(string virtualPath,
string mode,
10 years ago
string localizationCulture,
string appVersion)
10 years ago
{
var resourceStream = GetRawResourceStream(virtualPath);
10 years ago
if (resourceStream != null)
{
if (IsFormat(virtualPath, "html"))
9 years ago
{
if (IsCoreHtml(virtualPath))
9 years ago
{
resourceStream = await ModifyHtml(virtualPath, resourceStream, mode, appVersion, localizationCulture).ConfigureAwait(false);
9 years ago
}
9 years ago
}
10 years ago
}
return resourceStream;
}
/// <summary>
/// Determines whether the specified path is HTML.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="format">The format.</param>
10 years ago
/// <returns><c>true</c> if the specified path is HTML; otherwise, <c>false</c>.</returns>
private static bool IsFormat(string path, string format)
10 years ago
{
return Path.GetExtension(path).EndsWith(format, StringComparison.OrdinalIgnoreCase);
10 years ago
}
public bool IsCoreHtml(string path)
9 years ago
{
if (path.IndexOf(".template.html", StringComparison.OrdinalIgnoreCase) != -1)
{
return false;
}
return IsFormat(path, "html");
9 years ago
}
10 years ago
/// <summary>
/// Modifies the HTML by adding common meta tags, css and js.
/// </summary>
/// <returns>Task{Stream}.</returns>
public async Task<Stream> ModifyHtml(string path, Stream sourceStream, string mode, string appVersion, string localizationCulture)
10 years ago
{
var isMainIndexPage = string.Equals(path, "index.html", StringComparison.OrdinalIgnoreCase);
10 years ago
using (sourceStream)
{
string html;
using (var memoryStream = new MemoryStream())
10 years ago
{
await sourceStream.CopyToAsync(memoryStream).ConfigureAwait(false);
var originalBytes = memoryStream.ToArray();
html = Encoding.UTF8.GetString(originalBytes, 0, originalBytes.Length);
10 years ago
if (isMainIndexPage)
{
if (!string.IsNullOrWhiteSpace(localizationCulture))
{
var lang = localizationCulture.Split('-').FirstOrDefault();
html = html.Replace("<html", "<html data-culture=\"" + localizationCulture + "\" lang=\"" + lang + "\"");
}
10 years ago
}
}
if (isMainIndexPage)
{
html = html.Replace("<head>", "<head>" + GetMetaTags(mode));
}
9 years ago
// 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>-->");
}
10 years ago
if (isMainIndexPage)
{
html = html.Replace("</body>", GetCommonJavascript(mode, appVersion) + "</body>");
}
10 years ago
var bytes = Encoding.UTF8.GetBytes(html);
return new MemoryStream(bytes);
10 years ago
}
}
/// <summary>
/// Gets the meta tags.
/// </summary>
/// <returns>System.String.</returns>
private string GetMetaTags(string mode)
10 years ago
{
var sb = new StringBuilder();
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase) ||
string.Equals(mode, "android", StringComparison.OrdinalIgnoreCase))
{
sb.Append("<meta http-equiv=\"Content-Security-Policy\" content=\"default-src * 'self' 'unsafe-inline' 'unsafe-eval' data: gap: file: filesystem: ws: wss:;\">");
8 years ago
}
10 years ago
return sb.ToString();
}
/// <summary>
/// Gets the common javascript.
/// </summary>
/// <param name="mode">The mode.</param>
/// <param name="version">The version.</param>
/// <returns>System.String.</returns>
private string GetCommonJavascript(string mode, string version)
{
var builder = new StringBuilder();
9 years ago
builder.Append("<script>");
if (!string.IsNullOrWhiteSpace(mode))
{
9 years ago
builder.AppendFormat("window.appMode='{0}';", mode);
}
else
9 years ago
{
builder.AppendFormat("window.dashboardVersion='{0}';", version);
}
9 years ago
builder.Append("</script>");
10 years ago
var versionString = string.IsNullOrWhiteSpace(mode) ? "?v=" + version : string.Empty;
10 years ago
9 years ago
var files = new List<string>();
7 years ago
files.Add("scripts/apploader.js" + versionString);
10 years ago
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
{
files.Insert(0, "cordova.js");
}
var tags = files.Select(s => string.Format("<script src=\"{0}\" defer></script>", s)).ToArray();
10 years ago
9 years ago
builder.Append(string.Join(string.Empty, tags));
10 years ago
9 years ago
return builder.ToString();
10 years ago
}
/// <summary>
/// Gets the raw resource stream.
/// </summary>
private Stream GetRawResourceStream(string virtualPath)
10 years ago
{
return _resourceFileManager.GetResourceFileStream(_basePath, virtualPath);
10 years ago
}
}
}