You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
637 B
20 lines
637 B
12 years ago
|
using System.ServiceModel.Syndication;
|
||
|
using System.Text.RegularExpressions;
|
||
|
using NzbDrone.Core.Model;
|
||
|
|
||
|
namespace NzbDrone.Core.Indexers.NzbsRUs
|
||
|
{
|
||
|
public class NzbsrusParser : BasicRssParser
|
||
|
{
|
||
|
protected override EpisodeParseResult PostProcessor(SyndicationItem item, EpisodeParseResult currentResult)
|
||
|
{
|
||
|
if (currentResult != null)
|
||
|
{
|
||
|
var sizeString = Regex.Match(item.Summary.Text, @"\d+\.\d{1,2} \w{3}", RegexOptions.IgnoreCase).Value;
|
||
|
currentResult.Size = Parser.GetReportSize(sizeString);
|
||
|
}
|
||
|
|
||
|
return currentResult;
|
||
|
}
|
||
|
}
|
||
|
}
|