mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
a4a58c59f1
fixed update app issue.
57 lines
1.5 KiB
C#
57 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Common.EnvironmentInfo
|
|
{
|
|
public interface IStartupArguments
|
|
{
|
|
HashSet<string> Flags { get; }
|
|
Dictionary<string, string> Args { get; }
|
|
}
|
|
|
|
public class StartupArguments : IStartupArguments
|
|
{
|
|
public const string APPDATA = "data";
|
|
public const string NO_BROWSER = "nobrowser";
|
|
public const string INSTALL_SERVICE = "i";
|
|
public const string UNINSTALL_SERVICE = "u";
|
|
public const string HELP = "?";
|
|
|
|
static StartupArguments()
|
|
{
|
|
if (RuntimeInfo.IsProduction)
|
|
{
|
|
Instance = new StartupArguments("");
|
|
}
|
|
}
|
|
|
|
public StartupArguments(params string[] args)
|
|
{
|
|
Flags = new HashSet<string>();
|
|
Args = new Dictionary<string, string>();
|
|
|
|
foreach (var s in args)
|
|
{
|
|
var flag = s.Trim(' ', '/', '-').ToLower();
|
|
|
|
var argParts = flag.Split('=');
|
|
|
|
if (argParts.Length == 2)
|
|
{
|
|
Args.Add(argParts[0].Trim(), argParts[1].Trim(' ', '"'));
|
|
}
|
|
else
|
|
{
|
|
Flags.Add(flag);
|
|
}
|
|
}
|
|
|
|
Instance = this;
|
|
}
|
|
|
|
public HashSet<string> Flags { get; private set; }
|
|
public Dictionary<string, string> Args { get; private set; }
|
|
|
|
public static IStartupArguments Instance { get; private set; }
|
|
}
|
|
} |