New: Allow user to choose whether delay profile should apply to release of the highest enabled quality
This commit is contained in:
parent
24ca47356e
commit
d668e923af
|
@ -39,6 +39,7 @@ function EditDelayProfileModalContent(props) {
|
||||||
enableTorrent,
|
enableTorrent,
|
||||||
usenetDelay,
|
usenetDelay,
|
||||||
torrentDelay,
|
torrentDelay,
|
||||||
|
bypassIfHighestQuality,
|
||||||
tags
|
tags
|
||||||
} = item;
|
} = item;
|
||||||
|
|
||||||
|
@ -107,6 +108,20 @@ function EditDelayProfileModalContent(props) {
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
<FormGroup>
|
||||||
|
<FormLabel>Bypass if Highest Quality</FormLabel>
|
||||||
|
|
||||||
|
<FormInputGroup
|
||||||
|
type={inputTypes.CHECK}
|
||||||
|
name="bypassIfHighestQuality"
|
||||||
|
{...bypassIfHighestQuality}
|
||||||
|
helpText="Bypass delay when release has the highest enabled quality in the quality profile"
|
||||||
|
onChange={onInputChange}
|
||||||
|
/>
|
||||||
|
</FormGroup>
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
id === 1 ?
|
id === 1 ?
|
||||||
<Alert>
|
<Alert>
|
||||||
|
|
|
@ -13,6 +13,7 @@ namespace NzbDrone.Api.Profiles.Delay
|
||||||
public DownloadProtocol PreferredProtocol { get; set; }
|
public DownloadProtocol PreferredProtocol { get; set; }
|
||||||
public int UsenetDelay { get; set; }
|
public int UsenetDelay { get; set; }
|
||||||
public int TorrentDelay { get; set; }
|
public int TorrentDelay { get; set; }
|
||||||
|
public bool BypassIfHighestQuality { get; set; }
|
||||||
public int Order { get; set; }
|
public int Order { get; set; }
|
||||||
public HashSet<int> Tags { get; set; }
|
public HashSet<int> Tags { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -32,6 +33,7 @@ namespace NzbDrone.Api.Profiles.Delay
|
||||||
PreferredProtocol = model.PreferredProtocol,
|
PreferredProtocol = model.PreferredProtocol,
|
||||||
UsenetDelay = model.UsenetDelay,
|
UsenetDelay = model.UsenetDelay,
|
||||||
TorrentDelay = model.TorrentDelay,
|
TorrentDelay = model.TorrentDelay,
|
||||||
|
BypassIfHighestQuality = model.BypassIfHighestQuality,
|
||||||
Order = model.Order,
|
Order = model.Order,
|
||||||
Tags = new HashSet<int>(model.Tags)
|
Tags = new HashSet<int>(model.Tags)
|
||||||
};
|
};
|
||||||
|
@ -50,6 +52,7 @@ namespace NzbDrone.Api.Profiles.Delay
|
||||||
PreferredProtocol = resource.PreferredProtocol,
|
PreferredProtocol = resource.PreferredProtocol,
|
||||||
UsenetDelay = resource.UsenetDelay,
|
UsenetDelay = resource.UsenetDelay,
|
||||||
TorrentDelay = resource.TorrentDelay,
|
TorrentDelay = resource.TorrentDelay,
|
||||||
|
BypassIfHighestQuality = resource.BypassIfHighestQuality,
|
||||||
Order = resource.Order,
|
Order = resource.Order,
|
||||||
Tags = new HashSet<int>(resource.Tags)
|
Tags = new HashSet<int>(resource.Tags)
|
||||||
};
|
};
|
||||||
|
|
|
@ -124,7 +124,7 @@ namespace NzbDrone.Core.Test.DecisionEngineTests.RssSync
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void should_be_true_when_quality_and_language_is_last_allowed_in_profile()
|
public void should_be_false_when_quality_and_language_is_last_allowed_in_profile_and_bypass_disabled()
|
||||||
{
|
{
|
||||||
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.Bluray720p);
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.Bluray720p);
|
||||||
_remoteEpisode.ParsedEpisodeInfo.Language = Language.French;
|
_remoteEpisode.ParsedEpisodeInfo.Language = Language.French;
|
||||||
|
@ -132,6 +132,17 @@ namespace NzbDrone.Core.Test.DecisionEngineTests.RssSync
|
||||||
Subject.IsSatisfiedBy(_remoteEpisode, null).Accepted.Should().BeTrue();
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Accepted.Should().BeTrue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_be_true_when_quality_and_language_is_last_allowed_in_profile_and_bypass_enabled()
|
||||||
|
{
|
||||||
|
_delayProfile.BypassIfHighestQuality = true;
|
||||||
|
|
||||||
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.Bluray720p);
|
||||||
|
_remoteEpisode.ParsedEpisodeInfo.Language = Language.French;
|
||||||
|
|
||||||
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Accepted.Should().BeTrue();
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void should_be_true_when_release_is_older_than_delay()
|
public void should_be_true_when_release_is_older_than_delay()
|
||||||
{
|
{
|
||||||
|
|
|
@ -218,5 +218,39 @@ namespace NzbDrone.Core.Test.ParserTests.ParsingServiceTests
|
||||||
Mocker.GetMock<ISeriesService>()
|
Mocker.GetMock<ISeriesService>()
|
||||||
.Verify(v => v.FindByTitle(It.IsAny<string>()), Times.Never());
|
.Verify(v => v.FindByTitle(It.IsAny<string>()), Times.Never());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_handle_anime_underrange()
|
||||||
|
{
|
||||||
|
var title = "[DroneRaws] Phantom - The Final Countdown - 04 [1080p].mkv";
|
||||||
|
|
||||||
|
var parsedEpisodeInfo = Parser.Parser.ParseTitle(title);
|
||||||
|
|
||||||
|
Mocker.GetMock<ISceneMappingService>()
|
||||||
|
.Setup(s => s.FindSceneMapping(It.IsAny<string>(), It.IsAny<string>(), It.IsAny<int>()))
|
||||||
|
.Returns(new SceneMapping
|
||||||
|
{
|
||||||
|
Title = "Phantom: The Final Countdown",
|
||||||
|
ParseTerm = "phantomthefinalcountdown",
|
||||||
|
SceneSeasonNumber = 4,
|
||||||
|
SeasonNumber = -1,
|
||||||
|
TvdbId = 100
|
||||||
|
});
|
||||||
|
|
||||||
|
Mocker.GetMock<ISceneMappingService>()
|
||||||
|
.Setup(s => s.GetSceneSeasonNumber(It.IsAny<string>(), It.IsAny<string>()))
|
||||||
|
.Returns(4);
|
||||||
|
|
||||||
|
Mocker.GetMock<ISeriesService>()
|
||||||
|
.Setup(s => s.FindByTvdbId(It.IsAny<int>()))
|
||||||
|
.Returns(new Series
|
||||||
|
{
|
||||||
|
Id = 1,
|
||||||
|
TvdbId = 100,
|
||||||
|
Title = "Phantom"
|
||||||
|
});
|
||||||
|
|
||||||
|
var remoteEpisode = Subject.Map(parsedEpisodeInfo, 0, 0, null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
using FluentMigrator;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Datastore.Migration
|
||||||
|
{
|
||||||
|
[Migration(156)]
|
||||||
|
public class add_bypass_to_delay_profile : NzbDroneMigrationBase
|
||||||
|
{
|
||||||
|
protected override void MainDbUpgrade()
|
||||||
|
{
|
||||||
|
Alter.Table("DelayProfiles").AddColumn("BypassIfHighestQuality").AsBoolean().WithDefaultValue(false);
|
||||||
|
// Set to true for existing Delay Profiles to keep behavior the same.
|
||||||
|
Execute.Sql("UPDATE DelayProfiles SET BypassIfHighestQuality = 1;");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -67,14 +67,17 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.RssSync
|
||||||
}
|
}
|
||||||
|
|
||||||
// If quality meets or exceeds the best allowed quality in the profile accept it immediately
|
// If quality meets or exceeds the best allowed quality in the profile accept it immediately
|
||||||
var bestQualityInProfile = qualityProfile.LastAllowedQuality();
|
if (delayProfile.BypassIfHighestQuality)
|
||||||
var isBestInProfile = qualityComparer.Compare(subject.ParsedEpisodeInfo.Quality.Quality, bestQualityInProfile) >= 0;
|
|
||||||
var isBestInProfileLanguage = languageComparer.Compare(subject.ParsedEpisodeInfo.Language, languageProfile.LastAllowedLanguage()) >= 0;
|
|
||||||
|
|
||||||
if (isBestInProfile && isBestInProfileLanguage && isPreferredProtocol)
|
|
||||||
{
|
{
|
||||||
_logger.Debug("Quality and language is highest in profile for preferred protocol, will not delay");
|
var bestQualityInProfile = qualityProfile.LastAllowedQuality();
|
||||||
return Decision.Accept();
|
var isBestInProfile = qualityComparer.Compare(subject.ParsedEpisodeInfo.Quality.Quality, bestQualityInProfile) >= 0;
|
||||||
|
var isBestInProfileLanguage = languageComparer.Compare(subject.ParsedEpisodeInfo.Language, languageProfile.LastAllowedLanguage()) >= 0;
|
||||||
|
|
||||||
|
if (isBestInProfile && isBestInProfileLanguage && isPreferredProtocol)
|
||||||
|
{
|
||||||
|
_logger.Debug("Quality and language is highest in profile for preferred protocol, will not delay");
|
||||||
|
return Decision.Accept();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var episodeIds = subject.Episodes.Select(e => e.Id);
|
var episodeIds = subject.Episodes.Select(e => e.Id);
|
||||||
|
|
|
@ -12,6 +12,7 @@ namespace NzbDrone.Core.Profiles.Delay
|
||||||
public int UsenetDelay { get; set; }
|
public int UsenetDelay { get; set; }
|
||||||
public int TorrentDelay { get; set; }
|
public int TorrentDelay { get; set; }
|
||||||
public int Order { get; set; }
|
public int Order { get; set; }
|
||||||
|
public bool BypassIfHighestQuality { get; set; }
|
||||||
public HashSet<int> Tags { get; set; }
|
public HashSet<int> Tags { get; set; }
|
||||||
|
|
||||||
public DelayProfile()
|
public DelayProfile()
|
||||||
|
|
|
@ -13,6 +13,7 @@ namespace Sonarr.Api.V3.Profiles.Delay
|
||||||
public DownloadProtocol PreferredProtocol { get; set; }
|
public DownloadProtocol PreferredProtocol { get; set; }
|
||||||
public int UsenetDelay { get; set; }
|
public int UsenetDelay { get; set; }
|
||||||
public int TorrentDelay { get; set; }
|
public int TorrentDelay { get; set; }
|
||||||
|
public bool BypassIfHighestQuality { get; set; }
|
||||||
public int Order { get; set; }
|
public int Order { get; set; }
|
||||||
public HashSet<int> Tags { get; set; }
|
public HashSet<int> Tags { get; set; }
|
||||||
}
|
}
|
||||||
|
@ -32,6 +33,7 @@ namespace Sonarr.Api.V3.Profiles.Delay
|
||||||
PreferredProtocol = model.PreferredProtocol,
|
PreferredProtocol = model.PreferredProtocol,
|
||||||
UsenetDelay = model.UsenetDelay,
|
UsenetDelay = model.UsenetDelay,
|
||||||
TorrentDelay = model.TorrentDelay,
|
TorrentDelay = model.TorrentDelay,
|
||||||
|
BypassIfHighestQuality = model.BypassIfHighestQuality,
|
||||||
Order = model.Order,
|
Order = model.Order,
|
||||||
Tags = new HashSet<int>(model.Tags)
|
Tags = new HashSet<int>(model.Tags)
|
||||||
};
|
};
|
||||||
|
@ -50,6 +52,7 @@ namespace Sonarr.Api.V3.Profiles.Delay
|
||||||
PreferredProtocol = resource.PreferredProtocol,
|
PreferredProtocol = resource.PreferredProtocol,
|
||||||
UsenetDelay = resource.UsenetDelay,
|
UsenetDelay = resource.UsenetDelay,
|
||||||
TorrentDelay = resource.TorrentDelay,
|
TorrentDelay = resource.TorrentDelay,
|
||||||
|
BypassIfHighestQuality = resource.BypassIfHighestQuality,
|
||||||
Order = resource.Order,
|
Order = resource.Order,
|
||||||
Tags = new HashSet<int>(resource.Tags)
|
Tags = new HashSet<int>(resource.Tags)
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue