1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/src/NzbDrone.Api/Parse/ParseModule.cs

60 lines
1.7 KiB
C#
Raw Normal View History

using NzbDrone.Api.Episodes;
using NzbDrone.Api.Series;
2017-08-22 06:24:15 +02:00
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Parser;
2017-02-11 08:46:39 +02:00
using Sonarr.Http;
using Sonarr.Http.REST;
2015-04-10 16:30:06 +02:00
namespace NzbDrone.Api.Parse
{
2017-02-11 08:46:39 +02:00
public class ParseModule : SonarrRestModule<ParseResource>
2015-04-10 16:30:06 +02:00
{
private readonly IParsingService _parsingService;
public ParseModule(IParsingService parsingService)
{
_parsingService = parsingService;
GetResourceSingle = Parse;
}
private ParseResource Parse()
{
var title = Request.Query.Title.Value as string;
2017-08-22 06:24:15 +02:00
var path = Request.Query.Path.Value as string;
if (path.IsNullOrWhiteSpace() && title.IsNullOrWhiteSpace())
{
throw new BadRequestException("title or path is missing");
}
2017-08-22 06:24:15 +02:00
var parsedEpisodeInfo = path.IsNotNullOrWhiteSpace() ? Parser.ParsePath(path) : Parser.ParseTitle(title);
2015-04-10 16:30:06 +02:00
if (parsedEpisodeInfo == null)
{
return null;
}
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo, 0, 0);
2015-04-10 16:30:06 +02:00
if (remoteEpisode != null)
2015-04-10 16:30:06 +02:00
{
return new ParseResource
{
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
}
}
}
}