2011-05-26 07:25:59 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2011-04-25 23:21:52 +03:00
|
|
|
using System.ServiceModel.Syndication;
|
2011-09-14 05:25:33 +03:00
|
|
|
using System.Text.RegularExpressions;
|
2011-06-14 04:23:04 +03:00
|
|
|
using Ninject;
|
2011-09-14 05:25:33 +03:00
|
|
|
using NzbDrone.Core.Model;
|
2011-08-28 08:45:36 +03:00
|
|
|
using NzbDrone.Core.Model.Search;
|
2011-04-19 03:12:06 +03:00
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Indexer
|
|
|
|
{
|
2011-05-20 07:21:18 +03:00
|
|
|
public class NzbsOrg : IndexerBase
|
2011-04-19 03:12:06 +03:00
|
|
|
{
|
2011-06-14 04:23:04 +03:00
|
|
|
[Inject]
|
2011-05-27 09:03:57 +03:00
|
|
|
public NzbsOrg(HttpProvider httpProvider, ConfigProvider configProvider)
|
|
|
|
: base(httpProvider, configProvider)
|
2011-04-19 03:12:06 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-04-21 04:26:13 +03:00
|
|
|
protected override string[] Urls
|
2011-04-19 03:12:06 +03:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return new[]
|
|
|
|
{
|
2011-05-21 10:09:41 +03:00
|
|
|
string.Format("http://nzbs.org/rss.php?type=1&i={0}&h={1}&num=50&dl=1", _configProvider.NzbsOrgUId, _configProvider.NzbsOrgHash)
|
2011-04-19 03:12:06 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string Name
|
|
|
|
{
|
|
|
|
get { return "Nzbs.org"; }
|
|
|
|
}
|
|
|
|
|
2011-05-01 11:04:44 +03:00
|
|
|
|
2011-04-19 03:12:06 +03:00
|
|
|
protected override string NzbDownloadUrl(SyndicationItem item)
|
|
|
|
{
|
2011-04-19 09:33:09 +03:00
|
|
|
return item.Id;
|
2011-04-19 03:12:06 +03:00
|
|
|
}
|
|
|
|
|
2011-08-28 08:45:36 +03:00
|
|
|
protected override IList<string> GetSearchUrls(SearchModel searchModel)
|
2011-05-26 07:25:59 +03:00
|
|
|
{
|
|
|
|
var searchUrls = new List<String>();
|
|
|
|
|
|
|
|
foreach (var url in Urls)
|
|
|
|
{
|
2011-08-28 08:45:36 +03:00
|
|
|
if (searchModel.SearchType == SearchType.EpisodeSearch)
|
|
|
|
{
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+s{2:00}e{3:00}", url,
|
|
|
|
searchModel.SeriesTitle, searchModel.SeasonNumber, searchModel.EpisodeNumber));
|
|
|
|
}
|
|
|
|
|
2011-09-01 09:58:54 +03:00
|
|
|
if (searchModel.SearchType == SearchType.PartialSeasonSearch)
|
|
|
|
{
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+S{2:00}E{3}",
|
|
|
|
url, searchModel.SeriesTitle, searchModel.SeasonNumber, searchModel.EpisodePrefix));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (searchModel.SearchType == SearchType.SeasonSearch)
|
2011-08-28 08:45:36 +03:00
|
|
|
{
|
2011-09-01 03:17:35 +03:00
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+Season", url, searchModel.SeriesTitle));
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+S{2:00}", url, searchModel.SeriesTitle, searchModel.SeasonNumber));
|
2011-08-28 08:45:36 +03:00
|
|
|
}
|
2011-11-28 23:05:28 +03:00
|
|
|
|
|
|
|
if (searchModel.SearchType == SearchType.DailySearch)
|
|
|
|
{
|
|
|
|
searchUrls.Add(String.Format("{0}&action=search&q={1}+{2:yyyy.MM.dd}", url, searchModel.SeriesTitle,
|
|
|
|
searchModel.AirDate));
|
|
|
|
}
|
2011-05-26 07:25:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return searchUrls;
|
|
|
|
}
|
|
|
|
|
2011-09-14 05:25:33 +03:00
|
|
|
protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult)
|
|
|
|
{
|
|
|
|
if (currentResult != null)
|
|
|
|
{
|
|
|
|
var sizeString = Regex.Match(item.Summary.Text, @">\d+\.\d{1,2} \w{2}</a>", RegexOptions.IgnoreCase).Value;
|
|
|
|
|
|
|
|
currentResult.Size = Parser.GetReportSize(sizeString);
|
|
|
|
}
|
|
|
|
return currentResult;
|
|
|
|
}
|
2011-05-27 09:03:57 +03:00
|
|
|
}
|
2011-04-19 03:12:06 +03:00
|
|
|
}
|