2018-03-14 20:41:36 +00:00
|
|
|
using System;
|
2012-08-03 07:01:34 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2017-03-09 00:00:00 +00:00
|
|
|
using System.Text;
|
2012-08-03 07:01:34 +00:00
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
using NLog;
|
2014-12-02 06:26:25 +00:00
|
|
|
using NzbDrone.Common.Extensions;
|
2013-08-31 01:42:30 +00:00
|
|
|
using NzbDrone.Common.Instrumentation;
|
2017-06-17 13:02:58 +00:00
|
|
|
using NzbDrone.Core.Configuration;
|
2013-04-15 01:41:39 +00:00
|
|
|
using NzbDrone.Core.Parser.Model;
|
2018-03-14 20:41:36 +00:00
|
|
|
using NzbDrone.Core.Movies;
|
2017-06-17 13:02:58 +00:00
|
|
|
using TinyIoC;
|
2012-08-03 07:01:34 +00:00
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
namespace NzbDrone.Core.Parser
|
2012-08-03 07:01:34 +00:00
|
|
|
{
|
|
|
|
public static class Parser
|
|
|
|
{
|
2014-12-17 07:12:26 +00:00
|
|
|
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(Parser));
|
2012-08-03 07:01:34 +00:00
|
|
|
|
2017-01-04 21:59:34 +00:00
|
|
|
private static readonly Regex[] ReportMovieTitleRegex = new[]
|
|
|
|
{
|
|
|
|
//Special, Despecialized, etc. Edition Movies, e.g: Mission.Impossible.3.Special.Edition.2011
|
2017-06-17 13:02:58 +00:00
|
|
|
new Regex(@"^(?<title>(?![(\[]).+?)?(?:(?:[-_\W](?<![)\[!]))*\(?(?<edition>(((Extended.|Ultimate.)?(Director.?s|Collector.?s|Theatrical|Ultimate|Final(?=(.(Cut|Edition|Version)))|Extended|Rogue|Special|Despecialized|\d{2,3}(th)?.Anniversary)(.(Cut|Edition|Version))?(.(Extended|Uncensored|Remastered|Unrated|Uncut|IMAX|Fan.?Edit))?|((Uncensored|Remastered|Unrated|Uncut|IMAX|Fan.?Edit|Edition|Restored|((2|3|4)in1))))))\)?.{1,3}(?<year>(19|20)\d{2}(?!p|i|\d+|\]|\W\d+)))+(\W+|_|$)(?!\\)",
|
2017-01-04 21:59:34 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-03-07 23:29:02 +00:00
|
|
|
//Special, Despecialized, etc. Edition Movies, e.g: Mission.Impossible.3.2011.Special.Edition //TODO: Seems to slow down parsing heavily!
|
2017-06-18 21:12:14 +00:00
|
|
|
/*new Regex(@"^(?<title>(?![(\[]).+?)?(?:(?:[-_\W](?<![)\[!]))*(?<year>(19|20)\d{2}(?!p|i|(19|20)\d{2}|\]|\W(19|20)\d{2})))+(\W+|_|$)(?!\\)\(?(?<edition>(((Extended.|Ultimate.)?(Director.?s|Collector.?s|Theatrical|Ultimate|Final(?=(.(Cut|Edition|Version)))|Extended|Rogue|Special|Despecialized|\d{2,3}(th)?.Anniversary)(.(Cut|Edition|Version))?(.(Extended|Uncensored|Remastered|Unrated|Uncut|IMAX|Fan.?Edit))?|((Uncensored|Remastered|Unrated|Uncut|IMAX|Fan.?Edit|Edition|Restored|((2|3|4)in1))))))\)?",
|
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled),*/
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-03-07 23:29:02 +00:00
|
|
|
//Normal movie format, e.g: Mission.Impossible.3.2011
|
2017-06-18 21:12:14 +00:00
|
|
|
new Regex(@"^(?<title>(?![(\[]).+?)?(?:(?:[-_\W](?<![)\[!]))*(?<year>(19|20)\d{2}(?!p|i|(19|20)\d{2}|\]|\W(19|20)\d{2})))+(\W+|_|$)(?!\\)", RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
2017-06-17 13:02:58 +00:00
|
|
|
|
2017-03-07 23:29:02 +00:00
|
|
|
//PassThePopcorn Torrent names: Star.Wars[PassThePopcorn]
|
|
|
|
new Regex(@"^(?<title>.+?)?(?:(?:[-_\W](?<![()\[!]))*(?<year>(\[\w *\])))+(\W+|_|$)(?!\\)", RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
|
|
|
|
|
|
|
//That did not work? Maybe some tool uses [] for years. Who would do that?
|
|
|
|
new Regex(@"^(?<title>(?![(\[]).+?)?(?:(?:[-_\W](?<![)!]))*(?<year>(19|20)\d{2}(?!p|i|\d+|\W\d+)))+(\W+|_|$)(?!\\)", RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
2017-02-10 18:00:16 +00:00
|
|
|
|
|
|
|
//As a last resort for movies that have ( or [ in their title.
|
2017-03-07 23:29:02 +00:00
|
|
|
new Regex(@"^(?<title>.+?)?(?:(?:[-_\W](?<![)\[!]))*(?<year>(19|20)\d{2}(?!p|i|\d+|\]|\W\d+)))+(\W+|_|$)(?!\\)", RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
2017-02-10 18:00:16 +00:00
|
|
|
|
2017-01-11 20:49:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private static readonly Regex[] ReportMovieTitleFolderRegex = new[]
|
|
|
|
{
|
|
|
|
//When year comes first.
|
|
|
|
new Regex(@"^(?:(?:[-_\W](?<![)!]))*(?<year>(19|20)\d{2}(?!p|i|\d+|\W\d+)))+(\W+|_|$)(?<title>.+?)?$")
|
2017-01-04 21:59:34 +00:00
|
|
|
};
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-06-17 13:02:58 +00:00
|
|
|
private static readonly Regex[] ReportMovieTitleLenientRegexBefore = new[]
|
|
|
|
{
|
|
|
|
//Some german or french tracker formats
|
2018-08-05 14:28:05 +00:00
|
|
|
new Regex(@"^(?<title>(?![(\[]).+?)((\W|_))(?:(?<!(19|20)\d{2}.)(German|French|TrueFrench))(.+?)(?=((19|20)\d{2}|$))(?<year>(19|20)\d{2}(?!p|i|\d+|\]|\W\d+))?(\W+|_|$)(?!\\)", RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
2017-06-17 13:02:58 +00:00
|
|
|
};
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-06-17 13:02:58 +00:00
|
|
|
private static readonly Regex[] ReportMovieTitleLenientRegexAfter = new Regex[]
|
|
|
|
{
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-06-17 13:02:58 +00:00
|
|
|
};
|
2017-01-04 21:59:34 +00:00
|
|
|
|
2014-04-17 23:16:40 +00:00
|
|
|
private static readonly Regex[] RejectHashedReleasesRegex = new Regex[]
|
|
|
|
{
|
|
|
|
// Generic match for md5 and mixed-case hashes.
|
|
|
|
new Regex(@"^[0-9a-zA-Z]{32}", RegexOptions.Compiled),
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2014-06-25 18:44:57 +00:00
|
|
|
// Generic match for shorter lower-case hashes.
|
|
|
|
new Regex(@"^[a-z0-9]{24}$", RegexOptions.Compiled),
|
2014-04-17 23:16:40 +00:00
|
|
|
|
|
|
|
// Format seen on some NZBGeek releases
|
2015-03-15 12:11:17 +00:00
|
|
|
// Be very strict with these coz they are very close to the valid 101 ep numbering.
|
2014-12-02 02:27:53 +00:00
|
|
|
new Regex(@"^[A-Z]{11}\d{3}$", RegexOptions.Compiled),
|
2015-03-15 12:11:17 +00:00
|
|
|
new Regex(@"^[a-z]{12}\d{3}$", RegexOptions.Compiled),
|
2014-12-02 02:27:53 +00:00
|
|
|
|
|
|
|
//Backup filename (Unknown origins)
|
2014-12-15 18:04:55 +00:00
|
|
|
new Regex(@"^Backup_\d{5,}S\d{2}-\d{2}$", RegexOptions.Compiled),
|
|
|
|
|
|
|
|
//123 - Started appearing December 2014
|
2015-01-09 06:45:29 +00:00
|
|
|
new Regex(@"^123$", RegexOptions.Compiled),
|
|
|
|
|
|
|
|
//abc - Started appearing January 2015
|
2015-01-10 05:59:06 +00:00
|
|
|
new Regex(@"^abc$", RegexOptions.Compiled | RegexOptions.IgnoreCase),
|
|
|
|
|
|
|
|
//b00bs - Started appearing January 2015
|
2015-01-21 22:48:35 +00:00
|
|
|
new Regex(@"^b00bs$", RegexOptions.Compiled | RegexOptions.IgnoreCase)
|
2014-04-17 23:16:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//Regex to detect whether the title was reversed.
|
2014-08-13 19:28:47 +00:00
|
|
|
private static readonly Regex ReversedTitleRegex = new Regex(@"[-._ ](p027|p0801|\d{2}E\d{2}S)[-._ ]", RegexOptions.Compiled);
|
2014-04-17 23:16:40 +00:00
|
|
|
|
2017-07-01 09:01:48 +00:00
|
|
|
private static readonly Regex NormalizeRegex = new Regex(@"((?:\b|_)(?<!^|\W\w\W)(a(?!$|\W\w\W)|an|the|and|or|of)(?:\b|_))|\W|_",
|
2014-05-04 18:44:18 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
2012-08-03 07:01:34 +00:00
|
|
|
|
2014-10-21 21:51:38 +00:00
|
|
|
private static readonly Regex FileExtensionRegex = new Regex(@"\.[a-z0-9]{2,4}$",
|
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
2017-01-21 19:37:08 +00:00
|
|
|
private static readonly Regex ReportImdbId = new Regex(@"(?<imdbid>tt\d{7})", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
2017-01-09 16:52:55 +00:00
|
|
|
|
2017-04-13 08:27:00 +00:00
|
|
|
private static readonly Regex SimpleTitleRegex = new Regex(@"\s*(?:480[ip]|576[ip]|720[ip]|1080[ip]|2160[ip]|[xh][\W_]?26[45]|DD\W?5\W1|[<>?*:|]|848x480|1280x720|1920x1080|(8|10)b(it)?)",
|
2014-05-04 18:44:18 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
2012-08-03 07:01:34 +00:00
|
|
|
|
2018-08-05 14:28:05 +00:00
|
|
|
private static readonly Regex SimpleReleaseTitleRegex = new Regex(@"\s*(?:[<>?*:|])", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
|
|
|
|
2018-12-07 10:22:06 +00:00
|
|
|
private static readonly Regex WebsitePrefixRegex = new Regex(@"^\[\s*[a-z]+(\.[a-z]+)+\s*\][- ]*|^www\.[a-z]+\.(?:com|net)[ -]*",
|
2014-05-13 17:57:46 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
2014-05-03 18:26:47 +00:00
|
|
|
private static readonly Regex AirDateRegex = new Regex(@"^(.*?)(?<!\d)((?<airyear>\d{4})[_.-](?<airmonth>[0-1][0-9])[_.-](?<airday>[0-3][0-9])|(?<airmonth>[0-1][0-9])[_.-](?<airday>[0-3][0-9])[_.-](?<airyear>\d{4}))(?!\d)",
|
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
2014-12-02 00:48:00 +00:00
|
|
|
private static readonly Regex SixDigitAirDateRegex = new Regex(@"(?<=[_.-])(?<airdate>(?<!\d)(?<airyear>[1-9]\d{1})(?<airmonth>[0-1][0-9])(?<airday>[0-3][0-9]))(?=[_.-])",
|
2014-07-25 15:33:51 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
2018-12-07 10:22:06 +00:00
|
|
|
private static readonly Regex CleanReleaseGroupRegex = new Regex(@"^(.*?[-._ ](S\d+E\d+)[-._ ])|(-(RP|1|NZBGeek|Obfuscated|sample|Pre|postbot|xpost))+$",
|
2015-01-10 08:43:35 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
2015-10-20 18:12:35 +00:00
|
|
|
private static readonly Regex CleanTorrentSuffixRegex = new Regex(@"\[(?:ettv|rartv|rarbg|cttv)\]$",
|
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
2016-03-26 20:42:33 +00:00
|
|
|
private static readonly Regex ReleaseGroupRegex = new Regex(@"-(?<releasegroup>[a-z0-9]+)(?<!WEB-DL|480p|720p|1080p|2160p)(?:\b|[-._ ])",
|
2014-05-04 18:44:18 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
2015-01-16 21:48:22 +00:00
|
|
|
private static readonly Regex AnimeReleaseGroupRegex = new Regex(@"^(?:\[(?<subgroup>(?!\s).+?(?<!\s))\](?:_|-|\s|\.)?)",
|
2015-01-10 08:43:35 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
|
|
|
|
2013-10-31 23:50:39 +00:00
|
|
|
private static readonly Regex YearInTitleRegex = new Regex(@"^(?<title>.+?)(?:\W|_)?(?<year>\d{4})",
|
2014-05-04 18:44:18 +00:00
|
|
|
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
2013-10-31 23:50:39 +00:00
|
|
|
|
2018-02-15 14:21:15 +00:00
|
|
|
private static readonly Regex WordDelimiterRegex = new Regex(@"(\s|\.|,|_|-|=|'|\|)+", RegexOptions.Compiled);
|
2017-02-06 21:34:11 +00:00
|
|
|
private static readonly Regex SpecialCharRegex = new Regex(@"(\&|\:|\\|\/)+", RegexOptions.Compiled);
|
2014-01-08 05:54:23 +00:00
|
|
|
private static readonly Regex PunctuationRegex = new Regex(@"[^\w\s]", RegexOptions.Compiled);
|
2014-12-12 23:49:32 +00:00
|
|
|
private static readonly Regex CommonWordRegex = new Regex(@"\b(a|an|the|and|or|of)\b\s?", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
2014-12-15 18:52:16 +00:00
|
|
|
private static readonly Regex SpecialEpisodeWordRegex = new Regex(@"\b(part|special|edition|christmas)\b\s?", RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
2014-12-12 23:49:32 +00:00
|
|
|
private static readonly Regex DuplicateSpacesRegex = new Regex(@"\s{2,}", RegexOptions.Compiled);
|
2014-01-07 08:24:50 +00:00
|
|
|
|
2014-08-12 05:11:06 +00:00
|
|
|
private static readonly Regex RequestInfoRegex = new Regex(@"\[.+?\]", RegexOptions.Compiled);
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-06-18 21:12:14 +00:00
|
|
|
private static readonly Regex ReportYearRegex = new Regex(@"^.*(?<year>(19|20)\d{2}).*$", RegexOptions.Compiled);
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-06-18 21:12:14 +00:00
|
|
|
private static readonly Regex ReportEditionRegex = new Regex(@"(?<edition>(((Extended.|Ultimate.)?(Director.?s|Collector.?s|Theatrical|Ultimate|Final(?=(.(Cut|Edition|Version)))|Extended|Rogue|Special|Despecialized|\d{2,3}(th)?.Anniversary)(.(Cut|Edition|Version))?(.(Extended|Uncensored|Remastered|Unrated|Uncut|IMAX|Fan.?Edit))?|((Uncensored|Remastered|Unrated|Uncut|IMAX|Fan.?Edit|Edition|Restored|((2|3|4)in1))))))\)?", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
2014-08-12 05:11:06 +00:00
|
|
|
|
2016-06-15 18:58:42 +00:00
|
|
|
private static readonly string[] Numbers = new[] { "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine" };
|
2017-04-17 11:08:47 +00:00
|
|
|
private static Dictionary<String, String> _umlautMappings = new Dictionary<string, string>
|
|
|
|
{
|
|
|
|
{"ö", "oe"},
|
|
|
|
{"ä", "ae"},
|
|
|
|
{"ü", "ue"},
|
|
|
|
};
|
2016-06-15 18:58:42 +00:00
|
|
|
|
2018-08-05 14:28:05 +00:00
|
|
|
private static ParsedMovieInfo ParseMoviePath(string path, bool isLenient)
|
2017-01-09 00:48:04 +00:00
|
|
|
{
|
|
|
|
var fileInfo = new FileInfo(path);
|
|
|
|
|
2017-06-17 13:02:58 +00:00
|
|
|
var result = ParseMovieTitle(fileInfo.Name, isLenient, true);
|
2017-01-09 00:48:04 +00:00
|
|
|
|
|
|
|
if (result == null)
|
|
|
|
{
|
2018-03-14 20:41:36 +00:00
|
|
|
Logger.Debug("Attempting to parse movie info using directory and file names. {0}", fileInfo.Directory.Name);
|
2017-06-17 13:02:58 +00:00
|
|
|
result = ParseMovieTitle(fileInfo.Directory.Name + " " + fileInfo.Name, isLenient);
|
2017-01-09 00:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (result == null)
|
|
|
|
{
|
2018-03-14 20:41:36 +00:00
|
|
|
Logger.Debug("Attempting to parse movie info using directory name. {0}", fileInfo.Directory.Name);
|
2017-06-17 13:02:58 +00:00
|
|
|
result = ParseMovieTitle(fileInfo.Directory.Name + fileInfo.Extension, isLenient);
|
2017-01-09 00:48:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-06-17 13:02:58 +00:00
|
|
|
public static ParsedMovieInfo ParseMovieTitle(string title, bool isLenient, bool isDir = false)
|
2017-01-04 21:59:34 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
ParsedMovieInfo realResult = null;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (!ValidateBeforeParsing(title)) return null;
|
|
|
|
|
|
|
|
Logger.Debug("Parsing string '{0}'", title);
|
|
|
|
|
|
|
|
if (ReversedTitleRegex.IsMatch(title))
|
|
|
|
{
|
|
|
|
var titleWithoutExtension = RemoveFileExtension(title).ToCharArray();
|
|
|
|
Array.Reverse(titleWithoutExtension);
|
|
|
|
|
|
|
|
title = new string(titleWithoutExtension) + title.Substring(titleWithoutExtension.Length);
|
|
|
|
|
|
|
|
Logger.Debug("Reversed name detected. Converted to '{0}'", title);
|
|
|
|
}
|
|
|
|
|
|
|
|
var simpleTitle = SimpleTitleRegex.Replace(title, string.Empty);
|
|
|
|
|
|
|
|
simpleTitle = RemoveFileExtension(simpleTitle);
|
|
|
|
|
2018-08-05 14:28:05 +00:00
|
|
|
var simpleReleaseTitle = SimpleReleaseTitleRegex.Replace(title, string.Empty);
|
|
|
|
simpleReleaseTitle = RemoveFileExtension(simpleReleaseTitle);
|
|
|
|
|
2017-01-04 21:59:34 +00:00
|
|
|
// TODO: Quick fix stripping [url] - prefixes.
|
|
|
|
simpleTitle = WebsitePrefixRegex.Replace(simpleTitle, string.Empty);
|
|
|
|
|
|
|
|
simpleTitle = CleanTorrentSuffixRegex.Replace(simpleTitle, string.Empty);
|
|
|
|
|
2017-01-11 20:49:59 +00:00
|
|
|
var allRegexes = ReportMovieTitleRegex.ToList();
|
|
|
|
|
|
|
|
if (isDir)
|
|
|
|
{
|
|
|
|
allRegexes.AddRange(ReportMovieTitleFolderRegex);
|
|
|
|
}
|
|
|
|
|
2017-06-17 13:02:58 +00:00
|
|
|
if (isLenient)
|
|
|
|
{
|
|
|
|
allRegexes.InsertRange(0, ReportMovieTitleLenientRegexBefore);
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-06-17 13:02:58 +00:00
|
|
|
allRegexes.AddRange(ReportMovieTitleLenientRegexAfter);
|
|
|
|
}
|
|
|
|
|
2017-01-11 20:49:59 +00:00
|
|
|
foreach (var regex in allRegexes)
|
2017-01-04 21:59:34 +00:00
|
|
|
{
|
|
|
|
var match = regex.Matches(simpleTitle);
|
|
|
|
|
|
|
|
if (match.Count != 0)
|
|
|
|
{
|
|
|
|
Logger.Trace(regex);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
var result = ParseMovieMatchCollection(match);
|
|
|
|
|
|
|
|
if (result != null)
|
|
|
|
{
|
2018-08-05 14:28:05 +00:00
|
|
|
//TODO: Add tests for this!
|
|
|
|
if (result.MovieTitle.IsNotNullOrWhiteSpace())
|
2017-01-04 21:59:34 +00:00
|
|
|
{
|
2018-08-05 14:28:05 +00:00
|
|
|
simpleReleaseTitle = simpleReleaseTitle.Replace(result.MovieTitle, result.MovieTitle.Contains(".") ? "A.Movie" : "A Movie");
|
2017-01-04 21:59:34 +00:00
|
|
|
}
|
|
|
|
|
2018-08-05 14:28:05 +00:00
|
|
|
result.SimpleReleaseTitle = simpleReleaseTitle;
|
2017-01-04 21:59:34 +00:00
|
|
|
|
|
|
|
realResult = result;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (InvalidDateException ex)
|
|
|
|
{
|
|
|
|
Logger.Debug(ex, ex.Message);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
if (!title.ToLower().Contains("password") && !title.ToLower().Contains("yenc"))
|
|
|
|
Logger.Error(e, "An error has occurred while trying to parse " + title);
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger.Debug("Unable to parse {0}", title);
|
|
|
|
return realResult;
|
|
|
|
}
|
|
|
|
|
2017-06-18 21:12:14 +00:00
|
|
|
public static ParsedMovieInfo ParseMinimalMovieTitle(string title, string foundTitle, int foundYear)
|
|
|
|
{
|
|
|
|
var result = new ParsedMovieInfo {MovieTitle = foundTitle};
|
|
|
|
|
|
|
|
var languageTitle = Regex.Replace(title.Replace(".", " "), foundTitle, "A Movie", RegexOptions.IgnoreCase);
|
2018-08-05 14:28:05 +00:00
|
|
|
|
|
|
|
result.Languages = LanguageParser.ParseLanguages(title);
|
2018-08-07 15:36:50 +00:00
|
|
|
Logger.Debug("Language parsed: {0}", result.Languages.ToExtendedString());
|
2017-06-18 21:12:14 +00:00
|
|
|
|
|
|
|
result.Quality = QualityParser.ParseQuality(title);
|
|
|
|
Logger.Debug("Quality parsed: {0}", result.Quality);
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2017-06-18 21:12:14 +00:00
|
|
|
if (result.Edition.IsNullOrWhiteSpace())
|
|
|
|
{
|
|
|
|
result.Edition = ParseEdition(languageTitle);
|
|
|
|
}
|
|
|
|
|
|
|
|
result.ReleaseGroup = ParseReleaseGroup(title);
|
|
|
|
|
|
|
|
result.ImdbId = ParseImdbId(title);
|
|
|
|
|
|
|
|
Logger.Debug("Release Group parsed: {0}", result.ReleaseGroup);
|
|
|
|
|
|
|
|
if (foundYear > 1800)
|
|
|
|
{
|
|
|
|
result.Year = foundYear;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var match = ReportYearRegex.Match(title);
|
|
|
|
if (match.Success && match.Groups["year"].Value != null)
|
|
|
|
{
|
|
|
|
int year = 1290;
|
|
|
|
if (int.TryParse(match.Groups["year"].Value, out year))
|
|
|
|
{
|
|
|
|
result.Year = year;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result.Year = year;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-01-09 16:52:55 +00:00
|
|
|
public static string ParseImdbId(string title)
|
|
|
|
{
|
|
|
|
var match = ReportImdbId.Match(title);
|
|
|
|
if (match.Success)
|
|
|
|
{
|
|
|
|
if (match.Groups["imdbid"].Value != null)
|
|
|
|
{
|
2017-01-21 19:37:08 +00:00
|
|
|
if (match.Groups["imdbid"].Length == 9)
|
2017-01-09 16:52:55 +00:00
|
|
|
{
|
|
|
|
return match.Groups["imdbid"].Value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2017-06-18 21:12:14 +00:00
|
|
|
public static string ParseEdition(string languageTitle)
|
|
|
|
{
|
|
|
|
var editionMatch = ReportEditionRegex.Match(languageTitle);
|
|
|
|
|
|
|
|
if (editionMatch.Success && editionMatch.Groups["edition"].Value != null &&
|
|
|
|
editionMatch.Groups["edition"].Value.IsNotNullOrWhiteSpace())
|
|
|
|
{
|
|
|
|
return editionMatch.Groups["edition"].Value.Replace(".", " ");
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2017-03-06 01:13:13 +00:00
|
|
|
public static string ReplaceGermanUmlauts(string s)
|
|
|
|
{
|
|
|
|
var t = s;
|
|
|
|
t = t.Replace("ä", "ae");
|
|
|
|
t = t.Replace("ö", "oe");
|
|
|
|
t = t.Replace("ü", "ue");
|
|
|
|
t = t.Replace("Ä", "Ae");
|
|
|
|
t = t.Replace("Ö", "Oe");
|
|
|
|
t = t.Replace("Ü", "Ue");
|
|
|
|
t = t.Replace("ß", "ss");
|
|
|
|
return t;
|
|
|
|
}
|
2017-03-07 23:29:02 +00:00
|
|
|
|
|
|
|
public static string NormalizeImdbId(string imdbId)
|
|
|
|
{
|
|
|
|
if (imdbId.Length > 2)
|
|
|
|
{
|
2018-09-11 21:47:00 +00:00
|
|
|
imdbId = imdbId.Replace("tt", "").PadLeft(7, '0');
|
|
|
|
return $"tt{imdbId}";
|
2017-03-07 23:29:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-03-09 00:00:00 +00:00
|
|
|
public static string ToUrlSlug(string value)
|
|
|
|
{
|
|
|
|
//First to lower case
|
|
|
|
value = value.ToLowerInvariant();
|
|
|
|
|
|
|
|
//Remove all accents
|
|
|
|
var bytes = Encoding.GetEncoding("ISO-8859-8").GetBytes(value);
|
|
|
|
value = Encoding.ASCII.GetString(bytes);
|
|
|
|
|
|
|
|
//Replace spaces
|
|
|
|
value = Regex.Replace(value, @"\s", "-", RegexOptions.Compiled);
|
|
|
|
|
|
|
|
//Remove invalid chars
|
|
|
|
value = Regex.Replace(value, @"[^a-z0-9\s-_]", "", RegexOptions.Compiled);
|
|
|
|
|
|
|
|
//Trim dashes from end
|
|
|
|
value = value.Trim('-', '_');
|
|
|
|
|
|
|
|
//Replace double occurences of - or _
|
|
|
|
value = Regex.Replace(value, @"([-_]){2,}", "$1", RegexOptions.Compiled);
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2013-10-31 23:50:39 +00:00
|
|
|
public static string CleanSeriesTitle(this string title)
|
|
|
|
{
|
|
|
|
long number = 0;
|
|
|
|
|
|
|
|
//If Title only contains numbers return it as is.
|
2015-10-03 17:45:26 +00:00
|
|
|
if (long.TryParse(title, out number))
|
2013-10-31 23:50:39 +00:00
|
|
|
return title;
|
|
|
|
|
2017-04-17 11:08:47 +00:00
|
|
|
return ReplaceGermanUmlauts(NormalizeRegex.Replace(title, string.Empty).ToLower()).RemoveAccent();
|
2013-10-31 23:50:39 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 06:01:16 +00:00
|
|
|
public static string NormalizeEpisodeTitle(string title)
|
|
|
|
{
|
2015-10-03 17:45:26 +00:00
|
|
|
title = SpecialEpisodeWordRegex.Replace(title, string.Empty);
|
2015-04-07 01:43:29 +00:00
|
|
|
title = PunctuationRegex.Replace(title, " ");
|
|
|
|
title = DuplicateSpacesRegex.Replace(title, " ");
|
|
|
|
|
|
|
|
return title.Trim()
|
|
|
|
.ToLower();
|
2014-11-19 06:01:16 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 16:45:50 +00:00
|
|
|
public static string NormalizeTitle(string title)
|
2014-01-07 08:24:50 +00:00
|
|
|
{
|
2014-11-19 06:01:16 +00:00
|
|
|
title = WordDelimiterRegex.Replace(title, " ");
|
2015-10-03 17:45:26 +00:00
|
|
|
title = PunctuationRegex.Replace(title, string.Empty);
|
|
|
|
title = CommonWordRegex.Replace(title, string.Empty);
|
2014-12-12 23:49:32 +00:00
|
|
|
title = DuplicateSpacesRegex.Replace(title, " ");
|
2017-02-06 21:34:11 +00:00
|
|
|
title = SpecialCharRegex.Replace(title, string.Empty);
|
2014-11-19 06:01:16 +00:00
|
|
|
|
|
|
|
return title.Trim().ToLower();
|
2014-01-07 08:24:50 +00:00
|
|
|
}
|
|
|
|
|
2013-12-09 06:25:11 +00:00
|
|
|
public static string ParseReleaseGroup(string title)
|
|
|
|
{
|
|
|
|
title = title.Trim();
|
2014-04-17 23:16:40 +00:00
|
|
|
title = RemoveFileExtension(title);
|
2015-01-16 21:48:22 +00:00
|
|
|
title = WebsitePrefixRegex.Replace(title, "");
|
2015-01-10 08:43:35 +00:00
|
|
|
|
|
|
|
var animeMatch = AnimeReleaseGroupRegex.Match(title);
|
|
|
|
|
|
|
|
if (animeMatch.Success)
|
|
|
|
{
|
|
|
|
return animeMatch.Groups["subgroup"].Value;
|
|
|
|
}
|
2014-04-15 21:21:59 +00:00
|
|
|
|
2015-01-16 21:48:22 +00:00
|
|
|
title = CleanReleaseGroupRegex.Replace(title, "");
|
|
|
|
|
2014-05-04 18:44:18 +00:00
|
|
|
var matches = ReleaseGroupRegex.Matches(title);
|
2014-06-05 04:54:40 +00:00
|
|
|
|
2014-05-04 18:44:18 +00:00
|
|
|
if (matches.Count != 0)
|
|
|
|
{
|
2014-06-05 04:54:40 +00:00
|
|
|
var group = matches.OfType<Match>().Last().Groups["releasegroup"].Value;
|
|
|
|
int groupIsNumeric;
|
|
|
|
|
2015-10-03 17:45:26 +00:00
|
|
|
if (int.TryParse(group, out groupIsNumeric))
|
2014-06-05 04:54:40 +00:00
|
|
|
{
|
2014-09-01 23:37:59 +00:00
|
|
|
return null;
|
2014-06-05 04:54:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return group;
|
2013-12-09 06:25:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-01 23:37:59 +00:00
|
|
|
return null;
|
2013-12-09 06:25:11 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 23:16:40 +00:00
|
|
|
public static string RemoveFileExtension(string title)
|
|
|
|
{
|
2014-10-21 21:51:38 +00:00
|
|
|
title = FileExtensionRegex.Replace(title, m =>
|
2014-04-17 23:16:40 +00:00
|
|
|
{
|
2014-10-21 21:51:38 +00:00
|
|
|
var extension = m.Value.ToLower();
|
|
|
|
if (MediaFiles.MediaFileExtensions.Extensions.Contains(extension) || new[] { ".par2", ".nzb" }.Contains(extension))
|
|
|
|
{
|
2015-10-03 17:45:26 +00:00
|
|
|
return string.Empty;
|
2014-10-21 21:51:38 +00:00
|
|
|
}
|
2014-12-07 07:23:11 +00:00
|
|
|
return m.Value;
|
2014-10-21 21:51:38 +00:00
|
|
|
});
|
2014-04-17 23:16:40 +00:00
|
|
|
|
|
|
|
return title;
|
|
|
|
}
|
2018-08-05 14:28:05 +00:00
|
|
|
|
2013-10-31 23:50:39 +00:00
|
|
|
private static SeriesTitleInfo GetSeriesTitleInfo(string title)
|
|
|
|
{
|
|
|
|
var seriesTitleInfo = new SeriesTitleInfo();
|
|
|
|
seriesTitleInfo.Title = title;
|
|
|
|
|
|
|
|
var match = YearInTitleRegex.Match(title);
|
|
|
|
|
|
|
|
if (!match.Success)
|
|
|
|
{
|
|
|
|
seriesTitleInfo.TitleWithoutYear = title;
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
seriesTitleInfo.TitleWithoutYear = match.Groups["title"].Value;
|
|
|
|
seriesTitleInfo.Year = Convert.ToInt32(match.Groups["year"].Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return seriesTitleInfo;
|
|
|
|
}
|
|
|
|
|
2017-01-04 21:59:34 +00:00
|
|
|
private static ParsedMovieInfo ParseMovieMatchCollection(MatchCollection matchCollection)
|
|
|
|
{
|
2017-08-18 22:24:41 +00:00
|
|
|
if (!matchCollection[0].Groups["title"].Success || matchCollection[0].Groups["title"].Value == "(")
|
2017-01-24 09:02:20 +00:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2018-08-05 14:28:05 +00:00
|
|
|
|
|
|
|
|
2018-03-14 20:41:36 +00:00
|
|
|
var movieName = matchCollection[0].Groups["title"].Value./*Replace('.', ' ').*/Replace('_', ' ');
|
|
|
|
movieName = RequestInfoRegex.Replace(movieName, "").Trim(' ');
|
2017-01-04 21:59:34 +00:00
|
|
|
|
2018-03-14 20:41:36 +00:00
|
|
|
var parts = movieName.Split('.');
|
|
|
|
movieName = "";
|
2017-03-08 18:10:04 +00:00
|
|
|
int n = 0;
|
2017-02-10 18:00:16 +00:00
|
|
|
bool previousAcronym = false;
|
2017-03-08 18:10:04 +00:00
|
|
|
string nextPart = "";
|
2017-02-10 18:00:16 +00:00
|
|
|
foreach (var part in parts)
|
|
|
|
{
|
2017-03-08 18:10:04 +00:00
|
|
|
if (parts.Length >= n+2)
|
|
|
|
{
|
|
|
|
nextPart = parts[n+1];
|
|
|
|
}
|
2017-02-10 18:00:16 +00:00
|
|
|
if (part.Length == 1 && part.ToLower() != "a" && !int.TryParse(part, out n))
|
|
|
|
{
|
2018-03-14 20:41:36 +00:00
|
|
|
movieName += part + ".";
|
2017-02-10 18:00:16 +00:00
|
|
|
previousAcronym = true;
|
|
|
|
}
|
2017-03-08 18:10:04 +00:00
|
|
|
else if (part.ToLower() == "a" && (previousAcronym == true || nextPart.Length == 1))
|
|
|
|
{
|
2018-03-14 20:41:36 +00:00
|
|
|
movieName += part + ".";
|
2017-03-08 18:10:04 +00:00
|
|
|
previousAcronym = true;
|
|
|
|
}
|
2017-02-10 18:00:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (previousAcronym)
|
|
|
|
{
|
2018-03-14 20:41:36 +00:00
|
|
|
movieName += " ";
|
2017-02-10 18:00:16 +00:00
|
|
|
previousAcronym = false;
|
|
|
|
}
|
2018-03-14 20:41:36 +00:00
|
|
|
movieName += part + " ";
|
2017-02-10 18:00:16 +00:00
|
|
|
}
|
2017-03-08 18:10:04 +00:00
|
|
|
n++;
|
2017-02-10 18:00:16 +00:00
|
|
|
}
|
|
|
|
|
2018-03-14 20:41:36 +00:00
|
|
|
movieName = movieName.Trim(' ');
|
2017-02-10 18:00:16 +00:00
|
|
|
|
2017-01-04 21:59:34 +00:00
|
|
|
int airYear;
|
|
|
|
int.TryParse(matchCollection[0].Groups["year"].Value, out airYear);
|
|
|
|
|
|
|
|
ParsedMovieInfo result;
|
|
|
|
|
|
|
|
result = new ParsedMovieInfo { Year = airYear };
|
|
|
|
|
|
|
|
if (matchCollection[0].Groups["edition"].Success)
|
|
|
|
{
|
|
|
|
result.Edition = matchCollection[0].Groups["edition"].Value.Replace(".", " ");
|
|
|
|
}
|
|
|
|
|
2018-03-14 20:41:36 +00:00
|
|
|
result.MovieTitle = movieName;
|
2017-01-04 21:59:34 +00:00
|
|
|
|
|
|
|
Logger.Debug("Movie Parsed. {0}", result);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-04-29 03:11:43 +00:00
|
|
|
private static bool ValidateBeforeParsing(string title)
|
|
|
|
{
|
|
|
|
if (title.ToLower().Contains("password") && title.ToLower().Contains("yenc"))
|
|
|
|
{
|
2014-03-13 20:12:42 +00:00
|
|
|
Logger.Debug("");
|
2013-04-29 03:11:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-03 17:45:26 +00:00
|
|
|
if (!title.Any(char.IsLetterOrDigit))
|
2013-04-29 03:11:43 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-04-17 23:16:40 +00:00
|
|
|
var titleWithoutExtension = RemoveFileExtension(title);
|
|
|
|
|
|
|
|
if (RejectHashedReleasesRegex.Any(v => v.IsMatch(titleWithoutExtension)))
|
|
|
|
{
|
|
|
|
Logger.Debug("Rejected Hashed Release Title: " + title);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-29 03:11:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-05-19 19:14:41 +00:00
|
|
|
|
|
|
|
private static string GetSubGroup(MatchCollection matchCollection)
|
|
|
|
{
|
|
|
|
var subGroup = matchCollection[0].Groups["subgroup"];
|
|
|
|
|
|
|
|
if (subGroup.Success)
|
|
|
|
{
|
|
|
|
return subGroup.Value;
|
|
|
|
}
|
|
|
|
|
2015-10-03 17:45:26 +00:00
|
|
|
return string.Empty;
|
2014-05-19 19:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static string GetReleaseHash(MatchCollection matchCollection)
|
|
|
|
{
|
|
|
|
var hash = matchCollection[0].Groups["hash"];
|
|
|
|
|
|
|
|
if (hash.Success)
|
|
|
|
{
|
2014-12-17 07:12:26 +00:00
|
|
|
var hashValue = hash.Value.Trim('[', ']');
|
2014-05-19 19:14:41 +00:00
|
|
|
|
|
|
|
if (hashValue.Equals("1280x720"))
|
|
|
|
{
|
2015-10-03 17:45:26 +00:00
|
|
|
return string.Empty;
|
2014-05-19 19:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return hashValue;
|
|
|
|
}
|
2014-12-17 07:12:26 +00:00
|
|
|
|
2015-10-03 17:45:26 +00:00
|
|
|
return string.Empty;
|
2014-05-19 19:14:41 +00:00
|
|
|
}
|
2012-08-03 07:01:34 +00:00
|
|
|
}
|
2015-01-21 22:48:35 +00:00
|
|
|
}
|