jellyfin/MediaBrowser.ServerApplication/WindowsAppHost.cs

125 lines
4.2 KiB
C#
Raw Normal View History

2016-04-23 23:03:49 -04:00
using System;
using System.Collections.Generic;
2016-04-23 23:03:49 -04:00
using System.Diagnostics;
2016-04-03 13:34:52 -04:00
using System.IO;
using System.Reflection;
2016-12-22 18:53:57 -05:00
using System.Runtime.InteropServices.ComTypes;
2017-02-26 16:47:52 -05:00
using Emby.Server.CinemaMode;
2017-02-20 15:50:58 -05:00
using Emby.Server.Connect;
2016-11-18 16:06:00 -05:00
using Emby.Server.Implementations;
2016-11-13 16:04:21 -05:00
using Emby.Server.Implementations.EntryPoints;
2016-11-18 16:06:00 -05:00
using Emby.Server.Implementations.FFMpeg;
using Emby.Server.Implementations.IO;
2017-02-23 14:13:07 -05:00
using Emby.Server.Sync;
2017-02-20 15:50:58 -05:00
using MediaBrowser.Controller.Connect;
2017-02-23 14:13:07 -05:00
using MediaBrowser.Controller.Sync;
2016-10-25 15:02:04 -04:00
using MediaBrowser.Model.IO;
2016-11-12 23:33:51 -05:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.System;
2017-04-09 21:51:36 -04:00
using MediaBrowser.Model.Updates;
using MediaBrowser.Server.Startup.Common;
2016-11-12 23:33:51 -05:00
using MediaBrowser.ServerApplication.Native;
2016-11-12 23:33:51 -05:00
namespace MediaBrowser.ServerApplication
{
2016-11-12 23:33:51 -05:00
public class WindowsAppHost : ApplicationHost
{
2017-08-17 16:19:02 -04: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 15:34:41 -04:00
fileSystem.AddShortcutHandler(new LnkShortcutHandler());
}
2017-02-20 15:50:58 -05:00
protected override IConnectManager CreateConnectManager()
{
return new ConnectManager();
}
2017-02-23 14:13:07 -05:00
protected override ISyncManager CreateSyncManager()
{
return new SyncManager();
}
2016-11-12 23:33:51 -05:00
protected override void RestartInternal()
{
2016-11-12 23:33:51 -05:00
MainStartup.Restart();
}
2017-03-22 14:37:04 -04:00
public override void EnableLoopback(string appName)
{
LoopUtil.Run(appName);
}
2016-11-12 23:33:51 -05:00
protected override List<Assembly> GetAssembliesWithPartsInternal()
{
2016-11-12 23:33:51 -05:00
var list = new List<Assembly>();
2017-02-26 16:47:52 -05:00
list.Add(typeof(DefaultIntroProvider).Assembly);
2017-02-20 15:50:58 -05:00
list.Add(typeof(ConnectManager).Assembly);
2017-02-23 14:13:07 -05:00
list.Add(typeof(SyncManager).Assembly);
2016-11-12 23:33:51 -05:00
list.Add(GetType().Assembly);
return list;
}
2016-11-12 23:33:51 -05:00
protected override void ShutdownInternal()
{
2016-11-12 23:33:51 -05:00
MainStartup.Shutdown();
}
2016-11-13 16:04:21 -05:00
protected override void AuthorizeServer()
{
2016-11-13 16:04:21 -05:00
ServerAuthorization.AuthorizeServer(UdpServerEntryPoint.PortNumber,
ServerConfigurationManager.Configuration.HttpServerPortNumber,
ServerConfigurationManager.Configuration.HttpsPortNumber,
MainStartup.ApplicationPath,
ConfigurationManager.CommonApplicationPaths.TempDirectory);
}
2016-11-12 23:33:51 -05:00
protected override void ConfigureAutoRunInternal(bool autorun)
{
var startupPath = Environment.GetFolderPath(System.Environment.SpecialFolder.Startup);
2016-11-13 22:44:54 -05:00
2016-12-22 18:53:57 -05:00
if (autorun && !MainStartup.IsRunningAsService)
2016-04-03 13:34:52 -04:00
{
//Copy our shortut into the startup folder for this user
2016-12-22 18:53:57 -05: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 03:50:32 -05:00
file.Save(targetPath, true);
2016-04-03 13:34:52 -04:00
}
else
{
//Remove our shortcut from the startup folder for this user
2016-12-22 18:53:57 -05:00
FileSystemManager.DeleteFile(Path.Combine(startupPath, "Emby Server.lnk"));
2016-04-03 13:34:52 -04:00
}
}
2016-11-12 23:33:51 -05:00
public override bool CanSelfRestart
{
get
{
return MainStartup.CanSelfRestart;
}
}
public override bool CanSelfUpdate
{
get
{
return MainStartup.CanSelfUpdate;
}
}
}
2016-11-12 23:33:51 -05:00
}