mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
52 lines
1.7 KiB
C#
52 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using NLog;
|
|
using Newtonsoft.Json;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Parser;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Indexers.Nzbx
|
|
{
|
|
public class NzbxParser : IParseFeed
|
|
{
|
|
private readonly Logger _logger;
|
|
private readonly JsonSerializer _serializer;
|
|
|
|
public NzbxParser(Logger logger)
|
|
{
|
|
_logger = logger;
|
|
_serializer = new JsonSerializer();
|
|
}
|
|
|
|
public IEnumerable<ReportInfo> Process(Stream source)
|
|
{
|
|
var result = new List<ReportInfo>();
|
|
var jsonReader = new JsonTextReader(new StreamReader(source));
|
|
var feed = _serializer.Deserialize<List<NzbxRecentItem>>(jsonReader);
|
|
|
|
foreach (var item in feed)
|
|
{
|
|
try
|
|
{
|
|
var episodeParseResult = new ReportInfo();
|
|
episodeParseResult.Age = DateTime.Now.Date.Subtract(item.PostDate).Days;
|
|
episodeParseResult.Title = item.Name;
|
|
episodeParseResult.NzbUrl = String.Format("http://nzbx.co/nzb?{0}*|*{1}", item.Guid, item.Name);
|
|
episodeParseResult.NzbInfoUrl = String.Format("http://nzbx.co/d?{0}", item.Guid);
|
|
episodeParseResult.Size = item.Size;
|
|
|
|
result.Add(episodeParseResult);
|
|
}
|
|
catch (Exception itemEx)
|
|
{
|
|
itemEx.Data.Add("Item", item.Name);
|
|
_logger.ErrorException("An error occurred while processing feed item", itemEx);
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|
|
} |