mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 16:06:24 +02:00
45 lines
2.0 KiB
C#
45 lines
2.0 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace NzbDrone.Core.Applications.Radarr
|
|
{
|
|
public class RadarrIndexer
|
|
{
|
|
public int Id { get; set; }
|
|
public bool EnableRss { get; set; }
|
|
public bool EnableAutomaticSearch { get; set; }
|
|
public bool EnableInteractiveSearch { get; set; }
|
|
public int Priority { get; set; }
|
|
public string Name { get; set; }
|
|
public string ImplementationName { get; set; }
|
|
public string Implementation { get; set; }
|
|
public string ConfigContract { get; set; }
|
|
public string InfoLink { get; set; }
|
|
public HashSet<int> Tags { get; set; }
|
|
public List<RadarrField> Fields { get; set; }
|
|
|
|
public bool Equals(RadarrIndexer other)
|
|
{
|
|
if (ReferenceEquals(null, other))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var baseUrl = (string)Fields.FirstOrDefault(x => x.Name == "baseUrl").Value == (string)other.Fields.FirstOrDefault(x => x.Name == "baseUrl").Value;
|
|
var apiPath = (string)Fields.FirstOrDefault(x => x.Name == "apiPath").Value == (string)other.Fields.FirstOrDefault(x => x.Name == "apiPath").Value;
|
|
var apiKey = (string)Fields.FirstOrDefault(x => x.Name == "apiKey").Value == (string)other.Fields.FirstOrDefault(x => x.Name == "apiKey").Value;
|
|
var cats = JToken.DeepEquals((JArray)Fields.FirstOrDefault(x => x.Name == "categories").Value, (JArray)other.Fields.FirstOrDefault(x => x.Name == "categories").Value);
|
|
|
|
return other.EnableRss == EnableRss &&
|
|
other.EnableAutomaticSearch == EnableAutomaticSearch &&
|
|
other.EnableInteractiveSearch == EnableInteractiveSearch &&
|
|
other.Name == Name &&
|
|
other.Implementation == Implementation &&
|
|
other.Priority == Priority &&
|
|
other.Id == Id &&
|
|
apiKey && apiPath && baseUrl && cats;
|
|
}
|
|
}
|
|
}
|