jellyfin/MediaBrowser.ServerApplication/ApplicationHost.cs

1115 lines
44 KiB
C#
Raw Normal View History

2014-08-24 17:48:06 +02:00
using MediaBrowser.Api;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Common;
using MediaBrowser.Common.Configuration;
2014-04-26 04:55:07 +02:00
using MediaBrowser.Common.Events;
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;
2014-08-11 00:13:17 +02:00
using MediaBrowser.Controller.Activity;
2014-03-18 02:45:41 +01:00
using MediaBrowser.Controller.Channels;
2014-06-09 21:16:14 +02:00
using MediaBrowser.Controller.Chapters;
using MediaBrowser.Controller.Collections;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
2014-08-25 05:54:45 +02:00
using MediaBrowser.Controller.Connect;
2014-03-13 20:08:02 +01:00
using MediaBrowser.Controller.Dlna;
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;
2014-08-02 04:34:45 +02:00
using MediaBrowser.Controller.Playlists;
using MediaBrowser.Controller.Plugins;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
2014-05-07 20:38:50 +02:00
using MediaBrowser.Controller.Security;
using MediaBrowser.Controller.Session;
2013-03-10 05:22:36 +01:00
using MediaBrowser.Controller.Sorting;
2014-05-07 04:28:19 +02:00
using MediaBrowser.Controller.Subtitles;
2014-07-18 00:21:35 +02:00
using MediaBrowser.Controller.Sync;
2014-02-28 05:49:02 +01:00
using MediaBrowser.Controller.Themes;
using MediaBrowser.Controller.TV;
2014-03-13 20:08:02 +01:00
using MediaBrowser.Dlna;
2014-05-21 02:56:24 +02:00
using MediaBrowser.Dlna.ConnectionManager;
using MediaBrowser.Dlna.ContentDirectory;
2014-04-27 05:42:05 +02:00
using MediaBrowser.Dlna.Main;
using MediaBrowser.LocalMetadata.Providers;
2014-03-27 20:30:21 +01:00
using MediaBrowser.MediaEncoding.BdInfo;
using MediaBrowser.MediaEncoding.Encoder;
using MediaBrowser.MediaEncoding.Subtitles;
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;
2014-06-09 21:16:14 +02:00
using MediaBrowser.Providers.Chapters;
using MediaBrowser.Providers.Manager;
2014-05-07 04:28:19 +02:00
using MediaBrowser.Providers.Subtitles;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Server.Implementations;
2014-08-11 00:13:17 +02:00
using MediaBrowser.Server.Implementations.Activity;
2014-03-18 02:45:41 +01:00
using MediaBrowser.Server.Implementations.Channels;
using MediaBrowser.Server.Implementations.Collections;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Server.Implementations.Configuration;
2014-08-25 05:54:45 +02:00
using MediaBrowser.Server.Implementations.Connect;
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.HttpServer.Security;
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;
2014-04-25 22:15:50 +02:00
using MediaBrowser.Server.Implementations.Notifications;
2013-06-17 22:35:43 +02:00
using MediaBrowser.Server.Implementations.Persistence;
2014-08-02 04:34:45 +02:00
using MediaBrowser.Server.Implementations.Playlists;
2014-05-07 20:38:50 +02:00
using MediaBrowser.Server.Implementations.Security;
2013-03-07 06:34:00 +01:00
using MediaBrowser.Server.Implementations.ServerManager;
using MediaBrowser.Server.Implementations.Session;
2014-07-18 00:21:35 +02:00
using MediaBrowser.Server.Implementations.Sync;
2014-02-28 05:49:02 +01:00
using MediaBrowser.Server.Implementations.Themes;
using MediaBrowser.Server.Implementations.TV;
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;
using MediaBrowser.XbmcMetadata.Providers;
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; }
private ISeriesOrderManager SeriesOrderManager { 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; }
2014-08-25 05:54:45 +02:00
private IConnectManager ConnectManager { 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
2014-03-31 03:00:47 +02:00
internal ILocalizationManager LocalizationManager { get; set; }
2014-02-20 17:37:41 +01:00
private IEncodingManager EncodingManager { get; set; }
2014-03-18 18:05:57 +01:00
private IChannelManager ChannelManager { get; set; }
2014-07-22 03:29:06 +02:00
private ISyncManager SyncManager { 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; }
2014-04-25 22:15:50 +02:00
private INotificationManager NotificationManager { get; set; }
2014-05-07 04:28:19 +02:00
private ISubtitleManager SubtitleManager { get; set; }
2014-06-09 21:16:14 +02:00
private IChapterManager ChapterManager { get; set; }
2014-04-25 22:15:50 +02:00
internal IUserViewManager UserViewManager { get; set; }
2014-06-07 21:46:24 +02:00
2014-07-08 03:41:03 +02:00
private IAuthenticationRepository AuthenticationRepository { get; set; }
2014-07-26 19:30:15 +02:00
private ISyncRepository SyncRepository { get; set; }
private ITVSeriesManager TVSeriesManager { get; set; }
2014-07-20 06:46:29 +02:00
2014-09-14 17:26:33 +02:00
private StartupOptions _startupOptions;
2013-09-21 03:04:14 +02:00
/// <summary>
2014-07-20 06:46:29 +02:00
/// Initializes a new instance of the <see cref="ApplicationHost" /> class.
2013-09-21 03:04:14 +02:00
/// </summary>
/// <param name="applicationPaths">The application paths.</param>
/// <param name="logManager">The log manager.</param>
2014-09-09 03:15:31 +02:00
/// <param name="supportsRunningAsService">if set to <c>true</c> [supports running as service].</param>
2014-07-20 06:46:29 +02:00
/// <param name="isRunningAsService">if set to <c>true</c> [is running as service].</param>
2014-09-14 17:26:33 +02:00
/// <param name="options">The options.</param>
public ApplicationHost(ServerApplicationPaths applicationPaths,
ILogManager logManager,
bool supportsRunningAsService,
bool isRunningAsService,
StartupOptions options)
2013-09-21 03:04:14 +02:00
: base(applicationPaths, logManager)
{
2014-09-14 17:26:33 +02:00
_startupOptions = options;
_isRunningAsService = isRunningAsService;
2014-09-09 03:15:31 +02:00
SupportsRunningAsService = supportsRunningAsService;
}
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-09-09 03:15:31 +02:00
public bool SupportsRunningAsService { get; private set; }
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-06-30 15:28:38 +02:00
public override async Task Init(IProgress<double> progress)
2014-02-13 06:11:54 +01:00
{
2014-06-29 19:35:05 +02:00
PerformVersionMigration();
2014-02-13 06:11:54 +01:00
2014-06-30 15:28:38 +02:00
await base.Init(progress).ConfigureAwait(false);
MigrateModularConfigurations();
2014-02-13 06:11:54 +01:00
}
2014-06-29 19:35:05 +02:00
private void PerformVersionMigration()
{
DeleteDeprecatedModules();
}
private void MigrateModularConfigurations()
{
2014-06-29 21:59:52 +02:00
var saveConfig = false;
if (saveConfig)
{
2014-06-29 19:35:05 +02:00
ServerConfigurationManager.SaveConfiguration();
}
}
2014-02-13 06:11:54 +01:00
private void DeleteDeprecatedModules()
{
2014-02-21 06:04:11 +01:00
try
{
MigrateUserFolders();
}
2014-03-23 21:07:02 +01:00
catch (IOException)
2014-02-21 06:04:11 +01:00
{
}
2014-02-13 06:11:54 +01:00
try
{
File.Delete(Path.Combine(ApplicationPaths.PluginsPath, "MBPhoto.dll"));
}
catch (IOException)
{
// Not there, no big deal
}
try
{
File.Delete(Path.Combine(ApplicationPaths.PluginsPath, "MediaBrowser.Plugins.XbmcMetadata.dll"));
}
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
2014-03-31 03:00:47 +02:00
LocalizationManager = new LocalizationManager(ServerConfigurationManager, FileSystemManager, JsonSerializer);
RegisterSingleInstance(LocalizationManager);
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);
2014-07-08 03:41:03 +02:00
AuthenticationRepository = await GetAuthenticationRepository().ConfigureAwait(false);
RegisterSingleInstance(AuthenticationRepository);
2014-07-30 05:31:35 +02:00
//SyncRepository = await GetSyncRepository().ConfigureAwait(false);
//RegisterSingleInstance(SyncRepository);
2014-07-26 19:30:15 +02:00
2014-08-15 18:35:41 +02:00
UserManager = new UserManager(LogManager.GetLogger("UserManager"), ServerConfigurationManager, UserRepository, XmlSerializer, NetworkManager, () => ImageProcessor, () => DtoService);
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-04-02 23:55:19 +02:00
var musicManager = new MusicManager(LibraryManager);
RegisterSingleInstance<IMusicManager>(new MusicManager(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);
SeriesOrderManager = new SeriesOrderManager();
RegisterSingleInstance(SeriesOrderManager);
2014-01-07 21:12:39 +01:00
RegisterSingleInstance<ISearchEngine>(() => new SearchEngine(LogManager, LibraryManager, UserManager));
2013-04-05 21:34:33 +02:00
HttpServer = ServerFactory.CreateServer(this, LogManager, "Media Browser", WebApplicationName, "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
2014-03-26 16:06:48 +01:00
ServerManager = new ServerManager(this, JsonSerializer, LogManager.GetLogger("ServerManager"), ServerConfigurationManager);
RegisterSingleInstance(ServerManager);
2014-03-28 04:32:43 +01:00
var innerProgress = new ActionableProgress<double>();
innerProgress.RegisterAction(p => progress.Report((.75 * p) + 15));
await RegisterMediaEncoder(innerProgress).ConfigureAwait(false);
progress.Report(90);
ImageProcessor = new ImageProcessor(LogManager.GetLogger("ImageProcessor"), ServerConfigurationManager.ApplicationPaths, FileSystemManager, JsonSerializer, MediaEncoder);
2013-09-18 20:49:06 +02:00
RegisterSingleInstance(ImageProcessor);
2014-07-26 19:30:15 +02:00
SyncManager = new SyncManager(LibraryManager, SyncRepository, ImageProcessor, LogManager.GetLogger("SyncManager"));
2014-07-22 18:36:34 +02:00
RegisterSingleInstance(SyncManager);
DtoService = new DtoService(Logger, LibraryManager, UserDataManager, ItemRepository, ImageProcessor, ServerConfigurationManager, FileSystemManager, ProviderManager, () => ChannelManager, SyncManager);
2013-09-04 19:02:19 +02:00
RegisterSingleInstance(DtoService);
2014-01-18 22:52:01 +01:00
2014-08-25 05:54:45 +02:00
var encryptionManager = new EncryptionManager();
RegisterSingleInstance<IEncryptionManager>(encryptionManager);
2014-09-14 17:10:51 +02:00
ConnectManager = new ConnectManager(LogManager.GetLogger("Connect"), ApplicationPaths, JsonSerializer, encryptionManager, HttpClient, this, ServerConfigurationManager, UserManager);
2014-08-25 05:54:45 +02:00
RegisterSingleInstance(ConnectManager);
2014-07-08 03:41:03 +02:00
SessionManager = new SessionManager(UserDataManager, ServerConfigurationManager, Logger, UserRepository, LibraryManager, UserManager, musicManager, DtoService, ImageProcessor, ItemRepository, JsonSerializer, this, HttpClient, AuthenticationRepository);
2014-04-06 19:53:23 +02:00
RegisterSingleInstance(SessionManager);
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);
2014-03-26 16:06:48 +01:00
var fileOrganizationService = new FileOrganizationService(TaskManager, FileOrganizationRepository, LogManager.GetLogger("FileOrganizationService"), LibraryMonitor, LibraryManager, ServerConfigurationManager, FileSystemManager, ProviderManager);
RegisterSingleInstance<IFileOrganizationService>(fileOrganizationService);
progress.Report(15);
2014-06-07 21:46:24 +02:00
ChannelManager = new ChannelManager(UserManager, DtoService, LibraryManager, Logger, ServerConfigurationManager, FileSystemManager, UserDataManager, JsonSerializer, LocalizationManager);
2014-03-18 18:05:57 +01:00
RegisterSingleInstance(ChannelManager);
2014-03-18 02:45:41 +01:00
TVSeriesManager = new TVSeriesManager(UserManager, UserDataManager, LibraryManager);
RegisterSingleInstance(TVSeriesManager);
2014-02-28 05:49:02 +01:00
var appThemeManager = new AppThemeManager(ApplicationPaths, FileSystemManager, JsonSerializer, Logger);
RegisterSingleInstance<IAppThemeManager>(appThemeManager);
2014-04-21 18:02:30 +02:00
var dlnaManager = new DlnaManager(XmlSerializer, FileSystemManager, ApplicationPaths, LogManager.GetLogger("Dlna"), JsonSerializer);
2014-03-13 20:08:02 +01:00
RegisterSingleInstance<IDlnaManager>(dlnaManager);
2014-05-21 03:15:46 +02:00
var connectionManager = new ConnectionManager(dlnaManager, ServerConfigurationManager, LogManager.GetLogger("UpnpConnectionManager"), HttpClient);
2014-05-21 02:56:24 +02:00
RegisterSingleInstance<IConnectionManager>(connectionManager);
2014-07-08 03:41:03 +02:00
var collectionManager = new CollectionManager(LibraryManager, FileSystemManager, LibraryMonitor, LogManager.GetLogger("CollectionManager"));
RegisterSingleInstance<ICollectionManager>(collectionManager);
2014-08-02 04:34:45 +02:00
var playlistManager = new PlaylistManager(LibraryManager, FileSystemManager, LibraryMonitor, LogManager.GetLogger("PlaylistManager"), UserManager);
RegisterSingleInstance<IPlaylistManager>(playlistManager);
2014-08-15 18:35:41 +02:00
LiveTvManager = new LiveTvManager(ServerConfigurationManager, FileSystemManager, Logger, ItemRepository, ImageProcessor, UserDataManager, DtoService, UserManager, LibraryManager, TaskManager, LocalizationManager, JsonSerializer);
2014-01-12 07:31:21 +01:00
RegisterSingleInstance(LiveTvManager);
2014-08-02 04:34:45 +02:00
UserViewManager = new UserViewManager(LibraryManager, LocalizationManager, FileSystemManager, UserManager, ChannelManager, LiveTvManager, ApplicationPaths, playlistManager);
2014-06-07 21:46:24 +02:00
RegisterSingleInstance(UserViewManager);
var contentDirectory = new ContentDirectory(dlnaManager, UserDataManager, ImageProcessor, LibraryManager, ServerConfigurationManager, UserManager, LogManager.GetLogger("UpnpContentDirectory"), HttpClient);
2014-07-30 05:31:35 +02:00
RegisterSingleInstance<IContentDirectory>(contentDirectory);
2014-04-27 05:42:05 +02:00
NotificationManager = new NotificationManager(LogManager, UserManager, ServerConfigurationManager);
2014-04-25 22:15:50 +02:00
RegisterSingleInstance(NotificationManager);
2014-05-17 06:24:10 +02:00
SubtitleManager = new SubtitleManager(LogManager.GetLogger("SubtitleManager"), FileSystemManager, LibraryMonitor, LibraryManager, ItemRepository);
2014-05-07 04:28:19 +02:00
RegisterSingleInstance(SubtitleManager);
2014-06-10 19:36:06 +02:00
ChapterManager = new ChapterManager(LibraryManager, LogManager.GetLogger("ChapterManager"), ServerConfigurationManager, ItemRepository);
2014-06-09 21:16:14 +02:00
RegisterSingleInstance(ChapterManager);
2014-06-10 19:36:06 +02:00
EncodingManager = new EncodingManager(ServerConfigurationManager, FileSystemManager, Logger,
MediaEncoder, ChapterManager);
RegisterSingleInstance(EncodingManager);
2014-08-11 00:13:17 +02:00
var activityLogRepo = await GetActivityLogRepository().ConfigureAwait(false);
RegisterSingleInstance(activityLogRepo);
RegisterSingleInstance<IActivityManager>(new ActivityManager(LogManager.GetLogger("ActivityManager"), activityLogRepo));
var authContext = new AuthorizationContext();
RegisterSingleInstance<IAuthorizationContext>(authContext);
RegisterSingleInstance<ISessionContext>(new SessionContext(UserManager, authContext, SessionManager));
2014-07-08 03:41:03 +02:00
RegisterSingleInstance<IAuthService>(new AuthService(UserManager, SessionManager, authContext, ServerConfigurationManager));
2014-08-22 17:47:44 +02:00
RegisterSingleInstance<ISubtitleEncoder>(new SubtitleEncoder(LibraryManager, LogManager.GetLogger("SubtitleEncoder"), ApplicationPaths, FileSystemManager, MediaEncoder, JsonSerializer));
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();
}
2014-08-20 00:28:35 +02:00
protected override INetworkManager CreateNetworkManager(ILogger logger)
{
2014-08-20 00:28:35 +02:00
return new NetworkManager(logger);
}
protected override IFileSystem CreateFileSystemManager()
{
return FileSystemFactory.CreateFileSystemManager(LogManager);
}
/// <summary>
/// Registers the media encoder.
/// </summary>
/// <returns>Task.</returns>
private async Task RegisterMediaEncoder(IProgress<double> progress)
{
2014-09-14 17:26:33 +02:00
var info = await new FFMpegDownloader(Logger, ApplicationPaths, HttpClient, ZipClient, FileSystemManager).GetFFMpegInfo(_startupOptions, progress).ConfigureAwait(false);
2014-06-26 19:04:11 +02:00
MediaEncoder = new MediaEncoder(LogManager.GetLogger("MediaEncoder"), JsonSerializer, info.EncoderPath, info.ProbePath, info.Version);
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;
}
2014-07-08 03:41:03 +02:00
private async Task<IAuthenticationRepository> GetAuthenticationRepository()
{
var repo = new AuthenticationRepository(LogManager.GetLogger("AuthenticationRepository"), ServerConfigurationManager.ApplicationPaths);
await repo.Initialize().ConfigureAwait(false);
return repo;
}
2014-08-11 00:13:17 +02:00
private async Task<IActivityRepository> GetActivityLogRepository()
{
var repo = new ActivityRepository(LogManager.GetLogger("ActivityRepository"), ServerConfigurationManager.ApplicationPaths);
await repo.Initialize().ConfigureAwait(false);
return repo;
}
2014-07-26 19:30:15 +02:00
private async Task<ISyncRepository> GetSyncRepository()
{
var repo = new SyncRepository(LogManager.GetLogger("SyncRepository"), 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;
BaseItem.ChannelManager = ChannelManager;
2014-08-14 15:24:30 +02:00
BaseItem.LiveTvManager = LiveTvManager;
Folder.UserViewManager = UserViewManager;
UserView.TVSeriesManager = TVSeriesManager;
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<IItemIdentityProvider>(),
GetExports<IItemIdentityConverter>(),
GetExports<IMetadataProvider>(),
GetExports<IMetadataSaver>(),
GetExports<IImageSaver>(),
GetExports<IExternalId>());
2013-08-10 03:40:52 +02:00
SeriesOrderManager.AddParts(GetExports<ISeriesOrderProvider>());
ImageProcessor.AddParts(GetExports<IImageEnhancer>());
2013-09-26 18:17:36 +02:00
LiveTvManager.AddParts(GetExports<ILiveTvService>());
2014-05-07 04:28:19 +02:00
SubtitleManager.AddParts(GetExports<ISubtitleProvider>());
2014-06-09 21:16:14 +02:00
ChapterManager.AddParts(GetExports<IChapterProvider>());
SessionManager.AddParts(GetExports<ISessionControllerFactory>());
2014-03-18 18:05:57 +01:00
2014-05-04 01:38:23 +02:00
ChannelManager.AddParts(GetExports<IChannel>(), GetExports<IChannelFactory>());
2014-04-25 22:15:50 +02:00
2014-04-27 05:42:05 +02:00
NotificationManager.AddParts(GetExports<INotificationService>(), GetExports<INotificationTypeFactory>());
2014-07-22 03:29:06 +02:00
SyncManager.AddParts(GetExports<ISyncProvider>());
}
/// <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-07-19 00:14:59 +02:00
ServerManager.Start(HttpServerUrlPrefixes);
}
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;
}
}
}
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);
2014-01-09 05:44:51 +01:00
if (!HttpServer.UrlPrefixes.SequenceEqual(HttpServerUrlPrefixes, StringComparer.OrdinalIgnoreCase))
2013-05-07 21:07:51 +02:00
{
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
}
2014-06-04 18:15:44 +02:00
Logger.Debug("Calling NativeApp.Restart");
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
2014-03-11 01:54:31 +01:00
#pragma warning disable 162
return NativeApp.CanSelfUpdate;
2014-03-11 01:54:31 +01:00
#pragma warning restore 162
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
2014-03-25 22:13:55 +01:00
list.Add(typeof(DashboardService).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-03-27 20:30:21 +01:00
// MediaEncoding
list.Add(typeof(MediaEncoder).Assembly);
// Dlna
2014-04-27 05:42:05 +02:00
list.Add(typeof(DlnaEntryPoint).Assembly);
2014-02-28 05:49:02 +01:00
// Local metadata
list.Add(typeof(AlbumXmlProvider).Assembly);
// Xbmc
list.Add(typeof(ArtistNfoProvider).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
}
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>();
}
}
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,
2014-07-30 05:31:35 +02:00
WebSocketPortNumber = HttpServerPort,
2014-07-19 03:28:40 +02:00
SupportsNativeWebSocket = true,
FailedPluginAssemblies = FailedAssemblies.ToList(),
InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToList(),
CompletedInstallations = InstallationManager.CompletedInstallations.ToList(),
2014-09-06 19:46:09 +02:00
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,
2014-03-31 23:04:22 +02:00
InternalMetadataPath = ApplicationPaths.InternalMetadataPath,
2013-12-15 02:17:57 +01:00
CachePath = ApplicationPaths.CachePath,
MacAddress = GetMacAddress(),
2014-03-17 05:25:11 +01:00
HttpServerPortNumber = HttpServerPort,
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-08-25 05:54:45 +02:00
WanAddress = ConnectManager.WanApiAddress,
2014-04-26 04:55:07 +02: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,
2014-09-09 03:15:31 +02:00
SupportsRunningAsService = SupportsRunningAsService,
2014-08-20 00:28:35 +02:00
ServerName = FriendlyName,
LocalAddress = GetLocalIpAddress()
2013-03-07 06:34:00 +01:00
};
}
2014-08-20 00:28:35 +02:00
/// <summary>
/// Gets the local ip address.
/// </summary>
/// <returns>System.String.</returns>
private string GetLocalIpAddress()
{
var localAddresses = NetworkManager.GetLocalIpAddresses().ToList();
// Cross-check the local ip addresses with addresses that have been received on with the http server
var matchedAddress = HttpServer.LocalEndPoints
.ToList()
.Select(i => i.Split(':').FirstOrDefault())
.Where(i => !string.IsNullOrEmpty(i))
.FirstOrDefault(i => localAddresses.Contains(i, StringComparer.OrdinalIgnoreCase));
// Return the first matched address, if found, or the first known local address
var address = matchedAddress ?? localAddresses.FirstOrDefault();
if (!string.IsNullOrWhiteSpace(address))
{
address = string.Format("http://{0}:{1}",
address,
ServerConfigurationManager.Configuration.HttpServerPortNumber.ToString(CultureInfo.InvariantCulture));
}
return address;
}
public string FriendlyName
{
get
{
return string.IsNullOrWhiteSpace(ServerConfigurationManager.Configuration.ServerName)
? Environment.MachineName
: ServerConfigurationManager.Configuration.ServerName;
}
}
2014-03-17 05:25:11 +01:00
public int HttpServerPort
{
get { return ServerConfigurationManager.Configuration.HttpServerPortNumber; }
}
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(),
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-04-26 04:55:07 +02:00
public event EventHandler HasUpdateAvailableChanged;
2014-01-05 07:50:48 +01:00
private bool _hasUpdateAvailable;
2014-04-26 04:55:07 +02:00
public bool HasUpdateAvailable
{
get { return _hasUpdateAvailable; }
set
{
var fireEvent = value && !_hasUpdateAvailable;
_hasUpdateAvailable = value;
if (fireEvent)
{
EventHelper.FireEventIfNotNull(HasUpdateAvailableChanged, this, EventArgs.Empty, Logger);
}
}
}
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
{
2014-08-07 04:51:09 +02:00
var result = await NativeApp.CheckForApplicationUpdate(ApplicationVersion,
ConfigurationManager.CommonConfiguration.SystemUpdateLevel, InstallationManager,
cancellationToken, progress).ConfigureAwait(false);
2013-09-14 03:56:03 +02:00
2014-08-07 04:51:09 +02:00
HasUpdateAvailable = result.IsUpdateAvailable;
2013-09-14 03:56:03 +02:00
2014-08-07 04:51:09 +02:00
if (result.IsUpdateAvailable)
2014-07-09 16:39:04 +02:00
{
2014-08-07 04:51:09 +02:00
Logger.Info("New application version is available: {0}", result.AvailableVersion);
2014-07-09 16:39:04 +02:00
}
2014-08-07 04:51:09 +02:00
return result;
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-04-26 04:55:07 +02:00
HasUpdateAvailable = false;
2014-01-05 07:50:48 +01:00
2014-04-30 17:07:02 +02:00
OnApplicationUpdated(package);
2013-09-14 03:56:03 +02:00
}
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
}
}