2016-03-25 02:56:29 +02:00
|
|
|
using NzbDrone.Api.Episodes;
|
|
|
|
using NzbDrone.Api.Series;
|
|
|
|
using NzbDrone.Core.Parser;
|
2015-04-10 16:30:06 +02:00
|
|
|
|
|
|
|
namespace NzbDrone.Api.Parse
|
|
|
|
{
|
|
|
|
public class ParseModule : NzbDroneRestModule<ParseResource>
|
|
|
|
{
|
|
|
|
private readonly IParsingService _parsingService;
|
|
|
|
|
|
|
|
public ParseModule(IParsingService parsingService)
|
|
|
|
{
|
|
|
|
_parsingService = parsingService;
|
|
|
|
|
|
|
|
GetResourceSingle = Parse;
|
|
|
|
}
|
|
|
|
|
|
|
|
private ParseResource Parse()
|
|
|
|
{
|
2016-03-25 02:56:29 +02:00
|
|
|
var title = Request.Query.Title.Value as string;
|
2015-04-10 16:30:06 +02:00
|
|
|
var parsedEpisodeInfo = Parser.ParseTitle(title);
|
|
|
|
|
|
|
|
if (parsedEpisodeInfo == null)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-09-26 10:45:13 +02:00
|
|
|
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo, 0, 0);
|
2015-04-10 16:30:06 +02:00
|
|
|
|
2016-03-25 02:56:29 +02:00
|
|
|
if (remoteEpisode != null)
|
2015-04-10 16:30:06 +02:00
|
|
|
{
|
|
|
|
return new ParseResource
|
2016-03-25 02:56:29 +02:00
|
|
|
{
|
|
|
|
Title = title,
|
|
|
|
ParsedEpisodeInfo = remoteEpisode.ParsedEpisodeInfo,
|
|
|
|
Series = remoteEpisode.Series.ToResource(),
|
|
|
|
Episodes = remoteEpisode.Episodes.ToResource()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return new ParseResource
|
|
|
|
{
|
|
|
|
Title = title,
|
|
|
|
ParsedEpisodeInfo = parsedEpisodeInfo
|
|
|
|
};
|
2015-04-10 16:30:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|