aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Implementations')
-rw-r--r--MediaBrowser.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs37
-rw-r--r--MediaBrowser.Server.Implementations/Providers/ImageSaver.cs26
2 files changed, 59 insertions, 4 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs b/MediaBrowser.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs
index c10db1bfa..94b79f0a1 100644
--- a/MediaBrowser.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs
+++ b/MediaBrowser.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs
@@ -85,6 +85,7 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.Movies
var collectionType = args.Parent == null ? null : _libraryManager.FindCollectionType(args.Parent);
+ // Find movies with their own folders
if (isDirectory)
{
if (args.Path.IndexOf("[trailers]", StringComparison.OrdinalIgnoreCase) != -1 ||
@@ -115,7 +116,41 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.Movies
return FindMovie<Movie>(args.Path, args.FileSystemChildren);
}
- return null;
+ // Find movies that are mixed in the same folder
+ if (args.Path.IndexOf("[trailers]", StringComparison.OrdinalIgnoreCase) != -1 ||
+ string.Equals(collectionType, CollectionType.Trailers, StringComparison.OrdinalIgnoreCase))
+ {
+ return ResolveVideo<Trailer>(args);
+ }
+
+ Video item = null;
+
+ if (args.Path.IndexOf("[musicvideos]", StringComparison.OrdinalIgnoreCase) != -1 ||
+ string.Equals(collectionType, CollectionType.MusicVideos, StringComparison.OrdinalIgnoreCase))
+ {
+ item = ResolveVideo<MusicVideo>(args);
+ }
+
+ if (args.Path.IndexOf("[adultvideos]", StringComparison.OrdinalIgnoreCase) != -1 ||
+ string.Equals(collectionType, CollectionType.AdultVideos, StringComparison.OrdinalIgnoreCase))
+ {
+ item = ResolveVideo<AdultVideo>(args);
+ }
+
+ // To find a movie file, the collection type must be movies or boxsets
+ // Otherwise we'll consider it a plain video and let the video resolver handle it
+ if (string.Equals(collectionType, CollectionType.Movies, StringComparison.OrdinalIgnoreCase) ||
+ string.Equals(collectionType, CollectionType.BoxSets, StringComparison.OrdinalIgnoreCase))
+ {
+ item = ResolveVideo<Movie>(args);
+ }
+
+ if (item != null)
+ {
+ item.IsInMixedFolder = true;
+ }
+
+ return item;
}
/// <summary>
diff --git a/MediaBrowser.Server.Implementations/Providers/ImageSaver.cs b/MediaBrowser.Server.Implementations/Providers/ImageSaver.cs
index 5da274ab9..615f9d8a0 100644
--- a/MediaBrowser.Server.Implementations/Providers/ImageSaver.cs
+++ b/MediaBrowser.Server.Implementations/Providers/ImageSaver.cs
@@ -238,9 +238,29 @@ namespace MediaBrowser.Server.Implementations.Providers
filename += "." + extension.ToLower();
- var path = (saveLocally && !string.IsNullOrEmpty(item.MetaLocation)) ?
- Path.Combine(item.MetaLocation, filename) :
- _remoteImageCache.GetResourcePath(item.GetType().FullName + item.Id, filename);
+ string path = null;
+
+ if (saveLocally)
+ {
+ var video = item as Video;
+
+ if (video != null && video.IsInMixedFolder)
+ {
+ var folder = Path.GetDirectoryName(video.Path);
+
+ path = Path.Combine(folder, Path.GetFileNameWithoutExtension(video.Path) + "-" + filename);
+ }
+
+ if (string.IsNullOrEmpty(path) && !string.IsNullOrEmpty(item.MetaLocation))
+ {
+ path = Path.Combine(item.MetaLocation, filename);
+ }
+ }
+
+ if (string.IsNullOrEmpty(path))
+ {
+ path = _remoteImageCache.GetResourcePath(item.GetType().FullName + item.Id, filename);
+ }
var parentPath = Path.GetDirectoryName(path);