Radarr/NzbDrone.Core/Indexers/XElementExtensions.cs

59 lines
1.5 KiB
C#
Raw Normal View History

2013-08-06 02:45:57 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using NLog;
2013-08-06 02:45:57 +00:00
namespace NzbDrone.Core.Indexers
{
public static class XElementExtensions
{
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2013-08-06 02:45:57 +00:00
public static string Title(this XElement item)
{
2013-08-06 05:06:58 +00:00
return item.TryGetValue("title", "Unknown");
2013-08-06 02:45:57 +00:00
}
public static DateTime PublishDate(this XElement item)
{
string dateString = item.TryGetValue("pubDate");
try
{
return DateTime.Parse(dateString);
}
catch (FormatException e)
{
Logger.WarnException("Unable to parse " + dateString, e);
throw;
}
2013-08-06 02:45:57 +00:00
}
public static List<String> Links(this XElement item)
{
var elements = item.Elements("link");
2013-08-06 05:06:58 +00:00
return elements.Select(link => link.Value).ToList();
2013-08-06 02:45:57 +00:00
}
public static string Description(this XElement item)
{
2013-08-06 05:06:58 +00:00
return item.TryGetValue("description");
2013-08-06 02:45:57 +00:00
}
public static string Comments(this XElement item)
{
2013-08-06 05:06:58 +00:00
return item.TryGetValue("comments");
2013-08-06 02:45:57 +00:00
}
2013-08-06 05:06:58 +00:00
private static string TryGetValue(this XElement item, string elementName, string defaultValue = "")
2013-08-06 02:45:57 +00:00
{
var element = item.Element(elementName);
return element != null ? element.Value : defaultValue;
}
}
}