mirror of https://github.com/lidarr/Lidarr
Inital work for release pushing
This commit is contained in:
parent
3a59b38037
commit
4f38454825
|
@ -0,0 +1,58 @@
|
||||||
|
using Nancy;
|
||||||
|
using Nancy.ModelBinding;
|
||||||
|
using FluentValidation;
|
||||||
|
using NzbDrone.Core.DecisionEngine;
|
||||||
|
using NzbDrone.Core.Download;
|
||||||
|
using NzbDrone.Core.Parser;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using NzbDrone.Core.Parser.Model;
|
||||||
|
using NzbDrone.Api.Mapping;
|
||||||
|
using NzbDrone.Api.Extensions;
|
||||||
|
using NLog;
|
||||||
|
|
||||||
|
namespace NzbDrone.Api.Indexers
|
||||||
|
{
|
||||||
|
class ReleasePushModule : NzbDroneRestModule<ReleaseResource>
|
||||||
|
{
|
||||||
|
private readonly IMakeDownloadDecision _downloadDecisionMaker;
|
||||||
|
private readonly IProcessDownloadDecisions _downloadDecisionProcessor;
|
||||||
|
private readonly Logger _logger;
|
||||||
|
|
||||||
|
public ReleasePushModule(IMakeDownloadDecision downloadDecisionMaker,
|
||||||
|
IProcessDownloadDecisions downloadDecisionProcessor,
|
||||||
|
Logger logger)
|
||||||
|
{
|
||||||
|
_downloadDecisionMaker = downloadDecisionMaker;
|
||||||
|
_downloadDecisionProcessor = downloadDecisionProcessor;
|
||||||
|
_logger = logger;
|
||||||
|
|
||||||
|
Post["/push"] = x => ProcessRelease(this.Bind<ReleaseResource>());
|
||||||
|
|
||||||
|
PostValidator.RuleFor(s => s.Title).NotEmpty();
|
||||||
|
PostValidator.RuleFor(s => s.DownloadUrl).NotEmpty();
|
||||||
|
PostValidator.RuleFor(s => s.DownloadProtocol).NotEmpty();
|
||||||
|
PostValidator.RuleFor(s => s.PublishDate).NotEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Response ProcessRelease(ReleaseResource release)
|
||||||
|
{
|
||||||
|
_logger.Info("Release pushed: {0}", release.Title);
|
||||||
|
|
||||||
|
var info = release.InjectTo<ReleaseInfo>();
|
||||||
|
info.Guid = "PUSH-" + info.DownloadUrl;
|
||||||
|
|
||||||
|
var decisions = _downloadDecisionMaker.GetRssDecision(new List<ReleaseInfo> { info });
|
||||||
|
var processed = _downloadDecisionProcessor.ProcessDecisions(decisions);
|
||||||
|
|
||||||
|
var status = processed.Grabbed.Any() ? "grabbed" :
|
||||||
|
processed.Rejected.Any() ? "rejected" :
|
||||||
|
processed.Pending.Any() ? "pending" :
|
||||||
|
"error" ;
|
||||||
|
|
||||||
|
return status.AsResponse();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -101,6 +101,7 @@
|
||||||
<Compile Include="Extensions\Pipelines\CorsPipeline.cs" />
|
<Compile Include="Extensions\Pipelines\CorsPipeline.cs" />
|
||||||
<Compile Include="Frontend\Mappers\LoginHtmlMapper.cs" />
|
<Compile Include="Frontend\Mappers\LoginHtmlMapper.cs" />
|
||||||
<Compile Include="Frontend\Mappers\RobotsTxtMapper.cs" />
|
<Compile Include="Frontend\Mappers\RobotsTxtMapper.cs" />
|
||||||
|
<Compile Include="Indexers\ReleasePushModule.cs" />
|
||||||
<Compile Include="Parse\ParseModule.cs" />
|
<Compile Include="Parse\ParseModule.cs" />
|
||||||
<Compile Include="Parse\ParseResource.cs" />
|
<Compile Include="Parse\ParseResource.cs" />
|
||||||
<Compile Include="ManualImport\ManualImportModule.cs" />
|
<Compile Include="ManualImport\ManualImportModule.cs" />
|
||||||
|
|
Loading…
Reference in New Issue