ApplicationHost.cs 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096
  1. using MediaBrowser.Api;
  2. using MediaBrowser.Common;
  3. using MediaBrowser.Common.Configuration;
  4. using MediaBrowser.Common.Events;
  5. using MediaBrowser.Common.Extensions;
  6. using MediaBrowser.Common.Implementations;
  7. using MediaBrowser.Common.Implementations.ScheduledTasks;
  8. using MediaBrowser.Common.IO;
  9. using MediaBrowser.Common.Net;
  10. using MediaBrowser.Common.Progress;
  11. using MediaBrowser.Controller;
  12. using MediaBrowser.Controller.Channels;
  13. using MediaBrowser.Controller.Chapters;
  14. using MediaBrowser.Controller.Collections;
  15. using MediaBrowser.Controller.Configuration;
  16. using MediaBrowser.Controller.Dlna;
  17. using MediaBrowser.Controller.Drawing;
  18. using MediaBrowser.Controller.Dto;
  19. using MediaBrowser.Controller.Entities;
  20. using MediaBrowser.Controller.FileOrganization;
  21. using MediaBrowser.Controller.Library;
  22. using MediaBrowser.Controller.LiveTv;
  23. using MediaBrowser.Controller.Localization;
  24. using MediaBrowser.Controller.MediaEncoding;
  25. using MediaBrowser.Controller.Net;
  26. using MediaBrowser.Controller.News;
  27. using MediaBrowser.Controller.Notifications;
  28. using MediaBrowser.Controller.Persistence;
  29. using MediaBrowser.Controller.Plugins;
  30. using MediaBrowser.Controller.Providers;
  31. using MediaBrowser.Controller.Resolvers;
  32. using MediaBrowser.Controller.Security;
  33. using MediaBrowser.Controller.Session;
  34. using MediaBrowser.Controller.Sorting;
  35. using MediaBrowser.Controller.Subtitles;
  36. using MediaBrowser.Controller.Themes;
  37. using MediaBrowser.Dlna;
  38. using MediaBrowser.Dlna.ConnectionManager;
  39. using MediaBrowser.Dlna.ContentDirectory;
  40. using MediaBrowser.Dlna.Main;
  41. using MediaBrowser.MediaEncoding.BdInfo;
  42. using MediaBrowser.MediaEncoding.Encoder;
  43. using MediaBrowser.MediaEncoding.Subtitles;
  44. using MediaBrowser.Model.Logging;
  45. using MediaBrowser.Model.MediaInfo;
  46. using MediaBrowser.Model.System;
  47. using MediaBrowser.Model.Updates;
  48. using MediaBrowser.Providers.Chapters;
  49. using MediaBrowser.Providers.Manager;
  50. using MediaBrowser.Providers.Subtitles;
  51. using MediaBrowser.Server.Implementations;
  52. using MediaBrowser.Server.Implementations.Channels;
  53. using MediaBrowser.Server.Implementations.Collections;
  54. using MediaBrowser.Server.Implementations.Configuration;
  55. using MediaBrowser.Server.Implementations.Drawing;
  56. using MediaBrowser.Server.Implementations.Dto;
  57. using MediaBrowser.Server.Implementations.EntryPoints;
  58. using MediaBrowser.Server.Implementations.FileOrganization;
  59. using MediaBrowser.Server.Implementations.HttpServer;
  60. using MediaBrowser.Server.Implementations.IO;
  61. using MediaBrowser.Server.Implementations.Library;
  62. using MediaBrowser.Server.Implementations.LiveTv;
  63. using MediaBrowser.Server.Implementations.Localization;
  64. using MediaBrowser.Server.Implementations.MediaEncoder;
  65. using MediaBrowser.Server.Implementations.Notifications;
  66. using MediaBrowser.Server.Implementations.Persistence;
  67. using MediaBrowser.Server.Implementations.Security;
  68. using MediaBrowser.Server.Implementations.ServerManager;
  69. using MediaBrowser.Server.Implementations.Session;
  70. using MediaBrowser.Server.Implementations.Themes;
  71. using MediaBrowser.Server.Implementations.WebSocket;
  72. using MediaBrowser.ServerApplication.EntryPoints;
  73. using MediaBrowser.ServerApplication.FFMpeg;
  74. using MediaBrowser.ServerApplication.IO;
  75. using MediaBrowser.ServerApplication.Native;
  76. using MediaBrowser.ServerApplication.Networking;
  77. using MediaBrowser.WebDashboard.Api;
  78. using System;
  79. using System.Collections.Generic;
  80. using System.Globalization;
  81. using System.IO;
  82. using System.Linq;
  83. using System.Reflection;
  84. using System.Threading;
  85. using System.Threading.Tasks;
  86. namespace MediaBrowser.ServerApplication
  87. {
  88. /// <summary>
  89. /// Class CompositionRoot
  90. /// </summary>
  91. public class ApplicationHost : BaseApplicationHost<ServerApplicationPaths>, IServerApplicationHost
  92. {
  93. /// <summary>
  94. /// Gets the server configuration manager.
  95. /// </summary>
  96. /// <value>The server configuration manager.</value>
  97. public IServerConfigurationManager ServerConfigurationManager
  98. {
  99. get { return (IServerConfigurationManager)ConfigurationManager; }
  100. }
  101. /// <summary>
  102. /// Gets the name of the web application that can be used for url building.
  103. /// All api urls will be of the form {protocol}://{host}:{port}/{appname}/...
  104. /// </summary>
  105. /// <value>The name of the web application.</value>
  106. public string WebApplicationName
  107. {
  108. get { return "mediabrowser"; }
  109. }
  110. /// <summary>
  111. /// Gets the HTTP server URL prefix.
  112. /// </summary>
  113. /// <value>The HTTP server URL prefix.</value>
  114. private IEnumerable<string> HttpServerUrlPrefixes
  115. {
  116. get
  117. {
  118. var list = new List<string>
  119. {
  120. "http://+:" + ServerConfigurationManager.Configuration.HttpServerPortNumber + "/" + WebApplicationName + "/"
  121. };
  122. return list;
  123. }
  124. }
  125. /// <summary>
  126. /// Gets the configuration manager.
  127. /// </summary>
  128. /// <returns>IConfigurationManager.</returns>
  129. protected override IConfigurationManager GetConfigurationManager()
  130. {
  131. return new ServerConfigurationManager(ApplicationPaths, LogManager, XmlSerializer);
  132. }
  133. /// <summary>
  134. /// Gets or sets the server manager.
  135. /// </summary>
  136. /// <value>The server manager.</value>
  137. private IServerManager ServerManager { get; set; }
  138. /// <summary>
  139. /// Gets or sets the user manager.
  140. /// </summary>
  141. /// <value>The user manager.</value>
  142. public IUserManager UserManager { get; set; }
  143. /// <summary>
  144. /// Gets or sets the library manager.
  145. /// </summary>
  146. /// <value>The library manager.</value>
  147. internal ILibraryManager LibraryManager { get; set; }
  148. /// <summary>
  149. /// Gets or sets the directory watchers.
  150. /// </summary>
  151. /// <value>The directory watchers.</value>
  152. private ILibraryMonitor LibraryMonitor { get; set; }
  153. /// <summary>
  154. /// Gets or sets the provider manager.
  155. /// </summary>
  156. /// <value>The provider manager.</value>
  157. private IProviderManager ProviderManager { get; set; }
  158. /// <summary>
  159. /// Gets or sets the HTTP server.
  160. /// </summary>
  161. /// <value>The HTTP server.</value>
  162. private IHttpServer HttpServer { get; set; }
  163. private IDtoService DtoService { get; set; }
  164. private IImageProcessor ImageProcessor { get; set; }
  165. private ISeriesOrderManager SeriesOrderManager { get; set; }
  166. /// <summary>
  167. /// Gets or sets the media encoder.
  168. /// </summary>
  169. /// <value>The media encoder.</value>
  170. private IMediaEncoder MediaEncoder { get; set; }
  171. private ISessionManager SessionManager { get; set; }
  172. private ILiveTvManager LiveTvManager { get; set; }
  173. internal ILocalizationManager LocalizationManager { get; set; }
  174. private IEncodingManager EncodingManager { get; set; }
  175. private IChannelManager ChannelManager { get; set; }
  176. /// <summary>
  177. /// Gets or sets the user data repository.
  178. /// </summary>
  179. /// <value>The user data repository.</value>
  180. private IUserDataManager UserDataManager { get; set; }
  181. private IUserRepository UserRepository { get; set; }
  182. internal IDisplayPreferencesRepository DisplayPreferencesRepository { get; set; }
  183. internal IItemRepository ItemRepository { get; set; }
  184. private INotificationsRepository NotificationsRepository { get; set; }
  185. private IFileOrganizationRepository FileOrganizationRepository { get; set; }
  186. private IProviderRepository ProviderRepository { get; set; }
  187. private INotificationManager NotificationManager { get; set; }
  188. private ISubtitleManager SubtitleManager { get; set; }
  189. private IChapterManager ChapterManager { get; set; }
  190. private IUserViewManager UserViewManager { get; set; }
  191. /// <summary>
  192. /// Initializes a new instance of the <see cref="ApplicationHost"/> class.
  193. /// </summary>
  194. /// <param name="applicationPaths">The application paths.</param>
  195. /// <param name="logManager">The log manager.</param>
  196. public ApplicationHost(ServerApplicationPaths applicationPaths, ILogManager logManager, bool isRunningAsService)
  197. : base(applicationPaths, logManager)
  198. {
  199. _isRunningAsService = isRunningAsService;
  200. }
  201. private readonly bool _isRunningAsService;
  202. public override bool IsRunningAsService
  203. {
  204. get { return _isRunningAsService; }
  205. }
  206. /// <summary>
  207. /// Gets the name.
  208. /// </summary>
  209. /// <value>The name.</value>
  210. public override string Name
  211. {
  212. get
  213. {
  214. return "Media Browser Server";
  215. }
  216. }
  217. /// <summary>
  218. /// Gets a value indicating whether this instance can self restart.
  219. /// </summary>
  220. /// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
  221. public override bool CanSelfRestart
  222. {
  223. get { return NativeApp.CanSelfRestart; }
  224. }
  225. public bool SupportsAutoRunAtStartup
  226. {
  227. get { return NativeApp.SupportsAutoRunAtStartup; }
  228. }
  229. /// <summary>
  230. /// Runs the startup tasks.
  231. /// </summary>
  232. /// <returns>Task.</returns>
  233. public override async Task RunStartupTasks()
  234. {
  235. await base.RunStartupTasks().ConfigureAwait(false);
  236. Logger.Info("Core startup complete");
  237. Parallel.ForEach(GetExports<IServerEntryPoint>(), entryPoint =>
  238. {
  239. try
  240. {
  241. entryPoint.Run();
  242. }
  243. catch (Exception ex)
  244. {
  245. Logger.ErrorException("Error in {0}", ex, entryPoint.GetType().Name);
  246. }
  247. });
  248. LogManager.RemoveConsoleOutput();
  249. }
  250. public override Task Init(IProgress<double> progress)
  251. {
  252. DeleteDeprecatedModules();
  253. return base.Init(progress);
  254. }
  255. private void DeleteDeprecatedModules()
  256. {
  257. try
  258. {
  259. MigrateUserFolders();
  260. }
  261. catch (IOException)
  262. {
  263. }
  264. try
  265. {
  266. File.Delete(Path.Combine(ApplicationPaths.PluginsPath, "MBPhoto.dll"));
  267. }
  268. catch (IOException)
  269. {
  270. // Not there, no big deal
  271. }
  272. Task.Run(() =>
  273. {
  274. try
  275. {
  276. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "remote-images"), true);
  277. }
  278. catch (IOException)
  279. {
  280. // Not there, no big deal
  281. }
  282. try
  283. {
  284. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "chapter-images"), true);
  285. }
  286. catch (IOException)
  287. {
  288. // Not there, no big deal
  289. }
  290. try
  291. {
  292. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "extracted-video-images"), true);
  293. }
  294. catch (IOException)
  295. {
  296. // Not there, no big deal
  297. }
  298. try
  299. {
  300. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "extracted-audio-images"), true);
  301. }
  302. catch (IOException)
  303. {
  304. // Not there, no big deal
  305. }
  306. try
  307. {
  308. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-tv"), true);
  309. }
  310. catch (IOException)
  311. {
  312. // Not there, no big deal
  313. }
  314. try
  315. {
  316. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-collections"), true);
  317. }
  318. catch (IOException)
  319. {
  320. // Not there, no big deal
  321. }
  322. try
  323. {
  324. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-movies"), true);
  325. }
  326. catch (IOException)
  327. {
  328. // Not there, no big deal
  329. }
  330. try
  331. {
  332. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "fanart-movies"), true);
  333. }
  334. catch (IOException)
  335. {
  336. // Not there, no big deal
  337. }
  338. try
  339. {
  340. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "fanart-music"), true);
  341. }
  342. catch (IOException)
  343. {
  344. // Not there, no big deal
  345. }
  346. try
  347. {
  348. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "fanart-tv"), true);
  349. }
  350. catch (IOException)
  351. {
  352. // Not there, no big deal
  353. }
  354. try
  355. {
  356. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tmdb-people"), true);
  357. }
  358. catch (IOException)
  359. {
  360. // Not there, no big deal
  361. }
  362. try
  363. {
  364. Directory.Delete(Path.Combine(ApplicationPaths.DataPath, "tvdb-v3"), true);
  365. }
  366. catch (IOException)
  367. {
  368. // Not there, no big deal
  369. }
  370. });
  371. }
  372. private void MigrateUserFolders()
  373. {
  374. var rootPath = ApplicationPaths.RootFolderPath;
  375. var folders = new DirectoryInfo(rootPath).EnumerateDirectories("*", SearchOption.TopDirectoryOnly).Where(i => !string.Equals(i.Name, "default", StringComparison.OrdinalIgnoreCase))
  376. .ToList();
  377. foreach (var folder in folders)
  378. {
  379. Directory.Delete(folder.FullName, true);
  380. }
  381. }
  382. /// <summary>
  383. /// Registers resources that classes will depend on
  384. /// </summary>
  385. /// <returns>Task.</returns>
  386. protected override async Task RegisterResources(IProgress<double> progress)
  387. {
  388. await base.RegisterResources(progress).ConfigureAwait(false);
  389. RegisterSingleInstance<IHttpResultFactory>(new HttpResultFactory(LogManager, FileSystemManager, JsonSerializer));
  390. RegisterSingleInstance<IServerApplicationHost>(this);
  391. RegisterSingleInstance<IServerApplicationPaths>(ApplicationPaths);
  392. RegisterSingleInstance(ServerConfigurationManager);
  393. LocalizationManager = new LocalizationManager(ServerConfigurationManager, FileSystemManager, JsonSerializer);
  394. RegisterSingleInstance(LocalizationManager);
  395. RegisterSingleInstance<IWebSocketServer>(() => new AlchemyServer(Logger));
  396. RegisterSingleInstance<IBlurayExaminer>(() => new BdInfoExaminer());
  397. UserDataManager = new UserDataManager(LogManager);
  398. RegisterSingleInstance(UserDataManager);
  399. UserRepository = await GetUserRepository().ConfigureAwait(false);
  400. RegisterSingleInstance(UserRepository);
  401. DisplayPreferencesRepository = new SqliteDisplayPreferencesRepository(ApplicationPaths, JsonSerializer, LogManager);
  402. RegisterSingleInstance(DisplayPreferencesRepository);
  403. ItemRepository = new SqliteItemRepository(ApplicationPaths, JsonSerializer, LogManager);
  404. RegisterSingleInstance(ItemRepository);
  405. ProviderRepository = new SqliteProviderInfoRepository(ApplicationPaths, LogManager);
  406. RegisterSingleInstance(ProviderRepository);
  407. FileOrganizationRepository = await GetFileOrganizationRepository().ConfigureAwait(false);
  408. RegisterSingleInstance(FileOrganizationRepository);
  409. UserManager = new UserManager(LogManager.GetLogger("UserManager"), ServerConfigurationManager, UserRepository);
  410. RegisterSingleInstance(UserManager);
  411. LibraryManager = new LibraryManager(Logger, TaskManager, UserManager, ServerConfigurationManager, UserDataManager, () => LibraryMonitor, FileSystemManager, () => ProviderManager);
  412. RegisterSingleInstance(LibraryManager);
  413. var musicManager = new MusicManager(LibraryManager);
  414. RegisterSingleInstance<IMusicManager>(new MusicManager(LibraryManager));
  415. LibraryMonitor = new LibraryMonitor(LogManager, TaskManager, LibraryManager, ServerConfigurationManager, FileSystemManager);
  416. RegisterSingleInstance(LibraryMonitor);
  417. ProviderManager = new ProviderManager(HttpClient, ServerConfigurationManager, LibraryMonitor, LogManager, FileSystemManager);
  418. RegisterSingleInstance(ProviderManager);
  419. SeriesOrderManager = new SeriesOrderManager();
  420. RegisterSingleInstance(SeriesOrderManager);
  421. RegisterSingleInstance<ISearchEngine>(() => new SearchEngine(LogManager, LibraryManager, UserManager));
  422. HttpServer = ServerFactory.CreateServer(this, LogManager, "Media Browser", "mediabrowser", "dashboard/index.html");
  423. RegisterSingleInstance(HttpServer, false);
  424. progress.Report(10);
  425. ServerManager = new ServerManager(this, JsonSerializer, LogManager.GetLogger("ServerManager"), ServerConfigurationManager);
  426. RegisterSingleInstance(ServerManager);
  427. var innerProgress = new ActionableProgress<double>();
  428. innerProgress.RegisterAction(p => progress.Report((.75 * p) + 15));
  429. await RegisterMediaEncoder(innerProgress).ConfigureAwait(false);
  430. progress.Report(90);
  431. ImageProcessor = new ImageProcessor(LogManager.GetLogger("ImageProcessor"), ServerConfigurationManager.ApplicationPaths, FileSystemManager, JsonSerializer, MediaEncoder);
  432. RegisterSingleInstance(ImageProcessor);
  433. DtoService = new DtoService(Logger, LibraryManager, UserManager, UserDataManager, ItemRepository, ImageProcessor, ServerConfigurationManager, FileSystemManager, ProviderManager, () => ChannelManager);
  434. RegisterSingleInstance(DtoService);
  435. SessionManager = new SessionManager(UserDataManager, ServerConfigurationManager, Logger, UserRepository, LibraryManager, UserManager, musicManager, DtoService, ImageProcessor, ItemRepository, JsonSerializer, this, HttpClient);
  436. RegisterSingleInstance(SessionManager);
  437. var newsService = new Server.Implementations.News.NewsService(ApplicationPaths, JsonSerializer);
  438. RegisterSingleInstance<INewsService>(newsService);
  439. var fileOrganizationService = new FileOrganizationService(TaskManager, FileOrganizationRepository, LogManager.GetLogger("FileOrganizationService"), LibraryMonitor, LibraryManager, ServerConfigurationManager, FileSystemManager, ProviderManager);
  440. RegisterSingleInstance<IFileOrganizationService>(fileOrganizationService);
  441. progress.Report(15);
  442. ChannelManager = new ChannelManager(UserManager, DtoService, LibraryManager, Logger, ServerConfigurationManager, FileSystemManager, UserDataManager, JsonSerializer, LocalizationManager);
  443. RegisterSingleInstance(ChannelManager);
  444. var appThemeManager = new AppThemeManager(ApplicationPaths, FileSystemManager, JsonSerializer, Logger);
  445. RegisterSingleInstance<IAppThemeManager>(appThemeManager);
  446. var dlnaManager = new DlnaManager(XmlSerializer, FileSystemManager, ApplicationPaths, LogManager.GetLogger("Dlna"), JsonSerializer);
  447. RegisterSingleInstance<IDlnaManager>(dlnaManager);
  448. var contentDirectory = new ContentDirectory(dlnaManager, UserDataManager, ImageProcessor, DtoService, LibraryManager, ServerConfigurationManager, UserManager, LogManager.GetLogger("UpnpContentDirectory"), HttpClient);
  449. RegisterSingleInstance<IContentDirectory>(contentDirectory);
  450. var connectionManager = new ConnectionManager(dlnaManager, ServerConfigurationManager, LogManager.GetLogger("UpnpConnectionManager"), HttpClient);
  451. RegisterSingleInstance<IConnectionManager>(connectionManager);
  452. var collectionManager = new CollectionManager(LibraryManager, FileSystemManager, LibraryMonitor);
  453. RegisterSingleInstance<ICollectionManager>(collectionManager);
  454. LiveTvManager = new LiveTvManager(ServerConfigurationManager, FileSystemManager, Logger, ItemRepository, ImageProcessor, UserDataManager, DtoService, UserManager, LibraryManager, TaskManager, JsonSerializer, LocalizationManager);
  455. RegisterSingleInstance(LiveTvManager);
  456. UserViewManager = new UserViewManager(LibraryManager, LocalizationManager, FileSystemManager, UserManager, ChannelManager, LiveTvManager);
  457. RegisterSingleInstance(UserViewManager);
  458. NotificationManager = new NotificationManager(LogManager, UserManager, ServerConfigurationManager);
  459. RegisterSingleInstance(NotificationManager);
  460. RegisterSingleInstance<IEncryptionManager>(new EncryptionManager());
  461. SubtitleManager = new SubtitleManager(LogManager.GetLogger("SubtitleManager"), FileSystemManager, LibraryMonitor, LibraryManager, ItemRepository);
  462. RegisterSingleInstance(SubtitleManager);
  463. ChapterManager = new ChapterManager(LibraryManager, LogManager.GetLogger("ChapterManager"), ServerConfigurationManager, ItemRepository);
  464. RegisterSingleInstance(ChapterManager);
  465. EncodingManager = new EncodingManager(ServerConfigurationManager, FileSystemManager, Logger,
  466. MediaEncoder, ChapterManager);
  467. RegisterSingleInstance(EncodingManager);
  468. RegisterSingleInstance<ISubtitleEncoder>(new SubtitleEncoder(LibraryManager, LogManager.GetLogger("SubtitleEncoder"), ApplicationPaths, FileSystemManager, MediaEncoder));
  469. var displayPreferencesTask = Task.Run(async () => await ConfigureDisplayPreferencesRepositories().ConfigureAwait(false));
  470. var itemsTask = Task.Run(async () => await ConfigureItemRepositories().ConfigureAwait(false));
  471. var userdataTask = Task.Run(async () => await ConfigureUserDataRepositories().ConfigureAwait(false));
  472. await ConfigureNotificationsRepository().ConfigureAwait(false);
  473. progress.Report(92);
  474. await Task.WhenAll(itemsTask, displayPreferencesTask, userdataTask).ConfigureAwait(false);
  475. progress.Report(100);
  476. SetStaticProperties();
  477. await ((UserManager)UserManager).Initialize().ConfigureAwait(false);
  478. SetKernelProperties();
  479. }
  480. protected override INetworkManager CreateNetworkManager()
  481. {
  482. return new NetworkManager();
  483. }
  484. protected override IFileSystem CreateFileSystemManager()
  485. {
  486. return FileSystemFactory.CreateFileSystemManager(LogManager);
  487. }
  488. /// <summary>
  489. /// Registers the media encoder.
  490. /// </summary>
  491. /// <returns>Task.</returns>
  492. private async Task RegisterMediaEncoder(IProgress<double> progress)
  493. {
  494. var info = await new FFMpegDownloader(Logger, ApplicationPaths, HttpClient, ZipClient, FileSystemManager).GetFFMpegInfo(progress).ConfigureAwait(false);
  495. MediaEncoder = new MediaEncoder(LogManager.GetLogger("MediaEncoder"), ApplicationPaths, JsonSerializer, info.EncoderPath, info.ProbePath, info.Version, FileSystemManager);
  496. RegisterSingleInstance(MediaEncoder);
  497. }
  498. /// <summary>
  499. /// Sets the kernel properties.
  500. /// </summary>
  501. private void SetKernelProperties()
  502. {
  503. LocalizedStrings.StringFiles = GetExports<LocalizedStringData>();
  504. }
  505. /// <summary>
  506. /// Gets the user repository.
  507. /// </summary>
  508. /// <returns>Task{IUserRepository}.</returns>
  509. private async Task<IUserRepository> GetUserRepository()
  510. {
  511. var repo = new SqliteUserRepository(JsonSerializer, LogManager, ApplicationPaths);
  512. await repo.Initialize().ConfigureAwait(false);
  513. return repo;
  514. }
  515. /// <summary>
  516. /// Gets the file organization repository.
  517. /// </summary>
  518. /// <returns>Task{IUserRepository}.</returns>
  519. private async Task<IFileOrganizationRepository> GetFileOrganizationRepository()
  520. {
  521. var repo = new SqliteFileOrganizationRepository(LogManager, ServerConfigurationManager.ApplicationPaths);
  522. await repo.Initialize().ConfigureAwait(false);
  523. return repo;
  524. }
  525. /// <summary>
  526. /// Configures the repositories.
  527. /// </summary>
  528. /// <returns>Task.</returns>
  529. private async Task ConfigureNotificationsRepository()
  530. {
  531. var repo = new SqliteNotificationsRepository(LogManager, ApplicationPaths);
  532. await repo.Initialize().ConfigureAwait(false);
  533. NotificationsRepository = repo;
  534. RegisterSingleInstance(NotificationsRepository);
  535. }
  536. /// <summary>
  537. /// Configures the repositories.
  538. /// </summary>
  539. /// <returns>Task.</returns>
  540. private async Task ConfigureDisplayPreferencesRepositories()
  541. {
  542. await DisplayPreferencesRepository.Initialize().ConfigureAwait(false);
  543. }
  544. /// <summary>
  545. /// Configures the item repositories.
  546. /// </summary>
  547. /// <returns>Task.</returns>
  548. private async Task ConfigureItemRepositories()
  549. {
  550. await ItemRepository.Initialize().ConfigureAwait(false);
  551. await ProviderRepository.Initialize().ConfigureAwait(false);
  552. ((LibraryManager)LibraryManager).ItemRepository = ItemRepository;
  553. }
  554. /// <summary>
  555. /// Configures the user data repositories.
  556. /// </summary>
  557. /// <returns>Task.</returns>
  558. private async Task ConfigureUserDataRepositories()
  559. {
  560. var repo = new SqliteUserDataRepository(ApplicationPaths, LogManager);
  561. await repo.Initialize().ConfigureAwait(false);
  562. ((UserDataManager)UserDataManager).Repository = repo;
  563. }
  564. /// <summary>
  565. /// Dirty hacks
  566. /// </summary>
  567. private void SetStaticProperties()
  568. {
  569. // For now there's no real way to inject these properly
  570. BaseItem.Logger = LogManager.GetLogger("BaseItem");
  571. BaseItem.ConfigurationManager = ServerConfigurationManager;
  572. BaseItem.LibraryManager = LibraryManager;
  573. BaseItem.ProviderManager = ProviderManager;
  574. BaseItem.LocalizationManager = LocalizationManager;
  575. BaseItem.ItemRepository = ItemRepository;
  576. User.XmlSerializer = XmlSerializer;
  577. User.UserManager = UserManager;
  578. LocalizedStrings.ApplicationPaths = ApplicationPaths;
  579. Folder.UserManager = UserManager;
  580. BaseItem.FileSystem = FileSystemManager;
  581. BaseItem.UserDataManager = UserDataManager;
  582. ChannelVideoItem.ChannelManager = ChannelManager;
  583. }
  584. /// <summary>
  585. /// Finds the parts.
  586. /// </summary>
  587. protected override void FindParts()
  588. {
  589. if (IsFirstRun)
  590. {
  591. RegisterServerWithAdministratorAccess();
  592. }
  593. base.FindParts();
  594. HttpServer.Init(GetExports<IRestfulService>(false));
  595. ServerManager.AddWebSocketListeners(GetExports<IWebSocketListener>(false));
  596. StartServer(true);
  597. LibraryManager.AddParts(GetExports<IResolverIgnoreRule>(),
  598. GetExports<IVirtualFolderCreator>(),
  599. GetExports<IItemResolver>(),
  600. GetExports<IIntroProvider>(),
  601. GetExports<IBaseItemComparer>(),
  602. GetExports<ILibraryPostScanTask>());
  603. ProviderManager.AddParts(GetExports<IImageProvider>(), GetExports<IMetadataService>(), GetExports<IMetadataProvider>(),
  604. GetExports<IMetadataSaver>(),
  605. GetExports<IImageSaver>(),
  606. GetExports<IExternalId>());
  607. SeriesOrderManager.AddParts(GetExports<ISeriesOrderProvider>());
  608. ImageProcessor.AddParts(GetExports<IImageEnhancer>());
  609. LiveTvManager.AddParts(GetExports<ILiveTvService>());
  610. SubtitleManager.AddParts(GetExports<ISubtitleProvider>());
  611. ChapterManager.AddParts(GetExports<IChapterProvider>());
  612. SessionManager.AddParts(GetExports<ISessionControllerFactory>());
  613. ChannelManager.AddParts(GetExports<IChannel>(), GetExports<IChannelFactory>());
  614. NotificationManager.AddParts(GetExports<INotificationService>(), GetExports<INotificationTypeFactory>());
  615. }
  616. /// <summary>
  617. /// Starts the server.
  618. /// </summary>
  619. /// <param name="retryOnFailure">if set to <c>true</c> [retry on failure].</param>
  620. private void StartServer(bool retryOnFailure)
  621. {
  622. try
  623. {
  624. ServerManager.Start(HttpServerUrlPrefixes, ServerConfigurationManager.Configuration.EnableHttpLevelLogging);
  625. }
  626. catch (Exception ex)
  627. {
  628. Logger.ErrorException("Error starting http server", ex);
  629. if (retryOnFailure)
  630. {
  631. RegisterServerWithAdministratorAccess();
  632. StartServer(false);
  633. }
  634. else
  635. {
  636. throw;
  637. }
  638. }
  639. ServerManager.StartWebSocketServer();
  640. }
  641. /// <summary>
  642. /// Called when [configuration updated].
  643. /// </summary>
  644. /// <param name="sender">The sender.</param>
  645. /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
  646. protected override void OnConfigurationUpdated(object sender, EventArgs e)
  647. {
  648. base.OnConfigurationUpdated(sender, e);
  649. HttpServer.EnableHttpRequestLogging = ServerConfigurationManager.Configuration.EnableHttpLevelLogging;
  650. if (!HttpServer.UrlPrefixes.SequenceEqual(HttpServerUrlPrefixes, StringComparer.OrdinalIgnoreCase))
  651. {
  652. NotifyPendingRestart();
  653. }
  654. else if (!ServerManager.SupportsNativeWebSocket && ServerManager.WebSocketPortNumber != ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber)
  655. {
  656. NotifyPendingRestart();
  657. }
  658. }
  659. /// <summary>
  660. /// Restarts this instance.
  661. /// </summary>
  662. public override async Task Restart()
  663. {
  664. if (!CanSelfRestart)
  665. {
  666. throw new InvalidOperationException("The server is unable to self-restart. Please restart manually.");
  667. }
  668. try
  669. {
  670. await SessionManager.SendServerRestartNotification(CancellationToken.None).ConfigureAwait(false);
  671. }
  672. catch (Exception ex)
  673. {
  674. Logger.ErrorException("Error sending server restart notification", ex);
  675. }
  676. Logger.Debug("Calling NativeApp.Restart");
  677. NativeApp.Restart();
  678. }
  679. /// <summary>
  680. /// Gets or sets a value indicating whether this instance can self update.
  681. /// </summary>
  682. /// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value>
  683. public override bool CanSelfUpdate
  684. {
  685. get
  686. {
  687. #if DEBUG
  688. return false;
  689. #endif
  690. #pragma warning disable 162
  691. return NativeApp.CanSelfUpdate;
  692. #pragma warning restore 162
  693. }
  694. }
  695. /// <summary>
  696. /// Gets the composable part assemblies.
  697. /// </summary>
  698. /// <returns>IEnumerable{Assembly}.</returns>
  699. protected override IEnumerable<Assembly> GetComposablePartAssemblies()
  700. {
  701. var list = GetPluginAssemblies()
  702. .ToList();
  703. // Gets all plugin assemblies by first reading all bytes of the .dll and calling Assembly.Load against that
  704. // This will prevent the .dll file from getting locked, and allow us to replace it when needed
  705. // Include composable parts in the Api assembly
  706. list.Add(typeof(ApiEntryPoint).Assembly);
  707. // Include composable parts in the Dashboard assembly
  708. list.Add(typeof(DashboardService).Assembly);
  709. // Include composable parts in the Model assembly
  710. list.Add(typeof(SystemInfo).Assembly);
  711. // Include composable parts in the Common assembly
  712. list.Add(typeof(IApplicationHost).Assembly);
  713. // Include composable parts in the Controller assembly
  714. list.Add(typeof(IServerApplicationHost).Assembly);
  715. // Include composable parts in the Providers assembly
  716. list.Add(typeof(ProviderUtils).Assembly);
  717. // Common implementations
  718. list.Add(typeof(TaskManager).Assembly);
  719. // Server implementations
  720. list.Add(typeof(ServerApplicationPaths).Assembly);
  721. // MediaEncoding
  722. list.Add(typeof(MediaEncoder).Assembly);
  723. // Dlna
  724. list.Add(typeof(DlnaEntryPoint).Assembly);
  725. list.AddRange(Assemblies.GetAssembliesWithParts());
  726. // Include composable parts in the running assembly
  727. list.Add(GetType().Assembly);
  728. return list;
  729. }
  730. /// <summary>
  731. /// Gets the plugin assemblies.
  732. /// </summary>
  733. /// <returns>IEnumerable{Assembly}.</returns>
  734. private IEnumerable<Assembly> GetPluginAssemblies()
  735. {
  736. try
  737. {
  738. return Directory.EnumerateFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.TopDirectoryOnly)
  739. .Select(LoadAssembly)
  740. .Where(a => a != null)
  741. .ToList();
  742. }
  743. catch (DirectoryNotFoundException)
  744. {
  745. return new List<Assembly>();
  746. }
  747. }
  748. private readonly string _systemId = Environment.MachineName.GetMD5().ToString();
  749. /// <summary>
  750. /// Gets the system status.
  751. /// </summary>
  752. /// <returns>SystemInfo.</returns>
  753. public virtual SystemInfo GetSystemInfo()
  754. {
  755. return new SystemInfo
  756. {
  757. HasPendingRestart = HasPendingRestart,
  758. Version = ApplicationVersion.ToString(),
  759. IsNetworkDeployed = CanSelfUpdate,
  760. WebSocketPortNumber = ServerManager.WebSocketPortNumber,
  761. SupportsNativeWebSocket = ServerManager.SupportsNativeWebSocket,
  762. FailedPluginAssemblies = FailedAssemblies.ToList(),
  763. InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToList(),
  764. CompletedInstallations = InstallationManager.CompletedInstallations.ToList(),
  765. Id = _systemId,
  766. ProgramDataPath = ApplicationPaths.ProgramDataPath,
  767. LogPath = ApplicationPaths.LogDirectoryPath,
  768. ItemsByNamePath = ApplicationPaths.ItemsByNamePath,
  769. InternalMetadataPath = ApplicationPaths.InternalMetadataPath,
  770. CachePath = ApplicationPaths.CachePath,
  771. MacAddress = GetMacAddress(),
  772. HttpServerPortNumber = HttpServerPort,
  773. OperatingSystem = Environment.OSVersion.ToString(),
  774. CanSelfRestart = CanSelfRestart,
  775. CanSelfUpdate = CanSelfUpdate,
  776. WanAddress = GetWanAddress(),
  777. HasUpdateAvailable = HasUpdateAvailable,
  778. SupportsAutoRunAtStartup = SupportsAutoRunAtStartup,
  779. TranscodingTempPath = ApplicationPaths.TranscodingTempPath,
  780. IsRunningAsService = IsRunningAsService,
  781. ServerName = string.IsNullOrWhiteSpace(ServerConfigurationManager.Configuration.ServerName) ? Environment.MachineName : ServerConfigurationManager.Configuration.ServerName
  782. };
  783. }
  784. public int HttpServerPort
  785. {
  786. get { return ServerConfigurationManager.Configuration.HttpServerPortNumber; }
  787. }
  788. private readonly CultureInfo _usCulture = new CultureInfo("en-US");
  789. private string GetWanAddress()
  790. {
  791. var ip = ServerConfigurationManager.Configuration.WanDdns;
  792. if (string.IsNullOrWhiteSpace(ip))
  793. {
  794. ip = WanAddressEntryPoint.WanAddress;
  795. }
  796. if (!string.IsNullOrEmpty(ip))
  797. {
  798. if (!ip.StartsWith("http://", StringComparison.OrdinalIgnoreCase) &&
  799. !ip.StartsWith("https://", StringComparison.OrdinalIgnoreCase))
  800. {
  801. ip = "http://" + ip;
  802. }
  803. return ip + ":" + ServerConfigurationManager.Configuration.HttpServerPortNumber.ToString(_usCulture);
  804. }
  805. return null;
  806. }
  807. /// <summary>
  808. /// Gets the mac address.
  809. /// </summary>
  810. /// <returns>System.String.</returns>
  811. private string GetMacAddress()
  812. {
  813. try
  814. {
  815. return NetworkManager.GetMacAddress();
  816. }
  817. catch (Exception ex)
  818. {
  819. Logger.ErrorException("Error getting mac address", ex);
  820. return null;
  821. }
  822. }
  823. /// <summary>
  824. /// Shuts down.
  825. /// </summary>
  826. public override async Task Shutdown()
  827. {
  828. try
  829. {
  830. await SessionManager.SendServerShutdownNotification(CancellationToken.None).ConfigureAwait(false);
  831. }
  832. catch (Exception ex)
  833. {
  834. Logger.ErrorException("Error sending server shutdown notification", ex);
  835. }
  836. NativeApp.Shutdown();
  837. }
  838. /// <summary>
  839. /// Registers the server with administrator access.
  840. /// </summary>
  841. private void RegisterServerWithAdministratorAccess()
  842. {
  843. Logger.Info("Requesting administrative access to authorize http server");
  844. try
  845. {
  846. ServerAuthorization.AuthorizeServer(
  847. ServerConfigurationManager.Configuration.HttpServerPortNumber,
  848. HttpServerUrlPrefixes.First(),
  849. ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber,
  850. UdpServerEntryPoint.PortNumber,
  851. ConfigurationManager.CommonApplicationPaths.TempDirectory);
  852. }
  853. catch (Exception ex)
  854. {
  855. Logger.ErrorException("Error authorizing server", ex);
  856. }
  857. }
  858. public event EventHandler HasUpdateAvailableChanged;
  859. private bool _hasUpdateAvailable;
  860. public bool HasUpdateAvailable
  861. {
  862. get { return _hasUpdateAvailable; }
  863. set
  864. {
  865. var fireEvent = value && !_hasUpdateAvailable;
  866. _hasUpdateAvailable = value;
  867. if (fireEvent)
  868. {
  869. EventHelper.FireEventIfNotNull(HasUpdateAvailableChanged, this, EventArgs.Empty, Logger);
  870. }
  871. }
  872. }
  873. /// <summary>
  874. /// Checks for update.
  875. /// </summary>
  876. /// <param name="cancellationToken">The cancellation token.</param>
  877. /// <param name="progress">The progress.</param>
  878. /// <returns>Task{CheckForUpdateResult}.</returns>
  879. public override async Task<CheckForUpdateResult> CheckForApplicationUpdate(CancellationToken cancellationToken, IProgress<double> progress)
  880. {
  881. var availablePackages = await InstallationManager.GetAvailablePackagesWithoutRegistrationInfo(cancellationToken).ConfigureAwait(false);
  882. var version = InstallationManager.GetLatestCompatibleVersion(availablePackages, "MBServer", null, ApplicationVersion,
  883. ConfigurationManager.CommonConfiguration.SystemUpdateLevel);
  884. HasUpdateAvailable = version != null && version.version >= ApplicationVersion;
  885. return version != null ? new CheckForUpdateResult { AvailableVersion = version.version, IsUpdateAvailable = version.version > ApplicationVersion, Package = version } :
  886. new CheckForUpdateResult { AvailableVersion = ApplicationVersion, IsUpdateAvailable = false };
  887. }
  888. /// <summary>
  889. /// Updates the application.
  890. /// </summary>
  891. /// <param name="package">The package that contains the update</param>
  892. /// <param name="cancellationToken">The cancellation token.</param>
  893. /// <param name="progress">The progress.</param>
  894. /// <returns>Task.</returns>
  895. public override async Task UpdateApplication(PackageVersionInfo package, CancellationToken cancellationToken, IProgress<double> progress)
  896. {
  897. await InstallationManager.InstallPackage(package, progress, cancellationToken).ConfigureAwait(false);
  898. HasUpdateAvailable = false;
  899. OnApplicationUpdated(package);
  900. }
  901. /// <summary>
  902. /// Configures the automatic run at startup.
  903. /// </summary>
  904. /// <param name="autorun">if set to <c>true</c> [autorun].</param>
  905. protected override void ConfigureAutoRunAtStartup(bool autorun)
  906. {
  907. if (SupportsAutoRunAtStartup)
  908. {
  909. Autorun.Configure(autorun);
  910. }
  911. }
  912. }
  913. }