mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-07 15:20:58 +02:00
52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
using NzbDrone.Api.Episodes;
|
|
using NzbDrone.Api.Series;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Parser;
|
|
|
|
namespace NzbDrone.Api.Parse
|
|
{
|
|
public class ParseModule : NzbDroneRestModule<ParseResource>
|
|
{
|
|
private readonly IParsingService _parsingService;
|
|
|
|
public ParseModule(IParsingService parsingService)
|
|
{
|
|
_parsingService = parsingService;
|
|
|
|
GetResourceSingle = Parse;
|
|
}
|
|
|
|
private ParseResource Parse()
|
|
{
|
|
var title = Request.Query.Title.Value as string;
|
|
var path = Request.Query.Path.Value as string;
|
|
var parsedEpisodeInfo = path.IsNotNullOrWhiteSpace() ? Parser.ParsePath(path) : Parser.ParseTitle(title);
|
|
|
|
if (parsedEpisodeInfo == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo, 0, 0);
|
|
|
|
if (remoteEpisode != null)
|
|
{
|
|
return new ParseResource
|
|
{
|
|
Title = title,
|
|
ParsedEpisodeInfo = remoteEpisode.ParsedEpisodeInfo,
|
|
Series = remoteEpisode.Series.ToResource(),
|
|
Episodes = remoteEpisode.Episodes.ToResource()
|
|
};
|
|
}
|
|
else
|
|
{
|
|
return new ParseResource
|
|
{
|
|
Title = title,
|
|
ParsedEpisodeInfo = parsedEpisodeInfo
|
|
};
|
|
}
|
|
}
|
|
}
|
|
} |