jellyfin/MediaBrowser.ServerApplication/WindowsAppHost.cs

125 lines
4.2 KiB
C#
Raw Normal View History

2016-04-24 05:03:49 +02:00
using System;
using System.Collections.Generic;
2016-04-24 05:03:49 +02:00
using System.Diagnostics;
2016-04-03 19:34:52 +02:00
using System.IO;
using System.Reflection;
2016-12-23 00:53:57 +01:00
using System.Runtime.InteropServices.ComTypes;
2017-02-26 22:47:52 +01:00
using Emby.Server.CinemaMode;
2017-02-20 21:50:58 +01:00
using Emby.Server.Connect;
2016-11-18 22:06:00 +01:00
using Emby.Server.Implementations;
2016-11-13 22:04:21 +01:00
using Emby.Server.Implementations.EntryPoints;
2016-11-18 22:06:00 +01:00
using Emby.Server.Implementations.FFMpeg;
using Emby.Server.Implementations.IO;
2017-02-23 20:13:07 +01:00
using Emby.Server.Sync;
2017-02-20 21:50:58 +01:00
using MediaBrowser.Controller.Connect;
2017-02-23 20:13:07 +01:00
using MediaBrowser.Controller.Sync;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
2016-11-13 05:33:51 +01:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.System;
2017-04-10 03:51:36 +02:00
using MediaBrowser.Model.Updates;
using MediaBrowser.Server.Startup.Common;
2016-11-13 05:33:51 +01:00
using MediaBrowser.ServerApplication.Native;
2016-11-13 05:33:51 +01:00
namespace MediaBrowser.ServerApplication
{
2016-11-13 05:33:51 +01:00
public class WindowsAppHost : ApplicationHost
{
2017-08-17 22:19:02 +02:00
public WindowsAppHost(ServerApplicationPaths applicationPaths, ILogManager logManager, StartupOptions options, IFileSystem fileSystem, IPowerManagement powerManagement, string releaseAssetFilename, IEnvironmentInfo environmentInfo, MediaBrowser.Controller.Drawing.IImageEncoder imageEncoder, ISystemEvents systemEvents, MediaBrowser.Common.Net.INetworkManager networkManager)
: base(applicationPaths, logManager, options, fileSystem, powerManagement, releaseAssetFilename, environmentInfo, imageEncoder, systemEvents, networkManager)
{
2017-08-18 21:34:41 +02:00
fileSystem.AddShortcutHandler(new LnkShortcutHandler());
}
2017-02-20 21:50:58 +01:00
protected override IConnectManager CreateConnectManager()
{
return new ConnectManager();
}
2017-02-23 20:13:07 +01:00
protected override ISyncManager CreateSyncManager()
{
return new SyncManager();
}
2016-11-13 05:33:51 +01:00
protected override void RestartInternal()
{
2016-11-13 05:33:51 +01:00
MainStartup.Restart();
}
2017-03-22 19:37:04 +01:00
public override void EnableLoopback(string appName)
{
LoopUtil.Run(appName);
}
2016-11-13 05:33:51 +01:00
protected override List<Assembly> GetAssembliesWithPartsInternal()
{
2016-11-13 05:33:51 +01:00
var list = new List<Assembly>();
2017-02-26 22:47:52 +01:00
list.Add(typeof(DefaultIntroProvider).Assembly);
2017-02-20 21:50:58 +01:00
list.Add(typeof(ConnectManager).Assembly);
2017-02-23 20:13:07 +01:00
list.Add(typeof(SyncManager).Assembly);
2016-11-13 05:33:51 +01:00
list.Add(GetType().Assembly);
return list;
}
2016-11-13 05:33:51 +01:00
protected override void ShutdownInternal()
{
2016-11-13 05:33:51 +01:00
MainStartup.Shutdown();
}
2016-11-13 22:04:21 +01:00
protected override void AuthorizeServer()
{
2016-11-13 22:04:21 +01:00
ServerAuthorization.AuthorizeServer(UdpServerEntryPoint.PortNumber,
ServerConfigurationManager.Configuration.HttpServerPortNumber,
ServerConfigurationManager.Configuration.HttpsPortNumber,
MainStartup.ApplicationPath,
ConfigurationManager.CommonApplicationPaths.TempDirectory);
}
2016-11-13 05:33:51 +01:00
protected override void ConfigureAutoRunInternal(bool autorun)
{
var startupPath = Environment.GetFolderPath(System.Environment.SpecialFolder.Startup);
2016-11-14 04:44:54 +01:00
2016-12-23 00:53:57 +01:00
if (autorun && !MainStartup.IsRunningAsService)
2016-04-03 19:34:52 +02:00
{
//Copy our shortut into the startup folder for this user
2016-12-23 00:53:57 +01:00
var targetPath = Path.Combine(startupPath, "Emby Server.lnk");
IShellLinkW link = (IShellLinkW)new ShellLink();
var appPath = Process.GetCurrentProcess().MainModule.FileName;
// setup shortcut information
link.SetDescription(Name);
link.SetPath(appPath);
link.SetWorkingDirectory(Path.GetDirectoryName(appPath));
// save it
IPersistFile file = (IPersistFile)link;
2016-12-23 09:50:32 +01:00
file.Save(targetPath, true);
2016-04-03 19:34:52 +02:00
}
else
{
//Remove our shortcut from the startup folder for this user
2016-12-23 00:53:57 +01:00
FileSystemManager.DeleteFile(Path.Combine(startupPath, "Emby Server.lnk"));
2016-04-03 19:34:52 +02:00
}
}
2016-11-13 05:33:51 +01:00
public override bool CanSelfRestart
{
get
{
return MainStartup.CanSelfRestart;
}
}
public override bool CanSelfUpdate
{
get
{
return MainStartup.CanSelfUpdate;
}
}
}
2016-11-13 05:33:51 +01:00
}