jellyfin/MediaBrowser.ServerApplication/ApplicationHost.cs

714 lines
27 KiB
C#
Raw Normal View History

using MediaBrowser.Api;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Common;
using MediaBrowser.Common.Configuration;
2013-07-08 19:13:18 +02:00
using MediaBrowser.Common.Constants;
2013-03-15 05:23:07 +01:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.Implementations;
2013-08-10 03:40:52 +02:00
using MediaBrowser.Common.Implementations.IO;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Common.Implementations.ScheduledTasks;
using MediaBrowser.Common.MediaInfo;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Common.Net;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Controller;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Drawing;
2013-09-04 19:02:19 +02:00
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.IO;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Controller.Localization;
using MediaBrowser.Controller.MediaInfo;
2013-07-06 23:23:32 +02:00
using MediaBrowser.Controller.Notifications;
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Controller.Session;
2013-03-10 05:22:36 +01:00
using MediaBrowser.Controller.Sorting;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Model.IO;
2013-09-21 03:04:14 +02:00
using MediaBrowser.Model.Logging;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.System;
2013-09-14 03:56:03 +02:00
using MediaBrowser.Model.Updates;
2013-06-09 18:47:28 +02:00
using MediaBrowser.Providers;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Server.Implementations;
using MediaBrowser.Server.Implementations.BdInfo;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Server.Implementations.Configuration;
2013-09-18 20:49:06 +02:00
using MediaBrowser.Server.Implementations.Drawing;
2013-09-04 19:02:19 +02:00
using MediaBrowser.Server.Implementations.Dto;
2013-09-25 02:54:51 +02:00
using MediaBrowser.Server.Implementations.EntryPoints;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Server.Implementations.HttpServer;
using MediaBrowser.Server.Implementations.IO;
using MediaBrowser.Server.Implementations.Library;
using MediaBrowser.Server.Implementations.LiveTv;
using MediaBrowser.Server.Implementations.Localization;
using MediaBrowser.Server.Implementations.MediaEncoder;
2013-06-17 22:35:43 +02:00
using MediaBrowser.Server.Implementations.Persistence;
using MediaBrowser.Server.Implementations.Providers;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Server.Implementations.ServerManager;
using MediaBrowser.Server.Implementations.Session;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Server.Implementations.WebSocket;
2013-09-25 02:54:51 +02:00
using MediaBrowser.ServerApplication.FFMpeg;
using MediaBrowser.ServerApplication.Native;
using MediaBrowser.WebDashboard.Api;
2013-02-24 22:53:54 +01:00
using System;
using System.Collections.Generic;
2013-09-25 02:54:51 +02:00
using System.Data;
2013-02-24 22:53:54 +01:00
using System.IO;
using System.Linq;
using System.Net.Http;
2013-02-24 22:53:54 +01:00
using System.Reflection;
using System.Threading;
2013-02-24 22:53:54 +01:00
using System.Threading.Tasks;
namespace MediaBrowser.ServerApplication
{
/// <summary>
/// Class CompositionRoot
/// </summary>
2013-03-07 06:34:00 +01:00
public class ApplicationHost : BaseApplicationHost<ServerApplicationPaths>, IServerApplicationHost
2013-02-24 22:53:54 +01:00
{
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the server kernel.
2013-02-24 22:53:54 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The server kernel.</value>
2013-03-07 06:34:00 +01:00
protected Kernel ServerKernel { get; set; }
2013-02-24 22:53:54 +01:00
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the server configuration manager.
2013-02-24 22:53:54 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The server configuration manager.</value>
public IServerConfigurationManager ServerConfigurationManager
2013-02-24 22:53:54 +01:00
{
2013-03-04 06:43:06 +01:00
get { return (IServerConfigurationManager)ConfigurationManager; }
}
2013-06-03 20:15:35 +02:00
/// <summary>
/// Gets the name of the web application that can be used for url building.
/// All api urls will be of the form {protocol}://{host}:{port}/{appname}/...
/// </summary>
/// <value>The name of the web application.</value>
public string WebApplicationName
{
get { return "mediabrowser"; }
}
/// <summary>
/// Gets the HTTP server URL prefix.
/// </summary>
/// <value>The HTTP server URL prefix.</value>
public string HttpServerUrlPrefix
{
get
{
return "http://+:" + ServerConfigurationManager.Configuration.HttpServerPortNumber + "/" + WebApplicationName + "/";
}
}
2013-06-20 18:44:24 +02:00
2013-02-26 18:21:18 +01:00
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the configuration manager.
2013-02-26 18:21:18 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <returns>IConfigurationManager.</returns>
protected override IConfigurationManager GetConfigurationManager()
2013-02-26 18:21:18 +01:00
{
2013-03-04 06:43:06 +01:00
return new ServerConfigurationManager(ApplicationPaths, LogManager, XmlSerializer);
2013-02-26 18:21:18 +01:00
}
/// <summary>
/// Gets or sets the server manager.
/// </summary>
/// <value>The server manager.</value>
2013-03-07 06:34:00 +01:00
private IServerManager ServerManager { get; set; }
/// <summary>
/// Gets or sets the user manager.
/// </summary>
/// <value>The user manager.</value>
public IUserManager UserManager { get; set; }
/// <summary>
/// Gets or sets the library manager.
/// </summary>
/// <value>The library manager.</value>
internal ILibraryManager LibraryManager { get; set; }
/// <summary>
/// Gets or sets the directory watchers.
/// </summary>
/// <value>The directory watchers.</value>
private IDirectoryWatchers DirectoryWatchers { get; set; }
/// <summary>
/// Gets or sets the provider manager.
/// </summary>
/// <value>The provider manager.</value>
private IProviderManager ProviderManager { get; set; }
/// <summary>
/// Gets or sets the HTTP server.
/// </summary>
/// <value>The HTTP server.</value>
private IHttpServer HttpServer { get; set; }
2013-09-04 19:02:19 +02:00
private IDtoService DtoService { get; set; }
2013-09-18 20:49:06 +02:00
private IImageProcessor ImageProcessor { get; set; }
2013-03-10 07:45:16 +01:00
/// <summary>
/// Gets or sets the media encoder.
/// </summary>
/// <value>The media encoder.</value>
private IMediaEncoder MediaEncoder { get; set; }
2013-08-10 03:40:52 +02:00
private IIsoManager IsoManager { get; set; }
private ISessionManager SessionManager { get; set; }
2013-08-10 03:40:52 +02:00
private ILiveTvManager LiveTvManager { get; set; }
private ILocalizationManager LocalizationManager { get; set; }
/// <summary>
/// Gets or sets the user data repository.
/// </summary>
/// <value>The user data repository.</value>
private IUserDataRepository UserDataRepository { get; set; }
2013-04-19 22:27:02 +02:00
private IUserRepository UserRepository { get; set; }
2013-06-18 21:16:27 +02:00
internal IDisplayPreferencesRepository DisplayPreferencesRepository { get; set; }
2013-04-19 22:27:02 +02:00
private IItemRepository ItemRepository { get; set; }
2013-07-06 23:23:32 +02:00
private INotificationsRepository NotificationsRepository { get; set; }
2013-04-08 18:45:40 +02:00
private Task<IHttpServer> _httpServerCreationTask;
2013-09-21 03:04:14 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="ApplicationHost"/> class.
/// </summary>
/// <param name="applicationPaths">The application paths.</param>
/// <param name="logManager">The log manager.</param>
public ApplicationHost(ServerApplicationPaths applicationPaths, ILogManager logManager)
: base(applicationPaths, logManager)
{
2013-09-21 03:04:14 +02:00
}
/// <summary>
2013-03-10 07:45:16 +01:00
/// Runs the startup tasks.
/// </summary>
/// <returns>Task.</returns>
2013-05-19 00:07:59 +02:00
public override async Task RunStartupTasks()
2013-03-07 06:34:00 +01:00
{
2013-03-10 07:45:16 +01:00
await base.RunStartupTasks().ConfigureAwait(false);
2013-03-10 07:45:16 +01:00
DirectoryWatchers.Start();
Logger.Info("Core startup complete");
2013-06-22 01:38:19 +02:00
Parallel.ForEach(GetExports<IServerEntryPoint>(), entryPoint =>
{
try
{
entryPoint.Run();
}
catch (Exception ex)
{
Logger.ErrorException("Error in {0}", ex, entryPoint.GetType().Name);
}
});
2013-03-07 06:34:00 +01:00
}
2013-04-08 18:45:40 +02:00
/// <summary>
/// Called when [logger loaded].
/// </summary>
protected override void OnLoggerLoaded()
{
base.OnLoggerLoaded();
_httpServerCreationTask = Task.Run(() => ServerFactory.CreateServer(this, LogManager, "Media Browser", "dashboard/index.html"));
2013-04-08 18:45:40 +02:00
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Registers resources that classes will depend on
/// </summary>
/// <returns>Task.</returns>
2013-03-04 19:13:47 +01:00
protected override async Task RegisterResources()
2013-02-24 22:53:54 +01:00
{
2013-06-03 20:15:35 +02:00
ServerKernel = new Kernel();
2013-03-04 19:13:47 +01:00
await base.RegisterResources().ConfigureAwait(false);
RegisterSingleInstance<IHttpResultFactory>(new HttpResultFactory(LogManager));
2013-03-15 05:23:07 +01:00
2013-03-07 06:34:00 +01:00
RegisterSingleInstance<IServerApplicationHost>(this);
2013-03-04 06:43:06 +01:00
RegisterSingleInstance<IServerApplicationPaths>(ApplicationPaths);
2013-03-07 06:34:00 +01:00
2013-03-04 06:43:06 +01:00
RegisterSingleInstance(ServerKernel);
RegisterSingleInstance(ServerConfigurationManager);
2013-02-24 22:53:54 +01:00
2013-03-07 06:34:00 +01:00
RegisterSingleInstance<IWebSocketServer>(() => new AlchemyServer(Logger));
2013-08-10 03:40:52 +02:00
IsoManager = new IsoManager();
RegisterSingleInstance(IsoManager);
2013-09-05 19:26:03 +02:00
RegisterSingleInstance<IBlurayExaminer>(() => new BdInfoExaminer());
var mediaEncoderTask = RegisterMediaEncoder();
2013-06-18 11:43:07 +02:00
UserDataRepository = new SqliteUserDataRepository(ApplicationPaths, JsonSerializer, LogManager);
RegisterSingleInstance(UserDataRepository);
UserRepository = await GetUserRepository().ConfigureAwait(false);
2013-04-19 22:27:02 +02:00
RegisterSingleInstance(UserRepository);
2013-06-18 11:43:07 +02:00
DisplayPreferencesRepository = new SqliteDisplayPreferencesRepository(ApplicationPaths, JsonSerializer, LogManager);
2013-04-19 22:27:02 +02:00
RegisterSingleInstance(DisplayPreferencesRepository);
2013-06-18 11:43:07 +02:00
ItemRepository = new SqliteItemRepository(ApplicationPaths, JsonSerializer, LogManager);
2013-04-19 22:27:02 +02:00
RegisterSingleInstance(ItemRepository);
UserManager = new UserManager(Logger, ServerConfigurationManager, UserRepository);
2013-04-14 05:05:19 +02:00
RegisterSingleInstance(UserManager);
LibraryManager = new LibraryManager(Logger, TaskManager, UserManager, ServerConfigurationManager, UserDataRepository, () => DirectoryWatchers);
RegisterSingleInstance(LibraryManager);
DirectoryWatchers = new DirectoryWatchers(LogManager, TaskManager, LibraryManager, ServerConfigurationManager);
RegisterSingleInstance(DirectoryWatchers);
ProviderManager = new ProviderManager(HttpClient, ServerConfigurationManager, DirectoryWatchers, LogManager, LibraryManager);
RegisterSingleInstance(ProviderManager);
2013-04-26 21:20:53 +02:00
RegisterSingleInstance<ILibrarySearchEngine>(() => new LuceneSearchEngine(ApplicationPaths, LogManager, LibraryManager));
2013-04-05 21:34:33 +02:00
SessionManager = new SessionManager(UserDataRepository, ServerConfigurationManager, Logger, UserRepository);
RegisterSingleInstance<ISessionManager>(SessionManager);
2013-04-08 18:45:40 +02:00
HttpServer = await _httpServerCreationTask.ConfigureAwait(false);
RegisterSingleInstance(HttpServer, false);
2013-06-03 20:15:35 +02:00
ServerManager = new ServerManager(this, JsonSerializer, Logger, ServerConfigurationManager);
RegisterSingleInstance(ServerManager);
LocalizationManager = new LocalizationManager(ServerConfigurationManager);
RegisterSingleInstance(LocalizationManager);
2013-09-18 20:49:06 +02:00
ImageProcessor = new ImageProcessor(Logger, ServerConfigurationManager.ApplicationPaths);
RegisterSingleInstance(ImageProcessor);
DtoService = new DtoService(Logger, LibraryManager, UserManager, UserDataRepository, ItemRepository, ImageProcessor);
2013-09-04 19:02:19 +02:00
RegisterSingleInstance(DtoService);
LiveTvManager = new LiveTvManager();
RegisterSingleInstance(LiveTvManager);
var displayPreferencesTask = Task.Run(async () => await ConfigureDisplayPreferencesRepositories().ConfigureAwait(false));
var itemsTask = Task.Run(async () => await ConfigureItemRepositories().ConfigureAwait(false));
var userdataTask = Task.Run(async () => await ConfigureUserDataRepositories().ConfigureAwait(false));
2013-07-06 23:23:32 +02:00
await ConfigureNotificationsRepository().ConfigureAwait(false);
await Task.WhenAll(itemsTask, displayPreferencesTask, userdataTask, mediaEncoderTask).ConfigureAwait(false);
SetKernelProperties();
}
/// <summary>
/// Registers the media encoder.
/// </summary>
/// <returns>Task.</returns>
private async Task RegisterMediaEncoder()
{
2013-09-25 02:54:51 +02:00
var info = await new FFMpegDownloader(Logger, ApplicationPaths, HttpClient, ZipClient).GetFFMpegInfo().ConfigureAwait(false);
MediaEncoder = new MediaEncoder(LogManager.GetLogger("MediaEncoder"), ApplicationPaths, JsonSerializer, info.Path, info.ProbePath, info.Version);
RegisterSingleInstance(MediaEncoder);
}
/// <summary>
/// Sets the kernel properties.
/// </summary>
private void SetKernelProperties()
{
2013-03-10 07:45:16 +01:00
Parallel.Invoke(
2013-09-04 19:02:19 +02:00
() => ServerKernel.FFMpegManager = new FFMpegManager(ApplicationPaths, MediaEncoder, Logger, ItemRepository),
2013-06-03 20:15:35 +02:00
() => LocalizedStrings.StringFiles = GetExports<LocalizedStringData>(),
SetStaticProperties
);
}
private async Task<IUserRepository> GetUserRepository()
{
var dbFile = Path.Combine(ApplicationPaths.DataPath, "users.db");
var connection = await ConnectToDb(dbFile).ConfigureAwait(false);
2013-09-04 19:02:19 +02:00
var repo = new SqliteUserRepository(connection, JsonSerializer, LogManager);
repo.Initialize();
return repo;
}
2013-07-06 23:23:32 +02:00
/// <summary>
/// Configures the repositories.
/// </summary>
/// <returns>Task.</returns>
private async Task ConfigureNotificationsRepository()
{
var dbFile = Path.Combine(ApplicationPaths.DataPath, "notifications.db");
var connection = await ConnectToDb(dbFile).ConfigureAwait(false);
var repo = new SqliteNotificationsRepository(connection, LogManager);
repo.Initialize();
NotificationsRepository = repo;
RegisterSingleInstance(NotificationsRepository);
}
2013-09-05 19:26:03 +02:00
/// <summary>
/// Configures the repositories.
/// </summary>
/// <returns>Task.</returns>
private async Task ConfigureDisplayPreferencesRepositories()
{
2013-04-19 22:27:02 +02:00
await DisplayPreferencesRepository.Initialize().ConfigureAwait(false);
}
/// <summary>
/// Configures the item repositories.
/// </summary>
/// <returns>Task.</returns>
private async Task ConfigureItemRepositories()
{
2013-04-19 22:27:02 +02:00
await ItemRepository.Initialize().ConfigureAwait(false);
2013-04-19 22:27:02 +02:00
((LibraryManager)LibraryManager).ItemRepository = ItemRepository;
}
/// <summary>
/// Configures the user data repositories.
/// </summary>
/// <returns>Task.</returns>
private Task ConfigureUserDataRepositories()
{
return UserDataRepository.Initialize();
2013-09-05 19:26:03 +02:00
}
2013-07-06 23:23:32 +02:00
/// <summary>
/// Connects to db.
/// </summary>
/// <param name="dbPath">The db path.</param>
/// <returns>Task{IDbConnection}.</returns>
/// <exception cref="System.ArgumentNullException">dbPath</exception>
2013-09-25 02:54:51 +02:00
private static Task<IDbConnection> ConnectToDb(string dbPath)
2013-07-06 23:23:32 +02:00
{
if (string.IsNullOrEmpty(dbPath))
{
throw new ArgumentNullException("dbPath");
}
2013-09-25 02:54:51 +02:00
return Sqlite.OpenDatabase(dbPath);
}
/// <summary>
/// Dirty hacks
/// </summary>
private void SetStaticProperties()
{
// For now there's no real way to inject these properly
BaseItem.Logger = LogManager.GetLogger("BaseItem");
BaseItem.ConfigurationManager = ServerConfigurationManager;
BaseItem.LibraryManager = LibraryManager;
BaseItem.ProviderManager = ProviderManager;
BaseItem.LocalizationManager = LocalizationManager;
2013-06-20 18:44:24 +02:00
BaseItem.ItemRepository = ItemRepository;
User.XmlSerializer = XmlSerializer;
User.UserManager = UserManager;
LocalizedStrings.ApplicationPaths = ApplicationPaths;
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Finds the parts.
/// </summary>
protected override void FindParts()
{
2013-03-27 23:17:46 +01:00
if (IsFirstRun)
2013-03-27 23:13:46 +01:00
{
RegisterServerWithAdministratorAccess();
}
base.FindParts();
2013-03-15 05:23:07 +01:00
HttpServer.Init(GetExports<IRestfulService>(false));
ServerManager.AddWebSocketListeners(GetExports<IWebSocketListener>(false));
StartServer(true);
2013-03-07 06:34:00 +01:00
2013-06-03 20:15:35 +02:00
LibraryManager.AddParts(GetExports<IResolverIgnoreRule>(),
GetExports<IVirtualFolderCreator>(),
GetExports<IItemResolver>(),
GetExports<IIntroProvider>(),
GetExports<IBaseItemComparer>(),
GetExports<ILibraryPrescanTask>(),
GetExports<ILibraryPostScanTask>(),
GetExports<IMetadataSaver>());
ProviderManager.AddParts(GetExports<BaseMetadataProvider>());
2013-08-10 03:40:52 +02:00
IsoManager.AddParts(GetExports<IIsoMounter>());
2013-09-18 20:49:06 +02:00
SessionManager.AddParts(GetExports<ISessionRemoteController>());
2013-09-25 02:54:51 +02:00
ImageProcessor.AddParts(GetExports<IImageEnhancer>());
2013-09-26 18:17:36 +02:00
LiveTvManager.AddParts(GetExports<ILiveTvService>());
}
/// <summary>
/// Starts the server.
/// </summary>
/// <param name="retryOnFailure">if set to <c>true</c> [retry on failure].</param>
private void StartServer(bool retryOnFailure)
{
try
{
ServerManager.Start(HttpServerUrlPrefix, ServerConfigurationManager.Configuration.EnableHttpLevelLogging);
}
catch
{
if (retryOnFailure)
{
RegisterServerWithAdministratorAccess();
StartServer(false);
}
else
{
throw;
}
}
ServerManager.StartWebSocketServer();
}
2013-05-07 21:07:51 +02:00
/// <summary>
/// Called when [configuration updated].
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
protected override void OnConfigurationUpdated(object sender, EventArgs e)
{
base.OnConfigurationUpdated(sender, e);
HttpServer.EnableHttpRequestLogging = ServerConfigurationManager.Configuration.EnableHttpLevelLogging;
2013-06-03 20:15:35 +02:00
if (!string.Equals(HttpServer.UrlPrefix, HttpServerUrlPrefix, StringComparison.OrdinalIgnoreCase))
2013-05-07 21:07:51 +02:00
{
NotifyPendingRestart();
}
else if (!ServerManager.SupportsNativeWebSocket && ServerManager.WebSocketPortNumber != ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber)
{
NotifyPendingRestart();
}
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Restarts this instance.
/// </summary>
public override async Task Restart()
2013-02-24 22:53:54 +01:00
{
2013-09-05 19:26:03 +02:00
try
{
await ServerManager.SendWebSocketMessageAsync("ServerRestarting", () => string.Empty, CancellationToken.None).ConfigureAwait(false);
2013-09-05 19:26:03 +02:00
}
catch (Exception ex)
{
Logger.ErrorException("Error sending server restart web socket message", ex);
}
2013-09-25 02:54:51 +02:00
NativeApp.Restart();
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Gets or sets a value indicating whether this instance can self update.
/// </summary>
/// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value>
2013-03-04 06:43:06 +01:00
public override bool CanSelfUpdate
2013-02-24 22:53:54 +01:00
{
2013-08-08 19:00:20 +02:00
get
{
#if DEBUG
return false;
#endif
return ConfigurationManager.CommonConfiguration.EnableAutoUpdate;
}
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Gets the composable part assemblies.
/// </summary>
/// <returns>IEnumerable{Assembly}.</returns>
protected override IEnumerable<Assembly> GetComposablePartAssemblies()
2013-02-24 22:53:54 +01:00
{
2013-09-25 02:54:51 +02:00
var list = Directory.EnumerateFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.TopDirectoryOnly)
.Select(LoadAssembly)
.Where(a => a != null)
.ToList();
2013-02-24 22:53:54 +01:00
// Gets all plugin assemblies by first reading all bytes of the .dll and calling Assembly.Load against that
// This will prevent the .dll file from getting locked, and allow us to replace it when needed
// Include composable parts in the Api assembly
2013-09-25 02:54:51 +02:00
list.Add(typeof(ApiEntryPoint).Assembly);
2013-02-24 22:53:54 +01:00
// Include composable parts in the Dashboard assembly
2013-09-25 02:54:51 +02:00
list.Add(typeof(DashboardInfo).Assembly);
2013-02-24 22:53:54 +01:00
// Include composable parts in the Model assembly
2013-09-25 02:54:51 +02:00
list.Add(typeof(SystemInfo).Assembly);
2013-02-24 22:53:54 +01:00
// Include composable parts in the Common assembly
2013-09-25 02:54:51 +02:00
list.Add(typeof(IApplicationHost).Assembly);
2013-02-24 22:53:54 +01:00
// Include composable parts in the Controller assembly
2013-09-25 02:54:51 +02:00
list.Add(typeof(Kernel).Assembly);
2013-02-24 22:53:54 +01:00
2013-06-09 18:47:28 +02:00
// Include composable parts in the Providers assembly
2013-09-25 02:54:51 +02:00
list.Add(typeof(ImagesByNameProvider).Assembly);
2013-06-20 18:44:24 +02:00
2013-02-24 22:53:54 +01:00
// Common implementations
2013-09-25 02:54:51 +02:00
list.Add(typeof(TaskManager).Assembly);
2013-02-24 22:53:54 +01:00
// Server implementations
2013-09-25 02:54:51 +02:00
list.Add(typeof(ServerApplicationPaths).Assembly);
2013-09-25 02:54:51 +02:00
list.AddRange(Assemblies.GetAssembliesWithParts());
2013-09-05 19:26:03 +02:00
2013-02-24 22:53:54 +01:00
// Include composable parts in the running assembly
2013-09-25 02:54:51 +02:00
list.Add(GetType().Assembly);
return list;
2013-02-24 22:53:54 +01:00
}
private readonly string _systemId = Environment.MachineName.GetMD5().ToString();
2013-03-15 05:23:07 +01:00
2013-03-07 06:34:00 +01:00
/// <summary>
/// Gets the system status.
/// </summary>
/// <returns>SystemInfo.</returns>
public virtual SystemInfo GetSystemInfo()
{
return new SystemInfo
{
HasPendingRestart = HasPendingRestart,
Version = ApplicationVersion.ToString(),
IsNetworkDeployed = CanSelfUpdate,
WebSocketPortNumber = ServerManager.WebSocketPortNumber,
SupportsNativeWebSocket = ServerManager.SupportsNativeWebSocket,
FailedPluginAssemblies = FailedAssemblies.ToList(),
InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToList(),
CompletedInstallations = InstallationManager.CompletedInstallations.ToList(),
Id = _systemId,
2013-08-16 16:18:09 +02:00
ProgramDataPath = ApplicationPaths.ProgramDataPath,
MacAddress = GetMacAddress(),
2013-09-21 03:04:14 +02:00
HttpServerPortNumber = ServerConfigurationManager.Configuration.HttpServerPortNumber
2013-03-07 06:34:00 +01:00
};
}
2013-08-16 16:18:09 +02:00
/// <summary>
/// Gets the mac address.
/// </summary>
/// <returns>System.String.</returns>
private string GetMacAddress()
{
try
{
return NetworkManager.GetMacAddress();
}
catch (Exception ex)
{
Logger.ErrorException("Error getting mac address", ex);
return null;
}
}
/// <summary>
/// Shuts down.
/// </summary>
public override async Task Shutdown()
{
2013-09-05 19:26:03 +02:00
try
{
await ServerManager.SendWebSocketMessageAsync("ServerShuttingDown", () => string.Empty, CancellationToken.None).ConfigureAwait(false);
2013-09-05 19:26:03 +02:00
}
catch (Exception ex)
{
Logger.ErrorException("Error sending server shutdown web socket message", ex);
}
2013-09-25 02:54:51 +02:00
NativeApp.Shutdown();
2013-04-05 21:34:33 +02:00
}
2013-03-27 23:13:46 +01:00
/// <summary>
/// Registers the server with administrator access.
/// </summary>
private void RegisterServerWithAdministratorAccess()
{
Logger.Info("Requesting administrative access to authorize http server");
2013-09-25 02:54:51 +02:00
try
2013-03-27 23:13:46 +01:00
{
2013-09-25 02:54:51 +02:00
ServerAuthorization.AuthorizeServer(ServerConfigurationManager.Configuration.HttpServerPortNumber,
HttpServerUrlPrefix, ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber,
UdpServerEntryPoint.PortNumber,
ConfigurationManager.CommonApplicationPaths.TempDirectory);
2013-03-27 23:13:46 +01:00
}
2013-09-25 02:54:51 +02:00
catch (Exception ex)
2013-03-27 23:13:46 +01:00
{
2013-09-25 02:54:51 +02:00
Logger.ErrorException("Error authorizing server", ex);
2013-03-27 23:13:46 +01:00
}
}
2013-07-08 19:13:18 +02:00
2013-09-14 03:56:03 +02:00
/// <summary>
/// Checks for update.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task{CheckForUpdateResult}.</returns>
2013-09-25 02:54:51 +02:00
public override async Task<CheckForUpdateResult> CheckForApplicationUpdate(CancellationToken cancellationToken, IProgress<double> progress)
2013-07-08 19:13:18 +02:00
{
2013-09-14 03:56:03 +02:00
var availablePackages = await InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(cancellationToken).ConfigureAwait(false);
var version = InstallationManager.GetLatestCompatibleVersion(availablePackages, Constants.MbServerPkgName, ApplicationVersion, ConfigurationManager.CommonConfiguration.SystemUpdateLevel);
2013-09-14 03:56:03 +02:00
return version != null ? new CheckForUpdateResult { AvailableVersion = version.version, IsUpdateAvailable = version.version > ApplicationVersion, Package = version } :
new CheckForUpdateResult { AvailableVersion = ApplicationVersion, IsUpdateAvailable = false };
2013-07-08 19:13:18 +02:00
}
2013-09-14 03:56:03 +02:00
/// <summary>
/// Updates the application.
/// </summary>
/// <param name="package">The package that contains the update</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
public override async Task UpdateApplication(PackageVersionInfo package, CancellationToken cancellationToken, IProgress<double> progress)
{
await InstallationManager.InstallPackage(package, progress, cancellationToken).ConfigureAwait(false);
OnApplicationUpdated(package.version);
}
/// <summary>
/// Gets the HTTP message handler.
/// </summary>
/// <param name="enableHttpCompression">if set to <c>true</c> [enable HTTP compression].</param>
/// <returns>HttpMessageHandler.</returns>
protected override HttpMessageHandler GetHttpMessageHandler(bool enableHttpCompression)
{
2013-09-25 02:54:51 +02:00
return HttpMessageHandlerFactory.GetHttpMessageHandler(enableHttpCompression);
}
protected override void ConfigureAutoRunAtStartup(bool autorun)
{
Autorun.Configure(autorun);
}
2013-02-24 22:53:54 +01:00
}
}