mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-15 21:05:48 -04:00
56 lines
1.7 KiB
C#
56 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.CustomFormats;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Languages;
|
|
using NzbDrone.Core.Qualities;
|
|
using Radarr.Api.V3.CustomFormats;
|
|
using Radarr.Api.V3.Movies;
|
|
using Radarr.Http.REST;
|
|
|
|
namespace Radarr.Api.V3.Blocklist
|
|
{
|
|
public class BlocklistResource : RestResource
|
|
{
|
|
public int MovieId { get; set; }
|
|
public string SourceTitle { get; set; }
|
|
public List<Language> Languages { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
public List<CustomFormatResource> CustomFormats { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public DownloadProtocol Protocol { get; set; }
|
|
public string Indexer { get; set; }
|
|
public string Message { get; set; }
|
|
|
|
public MovieResource Movie { get; set; }
|
|
}
|
|
|
|
public static class BlocklistResourceMapper
|
|
{
|
|
public static BlocklistResource MapToResource(this NzbDrone.Core.Blocklisting.Blocklist model, ICustomFormatCalculationService formatCalculator)
|
|
{
|
|
if (model == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return new BlocklistResource
|
|
{
|
|
Id = model.Id,
|
|
|
|
MovieId = model.MovieId,
|
|
SourceTitle = model.SourceTitle,
|
|
Languages = model.Languages,
|
|
Quality = model.Quality,
|
|
CustomFormats = formatCalculator.ParseCustomFormat(model, model.Movie).ToResource(false),
|
|
Date = model.Date,
|
|
Protocol = model.Protocol,
|
|
Indexer = model.Indexer,
|
|
Message = model.Message,
|
|
|
|
Movie = model.Movie.ToResource(0)
|
|
};
|
|
}
|
|
}
|
|
}
|