jellyfin/MediaBrowser.WebDashboard/Api/DashboardService.cs

714 lines
28 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.IO;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
2014-03-31 03:00:47 +02:00
using MediaBrowser.Controller.Localization;
2013-12-07 16:52:38 +01:00
using MediaBrowser.Controller.Net;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Model.Logging;
2013-12-07 16:52:38 +01:00
using ServiceStack;
2014-03-25 22:13:55 +01:00
using ServiceStack.Web;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
2013-02-21 02:33:05 +01:00
using System.Text;
using System.Threading.Tasks;
2014-03-31 03:00:47 +02:00
using WebMarkupMin.Core.Minifiers;
using WebMarkupMin.Core.Settings;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.WebDashboard.Api
{
/// <summary>
/// Class GetDashboardConfigurationPages
/// </summary>
[Route("/dashboard/ConfigurationPages", "GET")]
public class GetDashboardConfigurationPages : IReturn<List<ConfigurationPageInfo>>
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets or sets the type of the page.
/// </summary>
/// <value>The type of the page.</value>
public ConfigurationPageType? PageType { get; set; }
}
/// <summary>
/// Class GetDashboardConfigurationPage
/// </summary>
[Route("/dashboard/ConfigurationPage", "GET")]
public class GetDashboardConfigurationPage
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
}
/// <summary>
/// Class GetDashboardResource
/// </summary>
2013-02-27 17:46:48 +01:00
[Route("/dashboard/{ResourceName*}", "GET")]
2013-02-21 02:33:05 +01:00
public class GetDashboardResource
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
2013-02-27 17:46:48 +01:00
public string ResourceName { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the V.
/// </summary>
/// <value>The V.</value>
public string V { get; set; }
}
/// <summary>
/// Class DashboardService
/// </summary>
public class DashboardService : IRestfulService, IHasResultFactory
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets or sets the logger.
/// </summary>
/// <value>The logger.</value>
public ILogger Logger { get; set; }
/// <summary>
/// Gets or sets the HTTP result factory.
/// </summary>
/// <value>The HTTP result factory.</value>
public IHttpResultFactory ResultFactory { get; set; }
/// <summary>
/// Gets or sets the request context.
/// </summary>
/// <value>The request context.</value>
2013-12-07 16:52:38 +01:00
public IRequest Request { get; set; }
2013-05-01 05:28:26 +02:00
/// <summary>
/// The _app host
/// </summary>
2013-03-07 06:34:00 +01:00
private readonly IServerApplicationHost _appHost;
2013-05-01 05:28:26 +02:00
/// <summary>
/// The _server configuration manager
/// </summary>
private readonly IServerConfigurationManager _serverConfigurationManager;
private readonly IFileSystem _fileSystem;
2014-03-31 03:00:47 +02:00
private readonly ILocalizationManager _localization;
2013-02-23 08:57:11 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="DashboardService" /> class.
/// </summary>
/// <param name="appHost">The app host.</param>
2013-04-10 19:11:23 +02:00
/// <param name="serverConfigurationManager">The server configuration manager.</param>
2014-03-25 22:13:55 +01:00
/// <param name="fileSystem">The file system.</param>
2014-03-31 03:00:47 +02:00
public DashboardService(IServerApplicationHost appHost, IServerConfigurationManager serverConfigurationManager, IFileSystem fileSystem, ILocalizationManager localization)
2013-02-23 08:57:11 +01:00
{
2013-03-07 06:34:00 +01:00
_appHost = appHost;
_serverConfigurationManager = serverConfigurationManager;
_fileSystem = fileSystem;
2014-03-31 03:00:47 +02:00
_localization = localization;
2013-02-23 08:57:11 +01:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the dashboard UI path.
/// </summary>
/// <value>The dashboard UI path.</value>
public string DashboardUIPath
{
get
{
if (!string.IsNullOrEmpty(_serverConfigurationManager.Configuration.DashboardSourcePath))
{
return _serverConfigurationManager.Configuration.DashboardSourcePath;
}
var runningDirectory = Path.GetDirectoryName(_serverConfigurationManager.ApplicationPaths.ApplicationPath);
return Path.Combine(runningDirectory, "dashboard-ui");
}
}
/// <summary>
/// Gets the dashboard resource path.
/// </summary>
/// <param name="virtualPath">The virtual path.</param>
/// <returns>System.String.</returns>
private string GetDashboardResourcePath(string virtualPath)
{
2013-10-05 16:19:29 +02:00
return Path.Combine(DashboardUIPath, virtualPath.Replace('/', Path.DirectorySeparatorChar));
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetDashboardConfigurationPage request)
{
var page = ServerEntryPoint.Instance.PluginConfigurationPages.First(p => p.Name.Equals(request.Name, StringComparison.OrdinalIgnoreCase));
2013-02-21 02:33:05 +01:00
2014-03-31 03:00:47 +02:00
return ResultFactory.GetStaticResult(Request, page.Plugin.Version.ToString().GetMD5(), page.Plugin.AssemblyDateLastModified, null, MimeTypes.GetMimeType("page.html"), () => ModifyHtml(page.GetHtmlStream(), null));
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetDashboardConfigurationPages request)
{
2013-07-08 18:13:21 +02:00
const string unavilableMessage = "The server is still loading. Please try again momentarily.";
var instance = ServerEntryPoint.Instance;
if (instance == null)
{
throw new InvalidOperationException(unavilableMessage);
}
var pages = instance.PluginConfigurationPages;
if (pages == null)
{
throw new InvalidOperationException(unavilableMessage);
}
2013-02-21 02:33:05 +01:00
if (request.PageType.HasValue)
{
pages = pages.Where(p => p.ConfigurationPageType == request.PageType.Value);
}
2013-12-15 02:17:57 +01:00
// Don't allow a failing plugin to fail them all
var configPages = pages.Select(p =>
{
try
{
return new ConfigurationPageInfo(p);
}
catch (Exception ex)
{
Logger.ErrorException("Error getting plugin information from {0}", ex, p.GetType().Name);
return null;
}
})
.Where(i => i != null)
.ToList();
return ResultFactory.GetOptimizedResult(Request, configPages);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetDashboardResource request)
{
2013-02-27 17:46:48 +01:00
var path = request.ResourceName;
2013-02-21 02:33:05 +01:00
var contentType = MimeTypes.GetMimeType(path);
2014-03-31 03:00:47 +02:00
var isHtml = IsHtml(path);
var localizationCulture = isHtml ? GetLocalizationCulture() : null;
// Don't cache if not configured to do so
// But always cache images to simulate production
2014-03-31 03:00:47 +02:00
if (!_serverConfigurationManager.Configuration.EnableDashboardResponseCaching &&
!contentType.StartsWith("image/", StringComparison.OrdinalIgnoreCase) &&
2013-12-16 19:44:03 +01:00
!contentType.StartsWith("font/", StringComparison.OrdinalIgnoreCase))
{
2014-03-31 03:00:47 +02:00
return ResultFactory.GetResult(GetResourceStream(path, isHtml, localizationCulture).Result, contentType);
}
2013-02-21 02:33:05 +01: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 19:44:03 +01:00
if (contentType.StartsWith("image/", StringComparison.OrdinalIgnoreCase) || contentType.StartsWith("font/", StringComparison.OrdinalIgnoreCase) || !string.IsNullOrEmpty(request.V))
2013-02-21 02:33:05 +01:00
{
cacheDuration = TimeSpan.FromDays(365);
}
var assembly = GetType().Assembly.GetName();
2014-03-31 03:00:47 +02:00
var cacheKey = (assembly.Version + (localizationCulture ?? string.Empty) + path).GetMD5();
2014-03-31 03:00:47 +02:00
return ResultFactory.GetStaticResult(Request, cacheKey, null, cacheDuration, contentType, () => GetResourceStream(path, isHtml, localizationCulture));
}
private string GetLocalizationCulture()
{
return _serverConfigurationManager.Configuration.UICulture;
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the resource stream.
/// </summary>
/// <param name="path">The path.</param>
2014-03-31 03:00:47 +02:00
/// <param name="isHtml">if set to <c>true</c> [is HTML].</param>
/// <param name="localizationCulture">The localization culture.</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task{Stream}.</returns>
2014-03-31 03:00:47 +02:00
private async Task<Stream> GetResourceStream(string path, bool isHtml, string localizationCulture)
2013-02-21 02:33:05 +01:00
{
Stream resourceStream;
if (path.Equals("scripts/all.js", StringComparison.OrdinalIgnoreCase))
{
resourceStream = await GetAllJavascript().ConfigureAwait(false);
}
2013-04-01 02:22:38 +02:00
else if (path.Equals("css/all.css", StringComparison.OrdinalIgnoreCase))
{
resourceStream = await GetAllCss().ConfigureAwait(false);
}
2013-02-21 02:33:05 +01:00
else
{
resourceStream = GetRawResourceStream(path);
2013-02-21 02:33:05 +01:00
}
if (resourceStream != null)
{
// Don't apply any caching for html pages
// jQuery ajax doesn't seem to handle if-modified-since correctly
if (isHtml)
{
2014-03-31 03:00:47 +02:00
resourceStream = await ModifyHtml(resourceStream, localizationCulture).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
}
return resourceStream;
}
/// <summary>
/// Gets the raw resource stream.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <param name="path">The path.</param>
/// <returns>Task{Stream}.</returns>
private Stream GetRawResourceStream(string path)
2013-02-21 02:33:05 +01:00
{
return _fileSystem.GetFileStream(GetDashboardResourcePath(path), FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Determines whether the specified path is HTML.
/// </summary>
/// <param name="path">The path.</param>
/// <returns><c>true</c> if the specified path is HTML; otherwise, <c>false</c>.</returns>
private bool IsHtml(string path)
{
return Path.GetExtension(path).EndsWith("html", StringComparison.OrdinalIgnoreCase);
}
/// <summary>
/// Modifies the HTML by adding common meta tags, css and js.
/// </summary>
/// <param name="sourceStream">The source stream.</param>
/// <returns>Task{Stream}.</returns>
2014-03-31 03:00:47 +02:00
private async Task<Stream> ModifyHtml(Stream sourceStream, string localizationCulture)
2013-02-21 02:33:05 +01:00
{
2014-03-31 03:00:47 +02:00
using (sourceStream)
2013-02-21 02:33:05 +01:00
{
2014-03-31 03:00:47 +02:00
string html;
2013-02-21 02:33:05 +01:00
2014-03-31 03:00:47 +02:00
using (var memoryStream = new MemoryStream())
{
await sourceStream.CopyToAsync(memoryStream).ConfigureAwait(false);
html = Encoding.UTF8.GetString(memoryStream.ToArray());
2013-02-21 02:33:05 +01:00
2014-03-31 03:00:47 +02:00
if (!string.IsNullOrWhiteSpace(localizationCulture))
{
html = _localization.LocalizeDocument(html, localizationCulture, GetLocalizationToken);
}
2013-02-21 02:33:05 +01:00
2014-03-31 03:00:47 +02:00
try
{
var minifier = new HtmlMinifier(new HtmlMinificationSettings(true));
2013-02-21 02:33:05 +01:00
2014-03-31 03:00:47 +02:00
html = minifier.Minify(html).MinifiedContent;
}
catch (Exception ex)
{
Logger.ErrorException("Error minifying html", ex);
}
}
var version = GetType().Assembly.GetName().Version;
html = html.Replace("<head>", "<head>" + GetMetaTags() + GetCommonCss(version) + GetCommonJavascript(version));
2013-02-21 02:33:05 +01:00
2014-03-31 03:00:47 +02:00
var bytes = Encoding.UTF8.GetBytes(html);
2013-02-21 02:33:05 +01:00
2014-03-31 03:00:47 +02:00
return new MemoryStream(bytes);
}
}
private string GetLocalizationToken(string phrase)
{
return "${" + phrase + "}";
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the meta tags.
/// </summary>
/// <returns>System.String.</returns>
private static string GetMetaTags()
{
var sb = new StringBuilder();
sb.Append("<meta http-equiv=\"X-UA-Compatibility\" content=\"IE=Edge\">");
2013-02-21 02:33:05 +01:00
sb.Append("<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, user-scalable=no\">");
sb.Append("<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">");
2013-05-17 04:32:23 +02:00
//sb.Append("<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">");
2013-02-21 02:33:05 +01:00
// http://developer.apple.com/library/ios/#DOCUMENTATION/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html
sb.Append("<link rel=\"apple-touch-icon\" href=\"css/images/touchicon.png\" />");
sb.Append("<link rel=\"apple-touch-icon\" sizes=\"72x72\" href=\"css/images/touchicon72.png\" />");
sb.Append("<link rel=\"apple-touch-icon\" sizes=\"114x114\" href=\"css/images/touchicon114.png\" />");
2013-03-25 19:35:02 +01:00
sb.Append("<link rel=\"apple-touch-startup-image\" href=\"css/images/iossplash.png\" />");
sb.Append("<link rel=\"shortcut icon\" href=\"favicon.ico\" />");
2013-02-21 02:33:05 +01:00
return sb.ToString();
}
/// <summary>
/// Gets the common CSS.
/// </summary>
/// <param name="version">The version.</param>
2013-02-21 02:33:05 +01:00
/// <returns>System.String.</returns>
private static string GetCommonCss(Version version)
{
var versionString = "?v=" + version;
var files = new[]
{
2014-03-01 05:11:38 +01:00
"thirdparty/jquerymobile-1.4.2/jquery.mobile-1.4.2.min.css",
2013-04-01 02:22:38 +02:00
"css/all.css" + versionString
2013-02-21 02:33:05 +01:00
};
var tags = files.Select(s => string.Format("<link rel=\"stylesheet\" href=\"{0}\" />", s)).ToArray();
return string.Join(string.Empty, tags);
}
/// <summary>
/// Gets the common javascript.
/// </summary>
/// <param name="version">The version.</param>
2013-02-21 02:33:05 +01:00
/// <returns>System.String.</returns>
private static string GetCommonJavascript(Version version)
{
var builder = new StringBuilder();
2013-02-21 02:33:05 +01:00
var versionString = "?v=" + version;
var files = new[]
{
2013-08-02 22:36:44 +02:00
"scripts/all.js" + versionString,
2014-02-24 04:27:13 +01:00
"thirdparty/jstree1.0/jquery.jstree.min.js"
//"https://www.gstatic.com/cv/js/sender/v1/cast_sender.js"
2013-02-21 02:33:05 +01:00
};
var tags = files.Select(s => string.Format("<script src=\"{0}\"></script>", s)).ToArray();
builder.Append(string.Join(string.Empty, tags));
return builder.ToString();
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets a stream containing all concatenated javascript
/// </summary>
/// <returns>Task{Stream}.</returns>
private async Task<Stream> GetAllJavascript()
{
var memoryStream = new MemoryStream();
var newLineBytes = Encoding.UTF8.GetBytes(Environment.NewLine);
2014-03-31 03:00:47 +02:00
// jQuery + jQuery mobile
2013-12-24 19:37:29 +01:00
await AppendResource(memoryStream, "thirdparty/jquery-2.0.3.min.js", newLineBytes).ConfigureAwait(false);
2014-03-01 05:11:38 +01:00
await AppendResource(memoryStream, "thirdparty/jquerymobile-1.4.2/jquery.mobile-1.4.2.min.js", newLineBytes).ConfigureAwait(false);
2014-03-31 03:00:47 +02:00
await AppendLocalization(memoryStream).ConfigureAwait(false);
await memoryStream.WriteAsync(newLineBytes, 0, newLineBytes.Length).ConfigureAwait(false);
// Write the version string for the dashboard comparison function
2013-07-10 14:37:14 +02:00
var versionString = string.Format("window.dashboardVersion='{0}';", _appHost.ApplicationVersion);
var versionBytes = Encoding.UTF8.GetBytes(versionString);
await memoryStream.WriteAsync(versionBytes, 0, versionBytes.Length).ConfigureAwait(false);
await memoryStream.WriteAsync(newLineBytes, 0, newLineBytes.Length).ConfigureAwait(false);
2014-03-31 03:00:47 +02:00
var builder = new StringBuilder();
2014-03-04 05:53:48 +01:00
var assembly = GetType().Assembly;
2014-03-31 03:00:47 +02:00
using (var stream = assembly.GetManifestResourceStream("MediaBrowser.WebDashboard.ApiClient.js"))
{
using (var streamReader = new StreamReader(stream))
{
var text = await streamReader.ReadToEndAsync().ConfigureAwait(false);
builder.Append(text);
builder.Append(Environment.NewLine);
}
}
foreach (var file in GetScriptFiles())
{
var path = GetDashboardResourcePath("scripts/" + file);
using (var fs = _fileSystem.GetFileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true))
{
using (var streamReader = new StreamReader(fs))
{
var text = await streamReader.ReadToEndAsync().ConfigureAwait(false);
builder.Append(text);
builder.Append(Environment.NewLine);
}
}
}
var js = builder.ToString();
try
{
var result = new CrockfordJsMinifier().Minify(js, false, Encoding.UTF8);
2014-03-31 03:00:47 +02:00
js = result.MinifiedContent;
}
catch (Exception ex)
2013-02-21 02:33:05 +01:00
{
2014-03-31 03:00:47 +02:00
Logger.ErrorException("Error minifying javascript", ex);
2013-02-21 02:33:05 +01:00
}
2014-03-31 03:00:47 +02:00
var bytes = Encoding.UTF8.GetBytes(js);
await memoryStream.WriteAsync(bytes, 0, bytes.Length).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
memoryStream.Position = 0;
return memoryStream;
}
2014-03-31 03:00:47 +02:00
private IEnumerable<string> GetScriptFiles()
{
return new[]
{
"extensions.js",
"site.js",
"librarybrowser.js",
"librarylist.js",
"editorsidebar.js",
"librarymenu.js",
"chromecast.js",
"contextmenu.js",
"mediacontroller.js",
"mediaplayer.js",
"mediaplayer-video.js",
"ratingdialog.js",
"aboutpage.js",
"allusersettings.js",
"alphapicker.js",
"addpluginpage.js",
"advancedconfigurationpage.js",
"advancedpaths.js",
"advancedserversettings.js",
"metadataadvanced.js",
"appsplayback.js",
"appsweather.js",
"autoorganizetv.js",
"autoorganizelog.js",
"channels.js",
"channelitems.js",
"dashboardinfo.js",
"dashboardpage.js",
"directorybrowser.js",
"dlnaprofile.js",
"dlnaprofiles.js",
"dlnasettings.js",
"editcollectionitems.js",
"edititemmetadata.js",
"edititempeople.js",
"edititemimages.js",
"encodingsettings.js",
"gamesrecommendedpage.js",
"gamesystemspage.js",
"gamespage.js",
"gamegenrepage.js",
"gamestudiospage.js",
"indexpage.js",
"itembynamedetailpage.js",
"itemdetailpage.js",
"itemgallery.js",
"itemlistpage.js",
"librarypathmapping.js",
"libraryreport.js",
"librarysettings.js",
"livetvchannel.js",
"livetvchannels.js",
"livetvguide.js",
"livetvnewrecording.js",
"livetvprogram.js",
"livetvrecording.js",
"livetvrecordinglist.js",
"livetvrecordings.js",
"livetvtimer.js",
"livetvseriestimer.js",
"livetvseriestimers.js",
"livetvsettings.js",
"livetvsuggested.js",
"livetvstatus.js",
"livetvtimers.js",
"loginpage.js",
"logpage.js",
"medialibrarypage.js",
"metadataconfigurationpage.js",
"metadataimagespage.js",
"moviegenres.js",
"moviecollections.js",
"movies.js",
"movieslatest.js",
"moviepeople.js",
"moviesrecommended.js",
"moviestudios.js",
"movietrailers.js",
"musicalbums.js",
"musicalbumartists.js",
"musicartists.js",
"musicgenres.js",
"musicrecommended.js",
"musicvideos.js",
"notifications.js",
"playlist.js",
"plugincatalogpage.js",
"pluginspage.js",
"pluginupdatespage.js",
"remotecontrol.js",
"scheduledtaskpage.js",
"scheduledtaskspage.js",
"search.js",
"songs.js",
"supporterkeypage.js",
"supporterpage.js",
"episodes.js",
"tvgenres.js",
"tvlatest.js",
"tvpeople.js",
"tvrecommended.js",
"tvshows.js",
"tvstudios.js",
"tvupcoming.js",
"useredit.js",
"userpassword.js",
"userimagepage.js",
"userprofilespage.js",
"usersettings.js",
"userparentalcontrol.js",
"wizardfinishpage.js",
"wizardimagesettings.js",
"wizardservice.js",
"wizardstartpage.js",
"wizardsettings.js",
"wizarduserpage.js"
};
}
private async Task AppendLocalization(Stream stream)
{
}
2013-04-01 02:22:38 +02:00
/// <summary>
/// Gets all CSS.
/// </summary>
/// <returns>Task{Stream}.</returns>
private async Task<Stream> GetAllCss()
{
var files = new[]
{
"site.css",
2014-02-23 18:29:02 +01:00
"chromecast.css",
2014-03-15 21:08:06 +01:00
"contextmenu.css",
2013-12-27 17:18:42 +01:00
"mediaplayer.css",
"mediaplayer-video.css",
2013-04-01 02:22:38 +02:00
"librarybrowser.css",
2013-04-26 01:28:01 +02:00
"detailtable.css",
"posteritem.css",
2013-05-03 21:34:25 +02:00
"tileitem.css",
2013-08-02 22:36:44 +02:00
"metadataeditor.css",
2013-07-06 23:23:32 +02:00
"notifications.css",
2013-04-26 22:53:54 +02:00
"search.css",
2013-04-01 02:22:38 +02:00
"pluginupdates.css",
2013-05-30 21:58:07 +02:00
"remotecontrol.css",
2013-12-20 21:09:49 +01:00
"userimage.css",
2013-12-24 19:37:29 +01:00
"livetv.css",
"icons.css"
2013-04-01 02:22:38 +02:00
};
2014-03-31 03:00:47 +02:00
var builder = new StringBuilder();
2013-04-01 02:22:38 +02:00
foreach (var file in files)
{
2014-03-31 03:00:47 +02:00
var path = GetDashboardResourcePath("css/" + file);
using (var fs = _fileSystem.GetFileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true))
{
using (var streamReader = new StreamReader(fs))
{
var text = await streamReader.ReadToEndAsync().ConfigureAwait(false);
builder.Append(text);
builder.Append(Environment.NewLine);
}
}
2013-04-01 02:22:38 +02:00
}
2013-05-01 05:28:26 +02:00
2014-03-31 03:00:47 +02:00
var css = builder.ToString();
try
{
2014-03-31 03:00:47 +02:00
var result = new KristensenCssMinifier().Minify(builder.ToString(), false, Encoding.UTF8);
2014-03-31 03:00:47 +02:00
//css = result.MinifiedContent;
}
catch (Exception ex)
{
Logger.ErrorException("Error minifying css", ex);
}
2014-03-31 03:00:47 +02:00
var memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(css));
memoryStream.Position = 0;
return memoryStream;
}
/// <summary>
/// Appends the resource.
/// </summary>
/// <param name="outputStream">The output stream.</param>
/// <param name="path">The path.</param>
/// <param name="newLineBytes">The new line bytes.</param>
/// <returns>Task.</returns>
private async Task AppendResource(Stream outputStream, string path, byte[] newLineBytes)
{
path = GetDashboardResourcePath(path);
2013-04-01 02:22:38 +02:00
using (var fs = _fileSystem.GetFileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, true))
2013-04-01 02:22:38 +02:00
{
using (var streamReader = new StreamReader(fs))
{
var text = await streamReader.ReadToEndAsync().ConfigureAwait(false);
var bytes = Encoding.UTF8.GetBytes(text);
await outputStream.WriteAsync(bytes, 0, bytes.Length).ConfigureAwait(false);
}
}
2013-04-01 02:22:38 +02:00
await outputStream.WriteAsync(newLineBytes, 0, newLineBytes.Length).ConfigureAwait(false);
}
2013-02-21 02:33:05 +01:00
}
}