You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
4.4 KiB
132 lines
4.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using DryIoc;
|
|
using NLog;
|
|
using NzbDrone.Common.Composition.Extensions;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Common.Instrumentation;
|
|
using NzbDrone.Common.Instrumentation.Extensions;
|
|
using NzbDrone.Common.Processes;
|
|
using NzbDrone.Update.UpdateEngine;
|
|
|
|
namespace NzbDrone.Update
|
|
{
|
|
public class UpdateApp
|
|
{
|
|
private readonly IInstallUpdateService _installUpdateService;
|
|
private readonly IProcessProvider _processProvider;
|
|
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(UpdateApp));
|
|
|
|
public UpdateApp(IInstallUpdateService installUpdateService, IProcessProvider processProvider)
|
|
{
|
|
_installUpdateService = installUpdateService;
|
|
_processProvider = processProvider;
|
|
}
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
var startupArgument = new StartupContext(args);
|
|
NzbDroneLogger.Register(startupArgument, true, true);
|
|
|
|
Logger.Info("Starting Radarr Update Client");
|
|
|
|
var container = new Container(rules => rules.WithNzbDroneRules())
|
|
.AutoAddServices(new List<string> { "Radarr.Update" })
|
|
.AddNzbDroneLogger()
|
|
.AddStartupContext(startupArgument);
|
|
|
|
container.Resolve<InitializeLogger>().Initialize();
|
|
container.Resolve<UpdateApp>().Start(args);
|
|
|
|
Logger.Info("Update completed successfully");
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.Fatal(e, "An error has occurred while applying update package.");
|
|
}
|
|
}
|
|
|
|
public void Start(string[] args)
|
|
{
|
|
var startupContext = ParseArgs(args);
|
|
var targetFolder = GetInstallationDirectory(startupContext);
|
|
|
|
_installUpdateService.Start(targetFolder, startupContext.ProcessId);
|
|
}
|
|
|
|
private UpdateStartupContext ParseArgs(string[] args)
|
|
{
|
|
if (args == null || !args.Any())
|
|
{
|
|
throw new ArgumentOutOfRangeException("args", "args must be specified");
|
|
}
|
|
|
|
var startupContext = new UpdateStartupContext
|
|
{
|
|
ProcessId = ParseProcessId(args[0])
|
|
};
|
|
|
|
if (OsInfo.IsNotWindows)
|
|
{
|
|
switch (args.Length)
|
|
{
|
|
case 1:
|
|
return startupContext;
|
|
default:
|
|
{
|
|
Logger.Debug("Arguments:");
|
|
|
|
foreach (var arg in args)
|
|
{
|
|
Logger.Debug(" {0}", arg);
|
|
}
|
|
|
|
startupContext.UpdateLocation = args[1];
|
|
startupContext.ExecutingApplication = args[2];
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return startupContext;
|
|
}
|
|
|
|
private int ParseProcessId(string arg)
|
|
{
|
|
if (!int.TryParse(arg, out var id) || id <= 0)
|
|
{
|
|
throw new ArgumentOutOfRangeException("arg", "Invalid process ID");
|
|
}
|
|
|
|
Logger.Debug("Radarr process ID: {0}", id);
|
|
return id;
|
|
}
|
|
|
|
private string GetInstallationDirectory(UpdateStartupContext startupContext)
|
|
{
|
|
if (startupContext.ExecutingApplication.IsNullOrWhiteSpace())
|
|
{
|
|
Logger.Debug("Using process ID to find installation directory: {0}", startupContext.ProcessId);
|
|
var exeFileInfo = new FileInfo(_processProvider.GetProcessById(startupContext.ProcessId).StartPath);
|
|
Logger.Debug("Executable location: {0}", exeFileInfo.FullName);
|
|
|
|
return exeFileInfo.DirectoryName;
|
|
}
|
|
else
|
|
{
|
|
Logger.Debug("Using executing application: {0}", startupContext.ExecutingApplication);
|
|
var exeFileInfo = new FileInfo(startupContext.ExecutingApplication);
|
|
Logger.Debug("Executable location: {0}", exeFileInfo.FullName);
|
|
|
|
return exeFileInfo.DirectoryName;
|
|
}
|
|
}
|
|
}
|
|
}
|