mirror of https://github.com/Radarr/Radarr
Fixed: Parsing of SABnzbd develop version
This commit is contained in:
parent
d33de0d158
commit
4447b7cd62
|
@ -30,7 +30,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||||
}
|
}
|
||||||
|
|
||||||
// patch can be a number (releases) or 'x' (git)
|
// patch can be a number (releases) or 'x' (git)
|
||||||
private static readonly Regex VersionRegex = new Regex(@"(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+|x)(?<candidate>.*)", RegexOptions.Compiled);
|
private static readonly Regex VersionRegex = new Regex(@"(?<major>\d+)\.(?<minor>\d+)\.(?<patch>\d+|x)", RegexOptions.Compiled);
|
||||||
|
|
||||||
protected override string AddFromNzbFile(RemoteEpisode remoteEpisode, string filename, byte[] fileContents)
|
protected override string AddFromNzbFile(RemoteEpisode remoteEpisode, string filename, byte[] fileContents)
|
||||||
{
|
{
|
||||||
|
@ -284,90 +284,89 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||||
failures.AddIfNotNull(TestCategory());
|
failures.AddIfNotNull(TestCategory());
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HasVersion(int major, int minor, int patch = 0, string candidate = null)
|
private bool HasVersion(int major, int minor, int patch = 0)
|
||||||
{
|
{
|
||||||
candidate = candidate ?? string.Empty;
|
var rawVersion = _proxy.GetVersion(Settings);
|
||||||
|
var version = ParseVersion(rawVersion);
|
||||||
|
|
||||||
var version = _proxy.GetVersion(Settings);
|
if (version == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (version.Major > major)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (version.Major < major)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (version.Minor > minor)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (version.Minor < minor)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (version.Build > patch)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (version.Build < patch)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Version ParseVersion(string version)
|
||||||
|
{
|
||||||
var parsed = VersionRegex.Match(version);
|
var parsed = VersionRegex.Match(version);
|
||||||
|
|
||||||
int actualMajor;
|
int major;
|
||||||
int actualMinor;
|
int minor;
|
||||||
int actualPatch;
|
int patch;
|
||||||
string actualCandidate;
|
|
||||||
|
|
||||||
if (!parsed.Success)
|
if (parsed.Success)
|
||||||
|
{
|
||||||
|
major = Convert.ToInt32(parsed.Groups["major"].Value);
|
||||||
|
minor = Convert.ToInt32(parsed.Groups["minor"].Value);
|
||||||
|
patch = Convert.ToInt32(parsed.Groups["patch"].Value.Replace("x", "0"));
|
||||||
|
}
|
||||||
|
|
||||||
|
else
|
||||||
{
|
{
|
||||||
if (!version.Equals("develop", StringComparison.InvariantCultureIgnoreCase))
|
if (!version.Equals("develop", StringComparison.InvariantCultureIgnoreCase))
|
||||||
{
|
{
|
||||||
return false;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
actualMajor = 1;
|
major = 1;
|
||||||
actualMinor = 1;
|
minor = 1;
|
||||||
actualPatch = 0;
|
patch = 0;
|
||||||
actualCandidate = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
return new Version(major, minor, patch);
|
||||||
{
|
|
||||||
actualMajor = Convert.ToInt32(parsed.Groups["major"].Value);
|
|
||||||
actualMinor = Convert.ToInt32(parsed.Groups["minor"].Value);
|
|
||||||
actualPatch = Convert.ToInt32(parsed.Groups["patch"].Value.Replace("x", ""));
|
|
||||||
actualCandidate = parsed.Groups["candidate"].Value.ToUpper();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (actualMajor > major)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else if (actualMajor < major)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (actualMinor > minor)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else if (actualMinor < minor)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (actualPatch > patch)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else if (actualPatch < patch)
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (actualCandidate.IsNullOrWhiteSpace())
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else if (candidate.IsNullOrWhiteSpace())
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return actualCandidate.CompareTo(candidate) > 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private ValidationFailure TestConnectionAndVersion()
|
private ValidationFailure TestConnectionAndVersion()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var version = _proxy.GetVersion(Settings);
|
var rawVersion = _proxy.GetVersion(Settings);
|
||||||
var parsed = VersionRegex.Match(version);
|
var version = ParseVersion(rawVersion);
|
||||||
|
|
||||||
if (!parsed.Success)
|
if (version == null)
|
||||||
{
|
{
|
||||||
if (version.Equals("develop", StringComparison.InvariantCultureIgnoreCase))
|
return new ValidationFailure("Version", "Unknown Version: " + version);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rawVersion.Equals("develop", StringComparison.InvariantCultureIgnoreCase))
|
||||||
{
|
{
|
||||||
return new NzbDroneValidationFailure("Version", "Sabnzbd develop version, assuming version 1.1.0 or higher.")
|
return new NzbDroneValidationFailure("Version", "Sabnzbd develop version, assuming version 1.1.0 or higher.")
|
||||||
{
|
{
|
||||||
|
@ -376,18 +375,12 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return new ValidationFailure("Version", "Unknown Version: " + version);
|
if (version.Major >= 1)
|
||||||
}
|
|
||||||
|
|
||||||
var major = Convert.ToInt32(parsed.Groups["major"].Value);
|
|
||||||
var minor = Convert.ToInt32(parsed.Groups["minor"].Value);
|
|
||||||
|
|
||||||
if (major >= 1)
|
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (minor >= 7)
|
if (version.Minor >= 7)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue