mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
|
using System;
|
||
|
using System.ServiceModel.Syndication;
|
||
|
using System.Text.RegularExpressions;
|
||
|
using NzbDrone.Core.Model;
|
||
|
|
||
|
namespace NzbDrone.Core.Indexers.Omgwtfnzbs
|
||
|
{
|
||
|
public class OmgwtfnzbsParser : BasicRssParser
|
||
|
{
|
||
|
protected override string GetNzbUrl(SyndicationItem item)
|
||
|
{
|
||
|
return item.Links[0].Uri.ToString();
|
||
|
}
|
||
|
|
||
|
protected override string GetNzbInfoUrl(SyndicationItem item)
|
||
|
{
|
||
|
//Todo: Me thinks I need to parse details to get this...
|
||
|
var match = Regex.Match(item.Summary.Text, @"(?:\<b\>View NZB\:\<\/b\>\s\<a\shref\=\"")(?<URL>.+)(?:\""\starget)",
|
||
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
||
|
|
||
|
if (match.Success)
|
||
|
{
|
||
|
return match.Groups["URL"].Value;
|
||
|
}
|
||
|
|
||
|
return String.Empty;
|
||
|
}
|
||
|
|
||
|
protected override EpisodeParseResult PostProcessor(SyndicationItem item, EpisodeParseResult currentResult)
|
||
|
{
|
||
|
if (currentResult != null)
|
||
|
{
|
||
|
var sizeString = Regex.Match(item.Summary.Text, @"Size:\<\/b\>\s\d+\.\d{1,2}\s\w{2}\<br \/\>", RegexOptions.IgnoreCase | RegexOptions.Compiled).Value;
|
||
|
currentResult.Size = Parser.GetReportSize(sizeString);
|
||
|
}
|
||
|
|
||
|
return currentResult;
|
||
|
}
|
||
|
}
|
||
|
}
|