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.
36 lines
1.1 KiB
36 lines
1.1 KiB
using System;
|
|
using System.ServiceModel.Syndication;
|
|
using System.Text.RegularExpressions;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Indexers.NzbClub
|
|
{
|
|
public class NzbClubParser : BasicRssParser
|
|
{
|
|
protected override ReportInfo PostProcessor(SyndicationItem item, ReportInfo currentResult)
|
|
{
|
|
if (currentResult != null)
|
|
{
|
|
var sizeString = Regex.Match(item.Summary.Text, @"Size:\s\d+\s+\w+", RegexOptions.IgnoreCase | RegexOptions.Compiled).Value;
|
|
currentResult.Size = GetReportSize(sizeString);
|
|
}
|
|
|
|
return currentResult;
|
|
}
|
|
|
|
protected override string GetTitle(SyndicationItem syndicationItem)
|
|
{
|
|
var title = ParseHeader(syndicationItem.Title.Text);
|
|
|
|
if (String.IsNullOrWhiteSpace(title))
|
|
return syndicationItem.Title.Text;
|
|
|
|
return title;
|
|
}
|
|
|
|
protected override string GetNzbInfoUrl(SyndicationItem item)
|
|
{
|
|
return item.Links[1].Uri.ToString();
|
|
}
|
|
}
|
|
} |