parent
cb2bd0273f
commit
fb7ec5c61e
@ -0,0 +1,92 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net;
|
||||
using FluentValidation.Results;
|
||||
using NLog;
|
||||
using NzbDrone.Common.Extensions;
|
||||
using NzbDrone.Common.Http;
|
||||
using NzbDrone.Core.Configuration;
|
||||
using NzbDrone.Core.MetadataSource;
|
||||
using NzbDrone.Core.Parser;
|
||||
using NzbDrone.Core.Parser.Model;
|
||||
|
||||
namespace NzbDrone.Core.ImportLists.Goodreads
|
||||
{
|
||||
public class GoodreadsSeriesImportList : ImportListBase<GoodreadsSeriesImportListSettings>
|
||||
{
|
||||
private readonly IProvideSeriesInfo _seriesInfo;
|
||||
|
||||
public override string Name => "Goodreads Series";
|
||||
public override ImportListType ListType => ImportListType.Goodreads;
|
||||
|
||||
public GoodreadsSeriesImportList(IProvideSeriesInfo seriesInfo,
|
||||
IImportListStatusService importListStatusService,
|
||||
IConfigService configService,
|
||||
IParsingService parsingService,
|
||||
Logger logger)
|
||||
: base(importListStatusService, configService, parsingService, logger)
|
||||
{
|
||||
_seriesInfo = seriesInfo;
|
||||
}
|
||||
|
||||
public override IList<ImportListItemInfo> Fetch()
|
||||
{
|
||||
var result = new List<ImportListItemInfo>();
|
||||
|
||||
try
|
||||
{
|
||||
var series = _seriesInfo.GetSeriesInfo(Settings.SeriesId);
|
||||
|
||||
foreach (var work in series.Works)
|
||||
{
|
||||
result.Add(new ImportListItemInfo
|
||||
{
|
||||
BookGoodreadsId = work.Id.ToString(),
|
||||
Book = work.OriginalTitle,
|
||||
EditionGoodreadsId = work.BestBook.Id.ToString(),
|
||||
Author = work.BestBook.AuthorName,
|
||||
AuthorGoodreadsId = work.BestBook.AuthorId.ToString()
|
||||
});
|
||||
}
|
||||
|
||||
_importListStatusService.RecordSuccess(Definition.Id);
|
||||
}
|
||||
catch
|
||||
{
|
||||
_importListStatusService.RecordFailure(Definition.Id);
|
||||
}
|
||||
|
||||
return CleanupListItems(result);
|
||||
}
|
||||
|
||||
protected override void Test(List<ValidationFailure> failures)
|
||||
{
|
||||
failures.AddIfNotNull(TestConnection());
|
||||
}
|
||||
|
||||
private ValidationFailure TestConnection()
|
||||
{
|
||||
try
|
||||
{
|
||||
_seriesInfo.GetSeriesInfo(Settings.SeriesId);
|
||||
return null;
|
||||
}
|
||||
catch (HttpException e)
|
||||
{
|
||||
_logger.Warn(e, "Goodreads API Error");
|
||||
if (e.Response.StatusCode == HttpStatusCode.NotFound)
|
||||
{
|
||||
return new ValidationFailure(nameof(Settings.SeriesId), $"Series {Settings.SeriesId} not found");
|
||||
}
|
||||
|
||||
return new ValidationFailure(nameof(Settings.SeriesId), $"Could not get series data");
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.Warn(ex, "Unable to connect to Goodreads");
|
||||
|
||||
return new ValidationFailure(string.Empty, "Unable to connect to import list, check the log for more details");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
using FluentValidation;
|
||||
using NzbDrone.Core.Annotations;
|
||||
using NzbDrone.Core.Validation;
|
||||
|
||||
namespace NzbDrone.Core.ImportLists.Goodreads
|
||||
{
|
||||
public class GoodreadsSeriesImportListValidator : AbstractValidator<GoodreadsSeriesImportListSettings>
|
||||
{
|
||||
public GoodreadsSeriesImportListValidator()
|
||||
{
|
||||
RuleFor(c => c.SeriesId).GreaterThan(0);
|
||||
}
|
||||
}
|
||||
|
||||
public class GoodreadsSeriesImportListSettings : IImportListSettings
|
||||
{
|
||||
private static readonly GoodreadsSeriesImportListValidator Validator = new ();
|
||||
|
||||
public GoodreadsSeriesImportListSettings()
|
||||
{
|
||||
BaseUrl = "www.goodreads.com";
|
||||
}
|
||||
|
||||
public string BaseUrl { get; set; }
|
||||
|
||||
[FieldDefinition(0, Label = "Series ID", HelpText = "Goodreads series ID")]
|
||||
public int SeriesId { get; set; }
|
||||
|
||||
public NzbDroneValidationResult Validate()
|
||||
{
|
||||
return new NzbDroneValidationResult(Validator.Validate(this));
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Xml.Linq;
|
||||
|
||||
namespace NzbDrone.Core.MetadataSource.Goodreads
|
||||
{
|
||||
/// <summary>
|
||||
/// This class models the best book in a work, as defined by the Goodreads API.
|
||||
/// </summary>
|
||||
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
||||
public sealed class ShowSeriesResource : GoodreadsResource
|
||||
{
|
||||
public override string ElementName => "series";
|
||||
|
||||
public SeriesResource Series { get; private set; }
|
||||
|
||||
public override void Parse(XElement element)
|
||||
{
|
||||
Series = new SeriesResource();
|
||||
Series.Parse(element);
|
||||
|
||||
Series.Works = element.ParseChildren<WorkResource>("series_works", "series_work");
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
using NzbDrone.Core.MetadataSource.Goodreads;
|
||||
|
||||
namespace NzbDrone.Core.MetadataSource
|
||||
{
|
||||
public interface IProvideSeriesInfo
|
||||
{
|
||||
SeriesResource GetSeriesInfo(int id, bool useCache = true);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue