jellyfin/MediaBrowser.ServerApplication/ApplicationHost.cs

994 lines
37 KiB
C#
Raw Normal View History

2014-01-06 02:59:21 +01:00
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-02-24 22:53:54 +01:00
using MediaBrowser.Common.Implementations.ScheduledTasks;
using MediaBrowser.Common.IO;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Common.Net;
using MediaBrowser.Common.Progress;
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.FileOrganization;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Controller.Localization;
2014-02-20 17:37:41 +01:00
using MediaBrowser.Controller.MediaEncoding;
2013-12-07 16:52:38 +01:00
using MediaBrowser.Controller.Net;
2014-01-18 22:52:01 +01:00
using MediaBrowser.Controller.News;
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;
2014-02-28 05:49:02 +01:00
using MediaBrowser.Controller.Themes;
2014-02-27 03:44:00 +01:00
using MediaBrowser.Dlna.PlayTo;
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;
using MediaBrowser.Providers.Manager;
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;
using MediaBrowser.Server.Implementations.FileOrganization;
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;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Server.Implementations.ServerManager;
using MediaBrowser.Server.Implementations.Session;
2014-02-28 05:49:02 +01:00
using MediaBrowser.Server.Implementations.Themes;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Server.Implementations.WebSocket;
2013-12-08 20:39:39 +01:00
using MediaBrowser.ServerApplication.EntryPoints;
2013-09-25 02:54:51 +02:00
using MediaBrowser.ServerApplication.FFMpeg;
using MediaBrowser.ServerApplication.IO;
2013-09-25 02:54:51 +02:00
using MediaBrowser.ServerApplication.Native;
using MediaBrowser.ServerApplication.Networking;
using MediaBrowser.WebDashboard.Api;
2013-02-24 22:53:54 +01:00
using System;
using System.Collections.Generic;
2014-01-06 02:59:21 +01:00
using System.Globalization;
2013-02-24 22:53:54 +01:00
using System.IO;
using System.Linq;
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 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>
2014-01-09 05:44:51 +01:00
private IEnumerable<string> HttpServerUrlPrefixes
2013-06-03 20:15:35 +02:00
{
get
{
2014-01-09 05:44:51 +01:00
var list = new List<string>
{
"http://+:" + ServerConfigurationManager.Configuration.HttpServerPortNumber + "/" + WebApplicationName + "/"
};
return list;
2013-06-03 20:15:35 +02:00
}
}
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 ILibraryMonitor LibraryMonitor { 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; }
private ISessionManager SessionManager { get; set; }
2013-08-10 03:40:52 +02:00
private ILiveTvManager LiveTvManager { get; set; }
2013-09-26 23:20:26 +02:00
private ILocalizationManager LocalizationManager { get; set; }
2014-02-20 17:37:41 +01:00
private IEncodingManager EncodingManager { get; set; }
2014-02-28 05:49:02 +01:00
/// <summary>
/// Gets or sets the user data repository.
/// </summary>
/// <value>The user data repository.</value>
2013-10-02 18:08:58 +02:00
private IUserDataManager UserDataManager { 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; }
internal IItemRepository ItemRepository { get; set; }
2013-07-06 23:23:32 +02:00
private INotificationsRepository NotificationsRepository { get; set; }
private IFileOrganizationRepository FileOrganizationRepository { get; set; }
2014-01-29 06:17:58 +01:00
private IProviderRepository ProviderRepository { get; set; }
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, bool isRunningAsService)
2013-09-21 03:04:14 +02:00
: base(applicationPaths, logManager)
{
_isRunningAsService = isRunningAsService;
}
2013-09-21 03:04:14 +02:00
private readonly bool _isRunningAsService;
2014-01-30 01:22:59 +01:00
public override bool IsRunningAsService
{
get { return _isRunningAsService; }
}
2014-01-25 22:07:19 +01:00
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public override string Name
{
get
{
return "Media Browser Server";
}
}
2013-10-07 16:38:31 +02:00
/// <summary>
/// Gets a value indicating whether this instance can self restart.
/// </summary>
/// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
public override bool CanSelfRestart
{
get { return NativeApp.CanSelfRestart; }
}
2014-01-06 02:59:21 +01:00
public bool SupportsAutoRunAtStartup
{
get { return NativeApp.SupportsAutoRunAtStartup; }
}
/// <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);
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);
}
});
2014-01-09 05:44:51 +01:00
LogManager.RemoveConsoleOutput();
2013-03-07 06:34:00 +01:00
}
2014-02-13 06:11:54 +01:00
public override Task Init(IProgress<double> progress)
{
DeleteDeprecatedModules();
return base.Init(progress);
}
private void DeleteDeprecatedModules()
{
2014-02-21 06:04:11 +01:00
try
{
MigrateUserFolders();
}
catch (IOException ex)
{
}
2014-02-13 06:11:54 +01:00
try
{
File.Delete(Path.Combine(ApplicationPaths.PluginsPath, "MBPhoto.dll"));
}
catch (IOException)
{
// Not there, no big deal
}
Task.Run(() =>
2014-02-13 06:11:54 +01:00
{
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "remote-images"), true);
}
catch (IOException)
{
// Not there, no big deal
}
2014-02-13 06:11:54 +01:00
2014-02-20 17:37:41 +01:00
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "chapter-images"), true);
}
catch (IOException)
{
// Not there, no big deal
}
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "extracted-video-images"), true);
}
catch (IOException)
{
// Not there, no big deal
}
2014-02-13 06:11:54 +01:00
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "extracted-audio-images"), true);
}
catch (IOException)
{
// Not there, no big deal
}
2014-02-20 18:49:07 +01:00
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-tv"), true);
}
catch (IOException)
{
// Not there, no big deal
}
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-collections"), true);
}
catch (IOException)
{
// Not there, no big deal
}
2014-02-22 22:05:56 +01:00
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-movies"), true);
}
catch (IOException)
{
// Not there, no big deal
}
2014-03-01 05:12:39 +01:00
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "fanart-movies"), true);
}
catch (IOException)
{
// Not there, no big deal
}
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "fanart-music"), true);
}
catch (IOException)
{
// Not there, no big deal
}
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "fanart-tv"), true);
}
catch (IOException)
{
// Not there, no big deal
}
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-people"), true);
}
catch (IOException)
{
// Not there, no big deal
}
2014-03-05 03:59:59 +01:00
try
{
Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tvdb-v3"), true);
}
catch (IOException)
{
// Not there, no big deal
}
});
2014-02-13 06:11:54 +01:00
}
2014-02-21 06:04:11 +01:00
private void MigrateUserFolders()
{
var rootPath = ApplicationPaths.RootFolderPath;
var folders = new DirectoryInfo(rootPath).EnumerateDirectories("*", SearchOption.TopDirectoryOnly).Where(i => !string.Equals(i.Name, "default", StringComparison.OrdinalIgnoreCase))
.ToList();
foreach (var folder in folders)
{
2014-02-23 21:35:58 +01:00
Directory.Delete(folder.FullName, true);
2014-02-21 06:04:11 +01:00
}
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Registers resources that classes will depend on
/// </summary>
/// <returns>Task.</returns>
protected override async Task RegisterResources(IProgress<double> progress)
2013-02-24 22:53:54 +01:00
{
await base.RegisterResources(progress).ConfigureAwait(false);
RegisterSingleInstance<IHttpResultFactory>(new HttpResultFactory(LogManager, FileSystemManager, JsonSerializer));
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(ServerConfigurationManager);
2013-02-24 22:53:54 +01:00
2013-03-07 06:34:00 +01:00
RegisterSingleInstance<IWebSocketServer>(() => new AlchemyServer(Logger));
RegisterSingleInstance<IBlurayExaminer>(() => new BdInfoExaminer());
2013-10-02 18:58:30 +02:00
UserDataManager = new UserDataManager(LogManager);
2013-10-02 18:08:58 +02:00
RegisterSingleInstance(UserDataManager);
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);
2014-01-29 06:17:58 +01:00
ProviderRepository = new SqliteProviderInfoRepository(ApplicationPaths, LogManager);
RegisterSingleInstance(ProviderRepository);
FileOrganizationRepository = await GetFileOrganizationRepository().ConfigureAwait(false);
RegisterSingleInstance(FileOrganizationRepository);
UserManager = new UserManager(Logger, ServerConfigurationManager, UserRepository);
2013-04-14 05:05:19 +02:00
RegisterSingleInstance(UserManager);
2014-02-02 14:36:31 +01:00
LibraryManager = new LibraryManager(Logger, TaskManager, UserManager, ServerConfigurationManager, UserDataManager, () => LibraryMonitor, FileSystemManager, () => ProviderManager);
RegisterSingleInstance(LibraryManager);
2014-01-29 02:46:04 +01:00
LibraryMonitor = new LibraryMonitor(LogManager, TaskManager, LibraryManager, ServerConfigurationManager, FileSystemManager);
RegisterSingleInstance(LibraryMonitor);
2014-02-19 06:21:03 +01:00
ProviderManager = new ProviderManager(HttpClient, ServerConfigurationManager, LibraryMonitor, LogManager, FileSystemManager);
RegisterSingleInstance(ProviderManager);
2014-01-07 21:12:39 +01:00
RegisterSingleInstance<ISearchEngine>(() => new SearchEngine(LogManager, LibraryManager, UserManager));
2013-04-05 21:34:33 +02:00
SessionManager = new SessionManager(UserDataManager, ServerConfigurationManager, Logger, UserRepository, LibraryManager, UserManager);
2013-10-01 00:18:44 +02:00
RegisterSingleInstance(SessionManager);
HttpServer = ServerFactory.CreateServer(this, LogManager, "Media Browser", "mediabrowser", "dashboard/index.html");
2013-04-08 18:45:40 +02:00
RegisterSingleInstance(HttpServer, false);
progress.Report(10);
2013-04-08 18:45:40 +02:00
2013-06-03 20:15:35 +02:00
ServerManager = new ServerManager(this, JsonSerializer, Logger, ServerConfigurationManager);
RegisterSingleInstance(ServerManager);
LocalizationManager = new LocalizationManager(ServerConfigurationManager, FileSystemManager);
RegisterSingleInstance(LocalizationManager);
ImageProcessor = new ImageProcessor(Logger, ServerConfigurationManager.ApplicationPaths, FileSystemManager, JsonSerializer);
2013-09-18 20:49:06 +02:00
RegisterSingleInstance(ImageProcessor);
2014-02-21 19:48:15 +01:00
DtoService = new DtoService(Logger, LibraryManager, UserManager, UserDataManager, ItemRepository, ImageProcessor, ServerConfigurationManager, FileSystemManager, ProviderManager);
2013-09-04 19:02:19 +02:00
RegisterSingleInstance(DtoService);
2014-01-18 22:52:01 +01:00
2014-01-19 05:25:01 +01:00
var newsService = new Server.Implementations.News.NewsService(ApplicationPaths, JsonSerializer);
2014-01-18 22:52:01 +01:00
RegisterSingleInstance<INewsService>(newsService);
var fileOrganizationService = new FileOrganizationService(TaskManager, FileOrganizationRepository, Logger, LibraryMonitor, LibraryManager, ServerConfigurationManager, FileSystemManager, ProviderManager);
RegisterSingleInstance<IFileOrganizationService>(fileOrganizationService);
progress.Report(15);
var innerProgress = new ActionableProgress<double>();
innerProgress.RegisterAction(p => progress.Report((.75 * p) + 15));
await RegisterMediaEncoder(innerProgress).ConfigureAwait(false);
progress.Report(90);
2014-02-20 17:37:41 +01:00
EncodingManager = new EncodingManager(ServerConfigurationManager, FileSystemManager, Logger, ItemRepository,
MediaEncoder);
RegisterSingleInstance(EncodingManager);
2014-02-28 05:49:02 +01:00
var appThemeManager = new AppThemeManager(ApplicationPaths, FileSystemManager, JsonSerializer, Logger);
RegisterSingleInstance<IAppThemeManager>(appThemeManager);
2014-02-27 17:25:04 +01:00
LiveTvManager = new LiveTvManager(ServerConfigurationManager, FileSystemManager, Logger, ItemRepository, ImageProcessor, UserDataManager, DtoService, UserManager, LibraryManager, TaskManager);
2014-01-12 07:31:21 +01:00
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);
progress.Report(92);
2013-07-06 23:23:32 +02:00
await Task.WhenAll(itemsTask, displayPreferencesTask, userdataTask).ConfigureAwait(false);
progress.Report(100);
2014-02-22 22:05:56 +01:00
SetStaticProperties();
2014-01-05 07:50:48 +01:00
await ((UserManager)UserManager).Initialize().ConfigureAwait(false);
2013-12-26 15:20:30 +01:00
SetKernelProperties();
}
protected override INetworkManager CreateNetworkManager()
{
return new NetworkManager();
}
protected override IFileSystem CreateFileSystemManager()
{
return FileSystemFactory.CreateFileSystemManager(LogManager);
}
/// <summary>
/// Registers the media encoder.
/// </summary>
/// <returns>Task.</returns>
private async Task RegisterMediaEncoder(IProgress<double> progress)
{
var info = await new FFMpegDownloader(Logger, ApplicationPaths, HttpClient, ZipClient, FileSystemManager).GetFFMpegInfo(progress).ConfigureAwait(false);
MediaEncoder = new MediaEncoder(LogManager.GetLogger("MediaEncoder"), ApplicationPaths, JsonSerializer, info.Path, info.ProbePath, info.Version, FileSystemManager);
RegisterSingleInstance(MediaEncoder);
}
/// <summary>
/// Sets the kernel properties.
/// </summary>
private void SetKernelProperties()
{
2013-12-15 19:29:34 +01:00
LocalizedStrings.StringFiles = GetExports<LocalizedStringData>();
}
2013-10-01 00:18:44 +02:00
/// <summary>
/// Gets the user repository.
/// </summary>
/// <returns>Task{IUserRepository}.</returns>
private async Task<IUserRepository> GetUserRepository()
{
2013-09-26 23:20:26 +02:00
var repo = new SqliteUserRepository(JsonSerializer, LogManager, ApplicationPaths);
2013-09-26 23:20:26 +02:00
await repo.Initialize().ConfigureAwait(false);
return repo;
}
/// <summary>
/// Gets the file organization repository.
/// </summary>
/// <returns>Task{IUserRepository}.</returns>
private async Task<IFileOrganizationRepository> GetFileOrganizationRepository()
{
var repo = new SqliteFileOrganizationRepository(LogManager, ServerConfigurationManager.ApplicationPaths);
await repo.Initialize().ConfigureAwait(false);
return repo;
}
2013-07-06 23:23:32 +02:00
/// <summary>
/// Configures the repositories.
/// </summary>
/// <returns>Task.</returns>
private async Task ConfigureNotificationsRepository()
{
2013-09-26 23:20:26 +02:00
var repo = new SqliteNotificationsRepository(LogManager, ApplicationPaths);
2013-07-06 23:23:32 +02:00
2013-09-26 23:20:26 +02:00
await repo.Initialize().ConfigureAwait(false);
2013-07-06 23:23:32 +02:00
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);
2014-01-29 06:17:58 +01:00
await ProviderRepository.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>
2013-10-02 18:08:58 +02:00
private async Task ConfigureUserDataRepositories()
{
2013-12-06 04:39:44 +01:00
var repo = new SqliteUserDataRepository(ApplicationPaths, LogManager);
2013-10-02 18:08:58 +02:00
await repo.Initialize().ConfigureAwait(false);
2013-10-07 16:38:31 +02:00
((UserDataManager)UserDataManager).Repository = repo;
2013-09-05 19:26:03 +02:00
}
/// <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-10-06 03:04:41 +02:00
Folder.UserManager = UserManager;
2013-10-30 16:07:30 +01:00
BaseItem.FileSystem = FileSystemManager;
2014-01-16 18:23:30 +01:00
BaseItem.UserDataManager = UserDataManager;
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<ILibraryPostScanTask>());
ProviderManager.AddParts(GetExports<IImageProvider>(), GetExports<IMetadataService>(), GetExports<IMetadataProvider>(),
2014-02-19 06:21:03 +01:00
GetExports<IMetadataSaver>(),
2014-02-21 19:48:15 +01:00
GetExports<IImageSaver>(),
GetExports<IExternalId>());
2013-08-10 03:40:52 +02:00
ImageProcessor.AddParts(GetExports<IImageEnhancer>());
2013-09-26 18:17:36 +02:00
LiveTvManager.AddParts(GetExports<ILiveTvService>());
SessionManager.AddParts(GetExports<ISessionControllerFactory>());
}
/// <summary>
/// Starts the server.
/// </summary>
/// <param name="retryOnFailure">if set to <c>true</c> [retry on failure].</param>
private void StartServer(bool retryOnFailure)
{
try
{
2014-01-09 05:44:51 +01:00
ServerManager.Start(HttpServerUrlPrefixes, ServerConfigurationManager.Configuration.EnableHttpLevelLogging);
}
2013-10-18 18:09:47 +02:00
catch (Exception ex)
{
2013-10-18 18:09:47 +02:00
Logger.ErrorException("Error starting http server", ex);
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;
2014-01-09 05:44:51 +01:00
if (!HttpServer.UrlPrefixes.SequenceEqual(HttpServerUrlPrefixes, StringComparer.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-10-07 16:38:31 +02:00
if (!CanSelfRestart)
{
throw new InvalidOperationException("The server is unable to self-restart. Please restart manually.");
}
2013-09-05 19:26:03 +02:00
try
{
await SessionManager.SendServerRestartNotification(CancellationToken.None).ConfigureAwait(false);
2013-09-05 19:26:03 +02:00
}
catch (Exception ex)
{
Logger.ErrorException("Error sending server restart notification", ex);
2013-09-05 19:26:03 +02:00
}
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 NativeApp.CanSelfUpdate;
2013-08-08 19:00:20 +02:00
}
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-12-29 15:12:29 +01:00
var list = GetPluginAssemblies()
2013-09-25 02:54:51 +02:00
.ToList();
2013-09-26 23:20:26 +02:00
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-12-15 19:29:34 +01:00
list.Add(typeof(IServerApplicationHost).Assembly);
2013-02-24 22:53:54 +01:00
2013-06-09 18:47:28 +02:00
// Include composable parts in the Providers assembly
list.Add(typeof(ProviderUtils).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);
2014-02-27 03:44:00 +01:00
// Dlna implementations
list.Add(typeof(PlayToServerEntryPoint).Assembly);
2014-02-28 05:49:02 +01:00
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
}
2013-12-29 15:12:29 +01:00
/// <summary>
/// Gets the plugin assemblies.
/// </summary>
/// <returns>IEnumerable{Assembly}.</returns>
private IEnumerable<Assembly> GetPluginAssemblies()
{
try
{
return Directory.EnumerateFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.TopDirectoryOnly)
.Select(LoadAssembly)
2013-12-29 18:07:29 +01:00
.Where(a => a != null)
.ToList();
2013-12-29 15:12:29 +01:00
}
catch (DirectoryNotFoundException)
{
return new List<Assembly>();
}
}
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,
2013-11-30 19:32:39 +01:00
LogPath = ApplicationPaths.LogDirectoryPath,
ItemsByNamePath = ApplicationPaths.ItemsByNamePath,
2013-12-15 02:17:57 +01:00
CachePath = ApplicationPaths.CachePath,
MacAddress = GetMacAddress(),
HttpServerPortNumber = ServerConfigurationManager.Configuration.HttpServerPortNumber,
2013-10-07 16:38:31 +02:00
OperatingSystem = Environment.OSVersion.ToString(),
CanSelfRestart = CanSelfRestart,
2013-12-08 20:39:39 +01:00
CanSelfUpdate = CanSelfUpdate,
2014-01-05 07:50:48 +01:00
WanAddress = GetWanAddress(),
2014-01-06 02:59:21 +01:00
HasUpdateAvailable = _hasUpdateAvailable,
2014-01-18 20:25:20 +01:00
SupportsAutoRunAtStartup = SupportsAutoRunAtStartup,
TranscodingTempPath = ApplicationPaths.TranscodingTempPath,
2014-03-01 05:12:39 +01:00
IsRunningAsService = IsRunningAsService,
ServerName = string.IsNullOrWhiteSpace(ServerConfigurationManager.Configuration.ServerName) ? Environment.MachineName : ServerConfigurationManager.Configuration.ServerName
2013-03-07 06:34:00 +01:00
};
}
2014-01-02 22:21:06 +01:00
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
private string GetWanAddress()
{
2014-03-05 03:59:59 +01:00
var ip = ServerConfigurationManager.Configuration.WanDdns;
if (string.IsNullOrWhiteSpace(ip))
{
ip = WanAddressEntryPoint.WanAddress;
}
2014-01-02 22:21:06 +01:00
if (!string.IsNullOrEmpty(ip))
{
2014-03-05 03:59:59 +01:00
if (!ip.StartsWith("http://", StringComparison.OrdinalIgnoreCase) &&
!ip.StartsWith("https://", StringComparison.OrdinalIgnoreCase))
{
ip = "http://" + ip;
}
return ip + ":" + ServerConfigurationManager.Configuration.HttpServerPortNumber.ToString(_usCulture);
2014-01-02 22:21:06 +01:00
}
return null;
}
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 SessionManager.SendServerShutdownNotification(CancellationToken.None).ConfigureAwait(false);
2013-09-05 19:26:03 +02:00
}
catch (Exception ex)
{
Logger.ErrorException("Error sending server shutdown notification", ex);
2013-09-05 19:26:03 +02:00
}
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
{
2014-01-09 05:44:51 +01:00
ServerAuthorization.AuthorizeServer(
ServerConfigurationManager.Configuration.HttpServerPortNumber,
2014-01-25 22:07:19 +01:00
HttpServerUrlPrefixes.First(),
2014-01-09 05:44:51 +01:00
ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber,
2013-09-25 02:54:51 +02:00
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
2014-01-05 07:50:48 +01:00
private bool _hasUpdateAvailable;
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, null, ApplicationVersion,
2013-10-01 17:16:38 +02:00
ConfigurationManager.CommonConfiguration.SystemUpdateLevel);
2013-09-14 03:56:03 +02:00
2014-01-05 07:50:48 +01:00
_hasUpdateAvailable = version != null;
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);
2014-01-05 07:50:48 +01:00
_hasUpdateAvailable = false;
2013-09-14 03:56:03 +02:00
OnApplicationUpdated(package.version);
}
2014-01-06 02:59:21 +01:00
/// <summary>
/// Configures the automatic run at startup.
/// </summary>
/// <param name="autorun">if set to <c>true</c> [autorun].</param>
2013-09-25 02:54:51 +02:00
protected override void ConfigureAutoRunAtStartup(bool autorun)
{
2014-01-06 02:59:21 +01:00
if (SupportsAutoRunAtStartup)
{
Autorun.Configure(autorun);
}
}
2013-02-24 22:53:54 +01:00
}
}