2019-01-13 20:03:10 +00:00
|
|
|
using System;
|
2013-02-21 01:33:05 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
2019-01-13 19:26:44 +00:00
|
|
|
using MediaBrowser.Common.Extensions;
|
2016-10-26 06:01:42 +00:00
|
|
|
using MediaBrowser.Common.Plugins;
|
2019-01-13 19:26:44 +00:00
|
|
|
using MediaBrowser.Controller;
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
using MediaBrowser.Controller.Net;
|
|
|
|
using MediaBrowser.Controller.Plugins;
|
2016-10-24 02:45:23 +00:00
|
|
|
using MediaBrowser.Model.Globalization;
|
2019-01-13 19:26:44 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
using MediaBrowser.Model.Net;
|
2016-10-26 06:01:42 +00:00
|
|
|
using MediaBrowser.Model.Plugins;
|
2019-01-13 19:26:44 +00:00
|
|
|
using MediaBrowser.Model.Serialization;
|
2016-10-25 19:02:04 +00:00
|
|
|
using MediaBrowser.Model.Services;
|
2019-01-13 19:26:44 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.WebDashboard.Api
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class GetDashboardConfigurationPages
|
|
|
|
/// </summary>
|
2014-07-02 04:57:18 +00:00
|
|
|
[Route("/web/ConfigurationPages", "GET")]
|
2013-03-17 16:52:32 +00:00
|
|
|
public class GetDashboardConfigurationPages : IReturn<List<ConfigurationPageInfo>>
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type of the page.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type of the page.</value>
|
|
|
|
public ConfigurationPageType? PageType { get; set; }
|
2017-09-15 06:31:28 +00:00
|
|
|
public bool? EnableInMainMenu { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Class GetDashboardConfigurationPage
|
|
|
|
/// </summary>
|
2014-07-02 04:57:18 +00:00
|
|
|
[Route("/web/ConfigurationPage", "GET")]
|
2013-03-17 16:52:32 +00:00
|
|
|
public class GetDashboardConfigurationPage
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
|
|
|
public string Name { get; set; }
|
|
|
|
}
|
|
|
|
|
2017-09-11 19:25:13 +00:00
|
|
|
[Route("/web/Package", "GET", IsHidden = true)]
|
2014-10-20 20:23:40 +00:00
|
|
|
public class GetDashboardPackage
|
|
|
|
{
|
2015-05-02 16:34:27 +00:00
|
|
|
public string Mode { get; set; }
|
2014-10-20 20:23:40 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 19:25:13 +00:00
|
|
|
[Route("/robots.txt", "GET", IsHidden = true)]
|
2016-01-07 03:54:38 +00:00
|
|
|
public class GetRobotsTxt
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Class GetDashboardResource
|
|
|
|
/// </summary>
|
2017-09-11 19:25:13 +00:00
|
|
|
[Route("/web/{ResourceName*}", "GET", IsHidden = true)]
|
2013-02-21 01:33:05 +00:00
|
|
|
public class GetDashboardResource
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
2013-02-27 16:46:48 +00:00
|
|
|
public string ResourceName { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the V.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The V.</value>
|
|
|
|
public string V { get; set; }
|
|
|
|
}
|
|
|
|
|
2017-09-11 19:25:13 +00:00
|
|
|
[Route("/favicon.ico", "GET", IsHidden = true)]
|
2017-01-28 03:16:59 +00:00
|
|
|
public class GetFavIcon
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Class DashboardService
|
|
|
|
/// </summary>
|
2016-11-10 14:41:24 +00:00
|
|
|
public class DashboardService : IService, IRequiresRequest
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-03-24 02:45:00 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the logger.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The logger.</value>
|
2016-11-10 14:41:24 +00:00
|
|
|
private readonly ILogger _logger;
|
2013-03-24 02:45:00 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the HTTP result factory.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The HTTP result factory.</value>
|
2016-11-10 14:41:24 +00:00
|
|
|
private readonly IHttpResultFactory _resultFactory;
|
2013-03-24 02:45:00 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the request context.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The request context.</value>
|
2013-12-07 15:52:38 +00:00
|
|
|
public IRequest Request { get; set; }
|
2013-05-01 03:28:26 +00:00
|
|
|
|
2013-03-23 04:04:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The _app host
|
|
|
|
/// </summary>
|
2013-03-07 05:34:00 +00:00
|
|
|
private readonly IServerApplicationHost _appHost;
|
|
|
|
|
2013-05-01 03:28:26 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The _server configuration manager
|
|
|
|
/// </summary>
|
2013-03-23 04:04:36 +00:00
|
|
|
private readonly IServerConfigurationManager _serverConfigurationManager;
|
|
|
|
|
2013-10-31 14:03:23 +00:00
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-03-31 01:00:47 +00:00
|
|
|
private readonly ILocalizationManager _localization;
|
2014-03-31 02:33:10 +00:00
|
|
|
private readonly IJsonSerializer _jsonSerializer;
|
2018-09-12 17:26:21 +00:00
|
|
|
private IResourceFileManager _resourceFileManager;
|
2013-05-09 17:38:02 +00:00
|
|
|
|
2013-02-23 07:57:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="DashboardService" /> class.
|
|
|
|
/// </summary>
|
2019-03-07 17:10:55 +00:00
|
|
|
public DashboardService(
|
|
|
|
IServerApplicationHost appHost,
|
|
|
|
IResourceFileManager resourceFileManager,
|
|
|
|
IServerConfigurationManager serverConfigurationManager,
|
|
|
|
IFileSystem fileSystem,
|
|
|
|
ILocalizationManager localization,
|
|
|
|
IJsonSerializer jsonSerializer,
|
|
|
|
ILogger logger,
|
|
|
|
IHttpResultFactory resultFactory)
|
2013-02-23 07:57:11 +00:00
|
|
|
{
|
2013-03-07 05:34:00 +00:00
|
|
|
_appHost = appHost;
|
2013-03-23 04:04:36 +00:00
|
|
|
_serverConfigurationManager = serverConfigurationManager;
|
2013-10-31 14:03:23 +00:00
|
|
|
_fileSystem = fileSystem;
|
2014-03-31 01:00:47 +00:00
|
|
|
_localization = localization;
|
2014-03-31 02:33:10 +00:00
|
|
|
_jsonSerializer = jsonSerializer;
|
2016-11-10 14:41:24 +00:00
|
|
|
_logger = logger;
|
|
|
|
_resultFactory = resultFactory;
|
2018-09-12 17:26:21 +00:00
|
|
|
_resourceFileManager = resourceFileManager;
|
2013-02-23 07:57:11 +00:00
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2017-02-07 07:33:24 +00:00
|
|
|
/// <summary>
|
2019-01-09 14:35:05 +00:00
|
|
|
/// Gets the path for the web interface.
|
2017-02-07 07:33:24 +00:00
|
|
|
/// </summary>
|
2019-01-09 14:35:05 +00:00
|
|
|
/// <value>The path for the web interface.</value>
|
2017-02-07 07:33:24 +00:00
|
|
|
public string DashboardUIPath
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (!string.IsNullOrEmpty(_serverConfigurationManager.Configuration.DashboardSourcePath))
|
|
|
|
{
|
|
|
|
return _serverConfigurationManager.Configuration.DashboardSourcePath;
|
|
|
|
}
|
|
|
|
|
2019-03-12 13:18:45 +00:00
|
|
|
return _serverConfigurationManager.ApplicationPaths.WebPath;
|
2017-02-07 07:33:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-28 03:16:59 +00:00
|
|
|
public object Get(GetFavIcon request)
|
|
|
|
{
|
|
|
|
return Get(new GetDashboardResource
|
|
|
|
{
|
|
|
|
ResourceName = "favicon.ico"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
/// <returns>System.Object.</returns>
|
2016-06-19 06:18:29 +00:00
|
|
|
public Task<object> Get(GetDashboardConfigurationPage request)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2016-10-26 06:01:42 +00:00
|
|
|
IPlugin plugin = null;
|
|
|
|
Stream stream = null;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2017-07-27 05:18:39 +00:00
|
|
|
var isJs = false;
|
|
|
|
var isTemplate = false;
|
|
|
|
|
2016-10-26 06:01:42 +00:00
|
|
|
var page = ServerEntryPoint.Instance.PluginConfigurationPages.FirstOrDefault(p => string.Equals(p.Name, request.Name, StringComparison.OrdinalIgnoreCase));
|
|
|
|
if (page != null)
|
|
|
|
{
|
|
|
|
plugin = page.Plugin;
|
|
|
|
stream = page.GetHtmlStream();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (plugin == null)
|
|
|
|
{
|
|
|
|
var altPage = GetPluginPages().FirstOrDefault(p => string.Equals(p.Item1.Name, request.Name, StringComparison.OrdinalIgnoreCase));
|
|
|
|
if (altPage != null)
|
|
|
|
{
|
|
|
|
plugin = altPage.Item2;
|
2019-03-07 17:10:55 +00:00
|
|
|
stream = plugin.GetType().Assembly.GetManifestResourceStream(altPage.Item1.EmbeddedResourcePath);
|
2017-07-27 05:18:39 +00:00
|
|
|
|
|
|
|
isJs = string.Equals(Path.GetExtension(altPage.Item1.EmbeddedResourcePath), ".js", StringComparison.OrdinalIgnoreCase);
|
|
|
|
isTemplate = altPage.Item1.EmbeddedResourcePath.EndsWith(".template.html");
|
2016-10-26 06:01:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (plugin != null && stream != null)
|
|
|
|
{
|
2017-07-27 05:18:39 +00:00
|
|
|
if (isJs)
|
|
|
|
{
|
|
|
|
return _resultFactory.GetStaticResult(Request, plugin.Version.ToString().GetMD5(), null, null, MimeTypes.GetMimeType("page.js"), () => Task.FromResult(stream));
|
|
|
|
}
|
|
|
|
if (isTemplate)
|
|
|
|
{
|
|
|
|
return _resultFactory.GetStaticResult(Request, plugin.Version.ToString().GetMD5(), null, null, MimeTypes.GetMimeType("page.html"), () => Task.FromResult(stream));
|
|
|
|
}
|
|
|
|
|
2019-01-20 02:35:33 +00:00
|
|
|
return _resultFactory.GetStaticResult(Request, plugin.Version.ToString().GetMD5(), null, null, MimeTypes.GetMimeType("page.html"), () => GetPackageCreator(DashboardUIPath).ModifyHtml("dummy.html", stream, null, _appHost.ApplicationVersion, null));
|
2016-10-26 06:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
throw new ResourceNotFoundException();
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
/// <returns>System.Object.</returns>
|
|
|
|
public object Get(GetDashboardConfigurationPages request)
|
|
|
|
{
|
2017-09-15 06:31:28 +00:00
|
|
|
const string unavailableMessage = "The server is still loading. Please try again momentarily.";
|
2013-07-08 16:13:21 +00:00
|
|
|
|
|
|
|
var instance = ServerEntryPoint.Instance;
|
|
|
|
|
|
|
|
if (instance == null)
|
|
|
|
{
|
2017-09-15 06:31:28 +00:00
|
|
|
throw new InvalidOperationException(unavailableMessage);
|
2013-07-08 16:13:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var pages = instance.PluginConfigurationPages;
|
|
|
|
|
|
|
|
if (pages == null)
|
|
|
|
{
|
2017-09-15 06:31:28 +00:00
|
|
|
throw new InvalidOperationException(unavailableMessage);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2013-12-15 01:17:57 +00:00
|
|
|
// Don't allow a failing plugin to fail them all
|
|
|
|
var configPages = pages.Select(p =>
|
|
|
|
{
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return new ConfigurationPageInfo(p);
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
2018-12-20 12:11:26 +00:00
|
|
|
_logger.LogError(ex, "Error getting plugin information from {Plugin}", p.GetType().Name);
|
2013-12-15 01:17:57 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.Where(i => i != null)
|
|
|
|
.ToList();
|
|
|
|
|
2016-10-26 06:01:42 +00:00
|
|
|
configPages.AddRange(_appHost.Plugins.SelectMany(GetConfigPages));
|
|
|
|
|
2017-09-15 06:31:28 +00:00
|
|
|
if (request.PageType.HasValue)
|
|
|
|
{
|
|
|
|
configPages = configPages.Where(p => p.ConfigurationPageType == request.PageType.Value).ToList();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.EnableInMainMenu.HasValue)
|
|
|
|
{
|
|
|
|
configPages = configPages.Where(p => p.EnableInMainMenu == request.EnableInMainMenu.Value).ToList();
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
return configPages;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2016-10-26 06:01:42 +00:00
|
|
|
private IEnumerable<Tuple<PluginPageInfo, IPlugin>> GetPluginPages()
|
|
|
|
{
|
|
|
|
return _appHost.Plugins.SelectMany(GetPluginPages);
|
|
|
|
}
|
|
|
|
|
|
|
|
private IEnumerable<Tuple<PluginPageInfo, IPlugin>> GetPluginPages(IPlugin plugin)
|
|
|
|
{
|
|
|
|
var hasConfig = plugin as IHasWebPages;
|
|
|
|
|
|
|
|
if (hasConfig == null)
|
|
|
|
{
|
|
|
|
return new List<Tuple<PluginPageInfo, IPlugin>>();
|
|
|
|
}
|
|
|
|
|
|
|
|
return hasConfig.GetPages().Select(i => new Tuple<PluginPageInfo, IPlugin>(i, plugin));
|
|
|
|
}
|
|
|
|
|
|
|
|
private IEnumerable<ConfigurationPageInfo> GetConfigPages(IPlugin plugin)
|
|
|
|
{
|
|
|
|
return GetPluginPages(plugin).Select(i => new ConfigurationPageInfo(plugin, i.Item1));
|
|
|
|
}
|
|
|
|
|
2016-01-07 03:54:38 +00:00
|
|
|
public object Get(GetRobotsTxt request)
|
|
|
|
{
|
|
|
|
return Get(new GetDashboardResource
|
|
|
|
{
|
|
|
|
ResourceName = "robots.txt"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the specified request.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
/// <returns>System.Object.</returns>
|
2016-06-19 06:18:29 +00:00
|
|
|
public async Task<object> Get(GetDashboardResource request)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2013-02-27 16:46:48 +00:00
|
|
|
var path = request.ResourceName;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
var contentType = MimeTypes.GetMimeType(path);
|
2017-02-07 07:33:24 +00:00
|
|
|
var basePath = DashboardUIPath;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2015-07-12 16:06:23 +00:00
|
|
|
// Bounce them to the startup wizard if it hasn't been completed yet
|
2017-02-07 07:33:24 +00:00
|
|
|
if (!_serverConfigurationManager.Configuration.IsStartupWizardCompleted &&
|
2019-01-07 23:27:46 +00:00
|
|
|
Request.RawUrl.IndexOf("wizard", StringComparison.OrdinalIgnoreCase) == -1 &&
|
2018-09-12 17:26:21 +00:00
|
|
|
GetPackageCreator(basePath).IsCoreHtml(path))
|
2014-08-07 02:51:09 +00:00
|
|
|
{
|
2015-07-12 16:06:23 +00:00
|
|
|
// But don't redirect if an html import is being requested.
|
2015-12-04 19:58:30 +00:00
|
|
|
if (path.IndexOf("bower_components", StringComparison.OrdinalIgnoreCase) == -1)
|
2014-08-07 02:51:09 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
Request.Response.Redirect("index.html?start=wizard#!/wizardstart.html");
|
2014-08-07 02:51:09 +00:00
|
|
|
return null;
|
2014-10-20 20:23:40 +00:00
|
|
|
}
|
2014-08-07 02:51:09 +00:00
|
|
|
}
|
|
|
|
|
2014-03-31 21:04:22 +00:00
|
|
|
var localizationCulture = GetLocalizationCulture();
|
2014-03-31 01:00:47 +00:00
|
|
|
|
2013-03-23 04:04:36 +00:00
|
|
|
// Don't cache if not configured to do so
|
|
|
|
// But always cache images to simulate production
|
2014-03-31 01:00:47 +00:00
|
|
|
if (!_serverConfigurationManager.Configuration.EnableDashboardResponseCaching &&
|
|
|
|
!contentType.StartsWith("image/", StringComparison.OrdinalIgnoreCase) &&
|
2013-12-16 18:44:03 +00:00
|
|
|
!contentType.StartsWith("font/", StringComparison.OrdinalIgnoreCase))
|
2013-03-23 04:04:36 +00:00
|
|
|
{
|
2017-02-07 07:33:24 +00:00
|
|
|
var stream = await GetResourceStream(basePath, path, localizationCulture).ConfigureAwait(false);
|
2018-09-12 17:26:21 +00:00
|
|
|
return _resultFactory.GetResult(Request, stream, contentType);
|
2013-03-23 04:04:36 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
TimeSpan? cacheDuration = null;
|
|
|
|
|
|
|
|
// Cache images unconditionally - updates to image files will require new filename
|
|
|
|
// If there's a version number in the query string we can cache this unconditionally
|
2013-12-16 18:44:03 +00:00
|
|
|
if (contentType.StartsWith("image/", StringComparison.OrdinalIgnoreCase) || contentType.StartsWith("font/", StringComparison.OrdinalIgnoreCase) || !string.IsNullOrEmpty(request.V))
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
cacheDuration = TimeSpan.FromDays(365);
|
|
|
|
}
|
|
|
|
|
2019-01-20 02:35:33 +00:00
|
|
|
var cacheKey = (_appHost.ApplicationVersion + (localizationCulture ?? string.Empty) + path).GetMD5();
|
2013-03-23 04:04:36 +00:00
|
|
|
|
2017-05-22 04:54:02 +00:00
|
|
|
// html gets modified on the fly
|
|
|
|
if (contentType.StartsWith("text/html", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
return await _resultFactory.GetStaticResult(Request, cacheKey, null, cacheDuration, contentType, () => GetResourceStream(basePath, path, localizationCulture)).ConfigureAwait(false);
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
return await _resourceFileManager.GetStaticFileResult(Request, basePath, path, contentType, cacheDuration);
|
2014-03-31 01:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private string GetLocalizationCulture()
|
|
|
|
{
|
|
|
|
return _serverConfigurationManager.Configuration.UICulture;
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the resource stream.
|
|
|
|
/// </summary>
|
2017-02-07 07:33:24 +00:00
|
|
|
private Task<Stream> GetResourceStream(string basePath, string virtualPath, string localizationCulture)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2017-02-07 07:33:24 +00:00
|
|
|
return GetPackageCreator(basePath)
|
2019-01-20 02:35:33 +00:00
|
|
|
.GetResource(virtualPath, null, localizationCulture, _appHost.ApplicationVersion);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2017-02-07 07:33:24 +00:00
|
|
|
private PackageCreator GetPackageCreator(string basePath)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
return new PackageCreator(basePath, _fileSystem, _logger, _serverConfigurationManager, _resourceFileManager);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 20:23:40 +00:00
|
|
|
public async Task<object> Get(GetDashboardPackage request)
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
2016-09-29 12:55:49 +00:00
|
|
|
var mode = request.Mode;
|
|
|
|
|
2017-02-07 07:33:24 +00:00
|
|
|
var inputPath = string.IsNullOrWhiteSpace(mode) ?
|
|
|
|
DashboardUIPath
|
|
|
|
: "C:\\dev\\emby-web-mobile-master\\dist";
|
|
|
|
|
|
|
|
var targetPath = !string.IsNullOrWhiteSpace(mode) ?
|
|
|
|
inputPath
|
2016-09-29 12:55:49 +00:00
|
|
|
: "C:\\dev\\emby-web-mobile\\src";
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2017-02-07 07:33:24 +00:00
|
|
|
var packageCreator = GetPackageCreator(inputPath);
|
2015-06-09 05:56:46 +00:00
|
|
|
|
2017-02-07 07:33:24 +00:00
|
|
|
if (!string.Equals(inputPath, targetPath, StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.Delete(targetPath, true);
|
2017-02-07 07:33:24 +00:00
|
|
|
}
|
|
|
|
catch (IOException)
|
|
|
|
{
|
2014-03-31 01:00:47 +00:00
|
|
|
|
2017-02-07 07:33:24 +00:00
|
|
|
}
|
2014-03-31 01:00:47 +00:00
|
|
|
|
2017-02-07 07:33:24 +00:00
|
|
|
CopyDirectory(inputPath, targetPath);
|
|
|
|
}
|
2013-03-10 01:18:29 +00:00
|
|
|
|
2019-01-20 02:35:33 +00:00
|
|
|
var appVersion = _appHost.ApplicationVersion;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
await DumpHtml(packageCreator, inputPath, targetPath, mode, appVersion);
|
2015-05-02 16:34:27 +00:00
|
|
|
|
2014-10-20 20:23:40 +00:00
|
|
|
return "";
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private async Task DumpHtml(PackageCreator packageCreator, string source, string destination, string mode, string appVersion)
|
2014-03-31 01:00:47 +00:00
|
|
|
{
|
2016-10-25 19:11:27 +00:00
|
|
|
foreach (var file in _fileSystem.GetFiles(source))
|
2014-10-20 20:23:40 +00:00
|
|
|
{
|
2016-10-25 19:11:27 +00:00
|
|
|
var filename = file.Name;
|
2014-10-21 00:54:01 +00:00
|
|
|
|
2017-02-07 07:33:24 +00:00
|
|
|
if (!string.Equals(file.Extension, ".html", StringComparison.OrdinalIgnoreCase))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
await DumpFile(packageCreator, filename, Path.Combine(destination, filename), mode, appVersion).ConfigureAwait(false);
|
2014-10-20 20:23:40 +00:00
|
|
|
}
|
2014-03-31 01:00:47 +00:00
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
private async Task DumpFile(PackageCreator packageCreator, string resourceVirtualPath, string destinationFilePath, string mode, string appVersion)
|
2014-10-21 00:54:01 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
using (var stream = await packageCreator.GetResource(resourceVirtualPath, mode, null, appVersion).ConfigureAwait(false))
|
2019-01-27 14:40:37 +00:00
|
|
|
using (var fs = _fileSystem.GetFileStream(destinationFilePath, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read))
|
2013-04-01 00:22:38 +00:00
|
|
|
{
|
2019-01-27 14:40:37 +00:00
|
|
|
await stream.CopyToAsync(fs);
|
2013-04-01 00:22:38 +00:00
|
|
|
}
|
2013-03-10 01:18:29 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 20:23:40 +00:00
|
|
|
private void CopyDirectory(string source, string destination)
|
2013-03-23 04:04:36 +00:00
|
|
|
{
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.CreateDirectory(destination);
|
2013-04-01 00:22:38 +00:00
|
|
|
|
2014-10-20 20:23:40 +00:00
|
|
|
//Now Create all of the directories
|
2016-10-25 19:11:27 +00:00
|
|
|
foreach (var dirPath in _fileSystem.GetDirectories(source, true))
|
2019-01-26 21:08:04 +00:00
|
|
|
Directory.CreateDirectory(dirPath.FullName.Replace(source, destination));
|
2013-04-01 00:22:38 +00:00
|
|
|
|
2014-10-20 20:23:40 +00:00
|
|
|
//Copy all the files & Replaces any files with the same name
|
2016-10-25 19:11:27 +00:00
|
|
|
foreach (var newPath in _fileSystem.GetFiles(source, true))
|
2019-01-26 21:31:59 +00:00
|
|
|
File.Copy(newPath.FullName, newPath.FullName.Replace(source, destination), true);
|
2013-03-23 04:04:36 +00:00
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|