jellyfin/MediaBrowser.Controller/Entities/BaseItem.cs

1775 lines
60 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Channels;
2014-10-08 03:37:45 +02:00
using MediaBrowser.Controller.Collections;
using MediaBrowser.Controller.Configuration;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Library;
2014-08-14 15:24:30 +02:00
using MediaBrowser.Controller.LiveTv;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Localization;
using MediaBrowser.Controller.Persistence;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Providers;
2013-12-26 17:53:23 +01:00
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Dto;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Entities;
2014-02-21 06:35:56 +01:00
using MediaBrowser.Model.Library;
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class BaseItem
/// </summary>
2014-02-07 04:10:13 +01:00
public abstract class BaseItem : IHasProviderIds, ILibraryItem, IHasImages, IHasUserData, IHasMetadata, IHasLookupInfo<ItemLookupInfo>
2013-02-21 02:33:05 +01:00
{
2013-04-22 06:38:03 +02:00
protected BaseItem()
{
Genres = new List<string>();
Studios = new List<string>();
People = new List<PersonInfo>();
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2013-06-09 16:16:43 +02:00
LockedFields = new List<MetadataFields>();
2014-02-07 21:30:41 +01:00
ImageInfos = new List<ItemImageInfo>();
Identities = new List<IItemIdentity>();
2013-04-22 06:38:03 +02:00
}
/// <summary>
/// The supported image extensions
/// </summary>
2014-09-22 23:56:54 +02:00
public static readonly string[] SupportedImageExtensions = { ".png", ".jpg", ".jpeg", ".tbn" };
2013-03-15 20:13:22 +01:00
/// <summary>
2013-02-21 02:33:05 +01:00
/// The trailer folder name
/// </summary>
2014-09-22 23:56:54 +02:00
public static string TrailerFolderName = "trailers";
public static string ThemeSongsFolderName = "theme-music";
public static string ThemeSongFilename = "theme";
public static string ThemeVideosFolderName = "backdrops";
public static List<KeyValuePair<string, ExtraType>> ExtraSuffixes = new List<KeyValuePair<string, ExtraType>>
{
new KeyValuePair<string,ExtraType>("-trailer", ExtraType.Trailer),
new KeyValuePair<string,ExtraType>("-deleted", ExtraType.DeletedScene),
new KeyValuePair<string,ExtraType>("-behindthescenes", ExtraType.BehindTheScenes),
new KeyValuePair<string,ExtraType>("-interview", ExtraType.Interview),
new KeyValuePair<string,ExtraType>("-scene", ExtraType.Scene),
new KeyValuePair<string,ExtraType>("-sample", ExtraType.Sample)
};
2013-02-21 02:33:05 +01:00
2014-02-07 21:30:41 +01:00
public List<ItemImageInfo> ImageInfos { get; set; }
2014-08-30 16:26:29 +02:00
[IgnoreDataMember]
public virtual bool SupportsAddingToPlaylist
{
get
{
return false;
}
}
2014-02-07 21:30:41 +01:00
/// <summary>
/// Gets a value indicating whether this instance is in mixed folder.
/// </summary>
/// <value><c>true</c> if this instance is in mixed folder; otherwise, <c>false</c>.</value>
public bool IsInMixedFolder { get; set; }
2014-08-14 15:24:30 +02:00
[IgnoreDataMember]
public virtual bool SupportsRemoteImageDownloading
{
get
{
return true;
}
}
private string _name;
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
2013-08-07 21:15:55 +02:00
public string Name
{
get
{
return _name;
}
set
{
_name = value;
// lazy load this again
_sortName = null;
}
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
public Guid Id { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Return the id that should be used to key display prefs for this item.
/// Default is based on the type for everything except actual generic folders.
/// </summary>
/// <value>The display prefs id.</value>
[IgnoreDataMember]
public virtual Guid DisplayPreferencesId
{
get
{
var thisType = GetType();
return thisType == typeof(Folder) ? Id : thisType.FullName.GetMD5();
}
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public virtual string Path { get; set; }
2013-07-05 16:54:14 +02:00
[IgnoreDataMember]
protected internal bool IsOffline { get; set; }
/// <summary>
/// Returns the folder containing the item.
/// If the item is a folder, it returns the folder itself
/// </summary>
[IgnoreDataMember]
public virtual string ContainingFolderPath
{
get
{
if (IsFolder)
{
return Path;
}
return System.IO.Path.GetDirectoryName(Path);
}
}
[IgnoreDataMember]
public virtual bool IsHidden
{
get
{
return false;
}
}
2014-07-01 06:06:28 +02:00
public virtual bool IsHiddenFromUser(User user)
{
return false;
}
[IgnoreDataMember]
public virtual bool IsOwnedItem
{
get
{
// Local trailer, special feature, theme video, etc.
// An item that belongs to another item but is not part of the Parent-Child tree
2014-09-22 23:56:54 +02:00
return !IsFolder && Parent == null && LocationType == LocationType.FileSystem;
}
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the type of the location.
/// </summary>
/// <value>The type of the location.</value>
2013-12-02 03:24:14 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public virtual LocationType LocationType
{
get
{
2013-07-05 16:54:14 +02:00
if (IsOffline)
{
return LocationType.Offline;
}
2013-02-21 02:33:05 +01:00
if (string.IsNullOrEmpty(Path))
{
return LocationType.Virtual;
}
return System.IO.Path.IsPathRooted(Path) ? LocationType.FileSystem : LocationType.Remote;
}
}
2014-08-30 16:26:29 +02:00
[IgnoreDataMember]
2014-02-10 21:11:46 +01:00
public virtual bool SupportsLocalMetadata
{
get
{
var locationType = LocationType;
return locationType != LocationType.Remote && locationType != LocationType.Virtual;
2014-02-10 21:11:46 +01:00
}
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// This is just a helper for convenience
/// </summary>
/// <value>The primary image path.</value>
[IgnoreDataMember]
2013-04-05 06:12:05 +02:00
public string PrimaryImagePath
2013-02-21 02:33:05 +01:00
{
2013-12-19 22:51:32 +01:00
get { return this.GetImagePath(ImageType.Primary); }
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets or sets the date created.
/// </summary>
/// <value>The date created.</value>
public DateTime DateCreated { get; set; }
/// <summary>
/// Gets or sets the date modified.
/// </summary>
/// <value>The date modified.</value>
public DateTime DateModified { get; set; }
public DateTime DateLastSaved { get; set; }
2013-02-21 21:26:35 +01:00
/// <summary>
/// The logger
/// </summary>
public static ILogger Logger { get; set; }
public static ILibraryManager LibraryManager { get; set; }
public static IServerConfigurationManager ConfigurationManager { get; set; }
public static IProviderManager ProviderManager { get; set; }
public static ILocalizationManager LocalizationManager { get; set; }
2013-06-20 18:44:24 +02:00
public static IItemRepository ItemRepository { get; set; }
public static IFileSystem FileSystem { get; set; }
2014-01-15 23:19:37 +01:00
public static IUserDataManager UserDataManager { get; set; }
2014-08-14 15:24:30 +02:00
public static ILiveTvManager LiveTvManager { get; set; }
public static IChannelManager ChannelManager { get; set; }
2014-10-08 03:37:45 +02:00
public static ICollectionManager CollectionManager { get; set; }
2013-02-21 21:26:35 +01:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <returns>A <see cref="System.String" /> that represents this instance.</returns>
public override string ToString()
{
return Name;
}
/// <summary>
/// Returns true if this item should not attempt to fetch metadata
/// </summary>
/// <value><c>true</c> if [dont fetch meta]; otherwise, <c>false</c>.</value>
2014-02-19 06:21:03 +01:00
[Obsolete("Please use IsLocked instead of DontFetchMeta")]
2013-06-09 15:31:23 +02:00
public bool DontFetchMeta { get; set; }
2013-02-21 02:33:05 +01:00
2014-02-19 06:21:03 +01:00
[IgnoreDataMember]
public bool IsLocked
{
get
{
return DontFetchMeta;
}
2014-04-27 05:42:05 +02:00
set
{
DontFetchMeta = value;
}
2014-02-19 06:21:03 +01:00
}
public bool IsUnidentified { get; set; }
2014-03-01 05:12:56 +01:00
[IgnoreDataMember]
public List<IItemIdentity> Identities { get; set; }
2013-06-09 16:15:59 +02:00
/// <summary>
/// Gets or sets the locked fields.
/// </summary>
/// <value>The locked fields.</value>
public List<MetadataFields> LockedFields { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the type of the media.
/// </summary>
/// <value>The type of the media.</value>
[IgnoreDataMember]
public virtual string MediaType
{
get
{
return null;
}
}
[IgnoreDataMember]
public virtual IEnumerable<string> PhysicalLocations
2013-02-21 02:33:05 +01:00
{
get
{
var locationType = LocationType;
2013-02-21 02:33:05 +01:00
2014-02-07 04:10:13 +01:00
if (locationType == LocationType.Remote || locationType == LocationType.Virtual)
2013-05-24 19:48:48 +02:00
{
return new string[] { };
2013-05-24 19:48:48 +02:00
}
return new[] { Path };
2013-02-21 02:33:05 +01:00
}
}
2014-01-29 06:17:58 +01:00
private string _forcedSortName;
/// <summary>
/// Gets or sets the name of the forced sort.
/// </summary>
/// <value>The name of the forced sort.</value>
2014-01-29 06:17:58 +01:00
public string ForcedSortName
{
get { return _forcedSortName; }
set { _forcedSortName = value; _sortName = null; }
}
private string _sortName;
2013-02-21 02:33:05 +01:00
/// <summary>
2014-02-08 21:02:35 +01:00
/// Gets the name of the sort.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <value>The name of the sort.</value>
[IgnoreDataMember]
public string SortName
{
get
{
2013-08-25 21:54:18 +02:00
if (!string.IsNullOrEmpty(ForcedSortName))
{
return ForcedSortName;
}
return _sortName ?? (_sortName = CreateSortName());
}
}
2014-09-28 17:27:26 +02:00
public string GetInternalMetadataPath()
{
return GetInternalMetadataPath(ConfigurationManager.ApplicationPaths.InternalMetadataPath);
}
protected virtual string GetInternalMetadataPath(string basePath)
{
var idString = Id.ToString("N");
return System.IO.Path.Combine(basePath, idString.Substring(0, 2), idString);
}
/// <summary>
/// Creates the name of the sort.
/// </summary>
/// <returns>System.String.</returns>
protected virtual string CreateSortName()
{
if (Name == null) return null; //some items may not have name filled in properly
var sortable = Name.Trim().ToLower();
sortable = ConfigurationManager.Configuration.SortRemoveCharacters.Aggregate(sortable, (current, search) => current.Replace(search.ToLower(), string.Empty));
sortable = ConfigurationManager.Configuration.SortReplaceCharacters.Aggregate(sortable, (current, search) => current.Replace(search.ToLower(), " "));
foreach (var search in ConfigurationManager.Configuration.SortRemoveWords)
{
var searchLower = search.ToLower();
// Remove from beginning if a space follows
if (sortable.StartsWith(searchLower + " "))
{
sortable = sortable.Remove(0, searchLower.Length + 1);
}
// Remove from middle if surrounded by spaces
sortable = sortable.Replace(" " + searchLower + " ", " ");
// Remove from end if followed by a space
if (sortable.EndsWith(" " + searchLower))
{
sortable = sortable.Remove(sortable.Length - (searchLower.Length + 1));
}
}
return sortable;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the parent.
/// </summary>
/// <value>The parent.</value>
[IgnoreDataMember]
public Folder Parent { get; set; }
[IgnoreDataMember]
public IEnumerable<Folder> Parents
{
get
{
var parent = Parent;
while (parent != null)
{
yield return parent;
parent = parent.Parent;
}
}
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// When the item first debuted. For movies this could be premiere date, episodes would be first aired
/// </summary>
/// <value>The premiere date.</value>
public DateTime? PremiereDate { get; set; }
/// <summary>
/// Gets or sets the end date.
/// </summary>
/// <value>The end date.</value>
public DateTime? EndDate { get; set; }
2013-04-14 01:43:41 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the display type of the media.
/// </summary>
/// <value>The display type of the media.</value>
public string DisplayMediaType { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the official rating.
/// </summary>
/// <value>The official rating.</value>
2013-08-03 15:24:23 +02:00
public string OfficialRating { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the official rating description.
/// </summary>
/// <value>The official rating description.</value>
public string OfficialRatingDescription { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the custom rating.
/// </summary>
/// <value>The custom rating.</value>
2013-08-03 15:24:23 +02:00
public string CustomRating { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the overview.
/// </summary>
/// <value>The overview.</value>
public string Overview { get; set; }
/// <summary>
/// Gets or sets the people.
/// </summary>
/// <value>The people.</value>
public List<PersonInfo> People { get; set; }
/// <summary>
/// Gets or sets the studios.
/// </summary>
/// <value>The studios.</value>
2013-08-07 17:59:13 +02:00
public List<string> Studios { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the genres.
/// </summary>
/// <value>The genres.</value>
2013-08-07 19:11:02 +02:00
public List<string> Genres { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the home page URL.
/// </summary>
/// <value>The home page URL.</value>
public string HomePageUrl { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the community rating.
/// </summary>
/// <value>The community rating.</value>
public float? CommunityRating { get; set; }
2013-07-05 19:40:51 +02:00
/// <summary>
/// Gets or sets the community rating vote count.
/// </summary>
/// <value>The community rating vote count.</value>
public int? VoteCount { get; set; }
2013-07-05 19:40:51 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the run time ticks.
/// </summary>
/// <value>The run time ticks.</value>
public long? RunTimeTicks { get; set; }
/// <summary>
/// Gets or sets the production year.
/// </summary>
/// <value>The production year.</value>
2013-08-07 17:59:13 +02:00
public int? ProductionYear { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// If the item is part of a series, this is it's number in the series.
/// This could be episode number, album track number, etc.
/// </summary>
/// <value>The index number.</value>
public int? IndexNumber { get; set; }
/// <summary>
/// For an episode this could be the season number, or for a song this could be the disc number.
/// </summary>
/// <value>The parent index number.</value>
public int? ParentIndexNumber { get; set; }
2013-08-03 15:24:23 +02:00
[IgnoreDataMember]
public virtual string OfficialRatingForComparison
{
get { return OfficialRating; }
}
[IgnoreDataMember]
2014-02-06 16:58:49 +01:00
public string CustomRatingForComparison
2013-08-03 15:24:23 +02:00
{
2014-02-06 16:58:49 +01:00
get
{
if (!string.IsNullOrEmpty(CustomRating))
{
return CustomRating;
}
var parent = Parent;
if (parent != null)
{
return parent.CustomRatingForComparison;
}
return null;
}
2013-08-03 15:24:23 +02:00
}
2014-02-21 06:35:56 +01:00
/// <summary>
/// Gets the play access.
/// </summary>
/// <param name="user">The user.</param>
/// <returns>PlayAccess.</returns>
public PlayAccess GetPlayAccess(User user)
{
if (!user.Configuration.EnableMediaPlayback)
{
return PlayAccess.None;
}
return PlayAccess.Full;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Loads local trailers from the file system
/// </summary>
/// <returns>List{Video}.</returns>
2014-02-13 06:11:54 +01:00
private IEnumerable<Trailer> LoadLocalTrailers(List<FileSystemInfo> fileSystemChildren, IDirectoryService directoryService)
{
var files = fileSystemChildren.OfType<DirectoryInfo>()
.Where(i => string.Equals(i.Name, TrailerFolderName, StringComparison.OrdinalIgnoreCase))
.SelectMany(i => i.EnumerateFiles("*", SearchOption.TopDirectoryOnly))
.ToList();
2014-09-22 23:56:54 +02:00
var extraTypes = new List<ExtraType> { ExtraType.Trailer };
var suffixes = ExtraSuffixes.Where(i => extraTypes.Contains(i.Value))
.Select(i => i.Key)
.ToList();
files.AddRange(fileSystemChildren.OfType<FileInfo>()
2014-09-22 23:56:54 +02:00
.Where(i =>
{
var nameEithoutExtension = FileSystem.GetFileNameWithoutExtension(i);
if (!suffixes.Any(s => nameEithoutExtension.EndsWith(s, StringComparison.OrdinalIgnoreCase)))
{
return false;
}
return !string.Equals(Path, i.FullName, StringComparison.OrdinalIgnoreCase);
}));
2014-02-13 06:11:54 +01:00
return LibraryManager.ResolvePaths<Trailer>(files, directoryService, null).Select(video =>
{
// Try to retrieve it from the db. If we don't find it, use the resolved version
var dbItem = LibraryManager.GetItemById(video.Id) as Trailer;
if (dbItem != null)
{
video = dbItem;
}
2014-09-22 23:56:54 +02:00
if (video != null)
{
video.ExtraType = ExtraType.Trailer;
}
return video;
// Sort them so that the list can be easily compared for changes
}).OrderBy(i => i.Path).ToList();
2013-02-21 02:33:05 +01:00
}
2014-09-22 23:56:54 +02:00
protected IEnumerable<Video> LoadSpecialFeatures(List<FileSystemInfo> fileSystemChildren, IDirectoryService directoryService)
{
var files = fileSystemChildren.OfType<DirectoryInfo>()
.Where(i => string.Equals(i.Name, "extras", StringComparison.OrdinalIgnoreCase) || string.Equals(i.Name, "specials", StringComparison.OrdinalIgnoreCase))
.SelectMany(i => i.EnumerateFiles("*", SearchOption.TopDirectoryOnly))
.ToList();
var extraTypes = new List<ExtraType> { ExtraType.BehindTheScenes, ExtraType.DeletedScene, ExtraType.Interview, ExtraType.Sample, ExtraType.Scene, ExtraType.Clip };
var suffixes = ExtraSuffixes.Where(i => extraTypes.Contains(i.Value))
.Select(i => i.Key)
.ToList();
files.AddRange(fileSystemChildren.OfType<FileInfo>()
.Where(i =>
{
var nameEithoutExtension = FileSystem.GetFileNameWithoutExtension(i);
if (!suffixes.Any(s => nameEithoutExtension.EndsWith(s, StringComparison.OrdinalIgnoreCase)))
{
return false;
}
return !string.Equals(Path, i.FullName, StringComparison.OrdinalIgnoreCase);
}));
return LibraryManager.ResolvePaths<Video>(files, directoryService, null).Select(video =>
{
// Try to retrieve it from the db. If we don't find it, use the resolved version
var dbItem = LibraryManager.GetItemById(video.Id) as Video;
if (dbItem != null)
{
video = dbItem;
}
if (video != null)
{
SetExtraTypeFromFilename(video);
}
return video;
// Sort them so that the list can be easily compared for changes
}).OrderBy(i => i.Path).ToList();
}
private void SetExtraTypeFromFilename(Video item)
{
var name = System.IO.Path.GetFileNameWithoutExtension(item.Path) ?? string.Empty;
foreach (var suffix in ExtraSuffixes)
{
if (name.EndsWith(suffix.Key, StringComparison.OrdinalIgnoreCase))
{
item.ExtraType = suffix.Value;
return;
}
}
item.ExtraType = ExtraType.Clip;
}
2013-04-24 18:03:10 +02:00
/// <summary>
/// Loads the theme songs.
/// </summary>
/// <returns>List{Audio.Audio}.</returns>
2014-02-13 06:11:54 +01:00
private IEnumerable<Audio.Audio> LoadThemeSongs(List<FileSystemInfo> fileSystemChildren, IDirectoryService directoryService)
2013-04-24 18:03:10 +02:00
{
var files = fileSystemChildren.OfType<DirectoryInfo>()
.Where(i => string.Equals(i.Name, ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
.SelectMany(i => i.EnumerateFiles("*", SearchOption.TopDirectoryOnly))
.ToList();
2013-04-24 18:03:10 +02:00
// Support plex/xbmc convention
files.AddRange(fileSystemChildren.OfType<FileInfo>()
2014-07-26 19:30:15 +02:00
.Where(i => string.Equals(FileSystem.GetFileNameWithoutExtension(i), ThemeSongFilename, StringComparison.OrdinalIgnoreCase))
);
2013-04-24 18:03:10 +02:00
2014-02-13 06:11:54 +01:00
return LibraryManager.ResolvePaths<Audio.Audio>(files, directoryService, null).Select(audio =>
2013-04-24 18:03:10 +02:00
{
// Try to retrieve it from the db. If we don't find it, use the resolved version
2014-01-14 21:03:35 +01:00
var dbItem = LibraryManager.GetItemById(audio.Id) as Audio.Audio;
2013-04-24 18:03:10 +02:00
if (dbItem != null)
{
audio = dbItem;
}
2014-09-22 23:56:54 +02:00
if (audio != null)
{
audio.ExtraType = ExtraType.ThemeSong;
}
2013-04-24 18:03:10 +02:00
return audio;
// Sort them so that the list can be easily compared for changes
}).OrderBy(i => i.Path).ToList();
2013-04-24 18:03:10 +02:00
}
2013-04-28 18:25:14 +02:00
/// <summary>
/// Loads the video backdrops.
/// </summary>
/// <returns>List{Video}.</returns>
2014-02-13 06:11:54 +01:00
private IEnumerable<Video> LoadThemeVideos(IEnumerable<FileSystemInfo> fileSystemChildren, IDirectoryService directoryService)
2013-04-28 18:25:14 +02:00
{
var files = fileSystemChildren.OfType<DirectoryInfo>()
.Where(i => string.Equals(i.Name, ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
.SelectMany(i => i.EnumerateFiles("*", SearchOption.TopDirectoryOnly));
2013-04-28 18:25:14 +02:00
2014-02-13 06:11:54 +01:00
return LibraryManager.ResolvePaths<Video>(files, directoryService, null).Select(item =>
2013-04-28 18:25:14 +02:00
{
// Try to retrieve it from the db. If we don't find it, use the resolved version
2014-01-14 21:03:35 +01:00
var dbItem = LibraryManager.GetItemById(item.Id) as Video;
2013-04-28 18:25:14 +02:00
if (dbItem != null)
{
item = dbItem;
}
2014-09-22 23:56:54 +02:00
if (item != null)
{
item.ExtraType = ExtraType.ThemeVideo;
}
2013-04-28 18:25:14 +02:00
return item;
// Sort them so that the list can be easily compared for changes
}).OrderBy(i => i.Path).ToList();
2013-04-28 18:25:14 +02:00
}
public Task RefreshMetadata(CancellationToken cancellationToken)
{
return RefreshMetadata(new MetadataRefreshOptions(), cancellationToken);
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Overrides the base implementation to refresh metadata for local trailers
/// </summary>
/// <param name="options">The options.</param>
2013-02-21 02:33:05 +01:00
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>true if a provider reports we changed</returns>
public async Task RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
var locationType = LocationType;
2014-02-10 19:39:41 +01:00
var requiresSave = false;
if (IsFolder || Parent != null)
{
2014-02-08 23:38:02 +01:00
options.DirectoryService = options.DirectoryService ?? new DirectoryService(Logger);
2014-02-13 06:11:54 +01:00
try
{
var files = locationType != LocationType.Remote && locationType != LocationType.Virtual ?
2014-02-13 06:11:54 +01:00
GetFileSystemChildren(options.DirectoryService).ToList() :
new List<FileSystemInfo>();
2013-02-21 02:33:05 +01:00
2014-02-13 06:11:54 +01:00
var ownedItemsChanged = await RefreshedOwnedItems(options, files, cancellationToken).ConfigureAwait(false);
2014-02-10 19:39:41 +01:00
2014-02-13 06:11:54 +01:00
if (ownedItemsChanged)
{
requiresSave = true;
}
}
catch (Exception ex)
2014-02-10 19:39:41 +01:00
{
2014-02-13 06:11:54 +01:00
Logger.ErrorException("Error refreshing owned items for {0}", ex, Path ?? Name);
2014-02-10 19:39:41 +01:00
}
}
2014-02-03 06:35:43 +01:00
2014-02-10 19:39:41 +01:00
var dateLastSaved = DateLastSaved;
await ProviderManager.RefreshMetadata(this, options, cancellationToken).ConfigureAwait(false);
2014-02-10 19:39:41 +01:00
// If it wasn't saved by the provider process, save now
if (requiresSave && dateLastSaved == DateLastSaved)
{
await UpdateToRepository(ItemUpdateType.MetadataImport, cancellationToken).ConfigureAwait(false);
}
}
2014-02-10 19:39:41 +01:00
/// <summary>
/// Refreshes owned items such as trailers, theme videos, special features, etc.
/// Returns true or false indicating if changes were found.
/// </summary>
/// <param name="options"></param>
/// <param name="fileSystemChildren"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
protected virtual async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemInfo> fileSystemChildren, CancellationToken cancellationToken)
2014-02-03 06:35:43 +01:00
{
2013-06-17 22:35:43 +02:00
var themeSongsChanged = false;
2013-02-21 02:33:05 +01:00
2013-06-17 22:35:43 +02:00
var themeVideosChanged = false;
2013-04-28 18:25:14 +02:00
2013-06-17 22:35:43 +02:00
var localTrailersChanged = false;
2013-02-21 02:33:05 +01:00
2013-06-17 22:35:43 +02:00
if (LocationType == LocationType.FileSystem && Parent != null)
{
var hasThemeMedia = this as IHasThemeMedia;
if (hasThemeMedia != null)
{
if (!IsInMixedFolder)
{
themeSongsChanged = await RefreshThemeSongs(hasThemeMedia, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
2013-06-17 22:35:43 +02:00
themeVideosChanged = await RefreshThemeVideos(hasThemeMedia, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
}
}
2013-06-17 22:35:43 +02:00
2013-12-02 17:46:25 +01:00
var hasTrailers = this as IHasTrailers;
if (hasTrailers != null)
{
localTrailersChanged = await RefreshLocalTrailers(hasTrailers, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
2013-12-02 17:46:25 +01:00
}
2013-06-17 22:35:43 +02:00
}
2014-02-07 04:10:13 +01:00
2014-02-10 19:39:41 +01:00
return themeSongsChanged || themeVideosChanged || localTrailersChanged;
}
2013-02-21 02:33:05 +01:00
2014-02-10 19:39:41 +01:00
protected virtual IEnumerable<FileSystemInfo> GetFileSystemChildren(IDirectoryService directoryService)
{
var path = ContainingFolderPath;
2014-02-08 23:38:02 +01:00
return directoryService.GetFileSystemEntries(path);
2013-02-21 02:33:05 +01:00
}
private async Task<bool> RefreshLocalTrailers(IHasTrailers item, MetadataRefreshOptions options, List<FileSystemInfo> fileSystemChildren, CancellationToken cancellationToken)
{
2014-02-13 06:11:54 +01:00
var newItems = LoadLocalTrailers(fileSystemChildren, options.DirectoryService).ToList();
var newItemIds = newItems.Select(i => i.Id).ToList();
2013-12-02 17:46:25 +01:00
var itemsChanged = !item.LocalTrailerIds.SequenceEqual(newItemIds);
var tasks = newItems.Select(i => i.RefreshMetadata(options, cancellationToken));
await Task.WhenAll(tasks).ConfigureAwait(false);
2013-12-02 17:46:25 +01:00
item.LocalTrailerIds = newItemIds;
return itemsChanged;
}
private async Task<bool> RefreshThemeVideos(IHasThemeMedia item, MetadataRefreshOptions options, IEnumerable<FileSystemInfo> fileSystemChildren, CancellationToken cancellationToken)
{
2014-02-13 06:11:54 +01:00
var newThemeVideos = LoadThemeVideos(fileSystemChildren, options.DirectoryService).ToList();
var newThemeVideoIds = newThemeVideos.Select(i => i.Id).ToList();
var themeVideosChanged = !item.ThemeVideoIds.SequenceEqual(newThemeVideoIds);
2014-08-26 04:30:52 +02:00
var tasks = newThemeVideos.Select(i =>
{
var subOptions = new MetadataRefreshOptions(options);
if (!i.IsThemeMedia)
{
i.IsThemeMedia = true;
subOptions.ForceSave = true;
}
return i.RefreshMetadata(subOptions, cancellationToken);
});
await Task.WhenAll(tasks).ConfigureAwait(false);
item.ThemeVideoIds = newThemeVideoIds;
return themeVideosChanged;
}
/// <summary>
/// Refreshes the theme songs.
/// </summary>
private async Task<bool> RefreshThemeSongs(IHasThemeMedia item, MetadataRefreshOptions options, List<FileSystemInfo> fileSystemChildren, CancellationToken cancellationToken)
{
2014-02-13 06:11:54 +01:00
var newThemeSongs = LoadThemeSongs(fileSystemChildren, options.DirectoryService).ToList();
var newThemeSongIds = newThemeSongs.Select(i => i.Id).ToList();
var themeSongsChanged = !item.ThemeSongIds.SequenceEqual(newThemeSongIds);
2014-08-26 04:30:52 +02:00
var tasks = newThemeSongs.Select(i =>
{
var subOptions = new MetadataRefreshOptions(options);
if (!i.IsThemeMedia)
{
i.IsThemeMedia = true;
subOptions.ForceSave = true;
}
return i.RefreshMetadata(subOptions, cancellationToken);
});
await Task.WhenAll(tasks).ConfigureAwait(false);
item.ThemeSongIds = newThemeSongIds;
return themeSongsChanged;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the provider ids.
/// </summary>
/// <value>The provider ids.</value>
public Dictionary<string, string> ProviderIds { get; set; }
/// <summary>
/// Override this to false if class should be ignored for indexing purposes
/// </summary>
/// <value><c>true</c> if [include in index]; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public virtual bool IncludeInIndex
{
get { return true; }
}
/// <summary>
/// Override this to true if class should be grouped under a container in indicies
/// The container class should be defined via IndexContainer
/// </summary>
/// <value><c>true</c> if [group in index]; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public virtual bool GroupInIndex
{
get { return false; }
}
/// <summary>
/// Override this to return the folder that should be used to construct a container
/// for this item in an index. GroupInIndex should be true as well.
/// </summary>
/// <value>The index container.</value>
[IgnoreDataMember]
public virtual Folder IndexContainer
{
get { return null; }
}
[IgnoreDataMember]
public virtual Folder LatestItemsIndexContainer
{
get { return null; }
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the user data key.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <returns>System.String.</returns>
public virtual string GetUserDataKey()
2013-02-21 02:33:05 +01:00
{
return Id.ToString();
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the preferred metadata language.
/// </summary>
/// <returns>System.String.</returns>
2013-12-28 17:58:13 +01:00
public string GetPreferredMetadataLanguage()
{
string lang = null;
var hasLang = this as IHasPreferredMetadataLanguage;
if (hasLang != null)
{
lang = hasLang.PreferredMetadataLanguage;
}
2013-12-28 17:58:13 +01:00
if (string.IsNullOrEmpty(lang))
{
lang = Parents.OfType<IHasPreferredMetadataLanguage>()
.Select(i => i.PreferredMetadataLanguage)
.FirstOrDefault(i => !string.IsNullOrEmpty(i));
}
if (string.IsNullOrEmpty(lang))
{
lang = ConfigurationManager.Configuration.PreferredMetadataLanguage;
}
return lang;
}
2013-12-28 17:58:13 +01:00
/// <summary>
/// Gets the preferred metadata language.
/// </summary>
/// <returns>System.String.</returns>
public string GetPreferredMetadataCountryCode()
{
string lang = null;
var hasLang = this as IHasPreferredMetadataLanguage;
if (hasLang != null)
{
lang = hasLang.PreferredMetadataCountryCode;
}
if (string.IsNullOrEmpty(lang))
{
lang = Parents.OfType<IHasPreferredMetadataLanguage>()
.Select(i => i.PreferredMetadataCountryCode)
.FirstOrDefault(i => !string.IsNullOrEmpty(i));
}
if (string.IsNullOrEmpty(lang))
{
lang = ConfigurationManager.Configuration.MetadataCountryCode;
}
return lang;
}
public virtual bool IsSaveLocalMetadataEnabled()
{
return ConfigurationManager.Configuration.SaveLocalMeta;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Determines if a given user has access to this item
/// </summary>
/// <param name="user">The user.</param>
/// <returns><c>true</c> if [is parental allowed] [the specified user]; otherwise, <c>false</c>.</returns>
/// <exception cref="System.ArgumentNullException">user</exception>
public bool IsParentalAllowed(User user)
2013-02-21 02:33:05 +01:00
{
if (user == null)
{
throw new ArgumentNullException("user");
}
var maxAllowedRating = user.Configuration.MaxParentalRating;
if (maxAllowedRating == null)
{
return true;
2013-02-21 02:33:05 +01:00
}
2013-08-03 15:24:23 +02:00
var rating = CustomRatingForComparison;
2014-09-23 06:05:29 +02:00
if (string.IsNullOrWhiteSpace(rating))
2013-07-16 19:18:32 +02:00
{
2013-08-03 15:24:23 +02:00
rating = OfficialRatingForComparison;
2013-07-16 19:18:32 +02:00
}
2013-08-07 17:59:13 +02:00
2014-09-23 06:05:29 +02:00
if (string.IsNullOrWhiteSpace(rating))
2013-05-23 17:07:25 +02:00
{
2013-12-26 17:53:23 +01:00
return !GetBlockUnratedValue(user.Configuration);
2013-05-23 17:07:25 +02:00
}
var value = LocalizationManager.GetRatingLevel(rating);
// Could not determine the integer value
if (!value.HasValue)
{
2013-08-01 14:00:47 +02:00
return true;
}
return value.Value <= maxAllowedRating.Value;
2013-02-21 02:33:05 +01:00
}
2013-12-26 17:53:23 +01:00
/// <summary>
/// Gets the block unrated value.
/// </summary>
/// <param name="config">The configuration.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
protected virtual bool GetBlockUnratedValue(UserConfiguration config)
{
return config.BlockUnratedItems.Contains(UnratedItem.Other);
2013-12-26 17:53:23 +01:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Determines if this folder should be visible to a given user.
/// Default is just parental allowed. Can be overridden for more functionality.
/// </summary>
/// <param name="user">The user.</param>
/// <returns><c>true</c> if the specified user is visible; otherwise, <c>false</c>.</returns>
/// <exception cref="System.ArgumentNullException">user</exception>
public virtual bool IsVisible(User user)
{
if (user == null)
{
throw new ArgumentNullException("user");
}
return IsParentalAllowed(user);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets a value indicating whether this instance is folder.
/// </summary>
/// <value><c>true</c> if this instance is folder; otherwise, <c>false</c>.</value>
[IgnoreDataMember]
public virtual bool IsFolder
{
get
{
return false;
}
}
2013-11-21 21:48:26 +01:00
public virtual string GetClientTypeName()
{
return GetType().Name;
}
/// <summary>
/// Gets the linked child.
/// </summary>
/// <param name="info">The info.</param>
/// <returns>BaseItem.</returns>
protected BaseItem GetLinkedChild(LinkedChild info)
{
// First get using the cached Id
if (info.ItemId.HasValue)
{
if (info.ItemId.Value == Guid.Empty)
{
return null;
}
var itemById = LibraryManager.GetItemById(info.ItemId.Value);
if (itemById != null)
{
return itemById;
}
}
var item = FindLinkedChild(info);
// If still null, log
if (item == null)
{
// Don't keep searching over and over
info.ItemId = Guid.Empty;
}
else
{
// Cache the id for next time
info.ItemId = item.Id;
}
return item;
}
private BaseItem FindLinkedChild(LinkedChild info)
{
if (!string.IsNullOrWhiteSpace(info.ItemName))
{
if (string.Equals(info.ItemType, "musicgenre", StringComparison.OrdinalIgnoreCase))
{
return LibraryManager.GetMusicGenre(info.ItemName);
}
if (string.Equals(info.ItemType, "musicartist", StringComparison.OrdinalIgnoreCase))
{
return LibraryManager.GetArtist(info.ItemName);
}
}
if (!string.IsNullOrEmpty(info.Path))
{
var itemByPath = LibraryManager.RootFolder.FindByPath(info.Path);
if (itemByPath == null)
{
Logger.Warn("Unable to find linked item at path {0}", info.Path);
}
return itemByPath;
}
if (!string.IsNullOrWhiteSpace(info.ItemName) && !string.IsNullOrWhiteSpace(info.ItemType))
{
return LibraryManager.RootFolder.RecursiveChildren.FirstOrDefault(i =>
{
if (string.Equals(i.Name, info.ItemName, StringComparison.OrdinalIgnoreCase))
{
if (string.Equals(i.GetType().Name, info.ItemType, StringComparison.OrdinalIgnoreCase))
{
if (info.ItemYear.HasValue)
{
if (info.ItemYear.Value != (i.ProductionYear ?? -1))
{
return false;
}
}
return true;
}
}
return false;
});
}
return null;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Adds a person to the item
/// </summary>
/// <param name="person">The person.</param>
/// <exception cref="System.ArgumentNullException"></exception>
public void AddPerson(PersonInfo person)
{
if (person == null)
{
2013-04-14 17:03:12 +02:00
throw new ArgumentNullException("person");
2013-02-21 02:33:05 +01:00
}
if (string.IsNullOrWhiteSpace(person.Name))
{
throw new ArgumentNullException();
}
2013-07-12 21:56:40 +02:00
// Normalize
if (string.Equals(person.Role, PersonType.GuestStar, StringComparison.OrdinalIgnoreCase))
{
person.Type = PersonType.GuestStar;
}
else if (string.Equals(person.Role, PersonType.Director, StringComparison.OrdinalIgnoreCase))
{
person.Type = PersonType.Director;
}
else if (string.Equals(person.Role, PersonType.Producer, StringComparison.OrdinalIgnoreCase))
{
person.Type = PersonType.Producer;
}
else if (string.Equals(person.Role, PersonType.Writer, StringComparison.OrdinalIgnoreCase))
{
person.Type = PersonType.Writer;
}
2013-04-14 17:03:12 +02:00
// If the type is GuestStar and there's already an Actor entry, then update it to avoid dupes
if (string.Equals(person.Type, PersonType.GuestStar, StringComparison.OrdinalIgnoreCase))
{
var existing = People.FirstOrDefault(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase) && p.Type.Equals(PersonType.Actor, StringComparison.OrdinalIgnoreCase));
if (existing != null)
{
existing.Type = PersonType.GuestStar;
2013-11-20 04:47:29 +01:00
existing.SortOrder = person.SortOrder ?? existing.SortOrder;
2013-04-14 17:03:12 +02:00
return;
}
}
2013-02-21 02:33:05 +01:00
2013-04-14 17:03:12 +02:00
if (string.Equals(person.Type, PersonType.Actor, StringComparison.OrdinalIgnoreCase))
2013-02-21 02:33:05 +01:00
{
// If the actor already exists without a role and we have one, fill it in
var existing = People.FirstOrDefault(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase) && (p.Type.Equals(PersonType.Actor, StringComparison.OrdinalIgnoreCase) || p.Type.Equals(PersonType.GuestStar, StringComparison.OrdinalIgnoreCase)));
if (existing == null)
2013-04-14 17:03:12 +02:00
{
// Wasn't there - add it
2013-04-14 17:03:12 +02:00
People.Add(person);
}
else
{
// Was there, if no role and we have one - fill it in
2013-11-20 04:47:29 +01:00
if (string.IsNullOrWhiteSpace(existing.Role) && !string.IsNullOrWhiteSpace(person.Role))
{
existing.Role = person.Role;
}
existing.SortOrder = person.SortOrder ?? existing.SortOrder;
}
2013-04-14 17:03:12 +02:00
}
else
{
2013-11-20 04:47:29 +01:00
var existing = People.FirstOrDefault(p =>
string.Equals(p.Name, person.Name, StringComparison.OrdinalIgnoreCase) &&
string.Equals(p.Type, person.Type, StringComparison.OrdinalIgnoreCase));
2013-04-14 17:03:12 +02:00
// Check for dupes based on the combination of Name and Type
2013-11-20 04:47:29 +01:00
if (existing == null)
2013-04-14 17:03:12 +02:00
{
People.Add(person);
}
2013-11-20 04:47:29 +01:00
else
{
existing.SortOrder = person.SortOrder ?? existing.SortOrder;
}
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Adds a studio to the item
/// </summary>
/// <param name="name">The name.</param>
/// <exception cref="System.ArgumentNullException"></exception>
public void AddStudio(string name)
{
if (string.IsNullOrWhiteSpace(name))
{
2013-04-05 06:12:05 +02:00
throw new ArgumentNullException("name");
2013-02-21 02:33:05 +01:00
}
if (!Studios.Contains(name, StringComparer.OrdinalIgnoreCase))
{
Studios.Add(name);
}
}
/// <summary>
/// Adds a genre to the item
/// </summary>
/// <param name="name">The name.</param>
/// <exception cref="System.ArgumentNullException"></exception>
public void AddGenre(string name)
{
if (string.IsNullOrWhiteSpace(name))
{
throw new ArgumentNullException("name");
2013-02-21 02:33:05 +01:00
}
if (!Genres.Contains(name, StringComparer.OrdinalIgnoreCase))
{
Genres.Add(name);
}
}
/// <summary>
/// Marks the played.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <param name="user">The user.</param>
/// <param name="datePlayed">The date played.</param>
/// <param name="userManager">The user manager.</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException"></exception>
2013-10-02 18:08:58 +02:00
public virtual async Task MarkPlayed(User user, DateTime? datePlayed, IUserDataManager userManager)
2013-02-21 02:33:05 +01:00
{
if (user == null)
{
throw new ArgumentNullException();
}
var key = GetUserDataKey();
2013-06-17 22:35:43 +02:00
var data = userManager.GetUserData(user.Id, key);
2013-02-21 02:33:05 +01:00
if (datePlayed.HasValue)
{
// Incremenet
data.PlayCount++;
}
// Ensure it's at least one
data.PlayCount = Math.Max(data.PlayCount, 1);
data.LastPlayedDate = datePlayed ?? data.LastPlayedDate;
data.Played = true;
2013-10-23 18:03:12 +02:00
await userManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None).ConfigureAwait(false);
}
/// <summary>
/// Marks the unplayed.
/// </summary>
/// <param name="user">The user.</param>
/// <param name="userManager">The user manager.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException"></exception>
2013-10-02 18:08:58 +02:00
public virtual async Task MarkUnplayed(User user, IUserDataManager userManager)
{
if (user == null)
2013-02-21 02:33:05 +01:00
{
throw new ArgumentNullException();
2013-02-21 02:33:05 +01:00
}
var key = GetUserDataKey();
var data = userManager.GetUserData(user.Id, key);
//I think it is okay to do this here.
// if this is only called when a user is manually forcing something to un-played
// then it probably is what we want to do...
data.PlayCount = 0;
data.PlaybackPositionTicks = 0;
data.LastPlayedDate = null;
data.Played = false;
2013-02-21 02:33:05 +01:00
2013-10-23 18:03:12 +02:00
await userManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Do whatever refreshing is necessary when the filesystem pertaining to this item has changed.
/// </summary>
/// <returns>Task.</returns>
public virtual Task ChangedExternally()
{
return RefreshMetadata(CancellationToken.None);
}
/// <summary>
/// Finds a parent of a given type
/// </summary>
/// <typeparam name="T"></typeparam>
/// <returns>``0.</returns>
public T FindParent<T>()
where T : Folder
{
var parent = Parent;
while (parent != null)
{
var result = parent as T;
if (result != null)
{
return result;
}
parent = parent.Parent;
}
return null;
}
/// <summary>
/// Gets an image
/// </summary>
/// <param name="type">The type.</param>
2013-12-19 22:51:32 +01:00
/// <param name="imageIndex">Index of the image.</param>
2013-02-21 02:33:05 +01:00
/// <returns><c>true</c> if the specified type has image; otherwise, <c>false</c>.</returns>
/// <exception cref="System.ArgumentException">Backdrops should be accessed using Item.Backdrops</exception>
2013-12-19 22:51:32 +01:00
public bool HasImage(ImageType type, int imageIndex)
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
return GetImageInfo(type, imageIndex) != null;
2013-02-21 02:33:05 +01:00
}
public void SetImagePath(ImageType type, int index, FileSystemInfo file)
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
if (type == ImageType.Chapter)
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
throw new ArgumentException("Cannot set chapter images using SetImagePath");
2013-02-21 02:33:05 +01:00
}
2014-02-07 21:30:41 +01:00
var image = GetImageInfo(type, index);
2013-02-21 02:33:05 +01:00
2014-02-07 21:30:41 +01:00
if (image == null)
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
ImageInfos.Add(new ItemImageInfo
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
Path = file.FullName,
Type = type,
2014-08-08 06:36:51 +02:00
DateModified = FileSystem.GetLastWriteTimeUtc(file)
2014-02-07 21:30:41 +01:00
});
2013-02-21 02:33:05 +01:00
}
else
{
2014-02-07 21:30:41 +01:00
image.Path = file.FullName;
image.DateModified = FileSystem.GetLastWriteTimeUtc(file);
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Deletes the image.
/// </summary>
/// <param name="type">The type.</param>
2013-05-05 06:49:49 +02:00
/// <param name="index">The index.</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task.</returns>
2014-02-07 21:30:41 +01:00
public Task DeleteImage(ImageType type, int index)
2013-02-21 02:33:05 +01:00
{
2014-02-07 21:30:41 +01:00
var info = GetImageInfo(type, index);
2013-05-05 06:49:49 +02:00
2014-02-07 21:30:41 +01:00
if (info == null)
2013-05-05 06:49:49 +02:00
{
2014-02-07 21:30:41 +01:00
// Nothing to do
return Task.FromResult(true);
2013-05-05 06:49:49 +02:00
}
2013-02-21 02:33:05 +01:00
2014-02-07 21:30:41 +01:00
// Remove it from the item
ImageInfos.Remove(info);
2014-02-07 21:30:41 +01:00
// Delete the source file
var currentFile = new FileInfo(info.Path);
2014-02-07 21:30:41 +01:00
// Deletion will fail if the file is hidden so remove the attribute first
if (currentFile.Exists)
{
if ((currentFile.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden)
{
currentFile.Attributes &= ~FileAttributes.Hidden;
}
currentFile.Delete();
}
2014-02-07 21:30:41 +01:00
return UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None);
}
public virtual Task UpdateToRepository(ItemUpdateType updateReason, CancellationToken cancellationToken)
{
2014-02-15 17:36:09 +01:00
return LibraryManager.UpdateItem(this, updateReason, cancellationToken);
}
/// <summary>
/// Validates that images within the item are still on the file system
/// </summary>
2014-02-10 19:39:41 +01:00
public bool ValidateImages(IDirectoryService directoryService)
{
2014-02-08 23:38:02 +01:00
var allDirectories = ImageInfos.Select(i => System.IO.Path.GetDirectoryName(i.Path)).Distinct(StringComparer.OrdinalIgnoreCase).ToList();
var allFiles = allDirectories.SelectMany(directoryService.GetFiles).Select(i => i.FullName).ToList();
2014-02-07 21:30:41 +01:00
var deletedImages = ImageInfos
2014-02-08 23:38:02 +01:00
.Where(image => !allFiles.Contains(image.Path, StringComparer.OrdinalIgnoreCase))
.ToList();
2014-02-07 21:30:41 +01:00
if (deletedImages.Count > 0)
{
2014-02-07 21:30:41 +01:00
ImageInfos = ImageInfos.Except(deletedImages).ToList();
}
2014-02-07 21:30:41 +01:00
return deletedImages.Count > 0;
}
/// <summary>
2014-02-07 21:30:41 +01:00
/// Gets the image path.
/// </summary>
2014-02-07 21:30:41 +01:00
/// <param name="imageType">Type of the image.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <returns>System.String.</returns>
/// <exception cref="System.InvalidOperationException">
/// </exception>
/// <exception cref="System.ArgumentNullException">item</exception>
public string GetImagePath(ImageType imageType, int imageIndex)
{
2014-02-07 21:30:41 +01:00
var info = GetImageInfo(imageType, imageIndex);
2014-02-07 21:30:41 +01:00
return info == null ? null : info.Path;
}
/// <summary>
2014-02-07 21:30:41 +01:00
/// Gets the image information.
/// </summary>
2014-02-07 21:30:41 +01:00
/// <param name="imageType">Type of the image.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <returns>ItemImageInfo.</returns>
public ItemImageInfo GetImageInfo(ImageType imageType, int imageIndex)
{
2014-02-07 21:30:41 +01:00
if (imageType == ImageType.Chapter)
{
var chapter = ItemRepository.GetChapter(Id, imageIndex);
2014-02-07 21:30:41 +01:00
if (chapter == null)
{
return null;
}
2014-02-07 21:30:41 +01:00
var path = chapter.ImagePath;
2014-02-07 21:30:41 +01:00
if (string.IsNullOrWhiteSpace(path))
{
return null;
}
2014-02-07 21:30:41 +01:00
return new ItemImageInfo
{
Path = path,
2014-08-08 06:36:51 +02:00
DateModified = FileSystem.GetLastWriteTimeUtc(path),
Type = imageType
2014-02-07 21:30:41 +01:00
};
}
2014-02-07 21:30:41 +01:00
return GetImages(imageType)
.ElementAtOrDefault(imageIndex);
}
2013-09-18 20:49:06 +02:00
2014-02-07 21:30:41 +01:00
public IEnumerable<ItemImageInfo> GetImages(ImageType imageType)
2013-09-18 20:49:06 +02:00
{
if (imageType == ImageType.Chapter)
{
2014-02-07 21:30:41 +01:00
throw new ArgumentException("No image info for chapter images");
2013-09-18 20:49:06 +02:00
}
2014-02-07 21:30:41 +01:00
return ImageInfos.Where(i => i.Type == imageType);
2013-09-18 20:49:06 +02:00
}
2014-03-13 20:08:02 +01:00
public bool AddImages(ImageType imageType, IEnumerable<FileInfo> images)
{
return AddImages(imageType, images.Cast<FileSystemInfo>());
}
2013-09-18 20:49:06 +02:00
/// <summary>
2014-02-07 21:30:41 +01:00
/// Adds the images.
2013-09-18 20:49:06 +02:00
/// </summary>
2014-02-07 21:30:41 +01:00
/// <param name="imageType">Type of the image.</param>
/// <param name="images">The images.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
/// <exception cref="System.ArgumentException">Cannot call AddImages with chapter images</exception>
public bool AddImages(ImageType imageType, IEnumerable<FileSystemInfo> images)
2013-09-18 20:49:06 +02:00
{
2014-02-07 21:30:41 +01:00
if (imageType == ImageType.Chapter)
2013-09-18 20:49:06 +02:00
{
2014-02-07 21:30:41 +01:00
throw new ArgumentException("Cannot call AddImages with chapter images");
2013-09-18 20:49:06 +02:00
}
2014-05-14 02:46:45 +02:00
var existingImages = GetImages(imageType)
2014-02-07 21:30:41 +01:00
.ToList();
2014-05-14 02:46:45 +02:00
var newImageList = new List<FileSystemInfo>();
foreach (var newImage in images)
{
var existing = existingImages
.FirstOrDefault(i => string.Equals(i.Path, newImage.FullName, StringComparison.OrdinalIgnoreCase));
if (existing == null)
{
newImageList.Add(newImage);
}
else
{
existing.DateModified = FileSystem.GetLastWriteTimeUtc(newImage);
}
}
2014-02-07 21:30:41 +01:00
2014-05-14 02:46:45 +02:00
ImageInfos.AddRange(newImageList.Select(i => new ItemImageInfo
2014-02-07 21:30:41 +01:00
{
Path = i.FullName,
Type = imageType,
DateModified = FileSystem.GetLastWriteTimeUtc(i)
}));
2014-05-14 02:46:45 +02:00
return newImageList.Count > 0;
2013-09-18 20:49:06 +02:00
}
/// <summary>
/// Gets the file system path to delete when the item is to be deleted
/// </summary>
/// <returns></returns>
public virtual IEnumerable<string> GetDeletePaths()
{
return new[] { Path };
}
2013-12-19 22:51:32 +01:00
2014-02-07 21:30:41 +01:00
public bool AllowsMultipleImages(ImageType type)
{
return type == ImageType.Backdrop || type == ImageType.Screenshot || type == ImageType.Chapter;
}
2013-12-19 22:51:32 +01:00
public Task SwapImages(ImageType type, int index1, int index2)
{
2014-02-07 21:30:41 +01:00
if (!AllowsMultipleImages(type))
2013-12-19 22:51:32 +01:00
{
throw new ArgumentException("The change index operation is only applicable to backdrops and screenshots");
}
2014-02-07 21:30:41 +01:00
var info1 = GetImageInfo(type, index1);
var info2 = GetImageInfo(type, index2);
2013-12-19 22:51:32 +01:00
2014-02-07 21:30:41 +01:00
if (info1 == null || info2 == null)
{
2014-02-07 21:30:41 +01:00
// Nothing to do
return Task.FromResult(true);
}
var path1 = info1.Path;
var path2 = info2.Path;
FileSystem.SwapFiles(path1, path2);
2014-02-09 22:23:55 +01:00
// Refresh these values
2014-02-07 21:30:41 +01:00
info1.DateModified = FileSystem.GetLastWriteTimeUtc(info1.Path);
info2.DateModified = FileSystem.GetLastWriteTimeUtc(info2.Path);
return UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None);
2013-12-19 22:51:32 +01:00
}
2014-01-15 23:19:37 +01:00
public virtual bool IsPlayed(User user)
{
var userdata = UserDataManager.GetUserData(user.Id, GetUserDataKey());
return userdata != null && userdata.Played;
}
2014-01-18 06:55:21 +01:00
2014-05-18 23:23:03 +02:00
public bool IsFavoriteOrLiked(User user)
{
var userdata = UserDataManager.GetUserData(user.Id, GetUserDataKey());
return userdata != null && (userdata.IsFavorite || (userdata.Likes ?? false));
}
2014-01-18 06:55:21 +01:00
public virtual bool IsUnplayed(User user)
{
2014-07-11 06:27:46 +02:00
if (user == null)
{
throw new ArgumentNullException("user");
}
2014-01-18 06:55:21 +01:00
var userdata = UserDataManager.GetUserData(user.Id, GetUserDataKey());
return userdata == null || !userdata.Played;
}
2014-02-07 04:10:13 +01:00
ItemLookupInfo IHasLookupInfo<ItemLookupInfo>.GetLookupInfo()
{
return GetItemLookupInfo<ItemLookupInfo>();
}
protected T GetItemLookupInfo<T>()
where T : ItemLookupInfo, new()
{
return new T
{
MetadataCountryCode = GetPreferredMetadataCountryCode(),
MetadataLanguage = GetPreferredMetadataLanguage(),
Name = Name,
ProviderIds = ProviderIds,
IndexNumber = IndexNumber,
ParentIndexNumber = ParentIndexNumber
};
}
2014-02-10 19:39:41 +01:00
/// <summary>
2014-02-13 06:11:54 +01:00
/// This is called before any metadata refresh and returns true or false indicating if changes were made
2014-02-10 19:39:41 +01:00
/// </summary>
2014-02-13 06:11:54 +01:00
public virtual bool BeforeMetadataRefresh()
2014-02-10 19:39:41 +01:00
{
2014-02-13 06:11:54 +01:00
var hasChanges = false;
2014-02-10 19:39:41 +01:00
if (string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(Path))
{
2014-07-26 19:30:15 +02:00
Name = FileSystem.GetFileNameWithoutExtension(Path);
2014-02-13 06:11:54 +01:00
hasChanges = true;
2014-02-10 19:39:41 +01:00
}
2014-02-13 06:11:54 +01:00
return hasChanges;
2014-02-10 19:39:41 +01:00
}
2014-06-03 04:01:30 +02:00
protected static string GetMappedPath(string path, LocationType locationType)
{
if (locationType == LocationType.FileSystem || locationType == LocationType.Offline)
{
foreach (var map in ConfigurationManager.Configuration.PathSubstitutions)
{
path = FileSystem.SubstitutePath(path, map.From, map.To);
}
}
return path;
}
public virtual void FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, User user)
{
if (RunTimeTicks.HasValue)
{
double pct = RunTimeTicks.Value;
if (pct > 0)
{
pct = userData.PlaybackPositionTicks / pct;
dto.PlayedPercentage = 100 * pct;
}
}
}
2013-02-21 02:33:05 +01:00
}
}