|
|
|
@ -13,7 +13,6 @@ using NzbDrone.Core.MetadataSource;
|
|
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.MetadataSource.SkyHook
|
|
|
|
|
{
|
|
|
|
@ -89,7 +88,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
|
|
|
|
movie.TmdbId = TmdbId;
|
|
|
|
|
movie.ImdbId = resource.imdb_id;
|
|
|
|
|
movie.Title = resource.title;
|
|
|
|
|
movie.TitleSlug = ToUrlSlug(movie.Title);
|
|
|
|
|
movie.TitleSlug = movie.Title.ToLower().Replace(" ", "-");
|
|
|
|
|
movie.CleanTitle = Parser.Parser.CleanSeriesTitle(movie.Title);
|
|
|
|
|
movie.SortTitle = Parser.Parser.NormalizeTitle(movie.Title);
|
|
|
|
|
movie.Overview = resource.overview;
|
|
|
|
@ -105,7 +104,6 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
|
|
|
|
{
|
|
|
|
|
_logger.Debug("Movie with this title slug already exists. Adding year...");
|
|
|
|
|
}
|
|
|
|
|
//movie.TitleSlug += "-" + movie.Year.ToString();
|
|
|
|
|
movie.TitleSlug += "-" + movie.Year.ToString();
|
|
|
|
|
|
|
|
|
|
movie.Images.Add(_configService.GetCoverForURL(resource.poster_path, MediaCoverTypes.Poster));//TODO: Update to load image specs from tmdb page!
|
|
|
|
@ -181,8 +179,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
|
|
|
|
if(title.EndsWith(",the"))
|
|
|
|
|
{
|
|
|
|
|
title = title.Substring(0, title.Length - 4);
|
|
|
|
|
}
|
|
|
|
|
else if (title.EndsWith(", the"))
|
|
|
|
|
} else if(title.EndsWith(", the"))
|
|
|
|
|
{
|
|
|
|
|
title = title.Substring(0, title.Length - 5);
|
|
|
|
|
}
|
|
|
|
@ -333,8 +330,8 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
|
|
|
|
{
|
|
|
|
|
imdbMovie.SortTitle = Parser.Parser.NormalizeTitle(result.title);
|
|
|
|
|
imdbMovie.Title = result.title;
|
|
|
|
|
string titleSlug = ToUrlSlug(result.title);
|
|
|
|
|
// imdbMovie.TitleSlug = titleSlug.ToLower().Replace(" ", "-");
|
|
|
|
|
string titleSlug = result.title;
|
|
|
|
|
imdbMovie.TitleSlug = titleSlug.ToLower().Replace(" ", "-");
|
|
|
|
|
|
|
|
|
|
if (result.release_date.IsNotNullOrWhiteSpace())
|
|
|
|
|
{
|
|
|
|
@ -343,16 +340,12 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//var slugResult = _movieService.FindByTitleSlug(titleSlug);
|
|
|
|
|
//if (slugResult != null)
|
|
|
|
|
//{
|
|
|
|
|
// _logger.Debug("Movie with this title slug already exists. Adding year...");
|
|
|
|
|
//}
|
|
|
|
|
//imdbMovie.TitleSlug += "-" + imdbMovie.Year.ToString();
|
|
|
|
|
|
|
|
|
|
titleSlug += "-" + imdbMovie.Year.ToString(); ;
|
|
|
|
|
|
|
|
|
|
imdbMovie.TitleSlug = titleSlug;
|
|
|
|
|
var slugResult = _movieService.FindByTitleSlug(imdbMovie.TitleSlug);
|
|
|
|
|
if (slugResult != null)
|
|
|
|
|
{
|
|
|
|
|
_logger.Debug("Movie with this title slug already exists. Adding year...");
|
|
|
|
|
}
|
|
|
|
|
imdbMovie.TitleSlug += "-" + imdbMovie.Year.ToString();
|
|
|
|
|
|
|
|
|
|
imdbMovie.Images = new List<MediaCover.MediaCover>();
|
|
|
|
|
imdbMovie.Overview = result.overview;
|
|
|
|
@ -532,30 +525,5 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
|
|
|
|
return MediaCoverTypes.Unknown;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string ToUrlSlug(string value)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
//First to lower case
|
|
|
|
|
value = value.ToLowerInvariant();
|
|
|
|
|
|
|
|
|
|
//Remove all accents
|
|
|
|
|
var bytes = Encoding.GetEncoding("Cyrillic").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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|