jellyfin/Emby.Server.Core/ApplicationHost.cs

1663 lines
73 KiB
C#
Raw Normal View History

2016-11-11 18:33:10 +01: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;
2015-01-19 07:42:31 +01:00
using MediaBrowser.Common.Extensions;
2016-10-29 22:02:21 +02:00
using Emby.Common.Implementations.ScheduledTasks;
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-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-10-11 22:38:13 +02:00
using MediaBrowser.Controller.Devices;
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;
2014-02-20 17:37:41 +01:00
using MediaBrowser.Controller.MediaEncoding;
2013-12-07 16:52:38 +01:00
using MediaBrowser.Controller.Net;
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;
using MediaBrowser.Controller.TV;
2015-05-31 20:22:51 +02:00
using MediaBrowser.LocalMetadata.Savers;
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;
using MediaBrowser.WebDashboard.Api;
using MediaBrowser.XbmcMetadata.Providers;
2013-02-24 22:53:54 +01:00
using System;
2015-12-29 04:39:38 +01:00
using System.Collections.Concurrent;
2013-02-24 22:53:54 +01:00
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;
2015-12-29 04:39:38 +01:00
using System.Net;
2016-03-09 18:40:29 +01:00
using System.Net.Sockets;
2013-02-24 22:53:54 +01:00
using System.Reflection;
2016-11-11 04:29:51 +01:00
using System.Security.Cryptography.X509Certificates;
using System.Threading;
2013-02-24 22:53:54 +01:00
using System.Threading.Tasks;
2016-10-29 22:02:21 +02:00
using Emby.Common.Implementations;
2016-11-11 05:25:21 +01:00
using Emby.Common.Implementations.Archiving;
2016-10-29 22:02:21 +02:00
using Emby.Common.Implementations.Networking;
2016-11-03 23:34:16 +01:00
using Emby.Common.Implementations.Reflection;
2016-11-11 02:37:20 +01:00
using Emby.Common.Implementations.Serialization;
2016-11-03 23:34:16 +01:00
using Emby.Common.Implementations.TextEncoding;
using Emby.Common.Implementations.Xml;
using Emby.Photos;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
2016-08-19 02:10:10 +02:00
using MediaBrowser.Api.Playback;
2016-10-29 06:10:11 +02:00
using MediaBrowser.Common.Plugins;
2016-10-29 07:40:15 +02:00
using MediaBrowser.Common.Security;
using MediaBrowser.Common.Updates;
2016-10-08 07:57:38 +02:00
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Entities.TV;
2016-10-30 00:34:54 +02:00
using Emby.Dlna;
using Emby.Dlna.ConnectionManager;
using Emby.Dlna.ContentDirectory;
using Emby.Dlna.Main;
using Emby.Dlna.MediaReceiverRegistrar;
using Emby.Dlna.Ssdp;
2016-11-11 06:23:15 +01:00
using Emby.Server.Core;
2016-11-18 09:39:20 +01:00
using Emby.Server.Implementations.Activity;
2016-11-11 07:43:42 +01:00
using Emby.Server.Core.Configuration;
2016-11-18 09:39:20 +01:00
using Emby.Server.Implementations.Devices;
2016-11-18 22:06:00 +01:00
using Emby.Server.Implementations.FFMpeg;
2016-11-11 08:30:03 +01:00
using Emby.Server.Core.IO;
2016-11-11 08:24:36 +01:00
using Emby.Server.Core.Localization;
using Emby.Server.Implementations.Migrations;
2016-11-18 10:28:39 +01:00
using Emby.Server.Implementations.Security;
2016-11-18 09:39:20 +01:00
using Emby.Server.Implementations.Social;
using Emby.Server.Implementations.Sync;
using Emby.Server.Implementations.Channels;
using Emby.Server.Implementations.Collections;
2016-11-04 19:56:47 +01:00
using Emby.Server.Implementations.Connect;
using Emby.Server.Implementations.Dto;
2016-11-04 19:56:47 +01:00
using Emby.Server.Implementations.EntryPoints;
using Emby.Server.Implementations.FileOrganization;
2016-11-11 02:37:20 +01:00
using Emby.Server.Implementations.HttpServer;
2016-11-04 02:18:51 +01:00
using Emby.Server.Implementations.HttpServer.Security;
using Emby.Server.Implementations.Library;
2016-11-04 00:35:19 +01:00
using Emby.Server.Implementations.LiveTv;
2016-11-05 03:17:18 +01:00
using Emby.Server.Implementations.Localization;
using Emby.Server.Implementations.MediaEncoder;
2016-11-03 08:35:00 +01:00
using Emby.Server.Implementations.Notifications;
2016-11-18 09:39:20 +01:00
using Emby.Server.Implementations.Data;
using Emby.Server.Implementations.Playlists;
2016-11-18 22:06:00 +01:00
using Emby.Server.Implementations;
2016-11-03 23:53:02 +01:00
using Emby.Server.Implementations.ServerManager;
2016-11-04 00:35:19 +01:00
using Emby.Server.Implementations.Session;
2016-11-08 23:28:04 +01:00
using Emby.Server.Implementations.Social;
2016-11-03 23:34:16 +01:00
using Emby.Server.Implementations.Sync;
2016-11-03 08:14:14 +01:00
using Emby.Server.Implementations.TV;
using Emby.Server.Implementations.Updates;
2016-10-24 02:09:43 +02:00
using MediaBrowser.Model.Activity;
2016-11-09 05:58:58 +01:00
using MediaBrowser.Model.Configuration;
2016-10-29 22:02:21 +02:00
using MediaBrowser.Model.Dlna;
2016-10-24 04:45:23 +02:00
using MediaBrowser.Model.Globalization;
2016-10-26 03:57:58 +02:00
using MediaBrowser.Model.Net;
2016-10-24 02:09:43 +02:00
using MediaBrowser.Model.News;
2016-10-26 08:01:42 +02:00
using MediaBrowser.Model.Reflection;
2016-10-08 07:57:38 +02:00
using MediaBrowser.Model.Serialization;
2016-10-26 08:01:42 +02:00
using MediaBrowser.Model.Services;
2016-10-24 02:09:43 +02:00
using MediaBrowser.Model.Social;
2016-11-08 19:44:23 +01:00
using MediaBrowser.Model.Text;
2016-10-26 04:53:47 +02:00
using MediaBrowser.Model.Xml;
2016-10-28 00:54:56 +02:00
using OpenSubtitlesHandler;
2016-10-29 06:10:11 +02:00
using ServiceStack;
2016-11-11 04:29:51 +01:00
using SocketHttpListener.Primitives;
2016-10-29 06:10:11 +02:00
using StringExtensions = MediaBrowser.Controller.Extensions.StringExtensions;
2016-11-11 18:33:10 +01:00
using Emby.Drawing;
2016-11-18 09:39:20 +01:00
using Emby.Server.Implementations.Migrations;
2016-11-21 00:48:52 +01:00
using MediaBrowser.Model.Diagnostics;
using Emby.Common.Implementations.Diagnostics;
2013-02-24 22:53:54 +01:00
2016-11-11 18:33:10 +01:00
namespace Emby.Server.Core
2013-02-24 22:53:54 +01:00
{
/// <summary>
/// Class CompositionRoot
/// </summary>
2016-11-13 05:33:51 +01:00
public abstract class ApplicationHost : BaseApplicationHost<ServerApplicationPaths>, IServerApplicationHost, IDependencyContainer
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-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
{
2015-09-14 01:07:54 +02:00
return new ServerConfigurationManager(ApplicationPaths, LogManager, XmlSerializer, FileSystemManager);
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; }
2015-01-02 07:12:58 +01:00
private ISubtitleEncoder SubtitleEncoder { 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
public 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-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-10-11 22:38:13 +02:00
private IDeviceManager DeviceManager { 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-10-08 03:37:45 +02:00
private ICollectionManager CollectionManager { get; set; }
private IMediaSourceManager MediaSourceManager { get; set; }
2015-03-14 05:50:23 +01:00
private IPlaylistManager PlaylistManager { get; set; }
2014-07-20 06:46:29 +02:00
2016-10-29 07:40:15 +02:00
/// <summary>
/// Gets or sets the installation manager.
/// </summary>
/// <value>The installation manager.</value>
protected IInstallationManager InstallationManager { get; private set; }
/// <summary>
/// Gets the security manager.
/// </summary>
/// <value>The security manager.</value>
protected ISecurityManager SecurityManager { get; private set; }
2016-10-28 20:35:17 +02:00
/// <summary>
/// Gets or sets the zip client.
/// </summary>
/// <value>The zip client.</value>
protected IZipClient ZipClient { get; private set; }
2016-11-08 19:44:23 +01:00
protected IAuthService AuthService { get; private set; }
2016-11-13 05:33:51 +01:00
protected readonly StartupOptions StartupOptions;
2016-01-03 20:01:05 +01:00
private readonly string _releaseAssetFilename;
2014-09-14 17:26:33 +02:00
2016-11-09 05:58:58 +01:00
internal IPowerManagement PowerManagement { get; private set; }
2016-11-11 18:33:10 +01:00
internal IImageEncoder ImageEncoder { get; private set; }
private readonly Action<string, string> _certificateGenerator;
private readonly Func<string> _defaultUserNameFactory;
2016-11-09 05:58:58 +01:00
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>
2014-12-22 02:02:15 +01:00
public ApplicationHost(ServerApplicationPaths applicationPaths,
ILogManager logManager,
StartupOptions options,
2014-10-07 01:58:46 +02:00
IFileSystem fileSystem,
2016-11-09 05:58:58 +01:00
IPowerManagement powerManagement,
2016-11-11 09:13:11 +01:00
string releaseAssetFilename,
2016-11-11 18:33:10 +01:00
IEnvironmentInfo environmentInfo,
IImageEncoder imageEncoder,
ISystemEvents systemEvents,
IMemoryStreamFactory memoryStreamFactory,
INetworkManager networkManager,
Action<string, string> certificateGenerator,
Func<string> defaultUsernameFactory)
2016-11-18 09:39:20 +01:00
: base(applicationPaths,
logManager,
fileSystem,
environmentInfo,
systemEvents,
memoryStreamFactory,
2016-11-11 18:33:10 +01:00
networkManager)
{
2016-11-13 05:33:51 +01:00
StartupOptions = options;
2016-11-11 18:33:10 +01:00
_certificateGenerator = certificateGenerator;
2016-01-03 20:01:05 +01:00
_releaseAssetFilename = releaseAssetFilename;
2016-11-11 18:33:10 +01:00
_defaultUserNameFactory = defaultUsernameFactory;
2016-11-09 05:58:58 +01:00
PowerManagement = powerManagement;
2014-12-17 23:39:17 +01:00
2016-11-11 18:33:10 +01:00
ImageEncoder = imageEncoder;
2014-12-17 23:39:17 +01:00
SetBaseExceptionMessage();
}
2013-09-21 03:04:14 +02:00
2014-11-14 07:27:10 +01:00
private Version _version;
/// <summary>
/// Gets the current application version
/// </summary>
/// <value>The application version.</value>
public override Version ApplicationVersion
{
get
{
2016-11-13 05:33:51 +01:00
return _version ?? (_version = GetAssembly(GetType()).GetName().Version);
2014-11-14 07:27:10 +01:00
}
}
2016-11-13 05:33:51 +01:00
public abstract bool SupportsRunningAsService { get; }
2014-09-09 03:15:31 +02:00
2014-01-25 22:07:19 +01:00
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public override string Name
{
get
{
return "Emby Server";
2014-01-25 22:07:19 +01:00
}
}
2016-11-11 18:33:10 +01:00
private Assembly GetAssembly(Type type)
{
return type.GetTypeInfo().Assembly;
}
2016-11-13 05:33:51 +01:00
public abstract bool SupportsAutoRunAtStartup { get; }
2014-01-06 02:59:21 +01:00
2014-12-17 23:39:17 +01:00
private void SetBaseExceptionMessage()
{
var builder = GetBaseExceptionMessage(ApplicationPaths);
// Skip if plugins haven't been loaded yet
//if (Plugins != null)
//{
// var pluginString = string.Join("|", Plugins.Select(i => i.Name + "-" + i.Version.ToString()).ToArray());
// builder.Insert(0, string.Format("Plugins: {0}{1}", pluginString, Environment.NewLine));
//}
builder.Insert(0, string.Format("Version: {0}{1}", ApplicationVersion, Environment.NewLine));
builder.Insert(0, "*** Error Report ***" + Environment.NewLine);
LogManager.ExceptionMessagePrefix = builder.ToString();
}
/// <summary>
2013-03-10 07:45:16 +01:00
/// Runs the startup tasks.
/// </summary>
2013-05-19 00:07:59 +02:00
public override async Task RunStartupTasks()
2013-03-07 06:34:00 +01:00
{
2016-09-17 08:09:29 +02:00
await PerformPreInitMigrations().ConfigureAwait(false);
2013-03-10 07:45:16 +01:00
await base.RunStartupTasks().ConfigureAwait(false);
2016-06-30 06:23:52 +02:00
await MediaEncoder.Init().ConfigureAwait(false);
2016-06-20 08:19:28 +02:00
2016-09-09 18:58:08 +02:00
if (string.IsNullOrWhiteSpace(MediaEncoder.EncoderPath))
{
if (ServerConfigurationManager.Configuration.IsStartupWizardCompleted)
{
ServerConfigurationManager.Configuration.IsStartupWizardCompleted = false;
ServerConfigurationManager.SaveConfiguration();
}
}
2015-12-30 08:11:58 +01:00
Logger.Info("ServerId: {0}", SystemId);
Logger.Info("Core startup complete");
2015-09-14 01:07:54 +02:00
HttpServer.GlobalResponse = null;
2016-02-03 23:42:33 +01:00
PerformPostInitMigrations();
2016-06-30 00:01:35 +02:00
Logger.Info("Post-init migrations complete");
2016-02-03 23:42:33 +01:00
2016-06-30 00:01:35 +02:00
foreach (var entryPoint in GetExports<IServerEntryPoint>().ToList())
2013-06-22 01:38:19 +02:00
{
2016-06-30 00:01:35 +02:00
var name = entryPoint.GetType().FullName;
2016-06-30 03:23:58 +02:00
Logger.Info("Starting entry point {0}", name);
var now = DateTime.UtcNow;
2013-06-22 01:38:19 +02:00
try
{
entryPoint.Run();
}
catch (Exception ex)
{
2016-06-30 00:01:35 +02:00
Logger.ErrorException("Error in {0}", ex, name);
2013-06-22 01:38:19 +02:00
}
Logger.Info("Entry point completed: {0}. Duration: {1} seconds", name, (DateTime.UtcNow - now).TotalSeconds.ToString(CultureInfo.InvariantCulture));
2016-06-30 00:01:35 +02:00
}
2016-06-30 03:23:58 +02:00
Logger.Info("All entry points have started");
2014-01-09 05:44:51 +01:00
LogManager.RemoveConsoleOutput();
2013-03-07 06:34:00 +01:00
}
2016-10-08 07:57:38 +02:00
protected override IJsonSerializer CreateJsonSerializer()
{
2016-10-29 06:10:11 +02:00
try
{
// https://github.com/ServiceStack/ServiceStack/blob/master/tests/ServiceStack.WebHost.IntegrationTests/Web.config#L4
Licensing.RegisterLicense("1001-e1JlZjoxMDAxLE5hbWU6VGVzdCBCdXNpbmVzcyxUeXBlOkJ1c2luZXNzLEhhc2g6UHVNTVRPclhvT2ZIbjQ5MG5LZE1mUTd5RUMzQnBucTFEbTE3TDczVEF4QUNMT1FhNXJMOWkzVjFGL2ZkVTE3Q2pDNENqTkQyUktRWmhvUVBhYTBiekJGUUZ3ZE5aZHFDYm9hL3lydGlwUHI5K1JsaTBYbzNsUC85cjVJNHE5QVhldDN6QkE4aTlvdldrdTgyTk1relY2eis2dFFqTThYN2lmc0JveHgycFdjPSxFeHBpcnk6MjAxMy0wMS0wMX0=");
}
catch
{
// Failing under mono
}
var result = new JsonSerializer(FileSystemManager, LogManager.GetLogger("JsonSerializer"));
2016-10-08 07:57:38 +02:00
2016-10-31 06:51:43 +01:00
ServiceStack.Text.JsConfig<LiveTvProgram>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<LiveTvChannel>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<LiveTvVideoRecording>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<LiveTvAudioRecording>.ExcludePropertyNames = new[] { "Artists", "AlbumArtists", "ChannelMediaSources", "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Series>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Audio>.ExcludePropertyNames = new[] { "Artists", "AlbumArtists", "ChannelMediaSources", "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<MusicAlbum>.ExcludePropertyNames = new[] { "Artists", "AlbumArtists", "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<MusicArtist>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<MusicGenre>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<MusicVideo>.ExcludePropertyNames = new[] { "Artists", "AlbumArtists", "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Movie>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Playlist>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<AudioPodcast>.ExcludePropertyNames = new[] { "Artists", "AlbumArtists", "ChannelMediaSources", "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
2016-12-12 06:49:19 +01:00
ServiceStack.Text.JsConfig<AudioBook>.ExcludePropertyNames = new[] { "Artists", "AlbumArtists", "ChannelMediaSources", "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
2016-10-31 06:51:43 +01:00
ServiceStack.Text.JsConfig<Trailer>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<BoxSet>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Episode>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Season>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Book>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<CollectionFolder>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Folder>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Game>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<GameGenre>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<GameSystem>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Genre>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Person>.ExcludePropertyNames = new[] { "PlaceOfBirth", "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Photo>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<PhotoAlbum>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Studio>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<UserRootFolder>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<UserView>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Video>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Year>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<Channel>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
ServiceStack.Text.JsConfig<AggregateFolder>.ExcludePropertyNames = new[] { "ProviderIds", "ImageInfos", "ProductionLocations", "ThemeSongIds", "ThemeVideoIds", "TotalBitrate", "ShortOverview", "Taglines", "Keywords", "ExtraType" };
2016-10-09 09:18:43 +02:00
2016-10-08 07:57:38 +02:00
return result;
}
2015-10-16 20:11:11 +02:00
public override Task Init(IProgress<double> progress)
2014-02-13 06:11:54 +01:00
{
2015-01-19 05:29:57 +01:00
HttpPort = ServerConfigurationManager.Configuration.HttpServerPortNumber;
HttpsPort = ServerConfigurationManager.Configuration.HttpsPortNumber;
2016-11-09 05:58:58 +01:00
// Safeguard against invalid configuration
if (HttpPort == HttpsPort)
{
HttpPort = ServerConfiguration.DefaultHttpPort;
HttpsPort = ServerConfiguration.DefaultHttpsPort;
}
2015-10-16 20:11:11 +02:00
return base.Init(progress);
2014-02-13 06:11:54 +01:00
}
2016-09-17 08:09:29 +02:00
private async Task PerformPreInitMigrations()
2014-06-29 19:35:05 +02:00
{
2016-09-07 19:17:26 +02:00
var migrations = new List<IVersionMigration>
{
2016-09-17 08:09:29 +02:00
new UpdateLevelMigration(ServerConfigurationManager, this, HttpClient, JsonSerializer, _releaseAssetFilename, Logger)
2016-09-07 19:17:26 +02:00
};
2014-12-16 06:01:57 +01:00
foreach (var task in migrations)
{
2016-05-24 19:36:23 +02:00
try
{
2016-09-17 08:09:29 +02:00
await task.Run().ConfigureAwait(false);
2016-05-24 19:36:23 +02:00
}
catch (Exception ex)
{
Logger.ErrorException("Error running migration", ex);
}
2014-12-16 06:01:57 +01:00
}
2014-02-21 06:04:11 +01:00
}
2014-12-22 02:02:15 +01:00
private void PerformPostInitMigrations()
{
2015-10-16 20:11:11 +02:00
var migrations = new List<IVersionMigration>
{
new LibraryScanMigration(ServerConfigurationManager, TaskManager)
2015-10-16 20:11:11 +02:00
};
2014-12-22 02:02:15 +01:00
foreach (var task in migrations)
{
2016-05-24 19:36:23 +02:00
try
{
task.Run();
}
catch (Exception ex)
{
Logger.ErrorException("Error running migration", ex);
}
2014-12-22 02:02:15 +01:00
}
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Registers resources that classes will depend on
/// </summary>
protected override async Task RegisterResources(IProgress<double> progress)
2013-02-24 22:53:54 +01:00
{
await base.RegisterResources(progress).ConfigureAwait(false);
2016-11-09 05:58:58 +01:00
RegisterSingleInstance(PowerManagement);
2016-11-04 09:43:59 +01:00
SecurityManager = new PluginSecurityManager(this, HttpClient, JsonSerializer, ApplicationPaths, LogManager, FileSystemManager, CryptographyProvider);
2016-10-29 07:40:15 +02:00
RegisterSingleInstance(SecurityManager);
InstallationManager = new InstallationManager(LogManager.GetLogger("InstallationManager"), this, ApplicationPaths, HttpClient, JsonSerializer, SecurityManager, ConfigurationManager, FileSystemManager, CryptographyProvider);
2016-10-29 07:40:15 +02:00
RegisterSingleInstance(InstallationManager);
2016-10-28 20:35:17 +02:00
ZipClient = new ZipClient(FileSystemManager);
RegisterSingleInstance(ZipClient);
2016-11-12 07:58:50 +01:00
RegisterSingleInstance<IHttpResultFactory>(new HttpResultFactory(LogManager, FileSystemManager, JsonSerializer, MemoryStreamFactory));
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);
2015-02-28 19:47:05 +01:00
2016-11-05 03:17:18 +01:00
IAssemblyInfo assemblyInfo = new AssemblyInfo();
RegisterSingleInstance<IAssemblyInfo>(assemblyInfo);
LocalizationManager = new LocalizationManager(ServerConfigurationManager, FileSystemManager, JsonSerializer, LogManager.GetLogger("LocalizationManager"), assemblyInfo, new TextLocalizer());
2016-10-25 21:02:04 +02:00
StringExtensions.LocalizationManager = LocalizationManager;
2014-03-31 03:00:47 +02:00
RegisterSingleInstance(LocalizationManager);
2016-11-08 19:44:23 +01:00
ITextEncoding textEncoding = new TextEncoding(FileSystemManager);
2016-10-30 08:11:37 +01:00
RegisterSingleInstance(textEncoding);
Utilities.EncodingHelper = textEncoding;
RegisterSingleInstance<IBlurayExaminer>(() => new BdInfoExaminer(FileSystemManager, textEncoding));
2016-10-26 04:53:47 +02:00
RegisterSingleInstance<IXmlReaderSettingsFactory>(new XmlReaderSettingsFactory());
2014-12-26 18:45:06 +01:00
UserDataManager = new UserDataManager(LogManager, ServerConfigurationManager);
2013-10-02 18:08:58 +02:00
RegisterSingleInstance(UserDataManager);
2016-11-18 19:28:45 +01:00
UserRepository = GetUserRepository();
2016-12-17 09:27:41 +01:00
// This is only needed for disposal purposes. If removing this, make sure to have the manager handle disposing it
RegisterSingleInstance(UserRepository);
2016-10-08 07:57:38 +02:00
2016-11-18 10:28:39 +01:00
var displayPreferencesRepo = new SqliteDisplayPreferencesRepository(LogManager.GetLogger("SqliteDisplayPreferencesRepository"), JsonSerializer, ApplicationPaths, MemoryStreamFactory);
2016-05-01 23:48:37 +02:00
DisplayPreferencesRepository = displayPreferencesRepo;
2013-04-19 22:27:02 +02:00
RegisterSingleInstance(DisplayPreferencesRepository);
2016-11-27 20:36:56 +01:00
var itemRepo = new SqliteItemRepository(ServerConfigurationManager, JsonSerializer, LogManager.GetLogger("SqliteItemRepository"), MemoryStreamFactory, assemblyInfo, FileSystemManager, EnvironmentInfo, TimerFactory);
2016-05-01 23:48:37 +02:00
ItemRepository = itemRepo;
2013-04-19 22:27:02 +02:00
RegisterSingleInstance(ItemRepository);
2016-11-18 21:43:19 +01:00
FileOrganizationRepository = GetFileOrganizationRepository();
RegisterSingleInstance(FileOrganizationRepository);
2014-07-08 03:41:03 +02:00
AuthenticationRepository = await GetAuthenticationRepository().ConfigureAwait(false);
RegisterSingleInstance(AuthenticationRepository);
SyncRepository = GetSyncRepository();
2014-12-11 07:20:28 +01:00
RegisterSingleInstance(SyncRepository);
2014-07-26 19:30:15 +02:00
2016-11-11 18:33:10 +01:00
UserManager = new UserManager(LogManager.GetLogger("UserManager"), ServerConfigurationManager, UserRepository, XmlSerializer, NetworkManager, () => ImageProcessor, () => DtoService, () => ConnectManager, this, JsonSerializer, FileSystemManager, CryptographyProvider, _defaultUserNameFactory());
2013-04-14 05:05:19 +02:00
RegisterSingleInstance(UserManager);
2015-12-29 04:45:56 +01:00
LibraryManager = new LibraryManager(Logger, TaskManager, UserManager, ServerConfigurationManager, UserDataManager, () => LibraryMonitor, FileSystemManager, () => ProviderManager, () => UserViewManager);
RegisterSingleInstance(LibraryManager);
2014-04-02 23:55:19 +02:00
var musicManager = new MusicManager(LibraryManager);
RegisterSingleInstance<IMusicManager>(new MusicManager(LibraryManager));
2016-11-04 20:51:59 +01:00
LibraryMonitor = new LibraryMonitor(LogManager, TaskManager, LibraryManager, ServerConfigurationManager, FileSystemManager, TimerFactory, SystemEvents, EnvironmentInfo);
RegisterSingleInstance(LibraryMonitor);
2016-11-11 18:33:10 +01:00
ProviderManager = new ProviderManager(HttpClient, ServerConfigurationManager, LibraryMonitor, LogManager, FileSystemManager, ApplicationPaths, () => LibraryManager, JsonSerializer, MemoryStreamFactory);
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
2016-11-12 07:58:50 +01:00
CertificatePath = GetCertificatePath(true);
Certificate = GetCertificate(CertificatePath);
HttpServer = HttpServerFactory.CreateServer(this, LogManager, ServerConfigurationManager, NetworkManager, MemoryStreamFactory, "Emby", "web/index.html", textEncoding, SocketFactory, CryptographyProvider, JsonSerializer, XmlSerializer, EnvironmentInfo, Certificate, SupportsDualModeSockets);
2015-09-14 01:07:54 +02:00
HttpServer.GlobalResponse = LocalizationManager.GetLocalizedString("StartupEmbyServerIsLoading");
2013-04-08 18:45:40 +02:00
RegisterSingleInstance(HttpServer, false);
progress.Report(10);
2013-04-08 18:45:40 +02:00
2016-11-11 18:33:10 +01:00
ServerManager = new ServerManager(this, JsonSerializer, LogManager.GetLogger("ServerManager"), ServerConfigurationManager, MemoryStreamFactory, textEncoding);
RegisterSingleInstance(ServerManager);
2014-03-28 04:32:43 +01:00
var innerProgress = new ActionableProgress<double>();
innerProgress.RegisterAction(p => progress.Report((.75 * p) + 15));
2015-04-29 19:39:23 +02:00
ImageProcessor = GetImageProcessor();
2013-09-18 20:49:06 +02:00
RegisterSingleInstance(ImageProcessor);
2016-07-01 17:51:35 +02:00
TVSeriesManager = new TVSeriesManager(UserManager, UserDataManager, LibraryManager, ServerConfigurationManager);
2014-12-30 17:36:49 +01:00
RegisterSingleInstance(TVSeriesManager);
2016-11-11 18:33:10 +01:00
SyncManager = new SyncManager(LibraryManager, SyncRepository, ImageProcessor, LogManager.GetLogger("SyncManager"), UserManager, () => DtoService, this, TVSeriesManager, () => MediaEncoder, FileSystemManager, () => SubtitleEncoder, ServerConfigurationManager, UserDataManager, () => MediaSourceManager, JsonSerializer, TaskManager, MemoryStreamFactory);
2014-07-22 18:36:34 +02:00
RegisterSingleInstance(SyncManager);
2015-05-31 20:22:51 +02:00
DtoService = new DtoService(LogManager.GetLogger("DtoService"), LibraryManager, UserDataManager, ItemRepository, ImageProcessor, ServerConfigurationManager, FileSystemManager, ProviderManager, () => ChannelManager, SyncManager, this, () => DeviceManager, () => MediaSourceManager, () => LiveTvManager);
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);
2016-07-01 01:17:49 +02:00
ConnectManager = new ConnectManager(LogManager.GetLogger("ConnectManager"), ApplicationPaths, JsonSerializer, encryptionManager, HttpClient, this, ServerConfigurationManager, UserManager, ProviderManager, SecurityManager, FileSystemManager);
2014-08-25 05:54:45 +02:00
RegisterSingleInstance(ConnectManager);
2015-12-29 04:45:56 +01:00
DeviceManager = new DeviceManager(new DeviceRepository(ApplicationPaths, JsonSerializer, LogManager.GetLogger("DeviceManager"), FileSystemManager), UserManager, FileSystemManager, LibraryMonitor, ServerConfigurationManager, LogManager.GetLogger("DeviceManager"), NetworkManager);
2014-10-11 22:38:13 +02:00
RegisterSingleInstance(DeviceManager);
var newsService = new Emby.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);
2015-10-17 17:05:12 +02:00
ChannelManager = new ChannelManager(UserManager, DtoService, LibraryManager, LogManager.GetLogger("ChannelManager"), ServerConfigurationManager, FileSystemManager, UserDataManager, JsonSerializer, LocalizationManager, HttpClient, ProviderManager);
2014-03-18 18:05:57 +01:00
RegisterSingleInstance(ChannelManager);
2014-03-18 02:45:41 +01:00
MediaSourceManager = new MediaSourceManager(ItemRepository, UserManager, LibraryManager, LogManager.GetLogger("MediaSourceManager"), JsonSerializer, FileSystemManager, UserDataManager, TimerFactory);
2015-03-07 23:43:53 +01:00
RegisterSingleInstance(MediaSourceManager);
2016-11-04 00:35:19 +01:00
SessionManager = new SessionManager(UserDataManager, LogManager.GetLogger("SessionManager"), LibraryManager, UserManager, musicManager, DtoService, ImageProcessor, JsonSerializer, this, HttpClient, AuthenticationRepository, DeviceManager, MediaSourceManager, TimerFactory);
2015-03-08 19:11:53 +01:00
RegisterSingleInstance(SessionManager);
2016-11-04 09:31:05 +01:00
var dlnaManager = new DlnaManager(XmlSerializer, FileSystemManager, ApplicationPaths, LogManager.GetLogger("Dlna"), JsonSerializer, this, assemblyInfo);
2014-03-13 20:08:02 +01:00
RegisterSingleInstance<IDlnaManager>(dlnaManager);
2016-11-04 09:31:05 +01:00
var connectionManager = new ConnectionManager(dlnaManager, ServerConfigurationManager, LogManager.GetLogger("UpnpConnectionManager"), HttpClient, new XmlReaderSettingsFactory());
2014-05-21 02:56:24 +02:00
RegisterSingleInstance<IConnectionManager>(connectionManager);
2015-09-29 18:29:06 +02:00
CollectionManager = new CollectionManager(LibraryManager, FileSystemManager, LibraryMonitor, LogManager.GetLogger("CollectionManager"), ProviderManager);
2014-10-08 03:37:45 +02:00
RegisterSingleInstance(CollectionManager);
2015-07-24 17:20:11 +02:00
PlaylistManager = new PlaylistManager(LibraryManager, FileSystemManager, LibraryMonitor, LogManager.GetLogger("PlaylistManager"), UserManager, ProviderManager);
2015-03-14 05:50:23 +01:00
RegisterSingleInstance<IPlaylistManager>(PlaylistManager);
2014-08-02 04:34:45 +02:00
2016-09-06 07:02:05 +02:00
LiveTvManager = new LiveTvManager(this, ServerConfigurationManager, Logger, ItemRepository, ImageProcessor, UserDataManager, DtoService, UserManager, LibraryManager, TaskManager, LocalizationManager, JsonSerializer, ProviderManager, FileSystemManager, SecurityManager);
2014-01-12 07:31:21 +01:00
RegisterSingleInstance(LiveTvManager);
2015-10-05 00:04:56 +02:00
UserViewManager = new UserViewManager(LibraryManager, LocalizationManager, UserManager, ChannelManager, LiveTvManager, ServerConfigurationManager);
2014-06-07 21:46:24 +02:00
RegisterSingleInstance(UserViewManager);
2016-11-04 09:31:05 +01:00
var contentDirectory = new ContentDirectory(dlnaManager, UserDataManager, ImageProcessor, LibraryManager, ServerConfigurationManager, UserManager, LogManager.GetLogger("UpnpContentDirectory"), HttpClient, LocalizationManager, ChannelManager, MediaSourceManager, UserViewManager, () => MediaEncoder, new XmlReaderSettingsFactory());
2014-07-30 05:31:35 +02:00
RegisterSingleInstance<IContentDirectory>(contentDirectory);
2016-11-04 09:31:05 +01:00
var mediaRegistrar = new MediaReceiverRegistrar(LogManager.GetLogger("MediaReceiverRegistrar"), HttpClient, ServerConfigurationManager, new XmlReaderSettingsFactory());
2015-01-30 18:58:38 +01:00
RegisterSingleInstance<IMediaReceiverRegistrar>(mediaRegistrar);
2014-04-27 05:42:05 +02:00
NotificationManager = new NotificationManager(LogManager, UserManager, ServerConfigurationManager);
2014-04-25 22:15:50 +02:00
RegisterSingleInstance(NotificationManager);
SubtitleManager = new SubtitleManager(LogManager.GetLogger("SubtitleManager"), FileSystemManager, LibraryMonitor, LibraryManager, MediaSourceManager);
2014-05-07 04:28:19 +02:00
RegisterSingleInstance(SubtitleManager);
2016-11-04 09:31:05 +01:00
RegisterSingleInstance<IDeviceDiscovery>(new DeviceDiscovery(LogManager.GetLogger("IDeviceDiscovery"), ServerConfigurationManager, SocketFactory, TimerFactory));
2015-07-23 18:32:34 +02:00
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);
2015-01-02 06:36:27 +01:00
await RegisterMediaEncoder(innerProgress).ConfigureAwait(false);
progress.Report(90);
2016-08-30 08:06:24 +02:00
EncodingManager = new EncodingManager(FileSystemManager, Logger, MediaEncoder, ChapterManager, LibraryManager);
2014-06-10 19:36:06 +02:00
RegisterSingleInstance(EncodingManager);
2016-11-18 09:39:20 +01:00
var sharingRepo = new SharingRepository(LogManager.GetLogger("SharingRepository"), ApplicationPaths);
sharingRepo.Initialize();
2016-12-17 09:27:41 +01:00
// This is only needed for disposal purposes. If removing this, make sure to have the manager handle disposing it
RegisterSingleInstance<ISharingRepository>(sharingRepo);
2015-07-01 01:59:45 +02:00
RegisterSingleInstance<ISharingManager>(new SharingManager(sharingRepo, ServerConfigurationManager, LibraryManager, this));
2015-08-10 19:37:50 +02:00
2016-11-18 09:39:20 +01:00
var activityLogRepo = GetActivityLogRepository();
2014-08-11 00:13:17 +02:00
RegisterSingleInstance(activityLogRepo);
2014-10-02 02:28:16 +02:00
RegisterSingleInstance<IActivityManager>(new ActivityManager(LogManager.GetLogger("ActivityManager"), activityLogRepo, UserManager));
2014-08-11 00:13:17 +02:00
2015-04-04 02:41:16 +02:00
var authContext = new AuthorizationContext(AuthenticationRepository, ConnectManager);
RegisterSingleInstance<IAuthorizationContext>(authContext);
RegisterSingleInstance<ISessionContext>(new SessionContext(UserManager, authContext, SessionManager));
2016-11-08 19:44:23 +01:00
AuthService = new AuthService(UserManager, authContext, ServerConfigurationManager, ConnectManager, SessionManager, DeviceManager);
RegisterSingleInstance<IAuthService>(AuthService);
2016-11-11 18:33:10 +01:00
SubtitleEncoder = new SubtitleEncoder(LibraryManager, LogManager.GetLogger("SubtitleEncoder"), ApplicationPaths, FileSystemManager, MediaEncoder, JsonSerializer, HttpClient, MediaSourceManager, MemoryStreamFactory, ProcessFactory, textEncoding);
2015-01-02 07:12:58 +01:00
RegisterSingleInstance(SubtitleEncoder);
2016-06-04 07:51:33 +02:00
2016-11-18 10:28:39 +01:00
displayPreferencesRepo.Initialize();
2016-06-24 08:32:51 +02:00
2016-11-21 21:22:43 +01:00
var userDataRepo = new SqliteUserDataRepository(LogManager.GetLogger("SqliteUserDataRepository"), ApplicationPaths, FileSystemManager);
2016-06-24 08:32:51 +02:00
((UserDataManager)UserDataManager).Repository = userDataRepo;
2016-11-20 10:46:07 +01:00
itemRepo.Initialize(userDataRepo);
2016-05-01 23:48:37 +02:00
((LibraryManager)LibraryManager).ItemRepository = ItemRepository;
2016-11-18 09:39:20 +01:00
ConfigureNotificationsRepository();
progress.Report(100);
2014-02-22 22:05:56 +01:00
SetStaticProperties();
2015-01-20 22:32:48 +01:00
await ((UserManager)UserManager).Initialize().ConfigureAwait(false);
}
protected abstract bool SupportsDualModeSockets { get; }
2016-11-11 04:29:51 +01:00
private ICertificate GetCertificate(string certificateLocation)
{
if (string.IsNullOrWhiteSpace(certificateLocation))
{
return null;
}
try
{
2016-11-13 22:04:21 +01:00
if (!FileSystemManager.FileExists(certificateLocation))
{
return null;
}
2016-11-11 04:29:51 +01:00
X509Certificate2 localCert = new X509Certificate2(certificateLocation);
//localCert.PrivateKey = PrivateKey.CreateFromFile(pvk_file).RSA;
2016-11-11 18:33:10 +01:00
if (!localCert.HasPrivateKey)
2016-11-11 04:29:51 +01:00
{
//throw new FileNotFoundException("Secure requested, no private key included", certificateLocation);
return null;
}
return new Certificate(localCert);
}
catch (Exception ex)
{
Logger.ErrorException("Error loading cert from {0}", ex, certificateLocation);
return null;
}
}
2015-04-29 19:39:23 +02:00
private IImageProcessor GetImageProcessor()
{
var maxConcurrentImageProcesses = Math.Max(Environment.ProcessorCount, 4);
2016-11-13 05:33:51 +01:00
if (StartupOptions.ContainsOption("-imagethreads"))
2015-04-29 19:39:23 +02:00
{
2016-11-13 05:33:51 +01:00
int.TryParse(StartupOptions.GetOption("-imagethreads"), NumberStyles.Any, CultureInfo.InvariantCulture, out maxConcurrentImageProcesses);
2015-06-19 18:54:39 +02:00
}
2016-11-11 18:33:10 +01:00
return new ImageProcessor(LogManager.GetLogger("ImageProcessor"), ServerConfigurationManager.ApplicationPaths, FileSystemManager, JsonSerializer, ImageEncoder, maxConcurrentImageProcesses, () => LibraryManager, TimerFactory);
}
2016-11-13 05:33:51 +01:00
protected abstract FFMpegInstallInfo GetFfmpegInstallInfo();
/// <summary>
/// Registers the media encoder.
/// </summary>
/// <returns>Task.</returns>
private async Task RegisterMediaEncoder(IProgress<double> progress)
{
2016-06-23 19:04:18 +02:00
string encoderPath = null;
string probePath = null;
2016-11-13 05:33:51 +01:00
var info = await new FFMpegLoader(Logger, ApplicationPaths, HttpClient, ZipClient, FileSystemManager, GetFfmpegInstallInfo())
.GetFFMpegInfo(StartupOptions, progress).ConfigureAwait(false);
2016-06-23 19:04:18 +02:00
encoderPath = info.EncoderPath;
probePath = info.ProbePath;
2016-06-29 07:49:31 +02:00
var hasExternalEncoder = string.Equals(info.Version, "external", StringComparison.OrdinalIgnoreCase);
2016-06-20 08:19:28 +02:00
var mediaEncoder = new MediaEncoder(LogManager.GetLogger("MediaEncoder"),
2015-01-19 05:29:57 +01:00
JsonSerializer,
2016-06-23 19:04:18 +02:00
encoderPath,
probePath,
2016-06-29 07:49:31 +02:00
hasExternalEncoder,
2015-01-02 06:36:27 +01:00
ServerConfigurationManager,
FileSystemManager,
LiveTvManager,
IsoManager,
LibraryManager,
ChannelManager,
2015-01-02 07:12:58 +01:00
SessionManager,
2015-03-08 05:44:31 +01:00
() => SubtitleEncoder,
2016-07-03 04:47:39 +02:00
() => MediaSourceManager,
HttpClient,
2016-11-18 09:39:20 +01:00
ZipClient,
2016-11-11 18:33:10 +01:00
MemoryStreamFactory,
2016-11-01 05:07:12 +01:00
ProcessFactory,
2016-11-11 18:33:10 +01:00
(Environment.ProcessorCount > 2 ? 14000 : 40000),
2016-11-29 20:13:20 +01:00
EnvironmentInfo.OperatingSystem == MediaBrowser.Model.System.OperatingSystem.Windows,
EnvironmentInfo);
MediaEncoder = mediaEncoder;
RegisterSingleInstance(MediaEncoder);
}
2013-10-01 00:18:44 +02:00
/// <summary>
/// Gets the user repository.
/// </summary>
/// <returns>Task{IUserRepository}.</returns>
2016-11-18 19:28:45 +01:00
private IUserRepository GetUserRepository()
{
2016-11-18 19:28:45 +01:00
var repo = new SqliteUserRepository(LogManager.GetLogger("SqliteUserRepository"), ApplicationPaths, JsonSerializer, MemoryStreamFactory);
2016-11-18 19:28:45 +01:00
repo.Initialize();
2016-10-07 17:08:13 +02:00
return repo;
}
/// <summary>
/// Gets the file organization repository.
/// </summary>
/// <returns>Task{IUserRepository}.</returns>
2016-11-18 21:43:19 +01:00
private IFileOrganizationRepository GetFileOrganizationRepository()
{
2016-11-18 21:43:19 +01:00
var repo = new SqliteFileOrganizationRepository(LogManager.GetLogger("SqliteFileOrganizationRepository"), ServerConfigurationManager.ApplicationPaths);
2016-11-18 21:43:19 +01:00
repo.Initialize();
return repo;
}
2014-07-08 03:41:03 +02:00
private async Task<IAuthenticationRepository> GetAuthenticationRepository()
{
2016-11-18 10:28:39 +01:00
var repo = new AuthenticationRepository(LogManager.GetLogger("AuthenticationRepository"), ServerConfigurationManager.ApplicationPaths);
2014-07-08 03:41:03 +02:00
2016-11-18 10:28:39 +01:00
repo.Initialize();
2014-07-08 03:41:03 +02:00
return repo;
}
2016-11-18 09:39:20 +01:00
private IActivityRepository GetActivityLogRepository()
2014-08-11 00:13:17 +02:00
{
2016-11-18 09:39:20 +01:00
var repo = new ActivityRepository(LogManager.GetLogger("ActivityRepository"), ServerConfigurationManager.ApplicationPaths);
2014-08-11 00:13:17 +02:00
2016-11-18 09:39:20 +01:00
repo.Initialize();
2014-08-11 00:13:17 +02:00
return repo;
}
private ISyncRepository GetSyncRepository()
2014-07-26 19:30:15 +02:00
{
var repo = new SyncRepository(LogManager.GetLogger("SyncRepository"), JsonSerializer, ServerConfigurationManager.ApplicationPaths);
2014-07-26 19:30:15 +02:00
repo.Initialize();
2014-07-26 19:30:15 +02:00
return repo;
}
2013-07-06 23:23:32 +02:00
/// <summary>
/// Configures the repositories.
/// </summary>
2016-11-18 09:39:20 +01:00
private void ConfigureNotificationsRepository()
2013-07-06 23:23:32 +02:00
{
2016-11-18 09:39:20 +01:00
var repo = new SqliteNotificationsRepository(LogManager.GetLogger("SqliteNotificationsRepository"), ServerConfigurationManager.ApplicationPaths);
2013-07-06 23:23:32 +02:00
2016-11-18 09:39:20 +01:00
repo.Initialize();
2013-07-06 23:23:32 +02:00
NotificationsRepository = repo;
RegisterSingleInstance(NotificationsRepository);
}
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;
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;
2015-03-14 05:50:23 +01:00
UserView.PlaylistManager = PlaylistManager;
2014-10-08 03:37:45 +02:00
BaseItem.CollectionManager = CollectionManager;
BaseItem.MediaSourceManager = MediaSourceManager;
CollectionFolder.XmlSerializer = XmlSerializer;
2016-08-19 02:10:10 +02:00
BaseStreamingService.AppHost = this;
BaseStreamingService.HttpClient = HttpClient;
2016-10-28 00:54:56 +02:00
Utilities.CryptographyProvider = CryptographyProvider;
2016-11-08 19:44:23 +01:00
AuthenticatedAttribute.AuthService = AuthService;
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Finds the parts.
/// </summary>
protected override void FindParts()
{
2016-10-10 20:18:28 +02:00
if (!ServerConfigurationManager.Configuration.IsPortAuthorized)
2013-03-27 23:13:46 +01:00
{
RegisterServerWithAdministratorAccess();
2015-01-12 06:07:19 +01:00
ServerConfigurationManager.Configuration.IsPortAuthorized = true;
ConfigurationManager.SaveConfiguration();
2013-03-27 23:13:46 +01:00
}
2016-10-29 06:10:11 +02:00
RegisterModules();
base.FindParts();
2013-03-15 05:23:07 +01:00
2016-10-26 08:01:42 +02:00
HttpServer.Init(GetExports<IService>(false));
ServerManager.AddWebSocketListeners(GetExports<IWebSocketListener>(false));
2014-12-27 23:52:41 +01:00
StartServer();
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>(),
GetExports<IMetadataSaver>(),
GetExports<IExternalId>());
2013-08-10 03:40:52 +02:00
ImageProcessor.AddParts(GetExports<IImageEnhancer>());
2013-09-26 18:17:36 +02:00
2015-07-23 15:23:22 +02:00
LiveTvManager.AddParts(GetExports<ILiveTvService>(), GetExports<ITunerHost>(), GetExports<IListingsProvider>());
2014-05-07 04:28:19 +02:00
SubtitleManager.AddParts(GetExports<ISubtitleProvider>());
SessionManager.AddParts(GetExports<ISessionControllerFactory>());
2014-03-18 18:05:57 +01:00
2015-09-16 05:55:26 +02:00
ChannelManager.AddParts(GetExports<IChannel>());
2014-04-25 22:15:50 +02:00
2015-03-07 23:43:53 +01:00
MediaSourceManager.AddParts(GetExports<IMediaSourceProvider>());
2015-04-04 02:41:16 +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>());
}
2015-01-19 07:42:31 +01:00
private string CertificatePath { get; set; }
2016-11-11 04:29:51 +01:00
private ICertificate Certificate { get; set; }
2015-01-19 07:42:31 +01:00
2015-01-19 05:29:57 +01:00
private IEnumerable<string> GetUrlPrefixes()
{
var hosts = new List<string>();
2016-06-07 18:21:46 +02:00
hosts.Add("+");
2015-01-19 05:29:57 +01:00
2016-06-07 18:21:46 +02:00
return hosts.SelectMany(i =>
{
var prefixes = new List<string>
{
2016-09-21 20:28:33 +02:00
"http://"+i+":" + HttpPort + "/"
2016-06-07 18:21:46 +02:00
};
if (!string.IsNullOrWhiteSpace(CertificatePath))
{
2016-09-21 20:28:33 +02:00
prefixes.Add("https://" + i + ":" + HttpsPort + "/");
2016-06-07 18:21:46 +02:00
}
return prefixes;
});
2015-01-19 05:29:57 +01:00
}
/// <summary>
/// Starts the server.
/// </summary>
2014-12-27 23:52:41 +01:00
private void StartServer()
{
2016-09-21 19:07:18 +02:00
try
{
2016-11-11 04:29:51 +01:00
ServerManager.Start(GetUrlPrefixes());
2016-09-21 19:07:18 +02:00
return;
}
catch (Exception ex)
{
Logger.ErrorException("Error starting http server", ex);
2016-11-09 05:58:58 +01:00
if (HttpPort == ServerConfiguration.DefaultHttpPort)
2016-09-21 19:07:18 +02:00
{
throw;
}
}
2016-11-09 05:58:58 +01:00
HttpPort = ServerConfiguration.DefaultHttpPort;
2016-09-21 19:07:18 +02:00
try
{
2016-11-11 04:29:51 +01:00
ServerManager.Start(GetUrlPrefixes());
}
catch (Exception ex)
{
Logger.ErrorException("Error starting http server", ex);
throw;
}
}
private string GetCertificatePath(bool generateCertificate)
{
2015-01-23 07:15:15 +01:00
if (!string.IsNullOrWhiteSpace(ServerConfigurationManager.Configuration.CertificatePath))
{
2015-01-23 07:15:15 +01:00
// Custom cert
return ServerConfigurationManager.Configuration.CertificatePath;
}
// Generate self-signed cert
var certHost = GetHostnameFromExternalDns(ServerConfigurationManager.Configuration.WanDdns);
2016-11-10 22:06:00 +01:00
var certPath = Path.Combine(ServerConfigurationManager.ApplicationPaths.ProgramDataPath, "ssl", "cert_" + (certHost + "1").GetMD5().ToString("N") + ".pfx");
2015-01-19 07:42:31 +01:00
2015-01-23 07:15:15 +01:00
if (generateCertificate)
{
2015-09-13 23:32:02 +02:00
if (!FileSystemManager.FileExists(certPath))
{
2015-09-13 23:32:02 +02:00
FileSystemManager.CreateDirectory(Path.GetDirectoryName(certPath));
2015-01-23 07:15:15 +01:00
try
2015-01-19 07:42:31 +01:00
{
2016-11-11 18:33:10 +01:00
_certificateGenerator(certPath, certHost);
2015-01-23 07:15:15 +01:00
}
catch (Exception ex)
{
Logger.ErrorException("Error creating ssl cert", ex);
return null;
2015-01-19 07:42:31 +01:00
}
}
}
2013-10-18 18:09:47 +02:00
2015-01-23 07:15:15 +01:00
return certPath;
}
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);
2015-01-19 05:29:57 +01:00
var requiresRestart = false;
// Don't do anything if these haven't been set yet
if (HttpPort != 0 && HttpsPort != 0)
{
// Need to restart if ports have changed
if (ServerConfigurationManager.Configuration.HttpServerPortNumber != HttpPort ||
ServerConfigurationManager.Configuration.HttpsPortNumber != HttpsPort)
{
2015-02-11 05:05:58 +01:00
if (ServerConfigurationManager.Configuration.IsPortAuthorized)
{
ServerConfigurationManager.Configuration.IsPortAuthorized = false;
ServerConfigurationManager.SaveConfiguration();
2015-01-19 05:29:57 +01:00
2015-02-11 05:05:58 +01:00
requiresRestart = true;
}
2015-01-19 05:29:57 +01:00
}
}
if (!HttpServer.UrlPrefixes.SequenceEqual(GetUrlPrefixes(), StringComparer.OrdinalIgnoreCase))
2013-05-07 21:07:51 +02:00
{
2015-01-19 05:29:57 +01:00
requiresRestart = true;
}
if (!string.Equals(CertificatePath, GetCertificatePath(false), StringComparison.OrdinalIgnoreCase))
2015-01-19 07:42:31 +01:00
{
requiresRestart = true;
}
2015-01-19 05:29:57 +01:00
if (requiresRestart)
{
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)
{
2016-08-31 21:17:11 +02:00
throw new PlatformNotSupportedException("The server is unable to self-restart. Please restart manually.");
2013-10-07 16:38:31 +02:00
}
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
}
2016-11-13 05:33:51 +01:00
Logger.Info("Calling RestartInternal");
2014-06-04 18:15:44 +02:00
2016-11-13 05:33:51 +01:00
RestartInternal();
2013-02-24 22:53:54 +01:00
}
2016-11-13 05:33:51 +01:00
protected abstract void RestartInternal();
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
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(ApiEntryPoint)));
2013-02-24 22:53:54 +01:00
// Include composable parts in the Dashboard assembly
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(DashboardService)));
2013-02-24 22:53:54 +01:00
// Include composable parts in the Model assembly
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(SystemInfo)));
2013-02-24 22:53:54 +01:00
// Include composable parts in the Common assembly
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(IApplicationHost)));
2013-02-24 22:53:54 +01:00
// Include composable parts in the Controller assembly
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(IServerApplicationHost)));
2013-02-24 22:53:54 +01:00
2013-06-09 18:47:28 +02:00
// Include composable parts in the Providers assembly
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(ProviderUtils)));
2013-06-20 18:44:24 +02:00
// Include composable parts in the Photos assembly
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(PhotoProvider)));
2013-02-24 22:53:54 +01:00
// Common implementations
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(TaskManager)));
2013-02-24 22:53:54 +01:00
// Emby.Server implementations
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(InstallationManager)));
2016-11-11 08:24:36 +01:00
// Emby.Server.Core
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(ServerApplicationPaths)));
2016-11-11 08:24:36 +01:00
2014-03-27 20:30:21 +01:00
// MediaEncoding
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(MediaEncoder)));
2014-03-27 20:30:21 +01:00
// Dlna
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(DlnaEntryPoint)));
2014-02-28 05:49:02 +01:00
// Local metadata
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(BoxSetXmlSaver)));
// Xbmc
2016-11-11 18:33:10 +01:00
list.Add(GetAssembly(typeof(ArtistNfoProvider)));
2016-11-13 05:33:51 +01:00
list.AddRange(GetAssembliesWithPartsInternal());
2013-09-05 19:26:03 +02:00
2013-02-24 22:53:54 +01:00
// Include composable parts in the running assembly
2016-11-13 05:33:51 +01:00
list.Add(GetAssembly(typeof(ApplicationHost)));
2013-09-25 02:54:51 +02:00
return list;
2013-02-24 22:53:54 +01:00
}
2016-11-13 05:33:51 +01:00
protected abstract List<Assembly> GetAssembliesWithPartsInternal();
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)
2016-10-28 05:16:38 +02:00
.Where(EnablePlugin)
2013-12-29 15:12:29 +01:00
.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>();
}
}
2016-10-28 05:16:38 +02:00
private bool EnablePlugin(string path)
{
var filename = Path.GetFileName(path);
var exclude = new[]
{
"mbplus.dll",
"mbintros.dll"
};
return !exclude.Contains(filename ?? string.Empty, StringComparer.OrdinalIgnoreCase);
}
2013-03-07 06:34:00 +01:00
/// <summary>
/// Gets the system status.
/// </summary>
/// <returns>SystemInfo.</returns>
2016-06-19 18:53:43 +02:00
public async Task<SystemInfo> GetSystemInfo()
2013-03-07 06:34:00 +01:00
{
2016-06-19 18:53:43 +02:00
var localAddress = await GetLocalApiUrl().ConfigureAwait(false);
2013-03-07 06:34:00 +01:00
return new SystemInfo
{
HasPendingRestart = HasPendingRestart,
Version = ApplicationVersion.ToString(),
2015-01-19 05:29:57 +01:00
WebSocketPortNumber = HttpPort,
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(),
2015-01-19 05:29:57 +01:00
HttpServerPortNumber = HttpPort,
SupportsHttps = SupportsHttps,
2015-01-19 05:29:57 +01:00
HttpsPortNumber = HttpsPort,
2016-11-11 09:13:11 +01:00
OperatingSystem = EnvironmentInfo.OperatingSystem.ToString(),
2015-07-27 18:21:18 +02:00
OperatingSystemDisplayName = OperatingSystemDisplayName,
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,
2016-06-19 18:53:43 +02:00
LocalAddress = localAddress,
2016-11-11 09:13:11 +01:00
SupportsLibraryMonitor = true,
2016-06-29 07:49:31 +02:00
EncoderLocationType = MediaEncoder.EncoderLocationType,
2016-11-11 09:13:11 +01:00
SystemArchitecture = EnvironmentInfo.SystemArchitecture,
2016-10-06 20:55:01 +02:00
SystemUpdateLevel = ConfigurationManager.CommonConfiguration.SystemUpdateLevel,
2016-11-13 05:33:51 +01:00
PackageName = StartupOptions.GetOption("-package")
2013-03-07 06:34:00 +01:00
};
}
2015-01-19 05:29:57 +01:00
public bool EnableHttps
{
get
{
return SupportsHttps && ServerConfigurationManager.Configuration.EnableHttps;
}
}
public bool SupportsHttps
{
2016-11-11 04:29:51 +01:00
get { return Certificate != null; }
2015-01-19 05:29:57 +01:00
}
2016-06-19 08:18:29 +02:00
public async Task<string> GetLocalApiUrl()
2014-08-20 00:28:35 +02:00
{
2016-06-19 08:18:29 +02:00
try
2014-08-20 00:28:35 +02:00
{
2016-06-19 08:18:29 +02:00
// Return the first matched address, if found, or the first known local address
2016-11-08 19:44:23 +01:00
var address = (await GetLocalIpAddresses().ConfigureAwait(false)).FirstOrDefault(i => !i.Equals(IpAddressInfo.Loopback) && !i.Equals(IpAddressInfo.IPv6Loopback));
2015-01-24 20:03:55 +01:00
2016-06-19 08:18:29 +02:00
if (address != null)
2015-01-24 20:03:55 +01:00
{
2016-06-19 08:18:29 +02:00
return GetLocalApiUrl(address);
2015-01-24 20:03:55 +01:00
}
2015-08-10 19:37:50 +02:00
return null;
2014-08-20 00:28:35 +02:00
}
2016-06-19 08:18:29 +02:00
catch (Exception ex)
{
Logger.ErrorException("Error getting local Ip address information", ex);
}
return null;
2015-01-24 20:03:55 +01:00
}
2014-08-20 00:28:35 +02:00
2016-11-08 19:44:23 +01:00
public string GetLocalApiUrl(IpAddressInfo ipAddress)
2016-10-26 03:57:58 +02:00
{
2016-11-08 19:44:23 +01:00
if (ipAddress.AddressFamily == IpAddressFamily.InterNetworkV6)
2016-03-09 18:40:29 +01:00
{
2016-11-08 19:44:23 +01:00
return GetLocalApiUrl("[" + ipAddress.Address + "]");
2016-03-09 18:40:29 +01:00
}
2016-11-08 19:44:23 +01:00
return GetLocalApiUrl(ipAddress.Address);
2016-03-09 18:40:29 +01:00
}
2015-02-10 06:54:58 +01:00
public string GetLocalApiUrl(string host)
{
return string.Format("http://{0}:{1}",
host,
HttpPort.ToString(CultureInfo.InvariantCulture));
}
2016-10-26 03:57:58 +02:00
public async Task<List<IpAddressInfo>> GetLocalIpAddresses()
{
2016-12-07 21:02:34 +01:00
var addresses = ServerConfigurationManager
.Configuration
.LocalNetworkAddresses
.Select(NormalizeConfiguredLocalAddress)
.Where(i => i != null)
.ToList();
2015-12-29 04:39:38 +01:00
2016-12-07 21:02:34 +01:00
if (addresses.Count == 0)
2016-09-12 21:38:38 +02:00
{
2016-12-07 21:02:34 +01:00
addresses.AddRange(NetworkManager.GetLocalIpAddresses());
var list = new List<IpAddressInfo>();
foreach (var address in addresses)
2016-09-12 21:38:38 +02:00
{
2016-12-07 21:02:34 +01:00
var valid = await IsIpAddressValidAsync(address).ConfigureAwait(false);
if (valid)
{
list.Add(address);
}
2016-09-12 21:38:38 +02:00
}
2016-12-07 21:02:34 +01:00
addresses = list;
2016-09-12 21:38:38 +02:00
}
2016-12-07 21:02:34 +01:00
return addresses;
}
private IpAddressInfo NormalizeConfiguredLocalAddress(string address)
{
var index = address.Trim('/').IndexOf('/');
if (index != -1)
{
address = address.Substring(index + 1);
}
IpAddressInfo result;
if (NetworkManager.TryParseIpAddress(address.Trim('/'), out result))
{
return result;
}
return null;
2014-08-20 00:28:35 +02:00
}
2015-12-29 04:39:38 +01:00
private readonly ConcurrentDictionary<string, bool> _validAddressResults = new ConcurrentDictionary<string, bool>(StringComparer.OrdinalIgnoreCase);
2016-01-28 07:38:35 +01:00
private DateTime _lastAddressCacheClear;
2016-11-08 19:44:23 +01:00
private async Task<bool> IsIpAddressValidAsync(IpAddressInfo address)
2014-09-17 05:04:10 +02:00
{
2016-11-08 19:44:23 +01:00
if (address.Equals(IpAddressInfo.Loopback) ||
address.Equals(IpAddressInfo.IPv6Loopback))
2014-09-17 05:04:10 +02:00
{
2015-12-29 04:39:38 +01:00
return true;
}
2014-09-17 05:04:10 +02:00
2016-03-09 18:40:29 +01:00
var apiUrl = GetLocalApiUrl(address);
2015-12-29 04:39:38 +01:00
apiUrl += "/system/ping";
2014-09-17 05:04:10 +02:00
2016-10-25 21:02:04 +02:00
if ((DateTime.UtcNow - _lastAddressCacheClear).TotalMinutes >= 15)
2016-01-28 07:38:35 +01:00
{
_lastAddressCacheClear = DateTime.UtcNow;
_validAddressResults.Clear();
}
2015-12-29 04:39:38 +01:00
bool cachedResult;
if (_validAddressResults.TryGetValue(apiUrl, out cachedResult))
{
return cachedResult;
}
2014-09-17 05:04:10 +02:00
2015-12-29 04:39:38 +01:00
try
{
2016-01-28 07:38:35 +01:00
using (var response = await HttpClient.SendAsync(new HttpRequestOptions
2014-09-17 05:04:10 +02:00
{
2015-12-29 04:39:38 +01:00
Url = apiUrl,
LogErrorResponseBody = false,
2015-12-29 20:06:32 +01:00
LogErrors = false,
2016-01-28 07:38:35 +01:00
LogRequest = false,
2016-10-06 20:55:01 +02:00
TimeoutMs = 30000,
BufferContent = false
2014-09-17 05:04:10 +02:00
2016-01-28 07:38:35 +01:00
}, "POST").ConfigureAwait(false))
2015-12-29 04:39:38 +01:00
{
2015-12-29 20:06:32 +01:00
using (var reader = new StreamReader(response.Content))
{
var result = reader.ReadToEnd();
var valid = string.Equals(Name, result, StringComparison.OrdinalIgnoreCase);
_validAddressResults.AddOrUpdate(apiUrl, valid, (k, v) => valid);
2016-01-28 07:38:35 +01:00
//Logger.Debug("Ping test result to {0}. Success: {1}", apiUrl, valid);
2015-12-29 20:06:32 +01:00
return valid;
}
2015-12-29 04:39:38 +01:00
}
2014-09-17 05:04:10 +02:00
}
2015-12-29 04:39:38 +01:00
catch
{
2016-01-28 07:38:35 +01:00
//Logger.Debug("Ping test result to {0}. Success: {1}", apiUrl, false);
2015-12-29 20:06:32 +01:00
_validAddressResults.AddOrUpdate(apiUrl, false, (k, v) => false);
2015-12-29 04:39:38 +01:00
return false;
}
}
public string FriendlyName
{
get
{
return string.IsNullOrWhiteSpace(ServerConfigurationManager.Configuration.ServerName)
? Environment.MachineName
: ServerConfigurationManager.Configuration.ServerName;
}
}
2015-01-19 05:29:57 +01:00
public int HttpPort { get; private set; }
2014-03-17 05:25:11 +01:00
2015-01-19 05:29:57 +01:00
public int HttpsPort { get; private set; }
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
}
2016-11-13 05:33:51 +01:00
ShutdownInternal();
2013-04-05 21:34:33 +02:00
}
2016-11-13 05:33:51 +01:00
protected abstract void ShutdownInternal();
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
{
2016-11-13 22:04:21 +01:00
AuthorizeServer();
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
2016-11-13 22:04:21 +01:00
protected abstract void AuthorizeServer();
2016-11-13 05:33:51 +01: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>
2016-01-09 18:17:35 +01:00
public override async Task<CheckForUpdateResult> CheckForApplicationUpdate(CancellationToken cancellationToken, IProgress<double> progress)
2013-07-08 19:13:18 +02:00
{
2016-01-13 21:59:03 +01:00
var cacheLength = TimeSpan.FromHours(3);
2016-01-04 03:31:22 +01:00
var updateLevel = ConfigurationManager.CommonConfiguration.SystemUpdateLevel;
2016-01-04 03:31:22 +01:00
if (updateLevel == PackageVersionClass.Beta)
2016-01-03 20:01:05 +01:00
{
cacheLength = TimeSpan.FromHours(1);
}
2016-01-04 03:31:22 +01:00
else if (updateLevel == PackageVersionClass.Dev)
2014-07-09 16:39:04 +02:00
{
2016-01-03 20:01:05 +01:00
cacheLength = TimeSpan.FromMinutes(5);
2014-07-09 16:39:04 +02:00
}
2016-09-09 08:59:23 +02:00
var result = await new GithubUpdater(HttpClient, JsonSerializer).CheckForUpdateResult("MediaBrowser", "Emby", ApplicationVersion, updateLevel, _releaseAssetFilename,
"MBServer", "Mbserver.zip", cacheLength, cancellationToken).ConfigureAwait(false);
2016-01-09 18:17:35 +01:00
HasUpdateAvailable = result.IsUpdateAvailable;
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>
public override async Task UpdateApplication(PackageVersionInfo package, CancellationToken cancellationToken, IProgress<double> progress)
{
await InstallationManager.InstallPackage(package, false, progress, cancellationToken).ConfigureAwait(false);
2013-09-14 03:56:03 +02:00
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)
{
2016-11-13 05:33:51 +01:00
ConfigureAutoRunInternal(autorun);
2014-01-06 02:59:21 +01:00
}
}
2016-11-13 05:33:51 +01:00
protected abstract void ConfigureAutoRunInternal(bool autorun);
/// <summary>
/// This returns localhost in the case of no external dns, and the hostname if the
/// dns is prefixed with a valid Uri prefix.
/// </summary>
/// <param name="externalDns">The external dns prefix to get the hostname of.</param>
/// <returns>The hostname in <paramref name="externalDns"/></returns>
private static string GetHostnameFromExternalDns(string externalDns)
{
if (string.IsNullOrWhiteSpace(externalDns))
{
return "localhost";
}
try
{
2015-01-19 07:42:31 +01:00
return new Uri(externalDns).Host;
}
catch
{
return externalDns;
}
}
2016-04-24 05:03:49 +02:00
2016-11-21 00:48:52 +01:00
public void LaunchUrl(string url)
{
if (EnvironmentInfo.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.Windows &&
EnvironmentInfo.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.OSX)
2016-11-21 00:48:52 +01:00
{
throw new NotImplementedException();
}
2016-12-07 21:02:34 +01:00
var process = ProcessFactory.Create(new ProcessOptions
{
2016-11-21 00:48:52 +01:00
FileName = url,
2016-12-22 05:28:00 +01:00
//EnableRaisingEvents = true,
2016-11-21 00:48:52 +01:00
UseShellExecute = true,
ErrorDialog = false
});
process.Exited += ProcessExited;
try
{
process.Start();
}
catch (Exception ex)
{
Console.WriteLine("Error launching url: {0}", url);
Logger.ErrorException("Error launching url: {0}", ex, url);
throw;
}
}
private static void ProcessExited(object sender, EventArgs e)
{
((IProcess)sender).Dispose();
}
2016-09-03 19:16:36 +02:00
public void EnableLoopback(string appName)
{
2016-11-13 05:33:51 +01:00
EnableLoopbackInternal(appName);
2016-09-03 19:16:36 +02:00
}
2016-10-29 06:10:11 +02:00
2016-11-13 05:33:51 +01:00
protected abstract void EnableLoopbackInternal(string appName);
2016-10-29 06:10:11 +02:00
private void RegisterModules()
{
var moduleTypes = GetExportTypes<IDependencyModule>();
foreach (var type in moduleTypes)
{
try
{
var instance = Activator.CreateInstance(type) as IDependencyModule;
if (instance != null)
instance.BindDependencies(this);
}
catch (Exception ex)
{
Logger.ErrorException("Error setting up dependency bindings for " + type.Name, ex);
}
}
}
void IDependencyContainer.RegisterSingleInstance<T>(T obj, bool manageLifetime)
{
RegisterSingleInstance(obj, manageLifetime);
}
void IDependencyContainer.RegisterSingleInstance<T>(Func<T> func)
{
RegisterSingleInstance(func);
}
void IDependencyContainer.Register(Type typeInterface, Type typeImplementation)
{
Container.Register(typeInterface, typeImplementation);
}
2013-02-24 22:53:54 +01:00
}
}