2016-03-27 14:11:27 -07:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2018-12-13 06:18:25 -07:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2014-10-20 13:23:40 -07:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2015-09-25 19:31:13 -07:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2016-10-23 19:45:23 -07:00
|
|
|
|
using MediaBrowser.Model.Globalization;
|
2016-10-25 12:02:04 -07:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2017-08-09 12:56:38 -07:00
|
|
|
|
using MediaBrowser.Model.Extensions;
|
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
|
|
|
|
|
{
|
|
|
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IServerConfigurationManager _config;
|
2017-02-07 00:33:24 -07:00
|
|
|
|
private readonly string _basePath;
|
2018-09-12 10:26:21 -07:00
|
|
|
|
private IResourceFileManager _resourceFileManager;
|
2014-10-20 13:23:40 -07:00
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
public PackageCreator(string basePath, IFileSystem fileSystem, ILogger logger, IServerConfigurationManager config, IResourceFileManager resourceFileManager)
|
2014-10-20 13:23:40 -07:00
|
|
|
|
{
|
|
|
|
|
_fileSystem = fileSystem;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_config = config;
|
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
|
|
|
|
}
|
|
|
|
|
|
2017-02-07 00:33:24 -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,
|
2016-11-24 09:29:23 -07:00
|
|
|
|
string appVersion)
|
2014-10-20 13:23:40 -07:00
|
|
|
|
{
|
2017-02-07 00:33:24 -07:00
|
|
|
|
var resourceStream = GetRawResourceStream(virtualPath);
|
2014-10-20 13:23:40 -07:00
|
|
|
|
|
|
|
|
|
if (resourceStream != null)
|
|
|
|
|
{
|
2017-02-07 00:33:24 -07:00
|
|
|
|
if (IsFormat(virtualPath, "html"))
|
2015-05-28 19:53:05 -07:00
|
|
|
|
{
|
2017-02-07 00:33:24 -07:00
|
|
|
|
if (IsCoreHtml(virtualPath))
|
2015-06-19 21:48:45 -07:00
|
|
|
|
{
|
2017-02-07 00:33:24 -07:00
|
|
|
|
resourceStream = await ModifyHtml(virtualPath, resourceStream, mode, appVersion, localizationCulture).ConfigureAwait(false);
|
2015-06-19 21:48:45 -07:00
|
|
|
|
}
|
2015-05-28 19:53:05 -07:00
|
|
|
|
}
|
2014-10-20 13:23:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return resourceStream;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the specified path is HTML.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">The path.</param>
|
2015-05-16 20:17:23 -07:00
|
|
|
|
/// <param name="format">The format.</param>
|
2014-10-20 13:23:40 -07:00
|
|
|
|
/// <returns><c>true</c> if the specified path is HTML; otherwise, <c>false</c>.</returns>
|
2015-05-16 20:17:23 -07:00
|
|
|
|
private bool IsFormat(string path, string format)
|
2014-10-20 13:23:40 -07:00
|
|
|
|
{
|
2015-05-16 20:17:23 -07:00
|
|
|
|
return Path.GetExtension(path).EndsWith(format, StringComparison.OrdinalIgnoreCase);
|
2014-10-20 13:23:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-22 11:09:02 -07:00
|
|
|
|
public 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;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
return IsFormat(path, "html");
|
2015-06-19 21:48:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-20 13:23:40 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Modifies the HTML by adding common meta tags, css and js.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task{Stream}.</returns>
|
2016-11-24 09:29:23 -07:00
|
|
|
|
public async Task<Stream> ModifyHtml(string path, Stream sourceStream, string mode, string appVersion, string localizationCulture)
|
2014-10-20 13:23:40 -07:00
|
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
|
var isMainIndexPage = string.Equals(path, "index.html", StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
2014-10-20 13:23:40 -07:00
|
|
|
|
using (sourceStream)
|
|
|
|
|
{
|
|
|
|
|
string html;
|
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
using (var memoryStream = new MemoryStream())
|
2014-10-20 13:23:40 -07:00
|
|
|
|
{
|
|
|
|
|
await sourceStream.CopyToAsync(memoryStream).ConfigureAwait(false);
|
|
|
|
|
|
2016-10-25 19:04:49 -07:00
|
|
|
|
var originalBytes = memoryStream.ToArray();
|
|
|
|
|
|
|
|
|
|
html = Encoding.UTF8.GetString(originalBytes, 0, originalBytes.Length);
|
2014-10-20 13:23:40 -07:00
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
if (isMainIndexPage)
|
2016-03-16 11:09:58 -07:00
|
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(localizationCulture))
|
2016-03-17 23:36:58 -07:00
|
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
|
var lang = localizationCulture.Split('-').FirstOrDefault();
|
2017-01-31 14:25:14 -07:00
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
html = html.Replace("<html", "<html data-culture=\"" + localizationCulture + "\" lang=\"" + lang + "\"");
|
2016-03-17 23:36:58 -07:00
|
|
|
|
}
|
2014-10-20 13:23:40 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
if (isMainIndexPage)
|
|
|
|
|
{
|
|
|
|
|
html = html.Replace("<head>", "<head>" + GetMetaTags(mode));
|
|
|
|
|
}
|
2015-07-27 12:16:30 -07:00
|
|
|
|
|
2016-03-17 23:52:47 -07:00
|
|
|
|
// Disable embedded scripts from plugins. We'll run them later once resources have loaded
|
2016-03-17 23:36:58 -07:00
|
|
|
|
if (html.IndexOf("<script", StringComparison.OrdinalIgnoreCase) != -1)
|
|
|
|
|
{
|
2016-03-17 23:52:47 -07:00
|
|
|
|
html = html.Replace("<script", "<!--<script");
|
|
|
|
|
html = html.Replace("</script>", "</script>-->");
|
2016-03-17 23:36:58 -07:00
|
|
|
|
}
|
2014-10-20 13:23:40 -07:00
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
if (isMainIndexPage)
|
|
|
|
|
{
|
|
|
|
|
html = html.Replace("</body>", GetCommonJavascript(mode, appVersion) + "</body>");
|
|
|
|
|
}
|
2016-03-17 23:52:47 -07:00
|
|
|
|
|
2014-10-20 13:23:40 -07:00
|
|
|
|
var bytes = Encoding.UTF8.GetBytes(html);
|
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
return new MemoryStream(bytes);
|
2014-10-20 13:23:40 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the meta tags.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2018-09-12 10:26:21 -07:00
|
|
|
|
private string GetMetaTags(string mode)
|
2014-10-20 13:23:40 -07:00
|
|
|
|
{
|
|
|
|
|
var sb = new StringBuilder();
|
|
|
|
|
|
2017-02-05 13:44:08 -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>
|
2016-03-17 23:52:47 -07:00
|
|
|
|
private 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
|
|
|
|
{
|
2015-12-14 08:43:03 -07:00
|
|
|
|
builder.AppendFormat("window.appMode='{0}';", mode);
|
|
|
|
|
}
|
2015-07-12 09:06:23 -07:00
|
|
|
|
|
2017-10-04 11:51:26 -07:00
|
|
|
|
else
|
2015-12-14 08:43:03 -07:00
|
|
|
|
{
|
|
|
|
|
builder.AppendFormat("window.dashboardVersion='{0}';", version);
|
|
|
|
|
}
|
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
|
|
|
|
|
2017-02-05 13:44:08 -07:00
|
|
|
|
var versionString = string.IsNullOrWhiteSpace(mode) ? "?v=" + version : string.Empty;
|
2014-10-20 13:23:40 -07:00
|
|
|
|
|
2015-12-21 10:48:14 -07:00
|
|
|
|
var files = new List<string>();
|
|
|
|
|
|
2017-04-13 11:57:24 -07:00
|
|
|
|
files.Add("scripts/apploader.js" + versionString);
|
2014-10-20 13:23:40 -07:00
|
|
|
|
|
2015-05-02 09:34:27 -07:00
|
|
|
|
if (string.Equals(mode, "cordova", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
files.Insert(0, "cordova.js");
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
|
var tags = files.Select(s => string.Format("<script src=\"{0}\" defer></script>", s)).ToArray();
|
2014-10-20 13:23:40 -07:00
|
|
|
|
|
2015-12-14 08:43:03 -07:00
|
|
|
|
builder.Append(string.Join(string.Empty, tags));
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the raw resource stream.
|
|
|
|
|
/// </summary>
|
2017-02-07 00:33:24 -07:00
|
|
|
|
private Stream GetRawResourceStream(string virtualPath)
|
2014-10-20 13:23:40 -07:00
|
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
|
return _resourceFileManager.GetResourceFileStream(_basePath, virtualPath);
|
2014-10-20 13:23:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|