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