1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed the parser for movies with A.

Fixes  some parser issues.
This commit is contained in:
Leonardo Galli 2017-03-08 19:10:04 +01:00
parent 24a394bf46
commit b9eab860f5
2 changed files with 15 additions and 2 deletions

View File

@ -71,6 +71,9 @@ public void should_remove_request_info_from_title(string postTitle, string title
[TestCase("This Is A Movie (1999) [IMDB #] <Genre, Genre, Genre> {ACTORS} !DIRECTOR +MORE_SILLY_STUFF_NO_ONE_NEEDS ?", "This Is A Movie")]
[TestCase("We Are the Best!.2013.720p.H264.mkv", "We Are the Best!")]
[TestCase("(500).Days.Of.Summer.(2009).DTS.1080p.BluRay.x264.NLsubs", "(500) Days Of Summer")]
[TestCase("To.Live.and.Die.in.L.A.1985.1080p.BluRay", "To Live and Die in L.A.")]
[TestCase("A.I.Artificial.Intelligence.(2001)", "A.I. Artificial Intelligence")]
[TestCase("A.Movie.Name.(1998)", "A Movie Name")]
public void should_parse_movie_title(string postTitle, string title)
{
Parser.Parser.ParseMovieTitle(postTitle).MovieTitle.Should().Be(title);

View File

@ -736,15 +736,25 @@ private static ParsedMovieInfo ParseMovieMatchCollection(MatchCollection matchCo
var parts = seriesName.Split('.');
seriesName = "";
int n;
int n = 0;
bool previousAcronym = false;
string nextPart = "";
foreach (var part in parts)
{
if (parts.Length >= n+2)
{
nextPart = parts[n+1];
}
if (part.Length == 1 && part.ToLower() != "a" && !int.TryParse(part, out n))
{
seriesName += part + ".";
previousAcronym = true;
}
else if (part.ToLower() == "a" && (previousAcronym == true || nextPart.Length == 1))
{
seriesName += part + ".";
previousAcronym = true;
}
else
{
if (previousAcronym)
@ -754,7 +764,7 @@ private static ParsedMovieInfo ParseMovieMatchCollection(MatchCollection matchCo
}
seriesName += part + " ";
}
n++;
}
seriesName = seriesName.Trim(' ');