1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00

Improved error message when nzb download contains an newznab error instead

This commit is contained in:
Taloth Saldono 2020-04-16 22:16:50 +02:00 committed by Qstick
parent d4817e9ff2
commit eb98a7e8be
5 changed files with 40 additions and 1 deletions

View File

@ -11,5 +11,21 @@ public static IEnumerable<XElement> FindDecendants(this XContainer container, st
{ {
return container.Descendants().Where(c => c.Name.LocalName.Equals(localName, StringComparison.InvariantCultureIgnoreCase)); return container.Descendants().Where(c => c.Name.LocalName.Equals(localName, StringComparison.InvariantCultureIgnoreCase));
} }
public static bool TryGetAttributeValue(this XElement element, string name, out string value)
{
var attr = element.Attribute(name);
if (attr != null)
{
value = attr.Value;
return true;
}
else
{
value = null;
return false;
}
}
} }
} }

View File

@ -1,4 +1,5 @@
using System.IO; using System.IO;
using FluentAssertions;
using NUnit.Framework; using NUnit.Framework;
using NzbDrone.Core.Download; using NzbDrone.Core.Download;
using NzbDrone.Core.Test.Framework; using NzbDrone.Core.Test.Framework;
@ -31,6 +32,17 @@ public void should_throw_when_no_files()
Assert.Throws<InvalidNzbException>(() => Subject.Validate(filename, fileContent)); Assert.Throws<InvalidNzbException>(() => Subject.Validate(filename, fileContent));
} }
[Test]
public void should_throw_on_newznab_error()
{
var filename = "NewznabError";
var fileContent = GivenNzbFile(filename);
var ex = Assert.Throws<InvalidNzbException>(() => Subject.Validate(filename, fileContent));
ex.Message.Should().Contain("201 - Incorrect parameter");
}
[Test] [Test]
public void should_validate_nzb() public void should_validate_nzb()
{ {

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<error code="201" description="Incorrect parameter" />

View File

@ -1,3 +1,4 @@
using System;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Xml; using System.Xml;
@ -27,6 +28,14 @@ public void Validate(string filename, byte[] fileContent)
throw new InvalidNzbException("Invalid NZB: No Root element [{0}]", filename); throw new InvalidNzbException("Invalid NZB: No Root element [{0}]", filename);
} }
// nZEDb has an bug in their error reporting code spitting out invalid http status codes
if (nzb.Name.LocalName.Equals("error") &&
nzb.TryGetAttributeValue("code", out var code) &&
nzb.TryGetAttributeValue("description", out var description))
{
throw new InvalidNzbException("Invalid NZB: Contains indexer error: {0} - {1}", code, description);
}
if (!nzb.Name.LocalName.Equals("nzb")) if (!nzb.Name.LocalName.Equals("nzb"))
{ {
throw new InvalidNzbException("Invalid NZB: Unexpected root element. Expected 'nzb' found '{0}' [{1}]", nzb.Name.LocalName, filename); throw new InvalidNzbException("Invalid NZB: Unexpected root element. Expected 'nzb' found '{0}' [{1}]", nzb.Name.LocalName, filename);

View File

@ -53,7 +53,7 @@ public override string Download(RemoteMovie remoteMovie)
if (ex.Response.StatusCode == HttpStatusCode.NotFound) if (ex.Response.StatusCode == HttpStatusCode.NotFound)
{ {
_logger.Error(ex, "Downloading nzb file for movie '{0}' failed since it no longer exists ({1})", remoteMovie.Release.Title, url); _logger.Error(ex, "Downloading nzb file for movie '{0}' failed since it no longer exists ({1})", remoteMovie.Release.Title, url);
throw new ReleaseUnavailableException(remoteMovie.Release, "Downloading torrent failed", ex); throw new ReleaseUnavailableException(remoteMovie.Release, "Downloading nzb failed", ex);
} }
if ((int)ex.Response.StatusCode == 429) if ((int)ex.Response.StatusCode == 429)