Radarr/NzbDrone.Core/Indexers/Newznab/Newznab.cs

148 lines
4.9 KiB
C#
Raw Normal View History

2013-04-07 07:30:37 +00:00
using System;
using System.Collections.Generic;
2013-04-07 22:40:13 +00:00
using System.Linq;
2013-05-12 15:18:17 +00:00
using NzbDrone.Common.Serializer;
2013-04-07 07:30:37 +00:00
namespace NzbDrone.Core.Indexers.Newznab
{
public class Newznab : IndexerWithSetting<NewznabSettings>
2013-04-07 07:30:37 +00:00
{
public override IParseFeed Parser
{
get
{
return new NewznabParser(this);
}
}
2013-04-07 07:30:37 +00:00
public override IEnumerable<IndexerDefinition> DefaultDefinitions
{
get
{
var list = new List<IndexerDefinition>();
list.Add(new IndexerDefinition
{
Enable = false,
Name = "Nzbs.org",
Implementation = GetType().Name,
2013-07-31 03:41:46 +00:00
Settings = GetSettings("http://nzbs.org", new List<Int32>{ 5000 })
});
list.Add(new IndexerDefinition
{
Enable = false,
Name = "Nzb.su",
Implementation = GetType().Name,
2013-07-31 03:41:46 +00:00
Settings = GetSettings("https://nzb.su", new List<Int32>())
});
list.Add(new IndexerDefinition
{
Enable = false,
Name = "Dognzb.cr",
Implementation = GetType().Name,
2013-07-31 03:41:46 +00:00
Settings = GetSettings("https://dognzb.cr", new List<Int32>())
});
return list;
}
}
2013-07-31 03:41:46 +00:00
private string GetSettings(string url, List<int> categories)
{
2013-07-31 03:41:46 +00:00
var settings = new NewznabSettings { Url = url };
if (categories.Any())
{
settings.Categories = categories;
}
return settings.ToJson();
}
2013-04-07 07:30:37 +00:00
public override IEnumerable<string> RecentFeed
{
get
{
2013-07-31 03:41:46 +00:00
//Todo: We should be able to update settings on start
if (Name.Equals("nzbs.org", StringComparison.InvariantCultureIgnoreCase))
2013-07-31 03:41:46 +00:00
{
Settings.Categories = new List<int>{ 5000 };
}
var url = String.Format("{0}/api?t=tvsearch&cat={1}", Settings.Url.TrimEnd('/'), String.Join(",", Settings.Categories));
2013-06-03 23:07:36 +00:00
if (!String.IsNullOrWhiteSpace(Settings.ApiKey))
{
url += "&apikey=" + Settings.ApiKey;
}
yield return url;
}
2013-04-07 07:30:37 +00:00
}
public override IEnumerable<string> GetEpisodeSearchUrls(string seriesTitle, int rageTvId, int seasonNumber, int episodeNumber)
2013-04-07 07:30:37 +00:00
{
if (Settings.UseRageTvId)
{
return RecentFeed.Select(url => String.Format("{0}&limit=100&rid={1}&season={2}&ep={3}", url, rageTvId, seasonNumber, episodeNumber));
}
else
{
return RecentFeed.Select(url => String.Format("{0}&limit=100&q={1}&season={2}&ep={3}", url, NewsnabifyTitle(seriesTitle), seasonNumber, episodeNumber));
}
2013-04-07 07:30:37 +00:00
}
public override IEnumerable<string> GetDailyEpisodeSearchUrls(string seriesTitle, int rageTvId, DateTime date)
2013-04-07 07:30:37 +00:00
{
if (Settings.UseRageTvId)
{
return RecentFeed.Select(url => String.Format("{0}&limit=100&rid={1}&season={2:yyyy}&ep={2:MM/dd}", url, rageTvId, date)).ToList();
}
else
{
return RecentFeed.Select(url => String.Format("{0}&limit=100&q={1}&season={2:yyyy}&ep={2:MM/dd}", url, NewsnabifyTitle(seriesTitle), date)).ToList();
}
2013-04-07 07:30:37 +00:00
}
public override IEnumerable<string> GetSeasonSearchUrls(string seriesTitle, int rageTvId, int seasonNumber)
2013-04-07 07:30:37 +00:00
{
if (Settings.UseRageTvId)
{
return RecentFeed.Select(url => String.Format("{0}&limit=100&rid={1}&season={2}", url, rageTvId, seasonNumber));
}
else
{
return RecentFeed.Select(url => String.Format("{0}&limit=100&q={1}&season={2}", url, NewsnabifyTitle(seriesTitle), seasonNumber));
}
2013-04-07 07:30:37 +00:00
}
public override IEnumerable<string> GetPartialSeasonSearchUrls(string seriesTitle, int rageTvId, int seasonNumber, int episodeWildcard)
2013-04-07 07:30:37 +00:00
{
if (Settings.UseRageTvId)
{
return RecentFeed.Select(url => String.Format("{0}&limit=100&rid={1}&season={2}&q=E{3}", url, rageTvId, seasonNumber, episodeWildcard));
}
else
{
return RecentFeed.Select(url => String.Format("{0}&limit=100&q={1}+S{2:00}E{3}", url, NewsnabifyTitle(seriesTitle), seasonNumber, episodeWildcard));
}
2013-04-07 07:30:37 +00:00
}
public override string Name
{
get
2013-04-07 07:30:37 +00:00
{
return InstanceDefinition.Name;
2013-04-07 07:30:37 +00:00
}
}
private static string NewsnabifyTitle(string title)
{
return title.Replace("+", "%20");
}
}
}