Enforce extras folder structure according to Emby's wiki

pull/1338/head
Claus Vium 5 years ago
parent c1daea0ec7
commit b8a09339cd

@ -82,6 +82,21 @@ namespace MediaBrowser.Controller.Entities
public static string ThemeSongsFolderName = "theme-music"; public static string ThemeSongsFolderName = "theme-music";
public static string ThemeSongFilename = "theme"; public static string ThemeSongFilename = "theme";
public static string ThemeVideosFolderName = "backdrops"; public static string ThemeVideosFolderName = "backdrops";
public static string ExtrasFolderName = "extras";
public static string BehindTheScenesFolderName = "behind the scenes";
public static string DeletedScenesFolderName = "deleted scenes";
public static string InterviewFolderName = "interviews";
public static string SceneFolderName = "scenes";
public static string SampleFolderName = "samples";
public static string[] AllExtrasTypesFolderNames = {
ExtrasFolderName,
BehindTheScenesFolderName,
DeletedScenesFolderName,
InterviewFolderName,
SceneFolderName,
SampleFolderName
};
[IgnoreDataMember] [IgnoreDataMember]
public Guid[] ThemeSongIds { get; set; } public Guid[] ThemeSongIds { get; set; }
@ -1276,16 +1291,15 @@ namespace MediaBrowser.Controller.Entities
.Select(item => .Select(item =>
{ {
// Try to retrieve it from the db. If we don't find it, use the resolved version // Try to retrieve it from the db. If we don't find it, use the resolved version
var dbItem = LibraryManager.GetItemById(item.Id) as Video;
if (dbItem != null) if (LibraryManager.GetItemById(item.Id) is Video dbItem)
{ {
item = dbItem; item = dbItem;
} }
else else
{ {
// item is new // item is new
item.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeVideo; item.ExtraType = Model.Entities.ExtraType.ThemeVideo;
} }
return item; return item;
@ -1295,33 +1309,37 @@ namespace MediaBrowser.Controller.Entities
} }
protected virtual BaseItem[] LoadExtras(List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService) protected virtual BaseItem[] LoadExtras(List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
{
var extras = new List<Video>();
foreach (var extraFolderName in AllExtrasTypesFolderNames)
{ {
var files = fileSystemChildren.Where(i => i.IsDirectory) var files = fileSystemChildren.Where(i => i.IsDirectory)
.Where(i => string.Equals(i.Name, extraFolderName, StringComparison.OrdinalIgnoreCase))
.SelectMany(i => FileSystem.GetFiles(i.FullName)); .SelectMany(i => FileSystem.GetFiles(i.FullName));
return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions()) extras.AddRange(LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())
.OfType<Video>() .OfType<Video>()
.Select(item => .Select(item =>
{ {
// Try to retrieve it from the db. If we don't find it, use the resolved version // Try to retrieve it from the db. If we don't find it, use the resolved version
var dbItem = LibraryManager.GetItemById(item.Id) as Video; if (LibraryManager.GetItemById(item.Id) is Video dbItem)
if (dbItem != null)
{ {
item = dbItem; item = dbItem;
} }
else
{ // Use some hackery to get the extra type based on foldername
// item is new Enum.TryParse(extraFolderName.Replace(" ", ""), true, out ExtraType extraType);
item.ExtraType = MediaBrowser.Model.Entities.ExtraType.Clip; item.ExtraType = extraType;
}
return item; return item;
// Sort them so that the list can be easily compared for changes // Sort them so that the list can be easily compared for changes
}).OrderBy(i => i.Path).ToArray(); }).OrderBy(i => i.Path));
} }
return extras.ToArray();
}
public Task RefreshMetadata(CancellationToken cancellationToken) public Task RefreshMetadata(CancellationToken cancellationToken)
{ {
@ -1497,8 +1515,7 @@ namespace MediaBrowser.Controller.Entities
var tasks = newExtras.Select(i => var tasks = newExtras.Select(i =>
{ {
var subOptions = new MetadataRefreshOptions(options); var subOptions = new MetadataRefreshOptions(options);
if (!i.ExtraType.HasValue || if (i.OwnerId != ownerId ||
i.OwnerId != ownerId ||
!i.ParentId.Equals(Guid.Empty)) !i.ParentId.Equals(Guid.Empty))
{ {
i.OwnerId = ownerId; i.OwnerId = ownerId;

Loading…
Cancel
Save