mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
142 lines
4.7 KiB
C#
142 lines
4.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
using System.Xml.Linq;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class TorrentRssParser : RssParser
|
|
{
|
|
// Parse various seeder/leecher/peers formats in the description element to determine number of seeders.
|
|
public Boolean ParseSeedersInDescription { get; set; }
|
|
|
|
// Use the specified element name to determine the size
|
|
public String SizeElementName { get; set; }
|
|
|
|
public TorrentRssParser()
|
|
{
|
|
|
|
}
|
|
|
|
public IEnumerable<XElement> GetItems(IndexerResponse indexerResponse)
|
|
{
|
|
var document = LoadXmlDocument(indexerResponse);
|
|
var items = GetItems(document);
|
|
|
|
return items;
|
|
}
|
|
|
|
protected override ReleaseInfo CreateNewReleaseInfo()
|
|
{
|
|
return new TorrentInfo();
|
|
}
|
|
|
|
protected override ReleaseInfo ProcessItem(XElement item, ReleaseInfo releaseInfo)
|
|
{
|
|
var result = base.ProcessItem(item, releaseInfo) as TorrentInfo;
|
|
|
|
result.InfoHash = GetInfoHash(item);
|
|
result.MagnetUrl = GetMagnetUrl(item);
|
|
result.Seeders = GetSeeders(item);
|
|
result.Peers = GetPeers(item);
|
|
|
|
return result;
|
|
}
|
|
|
|
protected virtual String GetInfoHash(XElement item)
|
|
{
|
|
var magnetUrl = GetMagnetUrl(item);
|
|
if (magnetUrl.IsNotNullOrWhiteSpace())
|
|
{
|
|
try
|
|
{
|
|
var magnetLink = new MonoTorrent.MagnetLink(magnetUrl);
|
|
return magnetLink.InfoHash.ToHex();
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
protected virtual String GetMagnetUrl(XElement item)
|
|
{
|
|
var downloadUrl = GetDownloadUrl(item);
|
|
if (downloadUrl.StartsWith("magnet:"))
|
|
{
|
|
return downloadUrl;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
protected virtual Int32? GetSeeders(XElement item)
|
|
{
|
|
if (ParseSeedersInDescription && item.Element("description") != null)
|
|
{
|
|
var matchSeeders = ParseSeedersRegex.Match(item.Element("description").Value);
|
|
|
|
if (matchSeeders.Success)
|
|
{
|
|
return Int32.Parse(matchSeeders.Groups["value"].Value);
|
|
}
|
|
|
|
var matchPeers = ParsePeersRegex.Match(item.Element("description").Value);
|
|
var matchLeechers = ParseLeechersRegex.Match(item.Element("description").Value);
|
|
|
|
if (matchPeers.Success && matchLeechers.Success)
|
|
{
|
|
return Int32.Parse(matchPeers.Groups["value"].Value) - Int32.Parse(matchLeechers.Groups["value"].Value);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
protected virtual Int32? GetPeers(XElement item)
|
|
{
|
|
if (ParseSeedersInDescription && item.Element("description") != null)
|
|
{
|
|
var matchPeers = ParsePeersRegex.Match(item.Element("description").Value);
|
|
|
|
if (matchPeers.Success)
|
|
{
|
|
return Int32.Parse(matchPeers.Groups["value"].Value);
|
|
}
|
|
|
|
var matchSeeders = ParseSeedersRegex.Match(item.Element("description").Value);
|
|
var matchLeechers = ParseLeechersRegex.Match(item.Element("description").Value);
|
|
|
|
if (matchSeeders.Success && matchLeechers.Success)
|
|
{
|
|
return Int32.Parse(matchSeeders.Groups["value"].Value) + Int32.Parse(matchLeechers.Groups["value"].Value);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
protected override long GetSize(XElement item)
|
|
{
|
|
var size = base.GetSize(item);
|
|
if (size == 0 && SizeElementName.IsNotNullOrWhiteSpace())
|
|
{
|
|
if (item.Element(SizeElementName) != null)
|
|
{
|
|
size = ParseSize(item.Element(SizeElementName).Value, true);
|
|
}
|
|
}
|
|
|
|
return size;
|
|
}
|
|
|
|
private static readonly Regex ParseSeedersRegex = new Regex(@"(Seeder)s?:\s+(?<value>\d+)|(?<value>\d+)\s+(seeder)s?", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
private static readonly Regex ParseLeechersRegex = new Regex(@"(Leecher)s?:\s+(?<value>\d+)|(?<value>\d+)\s+(leecher)s?", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
private static readonly Regex ParsePeersRegex = new Regex(@"(Peer)s?:\s+(?<value>\d+)|(?<value>\d+)\s+(peer)s?", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
}
|
|
}
|