2015-04-08 14:38:02 +00:00
|
|
|
|
using Emby.Drawing;
|
|
|
|
|
using Emby.Drawing.GDI;
|
|
|
|
|
using Emby.Drawing.ImageMagick;
|
|
|
|
|
using MediaBrowser.Api;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Common;
|
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-04-26 02:55:07 +00:00
|
|
|
|
using MediaBrowser.Common.Events;
|
2015-01-19 06:42:31 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
2013-02-26 03:43:04 +00:00
|
|
|
|
using MediaBrowser.Common.Implementations;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using MediaBrowser.Common.Implementations.ScheduledTasks;
|
2013-03-07 05:34:00 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-12-13 15:48:35 +00:00
|
|
|
|
using MediaBrowser.Common.Progress;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using MediaBrowser.Controller;
|
2014-08-10 22:13:17 +00:00
|
|
|
|
using MediaBrowser.Controller.Activity;
|
2014-03-18 01:45:41 +00:00
|
|
|
|
using MediaBrowser.Controller.Channels;
|
2014-06-09 19:16:14 +00:00
|
|
|
|
using MediaBrowser.Controller.Chapters;
|
2014-03-07 15:53:23 +00:00
|
|
|
|
using MediaBrowser.Controller.Collections;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2014-08-25 03:54:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Connect;
|
2014-10-11 20:38:13 +00:00
|
|
|
|
using MediaBrowser.Controller.Devices;
|
2014-03-13 19:08:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Dlna;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
2013-09-04 17:02:19 +00:00
|
|
|
|
using MediaBrowser.Controller.Dto;
|
2013-03-01 21:22:34 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-01-20 16:09:53 +00:00
|
|
|
|
using MediaBrowser.Controller.FileOrganization;
|
2013-02-27 20:25:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-09-26 15:48:14 +00:00
|
|
|
|
using MediaBrowser.Controller.LiveTv;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Localization;
|
2014-02-20 16:37:41 +00:00
|
|
|
|
using MediaBrowser.Controller.MediaEncoding;
|
2013-12-07 15:52:38 +00:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2014-01-18 21:52:01 +00:00
|
|
|
|
using MediaBrowser.Controller.News;
|
2013-07-06 21:23:32 +00:00
|
|
|
|
using MediaBrowser.Controller.Notifications;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
2014-08-02 02:34:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Playlists;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Plugins;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-03-03 16:53:58 +00:00
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2014-05-07 18:38:50 +00:00
|
|
|
|
using MediaBrowser.Controller.Security;
|
2013-05-09 17:38:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Session;
|
2015-06-30 23:59:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Social;
|
2013-03-10 04:22:36 +00:00
|
|
|
|
using MediaBrowser.Controller.Sorting;
|
2014-05-07 02:28:19 +00:00
|
|
|
|
using MediaBrowser.Controller.Subtitles;
|
2014-07-17 22:21:35 +00:00
|
|
|
|
using MediaBrowser.Controller.Sync;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
using MediaBrowser.Controller.TV;
|
2014-03-13 19:08:02 +00:00
|
|
|
|
using MediaBrowser.Dlna;
|
2014-05-21 00:56:24 +00:00
|
|
|
|
using MediaBrowser.Dlna.ConnectionManager;
|
|
|
|
|
using MediaBrowser.Dlna.ContentDirectory;
|
2014-04-27 03:42:05 +00:00
|
|
|
|
using MediaBrowser.Dlna.Main;
|
2015-01-30 17:58:38 +00:00
|
|
|
|
using MediaBrowser.Dlna.MediaReceiverRegistrar;
|
2015-04-29 18:48:34 +00:00
|
|
|
|
using MediaBrowser.Dlna.Ssdp;
|
2015-05-31 18:22:51 +00:00
|
|
|
|
using MediaBrowser.LocalMetadata.Savers;
|
2014-03-27 19:30:21 +00:00
|
|
|
|
using MediaBrowser.MediaEncoding.BdInfo;
|
|
|
|
|
using MediaBrowser.MediaEncoding.Encoder;
|
2014-06-11 14:42:03 +00:00
|
|
|
|
using MediaBrowser.MediaEncoding.Subtitles;
|
2013-09-21 01:04:14 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
|
|
|
|
using MediaBrowser.Model.System;
|
2013-09-14 01:56:03 +00:00
|
|
|
|
using MediaBrowser.Model.Updates;
|
2014-06-09 19:16:14 +00:00
|
|
|
|
using MediaBrowser.Providers.Chapters;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
using MediaBrowser.Providers.Manager;
|
2014-05-07 02:28:19 +00:00
|
|
|
|
using MediaBrowser.Providers.Subtitles;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations;
|
2014-08-10 22:13:17 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Activity;
|
2014-03-18 01:45:41 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Channels;
|
2014-03-07 15:53:23 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Collections;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Configuration;
|
2014-08-25 03:54:45 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Connect;
|
2014-10-11 20:38:13 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Devices;
|
2013-09-04 17:02:19 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Dto;
|
2013-09-25 00:54:51 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.EntryPoints;
|
2014-01-20 16:09:53 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.FileOrganization;
|
2013-03-07 05:34:00 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.HttpServer;
|
2014-07-02 04:57:18 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.HttpServer.Security;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.IO;
|
2013-02-27 20:25:45 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Library;
|
2013-09-26 15:48:14 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.LiveTv;
|
2013-06-06 14:33:11 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Localization;
|
2013-04-07 20:55:05 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.MediaEncoder;
|
2014-04-25 20:15:50 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Notifications;
|
2013-06-17 20:35:43 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Persistence;
|
2014-08-02 02:34:45 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Playlists;
|
2014-05-07 18:38:50 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Security;
|
2013-03-07 05:34:00 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.ServerManager;
|
2013-05-09 17:38:02 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Session;
|
2015-06-30 23:59:45 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Social;
|
2014-07-17 22:21:35 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Sync;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.TV;
|
2014-11-09 18:24:57 +00:00
|
|
|
|
using MediaBrowser.Server.Startup.Common.FFMpeg;
|
2014-11-11 03:41:55 +00:00
|
|
|
|
using MediaBrowser.Server.Startup.Common.Migrations;
|
2013-02-28 19:32:41 +00:00
|
|
|
|
using MediaBrowser.WebDashboard.Api;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
using MediaBrowser.XbmcMetadata.Providers;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using System;
|
2015-12-29 03:39:38 +00:00
|
|
|
|
using System.Collections.Concurrent;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-01-06 01:59:21 +00:00
|
|
|
|
using System.Globalization;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2015-12-29 03:39:38 +00:00
|
|
|
|
using System.Net;
|
2016-03-09 17:40:29 +00:00
|
|
|
|
using System.Net.Sockets;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using System.Reflection;
|
2013-09-13 15:02:40 +00:00
|
|
|
|
using System.Threading;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2016-08-19 00:10:10 +00:00
|
|
|
|
using MediaBrowser.Api.Playback;
|
2016-01-03 01:23:09 +00:00
|
|
|
|
using MediaBrowser.Common.Implementations.Updates;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
namespace MediaBrowser.Server.Startup.Common
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class CompositionRoot
|
|
|
|
|
/// </summary>
|
2013-03-07 05:34:00 +00:00
|
|
|
|
public class ApplicationHost : BaseApplicationHost<ServerApplicationPaths>, IServerApplicationHost
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// Gets the server configuration manager.
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// </summary>
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// <value>The server configuration manager.</value>
|
|
|
|
|
public IServerConfigurationManager ServerConfigurationManager
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
2013-03-04 05:43:06 +00:00
|
|
|
|
get { return (IServerConfigurationManager)ConfigurationManager; }
|
2013-03-03 07:27:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-26 17:21:18 +00:00
|
|
|
|
/// <summary>
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// Gets the configuration manager.
|
2013-02-26 17:21:18 +00:00
|
|
|
|
/// </summary>
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// <returns>IConfigurationManager.</returns>
|
|
|
|
|
protected override IConfigurationManager GetConfigurationManager()
|
2013-02-26 17:21:18 +00:00
|
|
|
|
{
|
2015-09-13 23:07:54 +00:00
|
|
|
|
return new ServerConfigurationManager(ApplicationPaths, LogManager, XmlSerializer, FileSystemManager);
|
2013-02-26 17:21:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the server manager.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The server manager.</value>
|
2013-03-07 05:34:00 +00:00
|
|
|
|
private IServerManager ServerManager { get; set; }
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <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>
|
2014-01-28 21:25:10 +00:00
|
|
|
|
private ILibraryMonitor LibraryMonitor { get; set; }
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <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 17:02:19 +00:00
|
|
|
|
private IDtoService DtoService { get; set; }
|
2013-09-18 18:49:06 +00:00
|
|
|
|
private IImageProcessor ImageProcessor { get; set; }
|
2013-03-10 06:45:16 +00:00
|
|
|
|
|
2013-04-08 15:55:53 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the media encoder.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The media encoder.</value>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
private IMediaEncoder MediaEncoder { get; set; }
|
2015-01-02 06:12:58 +00:00
|
|
|
|
private ISubtitleEncoder SubtitleEncoder { get; set; }
|
2013-04-08 15:55:53 +00:00
|
|
|
|
|
2014-08-25 03:54:45 +00:00
|
|
|
|
private IConnectManager ConnectManager { get; set; }
|
2013-09-24 15:42:30 +00:00
|
|
|
|
private ISessionManager SessionManager { get; set; }
|
2013-08-10 01:40:52 +00:00
|
|
|
|
|
2013-09-26 15:48:14 +00:00
|
|
|
|
private ILiveTvManager LiveTvManager { get; set; }
|
2013-09-26 21:20:26 +00:00
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
public ILocalizationManager LocalizationManager { get; set; }
|
2013-06-10 17:46:11 +00:00
|
|
|
|
|
2014-02-20 16:37:41 +00:00
|
|
|
|
private IEncodingManager EncodingManager { get; set; }
|
2014-03-18 17:05:57 +00:00
|
|
|
|
private IChannelManager ChannelManager { get; set; }
|
2014-07-22 01:29:06 +00:00
|
|
|
|
private ISyncManager SyncManager { get; set; }
|
2014-02-28 04:49:02 +00:00
|
|
|
|
|
2013-04-13 18:02:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the user data repository.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The user data repository.</value>
|
2013-10-02 16:08:58 +00:00
|
|
|
|
private IUserDataManager UserDataManager { get; set; }
|
2013-04-19 20:27:02 +00:00
|
|
|
|
private IUserRepository UserRepository { get; set; }
|
2013-06-18 19:16:27 +00:00
|
|
|
|
internal IDisplayPreferencesRepository DisplayPreferencesRepository { get; set; }
|
2013-12-16 22:46:40 +00:00
|
|
|
|
internal IItemRepository ItemRepository { get; set; }
|
2013-07-06 21:23:32 +00:00
|
|
|
|
private INotificationsRepository NotificationsRepository { get; set; }
|
2014-01-20 16:09:53 +00:00
|
|
|
|
private IFileOrganizationRepository FileOrganizationRepository { get; set; }
|
2013-04-13 18:02:30 +00:00
|
|
|
|
|
2014-04-25 20:15:50 +00:00
|
|
|
|
private INotificationManager NotificationManager { get; set; }
|
2014-05-07 02:28:19 +00:00
|
|
|
|
private ISubtitleManager SubtitleManager { get; set; }
|
2014-06-09 19:16:14 +00:00
|
|
|
|
private IChapterManager ChapterManager { get; set; }
|
2014-10-11 20:38:13 +00:00
|
|
|
|
private IDeviceManager DeviceManager { get; set; }
|
2014-04-25 20:15:50 +00:00
|
|
|
|
|
2014-09-01 20:10:54 +00:00
|
|
|
|
internal IUserViewManager UserViewManager { get; set; }
|
2014-06-07 19:46:24 +00:00
|
|
|
|
|
2014-07-08 01:41:03 +00:00
|
|
|
|
private IAuthenticationRepository AuthenticationRepository { get; set; }
|
2014-07-26 17:30:15 +00:00
|
|
|
|
private ISyncRepository SyncRepository { get; set; }
|
2014-09-01 20:10:54 +00:00
|
|
|
|
private ITVSeriesManager TVSeriesManager { get; set; }
|
2014-10-08 01:37:45 +00:00
|
|
|
|
private ICollectionManager CollectionManager { get; set; }
|
2015-02-07 21:03:09 +00:00
|
|
|
|
private IMediaSourceManager MediaSourceManager { get; set; }
|
2015-03-14 04:50:23 +00:00
|
|
|
|
private IPlaylistManager PlaylistManager { get; set; }
|
2014-07-20 04:46:29 +00:00
|
|
|
|
|
2014-09-28 16:50:33 +00:00
|
|
|
|
private readonly StartupOptions _startupOptions;
|
2016-01-03 19:01:05 +00:00
|
|
|
|
private readonly string _releaseAssetFilename;
|
2014-09-14 15:26:33 +00:00
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
internal INativeApp NativeApp { get; set; }
|
|
|
|
|
|
2013-09-21 01:04:14 +00:00
|
|
|
|
/// <summary>
|
2014-07-20 04:46:29 +00:00
|
|
|
|
/// Initializes a new instance of the <see cref="ApplicationHost" /> class.
|
2013-09-21 01:04:14 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="applicationPaths">The application paths.</param>
|
|
|
|
|
/// <param name="logManager">The log manager.</param>
|
2014-09-14 15:26:33 +00:00
|
|
|
|
/// <param name="options">The options.</param>
|
2014-10-06 23:58:46 +00:00
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
2016-01-03 19:01:05 +00:00
|
|
|
|
/// <param name="releaseAssetFilename">The release asset filename.</param>
|
2014-11-09 18:24:57 +00:00
|
|
|
|
/// <param name="nativeApp">The native application.</param>
|
2014-12-22 01:02:15 +00:00
|
|
|
|
public ApplicationHost(ServerApplicationPaths applicationPaths,
|
|
|
|
|
ILogManager logManager,
|
|
|
|
|
StartupOptions options,
|
2014-10-06 23:58:46 +00:00
|
|
|
|
IFileSystem fileSystem,
|
2016-01-03 19:01:05 +00:00
|
|
|
|
string releaseAssetFilename,
|
2014-11-09 18:24:57 +00:00
|
|
|
|
INativeApp nativeApp)
|
2014-10-06 23:58:46 +00:00
|
|
|
|
: base(applicationPaths, logManager, fileSystem)
|
2013-09-20 17:32:10 +00:00
|
|
|
|
{
|
2014-09-14 15:26:33 +00:00
|
|
|
|
_startupOptions = options;
|
2016-01-03 19:01:05 +00:00
|
|
|
|
_releaseAssetFilename = releaseAssetFilename;
|
2014-11-09 18:24:57 +00:00
|
|
|
|
NativeApp = nativeApp;
|
2014-12-17 22:39:17 +00:00
|
|
|
|
|
|
|
|
|
SetBaseExceptionMessage();
|
2014-01-30 00:18:05 +00:00
|
|
|
|
}
|
2013-09-21 01:04:14 +00:00
|
|
|
|
|
2014-11-14 06:27:10 +00:00
|
|
|
|
private Version _version;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the current application version
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The application version.</value>
|
|
|
|
|
public override Version ApplicationVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _version ?? (_version = NativeApp.GetType().Assembly.GetName().Version);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-23 23:10:41 +00:00
|
|
|
|
public override string OperatingSystemDisplayName
|
|
|
|
|
{
|
|
|
|
|
get { return NativeApp.Environment.OperatingSystemVersionString; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-30 00:22:59 +00:00
|
|
|
|
public override bool IsRunningAsService
|
2014-01-30 00:18:05 +00:00
|
|
|
|
{
|
2014-11-09 18:24:57 +00:00
|
|
|
|
get { return NativeApp.IsRunningAsService; }
|
2013-09-20 17:32:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
public bool SupportsRunningAsService
|
|
|
|
|
{
|
|
|
|
|
get { return NativeApp.SupportsRunningAsService; }
|
|
|
|
|
}
|
2014-09-09 01:15:31 +00:00
|
|
|
|
|
2015-10-03 18:13:53 +00:00
|
|
|
|
public bool SupportsLibraryMonitor
|
|
|
|
|
{
|
|
|
|
|
get { return NativeApp.SupportsLibraryMonitor; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-25 21:07:19 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-07-14 02:36:42 +00:00
|
|
|
|
return "Emby Server";
|
2014-01-25 21:07:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-07 14:38:31 +00: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 01:59:21 +00:00
|
|
|
|
public bool SupportsAutoRunAtStartup
|
|
|
|
|
{
|
|
|
|
|
get { return NativeApp.SupportsAutoRunAtStartup; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-17 22:39:17 +00: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();
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <summary>
|
2013-03-10 06:45:16 +00:00
|
|
|
|
/// Runs the startup tasks.
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// </summary>
|
2013-05-18 22:07:59 +00:00
|
|
|
|
public override async Task RunStartupTasks()
|
2013-03-07 05:34:00 +00:00
|
|
|
|
{
|
2016-02-04 18:04:04 +00:00
|
|
|
|
if (ServerConfigurationManager.Configuration.MigrationVersion < CleanDatabaseScheduledTask.MigrationVersion &&
|
|
|
|
|
ServerConfigurationManager.Configuration.IsStartupWizardCompleted)
|
2016-02-03 20:52:45 +00:00
|
|
|
|
{
|
|
|
|
|
TaskManager.SuspendTriggers = true;
|
|
|
|
|
}
|
2016-03-09 17:40:29 +00:00
|
|
|
|
|
2013-03-10 06:45:16 +00:00
|
|
|
|
await base.RunStartupTasks().ConfigureAwait(false);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
2016-06-30 04:23:52 +00:00
|
|
|
|
await MediaEncoder.Init().ConfigureAwait(false);
|
2016-06-20 06:19:28 +00:00
|
|
|
|
|
2016-09-09 16:58:08 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(MediaEncoder.EncoderPath))
|
|
|
|
|
{
|
|
|
|
|
if (ServerConfigurationManager.Configuration.IsStartupWizardCompleted)
|
|
|
|
|
{
|
|
|
|
|
ServerConfigurationManager.Configuration.IsStartupWizardCompleted = false;
|
|
|
|
|
ServerConfigurationManager.SaveConfiguration();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-30 07:11:58 +00:00
|
|
|
|
Logger.Info("ServerId: {0}", SystemId);
|
2013-04-08 15:55:53 +00:00
|
|
|
|
Logger.Info("Core startup complete");
|
2015-09-13 23:07:54 +00:00
|
|
|
|
HttpServer.GlobalResponse = null;
|
2013-04-08 15:55:53 +00:00
|
|
|
|
|
2016-02-03 22:42:33 +00:00
|
|
|
|
PerformPostInitMigrations();
|
2016-06-29 22:01:35 +00:00
|
|
|
|
Logger.Info("Post-init migrations complete");
|
2016-02-03 22:42:33 +00:00
|
|
|
|
|
2016-06-29 22:01:35 +00:00
|
|
|
|
foreach (var entryPoint in GetExports<IServerEntryPoint>().ToList())
|
2013-06-21 23:38:19 +00:00
|
|
|
|
{
|
2016-06-29 22:01:35 +00:00
|
|
|
|
var name = entryPoint.GetType().FullName;
|
2016-06-30 01:23:58 +00:00
|
|
|
|
Logger.Info("Starting entry point {0}", name);
|
2013-06-21 23:38:19 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
entryPoint.Run();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2016-06-29 22:01:35 +00:00
|
|
|
|
Logger.ErrorException("Error in {0}", ex, name);
|
2013-06-21 23:38:19 +00:00
|
|
|
|
}
|
2016-06-30 01:23:58 +00:00
|
|
|
|
Logger.Info("Entry point completed: {0}", name);
|
2016-06-29 22:01:35 +00:00
|
|
|
|
}
|
2016-06-30 01:23:58 +00:00
|
|
|
|
Logger.Info("All entry points have started");
|
2014-01-09 04:44:51 +00:00
|
|
|
|
|
|
|
|
|
LogManager.RemoveConsoleOutput();
|
2013-03-07 05:34:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 18:11:11 +00:00
|
|
|
|
public override Task Init(IProgress<double> progress)
|
2014-02-13 05:11:54 +00:00
|
|
|
|
{
|
2015-01-19 04:29:57 +00:00
|
|
|
|
HttpPort = ServerConfigurationManager.Configuration.HttpServerPortNumber;
|
|
|
|
|
HttpsPort = ServerConfigurationManager.Configuration.HttpsPortNumber;
|
|
|
|
|
|
2014-12-22 01:02:15 +00:00
|
|
|
|
PerformPreInitMigrations();
|
2014-02-13 05:11:54 +00:00
|
|
|
|
|
2015-10-16 18:11:11 +00:00
|
|
|
|
return base.Init(progress);
|
2014-02-13 05:11:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-22 01:02:15 +00:00
|
|
|
|
private void PerformPreInitMigrations()
|
2014-06-29 17:35:05 +00:00
|
|
|
|
{
|
2016-09-07 17:17:26 +00:00
|
|
|
|
var migrations = new List<IVersionMigration>
|
|
|
|
|
{
|
|
|
|
|
new UpdateLevelMigration(ServerConfigurationManager, this, HttpClient, JsonSerializer, _releaseAssetFilename)
|
|
|
|
|
};
|
2014-12-16 05:01:57 +00:00
|
|
|
|
|
|
|
|
|
foreach (var task in migrations)
|
|
|
|
|
{
|
2016-05-24 17:36:23 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
task.Run();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error running migration", ex);
|
|
|
|
|
}
|
2014-12-16 05:01:57 +00:00
|
|
|
|
}
|
2014-02-21 05:04:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-22 01:02:15 +00:00
|
|
|
|
private void PerformPostInitMigrations()
|
|
|
|
|
{
|
2015-10-16 18:11:11 +00:00
|
|
|
|
var migrations = new List<IVersionMigration>
|
|
|
|
|
{
|
2016-03-03 04:10:15 +00:00
|
|
|
|
new MovieDbEpisodeProviderMigration(ServerConfigurationManager),
|
2016-09-07 17:17:26 +00:00
|
|
|
|
new DbMigration(ServerConfigurationManager, TaskManager)
|
2015-10-16 18:11:11 +00:00
|
|
|
|
};
|
2014-12-22 01:02:15 +00:00
|
|
|
|
|
|
|
|
|
foreach (var task in migrations)
|
|
|
|
|
{
|
2016-05-24 17:36:23 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
task.Run();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error running migration", ex);
|
|
|
|
|
}
|
2014-12-22 01:02:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Registers resources that classes will depend on
|
|
|
|
|
/// </summary>
|
2013-12-13 15:48:35 +00:00
|
|
|
|
protected override async Task RegisterResources(IProgress<double> progress)
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
2013-12-13 15:48:35 +00:00
|
|
|
|
await base.RegisterResources(progress).ConfigureAwait(false);
|
2013-02-26 03:43:04 +00:00
|
|
|
|
|
2014-12-22 01:02:15 +00:00
|
|
|
|
RegisterSingleInstance<IHttpResultFactory>(new HttpResultFactory(LogManager, FileSystemManager, JsonSerializer));
|
2013-03-15 04:23:07 +00:00
|
|
|
|
|
2013-03-07 05:34:00 +00:00
|
|
|
|
RegisterSingleInstance<IServerApplicationHost>(this);
|
2013-03-04 05:43:06 +00:00
|
|
|
|
RegisterSingleInstance<IServerApplicationPaths>(ApplicationPaths);
|
2013-03-07 05:34:00 +00:00
|
|
|
|
|
2013-03-04 05:43:06 +00:00
|
|
|
|
RegisterSingleInstance(ServerConfigurationManager);
|
2015-02-28 18:47:05 +00:00
|
|
|
|
|
2016-06-30 23:17:49 +00:00
|
|
|
|
LocalizationManager = new LocalizationManager(ServerConfigurationManager, FileSystemManager, JsonSerializer, LogManager.GetLogger("LocalizationManager"));
|
2014-03-31 01:00:47 +00:00
|
|
|
|
RegisterSingleInstance(LocalizationManager);
|
|
|
|
|
|
2013-04-08 15:55:53 +00:00
|
|
|
|
RegisterSingleInstance<IBlurayExaminer>(() => new BdInfoExaminer());
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
2014-12-26 17:45:06 +00:00
|
|
|
|
UserDataManager = new UserDataManager(LogManager, ServerConfigurationManager);
|
2013-10-02 16:08:58 +00:00
|
|
|
|
RegisterSingleInstance(UserDataManager);
|
2013-04-13 18:02:30 +00:00
|
|
|
|
|
2014-12-22 01:02:15 +00:00
|
|
|
|
UserRepository = await GetUserRepository().ConfigureAwait(false);
|
2013-04-19 20:27:02 +00:00
|
|
|
|
RegisterSingleInstance(UserRepository);
|
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var displayPreferencesRepo = new SqliteDisplayPreferencesRepository(LogManager, JsonSerializer, ApplicationPaths, NativeApp.GetDbConnector());
|
2016-05-01 21:48:37 +00:00
|
|
|
|
DisplayPreferencesRepository = displayPreferencesRepo;
|
2013-04-19 20:27:02 +00:00
|
|
|
|
RegisterSingleInstance(DisplayPreferencesRepository);
|
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var itemRepo = new SqliteItemRepository(ServerConfigurationManager, JsonSerializer, LogManager, NativeApp.GetDbConnector());
|
2016-05-01 21:48:37 +00:00
|
|
|
|
ItemRepository = itemRepo;
|
2013-04-19 20:27:02 +00:00
|
|
|
|
RegisterSingleInstance(ItemRepository);
|
|
|
|
|
|
2014-01-20 16:09:53 +00:00
|
|
|
|
FileOrganizationRepository = await GetFileOrganizationRepository().ConfigureAwait(false);
|
|
|
|
|
RegisterSingleInstance(FileOrganizationRepository);
|
2014-01-19 18:08:17 +00:00
|
|
|
|
|
2014-07-08 01:41:03 +00:00
|
|
|
|
AuthenticationRepository = await GetAuthenticationRepository().ConfigureAwait(false);
|
|
|
|
|
RegisterSingleInstance(AuthenticationRepository);
|
|
|
|
|
|
2014-12-11 06:20:28 +00:00
|
|
|
|
SyncRepository = await GetSyncRepository().ConfigureAwait(false);
|
|
|
|
|
RegisterSingleInstance(SyncRepository);
|
2014-07-26 17:30:15 +00:00
|
|
|
|
|
2015-01-21 03:54:45 +00:00
|
|
|
|
UserManager = new UserManager(LogManager.GetLogger("UserManager"), ServerConfigurationManager, UserRepository, XmlSerializer, NetworkManager, () => ImageProcessor, () => DtoService, () => ConnectManager, this, JsonSerializer, FileSystemManager);
|
2013-04-14 03:05:19 +00:00
|
|
|
|
RegisterSingleInstance(UserManager);
|
|
|
|
|
|
2015-12-29 03:45:56 +00:00
|
|
|
|
LibraryManager = new LibraryManager(Logger, TaskManager, UserManager, ServerConfigurationManager, UserDataManager, () => LibraryMonitor, FileSystemManager, () => ProviderManager, () => UserViewManager);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
RegisterSingleInstance(LibraryManager);
|
2013-03-05 04:25:27 +00:00
|
|
|
|
|
2014-04-02 21:55:19 +00:00
|
|
|
|
var musicManager = new MusicManager(LibraryManager);
|
2014-03-30 16:49:40 +00:00
|
|
|
|
RegisterSingleInstance<IMusicManager>(new MusicManager(LibraryManager));
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
LibraryMonitor = new LibraryMonitor(LogManager, TaskManager, LibraryManager, ServerConfigurationManager, FileSystemManager, this);
|
2014-01-28 21:25:10 +00:00
|
|
|
|
RegisterSingleInstance(LibraryMonitor);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
2016-04-25 00:36:10 +00:00
|
|
|
|
ProviderManager = new ProviderManager(HttpClient, ServerConfigurationManager, LibraryMonitor, LogManager, FileSystemManager, ApplicationPaths, () => LibraryManager, JsonSerializer);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
RegisterSingleInstance(ProviderManager);
|
|
|
|
|
|
2014-01-07 20:12:39 +00:00
|
|
|
|
RegisterSingleInstance<ISearchEngine>(() => new SearchEngine(LogManager, LibraryManager, UserManager));
|
2013-04-05 19:34:33 +00:00
|
|
|
|
|
2015-12-14 14:45:42 +00:00
|
|
|
|
HttpServer = ServerFactory.CreateServer(this, LogManager, ServerConfigurationManager, NetworkManager, "Emby", "web/index.html");
|
2015-09-13 23:07:54 +00:00
|
|
|
|
HttpServer.GlobalResponse = LocalizationManager.GetLocalizedString("StartupEmbyServerIsLoading");
|
2013-04-08 16:45:40 +00:00
|
|
|
|
RegisterSingleInstance(HttpServer, false);
|
2013-12-13 15:48:35 +00:00
|
|
|
|
progress.Report(10);
|
2013-04-08 16:45:40 +00:00
|
|
|
|
|
2014-03-26 15:06:48 +00:00
|
|
|
|
ServerManager = new ServerManager(this, JsonSerializer, LogManager.GetLogger("ServerManager"), ServerConfigurationManager);
|
2013-04-08 15:55:53 +00:00
|
|
|
|
RegisterSingleInstance(ServerManager);
|
|
|
|
|
|
2014-03-28 03:32:43 +00:00
|
|
|
|
var innerProgress = new ActionableProgress<double>();
|
|
|
|
|
innerProgress.RegisterAction(p => progress.Report((.75 * p) + 15));
|
|
|
|
|
|
2015-04-29 17:39:23 +00:00
|
|
|
|
ImageProcessor = GetImageProcessor();
|
2013-09-18 18:49:06 +00:00
|
|
|
|
RegisterSingleInstance(ImageProcessor);
|
|
|
|
|
|
2016-07-01 15:51:35 +00:00
|
|
|
|
TVSeriesManager = new TVSeriesManager(UserManager, UserDataManager, LibraryManager, ServerConfigurationManager);
|
2014-12-30 16:36:49 +00:00
|
|
|
|
RegisterSingleInstance(TVSeriesManager);
|
|
|
|
|
|
2015-06-19 16:54:39 +00:00
|
|
|
|
SyncManager = new SyncManager(LibraryManager, SyncRepository, ImageProcessor, LogManager.GetLogger("SyncManager"), UserManager, () => DtoService, this, TVSeriesManager, () => MediaEncoder, FileSystemManager, () => SubtitleEncoder, ServerConfigurationManager, UserDataManager, () => MediaSourceManager, JsonSerializer, TaskManager);
|
2014-07-22 16:36:34 +00:00
|
|
|
|
RegisterSingleInstance(SyncManager);
|
|
|
|
|
|
2015-05-31 18:22:51 +00:00
|
|
|
|
DtoService = new DtoService(LogManager.GetLogger("DtoService"), LibraryManager, UserDataManager, ItemRepository, ImageProcessor, ServerConfigurationManager, FileSystemManager, ProviderManager, () => ChannelManager, SyncManager, this, () => DeviceManager, () => MediaSourceManager, () => LiveTvManager);
|
2013-09-04 17:02:19 +00:00
|
|
|
|
RegisterSingleInstance(DtoService);
|
2014-01-18 21:52:01 +00:00
|
|
|
|
|
2014-08-25 03:54:45 +00:00
|
|
|
|
var encryptionManager = new EncryptionManager();
|
|
|
|
|
RegisterSingleInstance<IEncryptionManager>(encryptionManager);
|
|
|
|
|
|
2016-06-30 23:17:49 +00:00
|
|
|
|
ConnectManager = new ConnectManager(LogManager.GetLogger("ConnectManager"), ApplicationPaths, JsonSerializer, encryptionManager, HttpClient, this, ServerConfigurationManager, UserManager, ProviderManager, SecurityManager, FileSystemManager);
|
2014-08-25 03:54:45 +00:00
|
|
|
|
RegisterSingleInstance(ConnectManager);
|
|
|
|
|
|
2015-12-29 03:45:56 +00:00
|
|
|
|
DeviceManager = new DeviceManager(new DeviceRepository(ApplicationPaths, JsonSerializer, LogManager.GetLogger("DeviceManager"), FileSystemManager), UserManager, FileSystemManager, LibraryMonitor, ServerConfigurationManager, LogManager.GetLogger("DeviceManager"), NetworkManager);
|
2014-10-11 20:38:13 +00:00
|
|
|
|
RegisterSingleInstance(DeviceManager);
|
|
|
|
|
|
2014-12-01 12:43:34 +00:00
|
|
|
|
var newsService = new Implementations.News.NewsService(ApplicationPaths, JsonSerializer);
|
2014-01-18 21:52:01 +00:00
|
|
|
|
RegisterSingleInstance<INewsService>(newsService);
|
|
|
|
|
|
2014-03-26 15:06:48 +00:00
|
|
|
|
var fileOrganizationService = new FileOrganizationService(TaskManager, FileOrganizationRepository, LogManager.GetLogger("FileOrganizationService"), LibraryMonitor, LibraryManager, ServerConfigurationManager, FileSystemManager, ProviderManager);
|
2014-01-20 16:09:53 +00:00
|
|
|
|
RegisterSingleInstance<IFileOrganizationService>(fileOrganizationService);
|
|
|
|
|
|
2013-12-13 15:48:35 +00:00
|
|
|
|
progress.Report(15);
|
|
|
|
|
|
2015-10-17 15:05:12 +00:00
|
|
|
|
ChannelManager = new ChannelManager(UserManager, DtoService, LibraryManager, LogManager.GetLogger("ChannelManager"), ServerConfigurationManager, FileSystemManager, UserDataManager, JsonSerializer, LocalizationManager, HttpClient, ProviderManager);
|
2014-03-18 17:05:57 +00:00
|
|
|
|
RegisterSingleInstance(ChannelManager);
|
2014-03-18 01:45:41 +00:00
|
|
|
|
|
2016-02-20 23:06:57 +00:00
|
|
|
|
MediaSourceManager = new MediaSourceManager(ItemRepository, UserManager, LibraryManager, LogManager.GetLogger("MediaSourceManager"), JsonSerializer, FileSystemManager, UserDataManager);
|
2015-03-07 22:43:53 +00:00
|
|
|
|
RegisterSingleInstance(MediaSourceManager);
|
|
|
|
|
|
2015-03-08 18:11:53 +00:00
|
|
|
|
SessionManager = new SessionManager(UserDataManager, LogManager.GetLogger("SessionManager"), UserRepository, LibraryManager, UserManager, musicManager, DtoService, ImageProcessor, JsonSerializer, this, HttpClient, AuthenticationRepository, DeviceManager, MediaSourceManager);
|
|
|
|
|
RegisterSingleInstance(SessionManager);
|
|
|
|
|
|
2015-02-01 21:48:37 +00:00
|
|
|
|
var dlnaManager = new DlnaManager(XmlSerializer, FileSystemManager, ApplicationPaths, LogManager.GetLogger("Dlna"), JsonSerializer, this);
|
2014-03-13 19:08:02 +00:00
|
|
|
|
RegisterSingleInstance<IDlnaManager>(dlnaManager);
|
|
|
|
|
|
2014-05-21 01:15:46 +00:00
|
|
|
|
var connectionManager = new ConnectionManager(dlnaManager, ServerConfigurationManager, LogManager.GetLogger("UpnpConnectionManager"), HttpClient);
|
2014-05-21 00:56:24 +00:00
|
|
|
|
RegisterSingleInstance<IConnectionManager>(connectionManager);
|
|
|
|
|
|
2015-09-29 16:29:06 +00:00
|
|
|
|
CollectionManager = new CollectionManager(LibraryManager, FileSystemManager, LibraryMonitor, LogManager.GetLogger("CollectionManager"), ProviderManager);
|
2014-10-08 01:37:45 +00:00
|
|
|
|
RegisterSingleInstance(CollectionManager);
|
2014-03-07 15:53:23 +00:00
|
|
|
|
|
2015-07-24 15:20:11 +00:00
|
|
|
|
PlaylistManager = new PlaylistManager(LibraryManager, FileSystemManager, LibraryMonitor, LogManager.GetLogger("PlaylistManager"), UserManager, ProviderManager);
|
2015-03-14 04:50:23 +00:00
|
|
|
|
RegisterSingleInstance<IPlaylistManager>(PlaylistManager);
|
2014-08-02 02:34:45 +00:00
|
|
|
|
|
2016-09-06 05:02:05 +00:00
|
|
|
|
LiveTvManager = new LiveTvManager(this, ServerConfigurationManager, Logger, ItemRepository, ImageProcessor, UserDataManager, DtoService, UserManager, LibraryManager, TaskManager, LocalizationManager, JsonSerializer, ProviderManager, FileSystemManager, SecurityManager);
|
2014-01-12 06:31:21 +00:00
|
|
|
|
RegisterSingleInstance(LiveTvManager);
|
|
|
|
|
|
2015-10-04 22:04:56 +00:00
|
|
|
|
UserViewManager = new UserViewManager(LibraryManager, LocalizationManager, UserManager, ChannelManager, LiveTvManager, ServerConfigurationManager);
|
2014-06-07 19:46:24 +00:00
|
|
|
|
RegisterSingleInstance(UserViewManager);
|
|
|
|
|
|
2016-04-30 19:16:43 +00:00
|
|
|
|
var contentDirectory = new ContentDirectory(dlnaManager, UserDataManager, ImageProcessor, LibraryManager, ServerConfigurationManager, UserManager, LogManager.GetLogger("UpnpContentDirectory"), HttpClient, LocalizationManager, ChannelManager, MediaSourceManager, UserViewManager, () => MediaEncoder);
|
2014-07-30 03:31:35 +00:00
|
|
|
|
RegisterSingleInstance<IContentDirectory>(contentDirectory);
|
|
|
|
|
|
2015-01-30 17:58:38 +00:00
|
|
|
|
var mediaRegistrar = new MediaReceiverRegistrar(LogManager.GetLogger("MediaReceiverRegistrar"), HttpClient, ServerConfigurationManager);
|
|
|
|
|
RegisterSingleInstance<IMediaReceiverRegistrar>(mediaRegistrar);
|
|
|
|
|
|
2014-04-27 03:42:05 +00:00
|
|
|
|
NotificationManager = new NotificationManager(LogManager, UserManager, ServerConfigurationManager);
|
2014-04-25 20:15:50 +00:00
|
|
|
|
RegisterSingleInstance(NotificationManager);
|
|
|
|
|
|
2015-02-07 21:03:09 +00:00
|
|
|
|
SubtitleManager = new SubtitleManager(LogManager.GetLogger("SubtitleManager"), FileSystemManager, LibraryMonitor, LibraryManager, MediaSourceManager);
|
2014-05-07 02:28:19 +00:00
|
|
|
|
RegisterSingleInstance(SubtitleManager);
|
|
|
|
|
|
2016-01-07 03:54:26 +00:00
|
|
|
|
RegisterSingleInstance<IDeviceDiscovery>(new DeviceDiscovery(LogManager.GetLogger("IDeviceDiscovery"), ServerConfigurationManager, this, NetworkManager));
|
2015-07-23 16:32:34 +00:00
|
|
|
|
|
2014-06-10 17:36:06 +00:00
|
|
|
|
ChapterManager = new ChapterManager(LibraryManager, LogManager.GetLogger("ChapterManager"), ServerConfigurationManager, ItemRepository);
|
2014-06-09 19:16:14 +00:00
|
|
|
|
RegisterSingleInstance(ChapterManager);
|
|
|
|
|
|
2015-01-02 05:36:27 +00:00
|
|
|
|
await RegisterMediaEncoder(innerProgress).ConfigureAwait(false);
|
|
|
|
|
progress.Report(90);
|
|
|
|
|
|
2016-08-30 06:06:24 +00:00
|
|
|
|
EncodingManager = new EncodingManager(FileSystemManager, Logger, MediaEncoder, ChapterManager, LibraryManager);
|
2014-06-10 17:36:06 +00:00
|
|
|
|
RegisterSingleInstance(EncodingManager);
|
|
|
|
|
|
2016-01-21 17:29:14 +00:00
|
|
|
|
RegisterSingleInstance(NativeApp.GetPowerManagement());
|
2016-01-28 06:38:35 +00:00
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var sharingRepo = new SharingRepository(LogManager, ApplicationPaths, NativeApp.GetDbConnector());
|
|
|
|
|
await sharingRepo.Initialize().ConfigureAwait(false);
|
2015-06-30 23:59:45 +00:00
|
|
|
|
RegisterSingleInstance<ISharingManager>(new SharingManager(sharingRepo, ServerConfigurationManager, LibraryManager, this));
|
2015-08-10 17:37:50 +00:00
|
|
|
|
|
2015-04-29 18:48:34 +00:00
|
|
|
|
RegisterSingleInstance<ISsdpHandler>(new SsdpHandler(LogManager.GetLogger("SsdpHandler"), ServerConfigurationManager, this));
|
|
|
|
|
|
2014-08-10 22:13:17 +00:00
|
|
|
|
var activityLogRepo = await GetActivityLogRepository().ConfigureAwait(false);
|
|
|
|
|
RegisterSingleInstance(activityLogRepo);
|
2014-10-02 00:28:16 +00:00
|
|
|
|
RegisterSingleInstance<IActivityManager>(new ActivityManager(LogManager.GetLogger("ActivityManager"), activityLogRepo, UserManager));
|
2014-08-10 22:13:17 +00:00
|
|
|
|
|
2015-04-04 00:41:16 +00:00
|
|
|
|
var authContext = new AuthorizationContext(AuthenticationRepository, ConnectManager);
|
2014-07-02 04:57:18 +00:00
|
|
|
|
RegisterSingleInstance<IAuthorizationContext>(authContext);
|
|
|
|
|
RegisterSingleInstance<ISessionContext>(new SessionContext(UserManager, authContext, SessionManager));
|
2014-12-29 20:18:48 +00:00
|
|
|
|
RegisterSingleInstance<IAuthService>(new AuthService(UserManager, authContext, ServerConfigurationManager, ConnectManager, SessionManager, DeviceManager));
|
2014-07-02 04:57:18 +00:00
|
|
|
|
|
2015-03-31 16:24:16 +00:00
|
|
|
|
SubtitleEncoder = new SubtitleEncoder(LibraryManager, LogManager.GetLogger("SubtitleEncoder"), ApplicationPaths, FileSystemManager, MediaEncoder, JsonSerializer, HttpClient, MediaSourceManager);
|
2015-01-02 06:12:58 +00:00
|
|
|
|
RegisterSingleInstance(SubtitleEncoder);
|
2016-06-04 05:51:33 +00:00
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
await displayPreferencesRepo.Initialize().ConfigureAwait(false);
|
2016-06-24 06:32:51 +00:00
|
|
|
|
|
|
|
|
|
var userDataRepo = new SqliteUserDataRepository(LogManager, ApplicationPaths, NativeApp.GetDbConnector());
|
|
|
|
|
|
|
|
|
|
((UserDataManager)UserDataManager).Repository = userDataRepo;
|
|
|
|
|
await itemRepo.Initialize(userDataRepo).ConfigureAwait(false);
|
2016-05-01 21:48:37 +00:00
|
|
|
|
((LibraryManager)LibraryManager).ItemRepository = ItemRepository;
|
2014-12-22 01:02:15 +00:00
|
|
|
|
await ConfigureNotificationsRepository().ConfigureAwait(false);
|
2013-12-13 15:48:35 +00:00
|
|
|
|
progress.Report(100);
|
2013-04-08 15:55:53 +00:00
|
|
|
|
|
2014-02-22 21:05:56 +00:00
|
|
|
|
SetStaticProperties();
|
|
|
|
|
|
2015-01-20 21:32:48 +00:00
|
|
|
|
await ((UserManager)UserManager).Initialize().ConfigureAwait(false);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 17:39:23 +00:00
|
|
|
|
private IImageProcessor GetImageProcessor()
|
|
|
|
|
{
|
|
|
|
|
var maxConcurrentImageProcesses = Math.Max(Environment.ProcessorCount, 4);
|
|
|
|
|
|
|
|
|
|
if (_startupOptions.ContainsOption("-imagethreads"))
|
|
|
|
|
{
|
|
|
|
|
int.TryParse(_startupOptions.GetOption("-imagethreads"), NumberStyles.Any, CultureInfo.InvariantCulture, out maxConcurrentImageProcesses);
|
2015-06-19 16:54:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 17:06:31 +00:00
|
|
|
|
return new ImageProcessor(LogManager.GetLogger("ImageProcessor"), ServerConfigurationManager.ApplicationPaths, FileSystemManager, JsonSerializer, GetImageEncoder(), maxConcurrentImageProcesses, () => LibraryManager);
|
2015-04-29 17:39:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-08 14:38:02 +00:00
|
|
|
|
private IImageEncoder GetImageEncoder()
|
|
|
|
|
{
|
|
|
|
|
if (!_startupOptions.ContainsOption("-enablegdi"))
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2015-10-28 04:06:13 +00:00
|
|
|
|
return new ImageMagickEncoder(LogManager.GetLogger("ImageMagick"), ApplicationPaths, HttpClient, FileSystemManager, ServerConfigurationManager);
|
2015-04-08 14:38:02 +00:00
|
|
|
|
}
|
2016-08-05 21:15:48 +00:00
|
|
|
|
catch
|
2015-04-08 14:38:02 +00:00
|
|
|
|
{
|
2015-10-26 05:29:32 +00:00
|
|
|
|
Logger.Error("Error loading ImageMagick. Will revert to GDI.");
|
2015-04-08 14:38:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-06-19 16:54:39 +00:00
|
|
|
|
|
2015-10-26 05:29:32 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return new GDIImageEncoder(FileSystemManager, LogManager.GetLogger("GDI"));
|
|
|
|
|
}
|
2016-08-05 21:15:48 +00:00
|
|
|
|
catch
|
2015-10-26 05:29:32 +00:00
|
|
|
|
{
|
|
|
|
|
Logger.Error("Error loading GDI. Will revert to NullImageEncoder.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new NullImageEncoder();
|
2015-04-08 14:38:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-19 22:28:35 +00:00
|
|
|
|
protected override INetworkManager CreateNetworkManager(ILogger logger)
|
2013-10-05 17:13:32 +00:00
|
|
|
|
{
|
2014-11-09 18:24:57 +00:00
|
|
|
|
return NativeApp.CreateNetworkManager(logger);
|
2013-10-05 17:13:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-23 15:37:50 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Registers the media encoder.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-12-13 15:48:35 +00:00
|
|
|
|
private async Task RegisterMediaEncoder(IProgress<double> progress)
|
2013-09-23 15:37:50 +00:00
|
|
|
|
{
|
2016-06-23 17:04:18 +00:00
|
|
|
|
string encoderPath = null;
|
|
|
|
|
string probePath = null;
|
|
|
|
|
|
2016-06-21 01:59:26 +00:00
|
|
|
|
var info = await new FFMpegLoader(Logger, ApplicationPaths, HttpClient, ZipClient, FileSystemManager, NativeApp.Environment, NativeApp.GetFfmpegInstallInfo())
|
2014-11-09 18:24:57 +00:00
|
|
|
|
.GetFFMpegInfo(NativeApp.Environment, _startupOptions, progress).ConfigureAwait(false);
|
2013-09-23 15:37:50 +00:00
|
|
|
|
|
2016-06-23 17:04:18 +00:00
|
|
|
|
encoderPath = info.EncoderPath;
|
|
|
|
|
probePath = info.ProbePath;
|
2016-06-29 05:49:31 +00:00
|
|
|
|
var hasExternalEncoder = string.Equals(info.Version, "external", StringComparison.OrdinalIgnoreCase);
|
2016-06-20 06:19:28 +00:00
|
|
|
|
|
2015-09-18 03:08:45 +00:00
|
|
|
|
var mediaEncoder = new MediaEncoder(LogManager.GetLogger("MediaEncoder"),
|
2015-01-19 04:29:57 +00:00
|
|
|
|
JsonSerializer,
|
2016-06-23 17:04:18 +00:00
|
|
|
|
encoderPath,
|
|
|
|
|
probePath,
|
2016-06-29 05:49:31 +00:00
|
|
|
|
hasExternalEncoder,
|
2015-01-02 05:36:27 +00:00
|
|
|
|
ServerConfigurationManager,
|
|
|
|
|
FileSystemManager,
|
|
|
|
|
LiveTvManager,
|
|
|
|
|
IsoManager,
|
|
|
|
|
LibraryManager,
|
|
|
|
|
ChannelManager,
|
2015-01-02 06:12:58 +00:00
|
|
|
|
SessionManager,
|
2015-03-08 04:44:31 +00:00
|
|
|
|
() => SubtitleEncoder,
|
2016-07-03 02:47:39 +00:00
|
|
|
|
() => MediaSourceManager,
|
|
|
|
|
HttpClient,
|
|
|
|
|
ZipClient);
|
2015-09-18 03:08:45 +00:00
|
|
|
|
|
|
|
|
|
MediaEncoder = mediaEncoder;
|
2013-09-23 15:37:50 +00:00
|
|
|
|
RegisterSingleInstance(MediaEncoder);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-30 22:18:44 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user repository.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task{IUserRepository}.</returns>
|
2013-08-10 00:46:34 +00:00
|
|
|
|
private async Task<IUserRepository> GetUserRepository()
|
|
|
|
|
{
|
2015-12-29 03:45:56 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var repo = new SqliteUserRepository(LogManager, ApplicationPaths, JsonSerializer, NativeApp.GetDbConnector());
|
2013-08-10 00:46:34 +00:00
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
await repo.Initialize().ConfigureAwait(false);
|
2013-08-18 19:44:38 +00:00
|
|
|
|
|
2015-12-29 03:45:56 +00:00
|
|
|
|
return repo;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error opening user db", ex);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
2014-01-20 16:09:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the file organization repository.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task{IUserRepository}.</returns>
|
|
|
|
|
private async Task<IFileOrganizationRepository> GetFileOrganizationRepository()
|
|
|
|
|
{
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var repo = new SqliteFileOrganizationRepository(LogManager, ServerConfigurationManager.ApplicationPaths, NativeApp.GetDbConnector());
|
2014-01-20 16:09:53 +00:00
|
|
|
|
|
2016-06-12 01:25:20 +00:00
|
|
|
|
await repo.Initialize().ConfigureAwait(false);
|
2014-01-20 16:09:53 +00:00
|
|
|
|
|
2013-08-18 19:44:38 +00:00
|
|
|
|
return repo;
|
2013-08-10 00:46:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-08 01:41:03 +00:00
|
|
|
|
private async Task<IAuthenticationRepository> GetAuthenticationRepository()
|
|
|
|
|
{
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var repo = new AuthenticationRepository(LogManager, ServerConfigurationManager.ApplicationPaths, NativeApp.GetDbConnector());
|
2014-07-08 01:41:03 +00:00
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
await repo.Initialize().ConfigureAwait(false);
|
2014-07-08 01:41:03 +00:00
|
|
|
|
|
|
|
|
|
return repo;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-10 22:13:17 +00:00
|
|
|
|
private async Task<IActivityRepository> GetActivityLogRepository()
|
|
|
|
|
{
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var repo = new ActivityRepository(LogManager, ServerConfigurationManager.ApplicationPaths, NativeApp.GetDbConnector());
|
2014-08-10 22:13:17 +00:00
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
await repo.Initialize().ConfigureAwait(false);
|
2014-08-10 22:13:17 +00:00
|
|
|
|
|
|
|
|
|
return repo;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-26 17:30:15 +00:00
|
|
|
|
private async Task<ISyncRepository> GetSyncRepository()
|
|
|
|
|
{
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var repo = new SyncRepository(LogManager, JsonSerializer, ServerConfigurationManager.ApplicationPaths, NativeApp.GetDbConnector());
|
2014-07-26 17:30:15 +00:00
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
await repo.Initialize().ConfigureAwait(false);
|
2014-07-26 17:30:15 +00:00
|
|
|
|
|
|
|
|
|
return repo;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-06 21:23:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Configures the repositories.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private async Task ConfigureNotificationsRepository()
|
|
|
|
|
{
|
2016-06-11 15:56:15 +00:00
|
|
|
|
var repo = new SqliteNotificationsRepository(LogManager, ApplicationPaths, NativeApp.GetDbConnector());
|
2013-07-06 21:23:32 +00:00
|
|
|
|
|
2016-06-11 15:56:15 +00:00
|
|
|
|
await repo.Initialize().ConfigureAwait(false);
|
2013-07-06 21:23:32 +00:00
|
|
|
|
|
|
|
|
|
NotificationsRepository = repo;
|
|
|
|
|
|
|
|
|
|
RegisterSingleInstance(NotificationsRepository);
|
|
|
|
|
}
|
2013-09-05 17:26:03 +00:00
|
|
|
|
|
2013-03-08 05:08:27 +00: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;
|
2013-06-10 17:46:11 +00:00
|
|
|
|
BaseItem.LocalizationManager = LocalizationManager;
|
2013-06-20 16:44:24 +00:00
|
|
|
|
BaseItem.ItemRepository = ItemRepository;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
User.XmlSerializer = XmlSerializer;
|
|
|
|
|
User.UserManager = UserManager;
|
2013-10-06 01:04:41 +00:00
|
|
|
|
Folder.UserManager = UserManager;
|
2013-10-30 15:07:30 +00:00
|
|
|
|
BaseItem.FileSystem = FileSystemManager;
|
2014-01-16 17:23:30 +00:00
|
|
|
|
BaseItem.UserDataManager = UserDataManager;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
BaseItem.ChannelManager = ChannelManager;
|
2014-08-14 13:24:30 +00:00
|
|
|
|
BaseItem.LiveTvManager = LiveTvManager;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
Folder.UserViewManager = UserViewManager;
|
|
|
|
|
UserView.TVSeriesManager = TVSeriesManager;
|
2015-03-14 04:50:23 +00:00
|
|
|
|
UserView.PlaylistManager = PlaylistManager;
|
2014-10-08 01:37:45 +00:00
|
|
|
|
BaseItem.CollectionManager = CollectionManager;
|
2015-02-07 21:03:09 +00:00
|
|
|
|
BaseItem.MediaSourceManager = MediaSourceManager;
|
2016-08-13 05:49:00 +00:00
|
|
|
|
CollectionFolder.XmlSerializer = XmlSerializer;
|
2016-08-19 00:10:10 +00:00
|
|
|
|
BaseStreamingService.AppHost = this;
|
|
|
|
|
BaseStreamingService.HttpClient = HttpClient;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-01 21:22:34 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Finds the parts.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override void FindParts()
|
|
|
|
|
{
|
2016-09-06 05:02:05 +00:00
|
|
|
|
var isAuthorized = ServerConfigurationManager.Configuration.IsPortAuthorized;
|
|
|
|
|
if (isAuthorized)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
isAuthorized = !NativeApp.PortsRequireAuthorization(ConfigurationManager.CommonApplicationPaths.ApplicationPath);
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!isAuthorized)
|
2013-03-27 22:13:46 +00:00
|
|
|
|
{
|
|
|
|
|
RegisterServerWithAdministratorAccess();
|
2015-01-12 05:07:19 +00:00
|
|
|
|
ServerConfigurationManager.Configuration.IsPortAuthorized = true;
|
|
|
|
|
ConfigurationManager.SaveConfiguration();
|
2013-03-27 22:13:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-17 15:29:22 +00:00
|
|
|
|
base.FindParts();
|
2013-03-15 04:23:07 +00:00
|
|
|
|
|
2013-05-17 15:29:22 +00:00
|
|
|
|
HttpServer.Init(GetExports<IRestfulService>(false));
|
2013-04-08 15:55:53 +00:00
|
|
|
|
|
2013-05-17 15:29:22 +00:00
|
|
|
|
ServerManager.AddWebSocketListeners(GetExports<IWebSocketListener>(false));
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
2014-12-27 22:52:41 +00:00
|
|
|
|
StartServer();
|
2013-03-07 05:34:00 +00:00
|
|
|
|
|
2013-06-03 18:15:35 +00:00
|
|
|
|
LibraryManager.AddParts(GetExports<IResolverIgnoreRule>(),
|
|
|
|
|
GetExports<IVirtualFolderCreator>(),
|
|
|
|
|
GetExports<IItemResolver>(),
|
|
|
|
|
GetExports<IIntroProvider>(),
|
|
|
|
|
GetExports<IBaseItemComparer>(),
|
2014-02-09 23:08:01 +00:00
|
|
|
|
GetExports<ILibraryPostScanTask>());
|
2013-06-25 01:22:21 +00:00
|
|
|
|
|
2014-05-05 19:53:05 +00:00
|
|
|
|
ProviderManager.AddParts(GetExports<IImageProvider>(),
|
|
|
|
|
GetExports<IMetadataService>(),
|
|
|
|
|
GetExports<IMetadataProvider>(),
|
|
|
|
|
GetExports<IMetadataSaver>(),
|
|
|
|
|
GetExports<IImageSaver>(),
|
|
|
|
|
GetExports<IExternalId>());
|
2013-08-10 01:40:52 +00:00
|
|
|
|
|
2013-09-20 00:53:18 +00:00
|
|
|
|
ImageProcessor.AddParts(GetExports<IImageEnhancer>());
|
2013-09-26 16:17:36 +00:00
|
|
|
|
|
2015-07-23 13:23:22 +00:00
|
|
|
|
LiveTvManager.AddParts(GetExports<ILiveTvService>(), GetExports<ITunerHost>(), GetExports<IListingsProvider>());
|
2013-12-25 14:39:46 +00:00
|
|
|
|
|
2014-05-07 02:28:19 +00:00
|
|
|
|
SubtitleManager.AddParts(GetExports<ISubtitleProvider>());
|
2014-06-09 19:16:14 +00:00
|
|
|
|
ChapterManager.AddParts(GetExports<IChapterProvider>());
|
2014-06-11 14:42:03 +00:00
|
|
|
|
|
2013-12-25 14:39:46 +00:00
|
|
|
|
SessionManager.AddParts(GetExports<ISessionControllerFactory>());
|
2014-03-18 17:05:57 +00:00
|
|
|
|
|
2015-09-16 03:55:26 +00:00
|
|
|
|
ChannelManager.AddParts(GetExports<IChannel>());
|
2014-04-25 20:15:50 +00:00
|
|
|
|
|
2015-03-07 22:43:53 +00:00
|
|
|
|
MediaSourceManager.AddParts(GetExports<IMediaSourceProvider>());
|
2015-04-04 00:41:16 +00:00
|
|
|
|
|
2014-04-27 03:42:05 +00:00
|
|
|
|
NotificationManager.AddParts(GetExports<INotificationService>(), GetExports<INotificationTypeFactory>());
|
2014-07-22 01:29:06 +00:00
|
|
|
|
SyncManager.AddParts(GetExports<ISyncProvider>());
|
2013-03-01 21:22:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-19 06:42:31 +00:00
|
|
|
|
private string CertificatePath { get; set; }
|
|
|
|
|
|
2015-01-19 04:29:57 +00:00
|
|
|
|
private IEnumerable<string> GetUrlPrefixes()
|
|
|
|
|
{
|
2016-08-18 06:26:47 +00:00
|
|
|
|
var hosts = new List<string>();
|
2016-06-07 16:21:46 +00:00
|
|
|
|
|
2016-08-18 06:26:47 +00:00
|
|
|
|
hosts.Add("+");
|
2015-01-19 04:29:57 +00:00
|
|
|
|
|
2016-06-07 16:21:46 +00:00
|
|
|
|
return hosts.SelectMany(i =>
|
|
|
|
|
{
|
|
|
|
|
var prefixes = new List<string>
|
|
|
|
|
{
|
|
|
|
|
"http://"+i+":" + ServerConfigurationManager.Configuration.HttpServerPortNumber + "/"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(CertificatePath))
|
|
|
|
|
{
|
|
|
|
|
prefixes.Add("https://" + i + ":" + ServerConfigurationManager.Configuration.HttpsPortNumber + "/");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return prefixes;
|
|
|
|
|
});
|
2015-01-19 04:29:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-07 18:49:42 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Starts the server.
|
|
|
|
|
/// </summary>
|
2014-12-27 22:52:41 +00:00
|
|
|
|
private void StartServer()
|
2015-01-19 07:12:01 +00:00
|
|
|
|
{
|
|
|
|
|
CertificatePath = GetCertificatePath(true);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ServerManager.Start(GetUrlPrefixes(), CertificatePath);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error starting http server", ex);
|
|
|
|
|
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetCertificatePath(bool generateCertificate)
|
2013-05-07 18:49:42 +00:00
|
|
|
|
{
|
2015-01-23 06:15:15 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(ServerConfigurationManager.Configuration.CertificatePath))
|
2013-05-07 18:49:42 +00:00
|
|
|
|
{
|
2015-01-23 06:15:15 +00:00
|
|
|
|
// Custom cert
|
|
|
|
|
return ServerConfigurationManager.Configuration.CertificatePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Generate self-signed cert
|
|
|
|
|
var certHost = GetHostnameFromExternalDns(ServerConfigurationManager.Configuration.WanDdns);
|
|
|
|
|
var certPath = Path.Combine(ServerConfigurationManager.ApplicationPaths.ProgramDataPath, "ssl", "cert_" + certHost.GetMD5().ToString("N") + ".pfx");
|
2015-01-19 06:42:31 +00:00
|
|
|
|
|
2015-01-23 06:15:15 +00:00
|
|
|
|
if (generateCertificate)
|
|
|
|
|
{
|
2015-09-13 21:32:02 +00:00
|
|
|
|
if (!FileSystemManager.FileExists(certPath))
|
2015-01-18 21:44:35 +00:00
|
|
|
|
{
|
2015-09-13 21:32:02 +00:00
|
|
|
|
FileSystemManager.CreateDirectory(Path.GetDirectoryName(certPath));
|
2015-01-23 06:15:15 +00:00
|
|
|
|
|
|
|
|
|
try
|
2015-01-19 06:42:31 +00:00
|
|
|
|
{
|
2015-01-23 06:15:15 +00:00
|
|
|
|
NetworkManager.GenerateSelfSignedSslCertificate(certPath, certHost);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error creating ssl cert", ex);
|
|
|
|
|
return null;
|
2015-01-19 06:42:31 +00:00
|
|
|
|
}
|
2015-01-18 21:44:35 +00:00
|
|
|
|
}
|
2013-05-07 18:49:42 +00:00
|
|
|
|
}
|
2013-10-18 16:09:47 +00:00
|
|
|
|
|
2015-01-23 06:15:15 +00:00
|
|
|
|
return certPath;
|
2013-05-07 18:49:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-07 19:07:51 +00: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 04:29:57 +00: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 04:05:58 +00:00
|
|
|
|
if (ServerConfigurationManager.Configuration.IsPortAuthorized)
|
|
|
|
|
{
|
|
|
|
|
ServerConfigurationManager.Configuration.IsPortAuthorized = false;
|
|
|
|
|
ServerConfigurationManager.SaveConfiguration();
|
2015-01-19 04:29:57 +00:00
|
|
|
|
|
2015-02-11 04:05:58 +00:00
|
|
|
|
requiresRestart = true;
|
|
|
|
|
}
|
2015-01-19 04:29:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!HttpServer.UrlPrefixes.SequenceEqual(GetUrlPrefixes(), StringComparer.OrdinalIgnoreCase))
|
2013-05-07 19:07:51 +00:00
|
|
|
|
{
|
2015-01-19 04:29:57 +00:00
|
|
|
|
requiresRestart = true;
|
|
|
|
|
}
|
2015-01-04 05:55:34 +00:00
|
|
|
|
|
2015-01-19 07:12:01 +00:00
|
|
|
|
if (!string.Equals(CertificatePath, GetCertificatePath(false), StringComparison.OrdinalIgnoreCase))
|
2015-01-19 06:42:31 +00:00
|
|
|
|
{
|
|
|
|
|
requiresRestart = true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-19 04:29:57 +00:00
|
|
|
|
if (requiresRestart)
|
|
|
|
|
{
|
2013-05-07 19:07:51 +00:00
|
|
|
|
NotifyPendingRestart();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Restarts this instance.
|
|
|
|
|
/// </summary>
|
2013-09-20 17:32:10 +00:00
|
|
|
|
public override async Task Restart()
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
2013-10-07 14:38:31 +00:00
|
|
|
|
if (!CanSelfRestart)
|
|
|
|
|
{
|
2016-08-31 19:17:11 +00:00
|
|
|
|
throw new PlatformNotSupportedException("The server is unable to self-restart. Please restart manually.");
|
2013-10-07 14:38:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-05 17:26:03 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2013-10-03 18:02:23 +00:00
|
|
|
|
await SessionManager.SendServerRestartNotification(CancellationToken.None).ConfigureAwait(false);
|
2013-09-05 17:26:03 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2013-10-03 18:02:23 +00:00
|
|
|
|
Logger.ErrorException("Error sending server restart notification", ex);
|
2013-09-05 17:26:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-04 22:04:56 +00:00
|
|
|
|
Logger.Info("Calling NativeApp.Restart");
|
2014-06-04 16:15:44 +00:00
|
|
|
|
|
2015-06-05 14:27:01 +00:00
|
|
|
|
NativeApp.Restart(_startupOptions);
|
2013-02-24 21:53:54 +00: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 05:43:06 +00:00
|
|
|
|
public override bool CanSelfUpdate
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
2013-08-08 17:00:20 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
#if DEBUG
|
|
|
|
|
return false;
|
|
|
|
|
#endif
|
2014-03-11 00:54:31 +00:00
|
|
|
|
#pragma warning disable 162
|
2013-10-07 16:22:19 +00:00
|
|
|
|
return NativeApp.CanSelfUpdate;
|
2014-03-11 00:54:31 +00:00
|
|
|
|
#pragma warning restore 162
|
2013-08-08 17:00:20 +00:00
|
|
|
|
}
|
2013-02-24 21:53:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the composable part assemblies.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>IEnumerable{Assembly}.</returns>
|
2013-02-26 03:43:04 +00:00
|
|
|
|
protected override IEnumerable<Assembly> GetComposablePartAssemblies()
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
2013-12-29 14:12:29 +00:00
|
|
|
|
var list = GetPluginAssemblies()
|
2013-09-25 00:54:51 +00:00
|
|
|
|
.ToList();
|
2013-09-26 21:20:26 +00:00
|
|
|
|
|
2013-02-24 21:53:54 +00: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
|
|
|
|
|
|
2013-02-28 19:32:41 +00:00
|
|
|
|
// Include composable parts in the Api assembly
|
2013-09-25 00:54:51 +00:00
|
|
|
|
list.Add(typeof(ApiEntryPoint).Assembly);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
2013-02-28 19:32:41 +00:00
|
|
|
|
// Include composable parts in the Dashboard assembly
|
2014-03-25 21:13:55 +00:00
|
|
|
|
list.Add(typeof(DashboardService).Assembly);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
// Include composable parts in the Model assembly
|
2013-09-25 00:54:51 +00:00
|
|
|
|
list.Add(typeof(SystemInfo).Assembly);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
// Include composable parts in the Common assembly
|
2013-09-25 00:54:51 +00:00
|
|
|
|
list.Add(typeof(IApplicationHost).Assembly);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
// Include composable parts in the Controller assembly
|
2013-12-15 18:29:34 +00:00
|
|
|
|
list.Add(typeof(IServerApplicationHost).Assembly);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
2013-06-09 16:47:28 +00:00
|
|
|
|
// Include composable parts in the Providers assembly
|
2014-02-06 04:39:16 +00:00
|
|
|
|
list.Add(typeof(ProviderUtils).Assembly);
|
2013-06-20 16:44:24 +00:00
|
|
|
|
|
2013-02-24 21:53:54 +00:00
|
|
|
|
// Common implementations
|
2013-09-25 00:54:51 +00:00
|
|
|
|
list.Add(typeof(TaskManager).Assembly);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
// Server implementations
|
2013-09-25 00:54:51 +00:00
|
|
|
|
list.Add(typeof(ServerApplicationPaths).Assembly);
|
2013-02-26 03:43:04 +00:00
|
|
|
|
|
2014-03-27 19:30:21 +00:00
|
|
|
|
// MediaEncoding
|
|
|
|
|
list.Add(typeof(MediaEncoder).Assembly);
|
|
|
|
|
|
|
|
|
|
// Dlna
|
2014-04-27 03:42:05 +00:00
|
|
|
|
list.Add(typeof(DlnaEntryPoint).Assembly);
|
2014-02-28 04:49:02 +00:00
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
// Local metadata
|
2015-05-31 18:22:51 +00:00
|
|
|
|
list.Add(typeof(BoxSetXmlSaver).Assembly);
|
2014-06-30 03:04:50 +00:00
|
|
|
|
|
|
|
|
|
// Xbmc
|
|
|
|
|
list.Add(typeof(ArtistNfoProvider).Assembly);
|
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
list.AddRange(NativeApp.GetAssembliesWithParts());
|
2013-09-05 17:26:03 +00:00
|
|
|
|
|
2013-02-24 21:53:54 +00:00
|
|
|
|
// Include composable parts in the running assembly
|
2013-09-25 00:54:51 +00:00
|
|
|
|
list.Add(GetType().Assembly);
|
|
|
|
|
|
|
|
|
|
return list;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
}
|
2013-02-26 16:10:55 +00:00
|
|
|
|
|
2013-12-29 14:12:29 +00: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 17:07:29 +00:00
|
|
|
|
.Where(a => a != null)
|
|
|
|
|
.ToList();
|
2013-12-29 14:12:29 +00:00
|
|
|
|
}
|
|
|
|
|
catch (DirectoryNotFoundException)
|
|
|
|
|
{
|
|
|
|
|
return new List<Assembly>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 05:34:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the system status.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>SystemInfo.</returns>
|
2016-06-19 16:53:43 +00:00
|
|
|
|
public async Task<SystemInfo> GetSystemInfo()
|
2013-03-07 05:34:00 +00:00
|
|
|
|
{
|
2016-06-19 16:53:43 +00:00
|
|
|
|
var localAddress = await GetLocalApiUrl().ConfigureAwait(false);
|
|
|
|
|
|
2013-03-07 05:34:00 +00:00
|
|
|
|
return new SystemInfo
|
|
|
|
|
{
|
|
|
|
|
HasPendingRestart = HasPendingRestart,
|
|
|
|
|
Version = ApplicationVersion.ToString(),
|
|
|
|
|
IsNetworkDeployed = CanSelfUpdate,
|
2015-01-19 04:29:57 +00:00
|
|
|
|
WebSocketPortNumber = HttpPort,
|
2013-09-20 00:53:18 +00:00
|
|
|
|
FailedPluginAssemblies = FailedAssemblies.ToList(),
|
|
|
|
|
InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToList(),
|
|
|
|
|
CompletedInstallations = InstallationManager.CompletedInstallations.ToList(),
|
2014-09-06 17:46:09 +00:00
|
|
|
|
Id = SystemId,
|
2013-08-16 14:18:09 +00:00
|
|
|
|
ProgramDataPath = ApplicationPaths.ProgramDataPath,
|
2013-11-30 18:32:39 +00:00
|
|
|
|
LogPath = ApplicationPaths.LogDirectoryPath,
|
|
|
|
|
ItemsByNamePath = ApplicationPaths.ItemsByNamePath,
|
2014-03-31 21:04:22 +00:00
|
|
|
|
InternalMetadataPath = ApplicationPaths.InternalMetadataPath,
|
2013-12-15 01:17:57 +00:00
|
|
|
|
CachePath = ApplicationPaths.CachePath,
|
2013-09-07 15:58:47 +00:00
|
|
|
|
MacAddress = GetMacAddress(),
|
2015-01-19 04:29:57 +00:00
|
|
|
|
HttpServerPortNumber = HttpPort,
|
2015-01-19 21:08:58 +00:00
|
|
|
|
SupportsHttps = SupportsHttps,
|
2015-01-19 04:29:57 +00:00
|
|
|
|
HttpsPortNumber = HttpsPort,
|
2015-07-27 16:21:18 +00:00
|
|
|
|
OperatingSystem = NativeApp.Environment.OperatingSystem.ToString(),
|
|
|
|
|
OperatingSystemDisplayName = OperatingSystemDisplayName,
|
2013-10-07 16:22:19 +00:00
|
|
|
|
CanSelfRestart = CanSelfRestart,
|
2013-12-08 19:39:39 +00:00
|
|
|
|
CanSelfUpdate = CanSelfUpdate,
|
2014-08-25 03:54:45 +00:00
|
|
|
|
WanAddress = ConnectManager.WanApiAddress,
|
2014-04-26 02:55:07 +00:00
|
|
|
|
HasUpdateAvailable = HasUpdateAvailable,
|
2014-01-18 19:25:20 +00:00
|
|
|
|
SupportsAutoRunAtStartup = SupportsAutoRunAtStartup,
|
2014-01-30 00:18:05 +00:00
|
|
|
|
TranscodingTempPath = ApplicationPaths.TranscodingTempPath,
|
2014-03-01 04:12:39 +00:00
|
|
|
|
IsRunningAsService = IsRunningAsService,
|
2014-09-09 01:15:31 +00:00
|
|
|
|
SupportsRunningAsService = SupportsRunningAsService,
|
2014-08-19 22:28:35 +00:00
|
|
|
|
ServerName = FriendlyName,
|
2016-06-19 16:53:43 +00:00
|
|
|
|
LocalAddress = localAddress,
|
2016-06-20 06:19:28 +00:00
|
|
|
|
SupportsLibraryMonitor = SupportsLibraryMonitor,
|
2016-06-29 05:49:31 +00:00
|
|
|
|
EncoderLocationType = MediaEncoder.EncoderLocationType,
|
2016-09-05 05:39:14 +00:00
|
|
|
|
SystemArchitecture = NativeApp.Environment.SystemArchitecture,
|
|
|
|
|
SystemUpdateLevel = ConfigurationManager.CommonConfiguration.SystemUpdateLevel
|
2013-03-07 05:34:00 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-19 04:29:57 +00:00
|
|
|
|
public bool EnableHttps
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return SupportsHttps && ServerConfigurationManager.Configuration.EnableHttps;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool SupportsHttps
|
|
|
|
|
{
|
|
|
|
|
get { return !string.IsNullOrWhiteSpace(HttpServer.CertificatePath); }
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-19 06:18:29 +00:00
|
|
|
|
public async Task<string> GetLocalApiUrl()
|
2014-08-19 22:28:35 +00:00
|
|
|
|
{
|
2016-06-19 06:18:29 +00:00
|
|
|
|
try
|
2014-08-19 22:28:35 +00:00
|
|
|
|
{
|
2016-06-19 06:18:29 +00:00
|
|
|
|
// Return the first matched address, if found, or the first known local address
|
|
|
|
|
var address = (await GetLocalIpAddresses().ConfigureAwait(false)).FirstOrDefault(i => !IPAddress.IsLoopback(i));
|
2015-01-24 19:03:55 +00:00
|
|
|
|
|
2016-06-19 06:18:29 +00:00
|
|
|
|
if (address != null)
|
2015-01-24 19:03:55 +00:00
|
|
|
|
{
|
2016-06-19 06:18:29 +00:00
|
|
|
|
return GetLocalApiUrl(address);
|
2015-01-24 19:03:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-10 17:37:50 +00:00
|
|
|
|
return null;
|
2014-08-19 22:28:35 +00:00
|
|
|
|
}
|
2016-06-19 06:18:29 +00:00
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error getting local Ip address information", ex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
2015-01-24 19:03:55 +00:00
|
|
|
|
}
|
2014-08-19 22:28:35 +00:00
|
|
|
|
|
2016-03-09 17:40:29 +00:00
|
|
|
|
public string GetLocalApiUrl(IPAddress ipAddress)
|
|
|
|
|
{
|
|
|
|
|
if (ipAddress.AddressFamily == AddressFamily.InterNetworkV6)
|
|
|
|
|
{
|
|
|
|
|
return GetLocalApiUrl("[" + ipAddress + "]");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GetLocalApiUrl(ipAddress.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-10 05:54:58 +00:00
|
|
|
|
public string GetLocalApiUrl(string host)
|
|
|
|
|
{
|
|
|
|
|
return string.Format("http://{0}:{1}",
|
|
|
|
|
host,
|
|
|
|
|
HttpPort.ToString(CultureInfo.InvariantCulture));
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-19 06:18:29 +00:00
|
|
|
|
public async Task<List<IPAddress>> GetLocalIpAddresses()
|
2015-01-24 19:03:55 +00:00
|
|
|
|
{
|
2016-06-19 06:18:29 +00:00
|
|
|
|
var localAddresses = NetworkManager.GetLocalIpAddresses()
|
|
|
|
|
.Where(IsIpAddressValid)
|
|
|
|
|
.ToList();
|
2015-12-29 03:39:38 +00:00
|
|
|
|
|
2016-06-19 06:18:29 +00:00
|
|
|
|
return localAddresses;
|
2014-08-19 22:28:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-29 03:39:38 +00:00
|
|
|
|
private readonly ConcurrentDictionary<string, bool> _validAddressResults = new ConcurrentDictionary<string, bool>(StringComparer.OrdinalIgnoreCase);
|
2016-01-28 06:38:35 +00:00
|
|
|
|
private DateTime _lastAddressCacheClear;
|
2015-12-29 03:39:38 +00:00
|
|
|
|
private bool IsIpAddressValid(IPAddress address)
|
2016-01-28 06:38:35 +00:00
|
|
|
|
{
|
|
|
|
|
return IsIpAddressValidInternal(address).Result;
|
|
|
|
|
}
|
|
|
|
|
private async Task<bool> IsIpAddressValidInternal(IPAddress address)
|
2014-09-17 03:04:10 +00:00
|
|
|
|
{
|
2015-12-29 03:39:38 +00:00
|
|
|
|
if (IPAddress.IsLoopback(address))
|
2014-09-17 03:04:10 +00:00
|
|
|
|
{
|
2015-12-29 03:39:38 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2014-09-17 03:04:10 +00:00
|
|
|
|
|
2016-03-09 17:40:29 +00:00
|
|
|
|
var apiUrl = GetLocalApiUrl(address);
|
2015-12-29 03:39:38 +00:00
|
|
|
|
apiUrl += "/system/ping";
|
2014-09-17 03:04:10 +00:00
|
|
|
|
|
2016-01-28 06:38:35 +00:00
|
|
|
|
if ((DateTime.UtcNow - _lastAddressCacheClear).TotalMinutes >= 5)
|
|
|
|
|
{
|
|
|
|
|
_lastAddressCacheClear = DateTime.UtcNow;
|
|
|
|
|
_validAddressResults.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-29 03:39:38 +00:00
|
|
|
|
bool cachedResult;
|
|
|
|
|
if (_validAddressResults.TryGetValue(apiUrl, out cachedResult))
|
|
|
|
|
{
|
|
|
|
|
return cachedResult;
|
|
|
|
|
}
|
2014-09-17 03:04:10 +00:00
|
|
|
|
|
2015-12-29 03:39:38 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2016-01-28 06:38:35 +00:00
|
|
|
|
using (var response = await HttpClient.SendAsync(new HttpRequestOptions
|
2014-09-17 03:04:10 +00:00
|
|
|
|
{
|
2015-12-29 03:39:38 +00:00
|
|
|
|
Url = apiUrl,
|
|
|
|
|
LogErrorResponseBody = false,
|
2015-12-29 19:06:32 +00:00
|
|
|
|
LogErrors = false,
|
2016-01-28 06:38:35 +00:00
|
|
|
|
LogRequest = false,
|
|
|
|
|
TimeoutMs = 30000
|
2014-09-17 03:04:10 +00:00
|
|
|
|
|
2016-01-28 06:38:35 +00:00
|
|
|
|
}, "POST").ConfigureAwait(false))
|
2015-12-29 03:39:38 +00:00
|
|
|
|
{
|
2015-12-29 19:06:32 +00: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 06:38:35 +00:00
|
|
|
|
//Logger.Debug("Ping test result to {0}. Success: {1}", apiUrl, valid);
|
2015-12-29 19:06:32 +00:00
|
|
|
|
return valid;
|
|
|
|
|
}
|
2015-12-29 03:39:38 +00:00
|
|
|
|
}
|
2014-09-17 03:04:10 +00:00
|
|
|
|
}
|
2015-12-29 03:39:38 +00:00
|
|
|
|
catch
|
|
|
|
|
{
|
2016-01-28 06:38:35 +00:00
|
|
|
|
//Logger.Debug("Ping test result to {0}. Success: {1}", apiUrl, false);
|
2015-12-29 19:06:32 +00:00
|
|
|
|
|
|
|
|
|
_validAddressResults.AddOrUpdate(apiUrl, false, (k, v) => false);
|
2015-12-29 03:39:38 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-05 23:59:24 +00:00
|
|
|
|
public string FriendlyName
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return string.IsNullOrWhiteSpace(ServerConfigurationManager.Configuration.ServerName)
|
|
|
|
|
? Environment.MachineName
|
|
|
|
|
: ServerConfigurationManager.Configuration.ServerName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-19 04:29:57 +00:00
|
|
|
|
public int HttpPort { get; private set; }
|
2014-03-17 04:25:11 +00:00
|
|
|
|
|
2015-01-19 04:29:57 +00:00
|
|
|
|
public int HttpsPort { get; private set; }
|
2015-01-07 03:36:42 +00:00
|
|
|
|
|
2013-08-16 14:18:09 +00: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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-26 16:10:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shuts down.
|
|
|
|
|
/// </summary>
|
2013-09-20 17:32:10 +00:00
|
|
|
|
public override async Task Shutdown()
|
2013-02-26 16:10:55 +00:00
|
|
|
|
{
|
2013-09-05 17:26:03 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2013-10-03 18:02:23 +00:00
|
|
|
|
await SessionManager.SendServerShutdownNotification(CancellationToken.None).ConfigureAwait(false);
|
2013-09-05 17:26:03 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2013-10-03 18:02:23 +00:00
|
|
|
|
Logger.ErrorException("Error sending server shutdown notification", ex);
|
2013-09-05 17:26:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-25 00:54:51 +00:00
|
|
|
|
NativeApp.Shutdown();
|
2013-04-05 19:34:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-27 22:13:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Registers the server with administrator access.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void RegisterServerWithAdministratorAccess()
|
|
|
|
|
{
|
|
|
|
|
Logger.Info("Requesting administrative access to authorize http server");
|
|
|
|
|
|
2013-09-25 00:54:51 +00:00
|
|
|
|
try
|
2013-03-27 22:13:46 +00:00
|
|
|
|
{
|
2014-11-09 18:24:57 +00:00
|
|
|
|
NativeApp.AuthorizeServer(
|
2013-09-25 00:54:51 +00:00
|
|
|
|
UdpServerEntryPoint.PortNumber,
|
2014-12-27 22:52:41 +00:00
|
|
|
|
ServerConfigurationManager.Configuration.HttpServerPortNumber,
|
2015-01-11 02:12:43 +00:00
|
|
|
|
ServerConfigurationManager.Configuration.HttpsPortNumber,
|
2016-03-26 17:51:27 +00:00
|
|
|
|
ConfigurationManager.CommonApplicationPaths.ApplicationPath,
|
2013-09-25 00:54:51 +00:00
|
|
|
|
ConfigurationManager.CommonApplicationPaths.TempDirectory);
|
2013-03-27 22:13:46 +00:00
|
|
|
|
}
|
2013-09-25 00:54:51 +00:00
|
|
|
|
catch (Exception ex)
|
2013-03-27 22:13:46 +00:00
|
|
|
|
{
|
2013-09-25 00:54:51 +00:00
|
|
|
|
Logger.ErrorException("Error authorizing server", ex);
|
2013-03-27 22:13:46 +00:00
|
|
|
|
}
|
2013-02-26 16:10:55 +00:00
|
|
|
|
}
|
2013-07-08 17:13:18 +00:00
|
|
|
|
|
2014-04-26 02:55:07 +00:00
|
|
|
|
public event EventHandler HasUpdateAvailableChanged;
|
|
|
|
|
|
2014-01-05 06:50:48 +00:00
|
|
|
|
private bool _hasUpdateAvailable;
|
2014-04-26 02:55:07 +00: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 01:56:03 +00: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 17:17:35 +00:00
|
|
|
|
public override async Task<CheckForUpdateResult> CheckForApplicationUpdate(CancellationToken cancellationToken, IProgress<double> progress)
|
2013-07-08 17:13:18 +00:00
|
|
|
|
{
|
2016-01-13 20:59:03 +00:00
|
|
|
|
var cacheLength = TimeSpan.FromHours(3);
|
2016-01-04 02:31:22 +00:00
|
|
|
|
var updateLevel = ConfigurationManager.CommonConfiguration.SystemUpdateLevel;
|
2016-01-03 01:23:09 +00:00
|
|
|
|
|
2016-01-04 02:31:22 +00:00
|
|
|
|
if (updateLevel == PackageVersionClass.Beta)
|
2016-01-03 19:01:05 +00:00
|
|
|
|
{
|
|
|
|
|
cacheLength = TimeSpan.FromHours(1);
|
|
|
|
|
}
|
2016-01-04 02:31:22 +00:00
|
|
|
|
else if (updateLevel == PackageVersionClass.Dev)
|
2014-07-09 14:39:04 +00:00
|
|
|
|
{
|
2016-01-03 19:01:05 +00:00
|
|
|
|
cacheLength = TimeSpan.FromMinutes(5);
|
2014-07-09 14:39:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-09 06:59:23 +00:00
|
|
|
|
var result = await new GithubUpdater(HttpClient, JsonSerializer).CheckForUpdateResult("MediaBrowser", "Emby", ApplicationVersion, updateLevel, _releaseAssetFilename,
|
|
|
|
|
"MBServer", "Mbserver.zip", cacheLength, cancellationToken).ConfigureAwait(false);
|
2016-01-09 17:17:35 +00:00
|
|
|
|
|
|
|
|
|
HasUpdateAvailable = result.IsUpdateAvailable;
|
|
|
|
|
|
|
|
|
|
return result;
|
2013-07-08 17:13:18 +00:00
|
|
|
|
}
|
2013-08-28 20:12:58 +00:00
|
|
|
|
|
2013-09-14 01:56:03 +00: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)
|
|
|
|
|
{
|
2016-01-03 01:23:09 +00:00
|
|
|
|
await InstallationManager.InstallPackage(package, false, progress, cancellationToken).ConfigureAwait(false);
|
2013-09-14 01:56:03 +00:00
|
|
|
|
|
2014-04-26 02:55:07 +00:00
|
|
|
|
HasUpdateAvailable = false;
|
2014-01-05 06:50:48 +00:00
|
|
|
|
|
2014-04-30 15:07:02 +00:00
|
|
|
|
OnApplicationUpdated(package);
|
2013-09-14 01:56:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-06 01:59:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Configures the automatic run at startup.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="autorun">if set to <c>true</c> [autorun].</param>
|
2013-09-25 00:54:51 +00:00
|
|
|
|
protected override void ConfigureAutoRunAtStartup(bool autorun)
|
|
|
|
|
{
|
2014-01-06 01:59:21 +00:00
|
|
|
|
if (SupportsAutoRunAtStartup)
|
|
|
|
|
{
|
2014-11-09 18:24:57 +00:00
|
|
|
|
NativeApp.ConfigureAutoRun(autorun);
|
2014-01-06 01:59:21 +00:00
|
|
|
|
}
|
2013-08-28 20:12:58 +00:00
|
|
|
|
}
|
2015-01-18 21:44:35 +00:00
|
|
|
|
|
|
|
|
|
/// <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 06:42:31 +00:00
|
|
|
|
return new Uri(externalDns).Host;
|
2015-01-18 21:44:35 +00:00
|
|
|
|
}
|
2016-08-05 21:15:48 +00:00
|
|
|
|
catch
|
2015-01-18 21:44:35 +00:00
|
|
|
|
{
|
|
|
|
|
return externalDns;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-24 03:03:49 +00:00
|
|
|
|
|
|
|
|
|
public void LaunchUrl(string url)
|
|
|
|
|
{
|
|
|
|
|
NativeApp.LaunchUrl(url);
|
|
|
|
|
}
|
2016-09-03 17:16:36 +00:00
|
|
|
|
|
|
|
|
|
public void EnableLoopback(string appName)
|
|
|
|
|
{
|
|
|
|
|
NativeApp.EnableLoopback(appName);
|
|
|
|
|
}
|
2013-02-24 21:53:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|