|
|
|
@ -309,23 +309,29 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.Movies
|
|
|
|
|
//we need to only look at the name of this actual item (not parents)
|
|
|
|
|
var justName = item.IsInMixedFolder ? Path.GetFileName(item.Path) : Path.GetFileName(item.ContainingFolderPath);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(justName))
|
|
|
|
|
{
|
|
|
|
|
// check for tmdb id
|
|
|
|
|
var tmdbid = justName.GetAttributeValue("tmdbid");
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(tmdbid))
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(tmdbid))
|
|
|
|
|
{
|
|
|
|
|
item.SetProviderId(MetadataProviders.Tmdb, tmdbid);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.Path))
|
|
|
|
|
{
|
|
|
|
|
// check for imdb id - we use full media path, as we can assume, that this will match in any use case (wither id in parent dir or in file name)
|
|
|
|
|
var imdbid = item.Path.GetAttributeValue("imdbid");
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(imdbid))
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(imdbid))
|
|
|
|
|
{
|
|
|
|
|
item.SetProviderId(MetadataProviders.Imdb, imdbid);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Finds a movie based on a child file system entries
|
|
|
|
|