jellyfin/MediaBrowser.Controller/Entities/BaseItem.cs

2417 lines
75 KiB
C#
Raw Normal View History

2015-04-17 05:31:19 +02:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller.Channels;
2014-10-08 03:37:45 +02:00
using MediaBrowser.Controller.Collections;
using MediaBrowser.Controller.Configuration;
2014-10-12 17:18:26 +02:00
using MediaBrowser.Controller.Drawing;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Library;
2014-08-14 15:24:30 +02:00
using MediaBrowser.Controller.LiveTv;
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;
2014-12-27 23:52:41 +01:00
using MediaBrowser.Model.Users;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
2015-04-17 05:31:19 +02:00
using System.Globalization;
2013-02-21 02:33:05 +01:00
using System.IO;
using System.Linq;
2016-03-24 21:27:44 +01:00
using System.Text;
2013-02-21 02:33:05 +01:00
using System.Threading;
using System.Threading.Tasks;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Extensions;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Controller.IO;
2016-03-24 21:27:44 +01:00
using MediaBrowser.Controller.Sorting;
2016-10-23 21:47:34 +02:00
using MediaBrowser.Model.Extensions;
2016-10-24 04:45:23 +02:00
using MediaBrowser.Model.Globalization;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
2016-01-12 21:07:33 +01:00
using MediaBrowser.Model.LiveTv;
2016-05-29 08:03:09 +02:00
using MediaBrowser.Model.Providers;
2016-12-13 08:36:30 +01:00
using MediaBrowser.Model.Querying;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Serialization;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class BaseItem
/// </summary>
2016-10-17 18:35:29 +02:00
public abstract class BaseItem : IHasProviderIds, IHasImages, IHasUserData, IHasMetadata, IHasLookupInfo<ItemLookupInfo>
2013-02-21 02:33:05 +01:00
{
2013-04-22 06:38:03 +02:00
protected BaseItem()
{
2016-10-09 09:18:43 +02:00
ThemeSongIds = new List<Guid>();
ThemeVideoIds = new List<Guid>();
Keywords = new List<string>();
2016-01-12 21:07:33 +01:00
Tags = new List<string>();
2013-04-22 06:38:03 +02:00
Genres = new List<string>();
Studios = new List<string>();
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>();
2016-09-21 23:09:14 +02:00
InheritedTags = new List<string>();
2016-10-09 09:18:43 +02:00
ProductionLocations = new List<string>();
2017-01-07 09:04:54 +01:00
SourceType = SourceType.Library;
2013-04-22 06:38:03 +02:00
}
2016-05-06 06:50:39 +02:00
public static readonly char[] SlugReplaceChars = { '?', '/', '&' };
public static char SlugChar = '-';
/// <summary>
/// The supported image extensions
/// </summary>
2016-01-12 21:07:33 +01:00
public static readonly string[] SupportedImageExtensions = { ".png", ".jpg", ".jpeg", ".tbn", ".gif" };
2014-12-19 05:20:07 +01:00
public static readonly List<string> SupportedImageExtensionsList = SupportedImageExtensions.ToList();
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";
2016-10-09 09:18:43 +02:00
public List<Guid> ThemeSongIds { get; set; }
public List<Guid> ThemeVideoIds { get; set; }
2016-03-18 07:36:58 +01:00
[IgnoreDataMember]
2015-09-29 19:35:23 +02:00
public string PreferredMetadataCountryCode { get; set; }
2016-03-18 07:36:58 +01:00
[IgnoreDataMember]
2015-09-29 19:35:23 +02:00
public string PreferredMetadataLanguage { get; set; }
2015-10-19 12:51:20 +02:00
2016-06-17 15:06:13 +02:00
public long? Size { get; set; }
public string Container { get; set; }
2016-10-08 07:57:38 +02:00
[IgnoreDataMember]
public string Tagline { get; set; }
2016-06-17 15:06:13 +02:00
2014-02-07 21:30:41 +01:00
public List<ItemImageInfo> ImageInfos { get; set; }
2016-06-12 07:03:52 +02:00
[IgnoreDataMember]
public bool IsVirtualItem { get; set; }
2016-05-09 05:13:38 +02:00
/// <summary>
/// Gets or sets the album.
/// </summary>
/// <value>The album.</value>
2016-06-02 06:41:12 +02:00
[IgnoreDataMember]
2016-05-09 05:13:38 +02:00
public string Album { get; set; }
2015-06-01 16:49:23 +02:00
/// <summary>
/// Gets or sets the channel identifier.
/// </summary>
/// <value>The channel identifier.</value>
2015-09-10 05:22:52 +02:00
[IgnoreDataMember]
2015-06-01 16:49:23 +02:00
public string ChannelId { get; set; }
2014-08-30 16:26:29 +02:00
[IgnoreDataMember]
public virtual bool SupportsAddingToPlaylist
{
get
{
return false;
}
}
2014-10-20 05:04:45 +02:00
[IgnoreDataMember]
public virtual bool AlwaysScanInternalMetadataPath
{
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>
2016-03-18 07:36:58 +01:00
[IgnoreDataMember]
public bool IsInMixedFolder { get; set; }
2016-10-07 17:08:13 +02:00
[IgnoreDataMember]
protected virtual bool SupportsIsInMixedFolderDetection
{
get { return false; }
}
2016-10-11 08:46:59 +02:00
[IgnoreDataMember]
public virtual bool SupportsPlayedStatus
{
get
{
return false;
}
}
2016-12-12 06:49:19 +01:00
[IgnoreDataMember]
public virtual bool SupportsPositionTicksResume
{
get
{
return false;
}
}
2016-10-07 17:08:13 +02:00
public bool DetectIsInMixedFolder()
{
if (SupportsIsInMixedFolderDetection)
{
}
return IsInMixedFolder;
}
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
public virtual string Name
{
get
{
return _name;
}
set
{
_name = value;
// lazy load this again
_sortName = null;
}
}
2013-02-21 02:33:05 +01:00
2016-05-06 06:50:39 +02:00
[IgnoreDataMember]
public string SlugName
{
get
{
var name = Name;
if (string.IsNullOrWhiteSpace(name))
{
return string.Empty;
}
return SlugReplaceChars.Aggregate(name, (current, c) => current.Replace(c, SlugChar));
}
}
2016-05-11 16:36:28 +02:00
[IgnoreDataMember]
public bool IsUnaired
{
get { return PremiereDate.HasValue && PremiereDate.Value.ToLocalTime().Date >= DateTime.Now.Date; }
}
2016-10-31 06:51:43 +01:00
public int? TotalBitrate { get; set; }
public ExtraType? ExtraType { get; set; }
2016-10-31 05:28:23 +01:00
[IgnoreDataMember]
2016-10-31 06:51:43 +01:00
public bool IsThemeMedia
2016-10-31 05:28:23 +01:00
{
get
{
2016-10-31 06:51:43 +01:00
return ExtraType.HasValue && (ExtraType.Value == Model.Entities.ExtraType.ThemeSong || ExtraType.Value == Model.Entities.ExtraType.ThemeVideo);
2016-10-31 05:28:23 +01:00
}
}
[IgnoreDataMember]
2016-04-20 07:21:40 +02:00
public string OriginalTitle { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
public Guid Id { get; set; }
2013-02-21 02:33:05 +01:00
2015-10-04 20:10:50 +02:00
/// <summary>
/// Gets or sets a value indicating whether this instance is hd.
/// </summary>
/// <value><c>true</c> if this instance is hd; otherwise, <c>false</c>.</value>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2015-10-04 20:10:50 +02:00
public bool? IsHD { get; set; }
2016-01-12 21:07:33 +01:00
/// <summary>
/// Gets or sets the audio.
/// </summary>
/// <value>The audio.</value>
[IgnoreDataMember]
public ProgramAudio? Audio { get; set; }
/// <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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public virtual string Path { get; set; }
2016-03-19 05:05:33 +01:00
[IgnoreDataMember]
2016-03-19 06:04:38 +01:00
public virtual SourceType SourceType { get; set; }
2016-03-19 05:05:33 +01:00
/// <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);
}
}
2016-03-19 22:17:08 +01:00
/// <summary>
/// Gets or sets the name of the service.
/// </summary>
/// <value>The name of the service.</value>
[IgnoreDataMember]
public string ServiceName { get; set; }
2015-10-04 20:10:50 +02:00
/// <summary>
2016-01-12 21:07:33 +01:00
/// If this content came from an external service, the id of the content on that service
2015-10-04 20:10:50 +02:00
/// </summary>
[IgnoreDataMember]
2016-11-13 22:04:21 +01:00
public string ExternalId { get; set; }
2015-10-04 20:10:50 +02:00
2016-09-19 17:41:35 +02:00
[IgnoreDataMember]
2016-10-01 09:06:00 +02:00
public string ExternalSeriesId { get; set; }
2015-10-04 20:10:50 +02:00
/// <summary>
/// Gets or sets the etag.
/// </summary>
/// <value>The etag.</value>
[IgnoreDataMember]
public string ExternalEtag { get; set; }
2015-10-19 12:51:20 +02:00
[IgnoreDataMember]
public virtual bool IsHidden
{
get
{
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
2015-09-06 18:02:41 +02:00
return !IsFolder && ParentId == Guid.Empty && 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
{
2016-08-24 08:13:15 +02:00
//if (IsOffline)
//{
// return LocationType.Offline;
//}
2013-07-05 16:54:14 +02:00
2014-11-04 13:41:12 +01:00
if (string.IsNullOrWhiteSpace(Path))
2013-02-21 02:33:05 +01:00
{
2016-04-01 07:02:29 +02:00
if (SourceType == SourceType.Channel)
{
return LocationType.Remote;
}
2013-02-21 02:33:05 +01:00
return LocationType.Virtual;
}
2014-11-04 13:41:12 +01:00
return FileSystem.IsPathFile(Path) ? LocationType.FileSystem : LocationType.Remote;
2013-02-21 02:33:05 +01:00
}
}
2014-08-30 16:26:29 +02:00
[IgnoreDataMember]
2014-02-10 21:11:46 +01:00
public virtual bool SupportsLocalMetadata
{
get
{
2016-03-19 06:04:38 +01:00
if (SourceType == SourceType.Channel)
{
return false;
}
2014-02-10 21:11:46 +01:00
var locationType = LocationType;
return locationType != LocationType.Remote && locationType != LocationType.Virtual;
2014-02-10 21:11:46 +01:00
}
}
2014-12-09 05:57:18 +01:00
[IgnoreDataMember]
public virtual string FileNameWithoutExtension
{
get
{
if (LocationType == LocationType.FileSystem)
{
return System.IO.Path.GetFileNameWithoutExtension(Path);
}
return null;
}
}
2015-07-14 21:04:16 +02:00
[IgnoreDataMember]
public virtual bool EnableAlphaNumericSorting
{
get
{
return true;
}
}
2016-04-09 06:16:53 +02:00
private List<Tuple<StringBuilder, bool>> GetSortChunks(string s1)
2016-03-24 21:27:44 +01:00
{
var list = new List<Tuple<StringBuilder, bool>>();
int thisMarker = 0, thisNumericChunk = 0;
2016-03-27 23:11:27 +02:00
while (thisMarker < s1.Length)
2016-03-24 21:27:44 +01:00
{
if (thisMarker >= s1.Length)
{
break;
}
char thisCh = s1[thisMarker];
StringBuilder thisChunk = new StringBuilder();
while ((thisMarker < s1.Length) && (thisChunk.Length == 0 || SortHelper.InChunk(thisCh, thisChunk[0])))
{
thisChunk.Append(thisCh);
thisMarker++;
if (thisMarker < s1.Length)
{
thisCh = s1[thisMarker];
}
}
var isNumeric = thisChunk.Length > 0 && char.IsDigit(thisChunk[0]);
list.Add(new Tuple<StringBuilder, bool>(thisChunk, isNumeric));
}
return list;
}
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
}
2015-03-14 21:00:32 +01:00
public virtual bool IsInternetMetadataEnabled()
{
return LibraryManager.GetLibraryOptions(this).EnableInternetProviders;
2015-03-14 21:00:32 +01:00
}
2015-02-06 06:39:07 +01:00
public virtual bool CanDelete()
{
2016-03-19 06:04:38 +01:00
if (SourceType == SourceType.Channel)
{
return false;
}
2015-02-06 06:39:07 +01:00
var locationType = LocationType;
return locationType != LocationType.Remote &&
locationType != LocationType.Virtual;
}
public virtual bool IsAuthorizedToDelete(User user)
{
return user.Policy.EnableContentDeletion;
}
public bool CanDelete(User user)
{
return CanDelete() && IsAuthorizedToDelete(user);
}
public virtual bool CanDownload()
{
return false;
}
public virtual bool IsAuthorizedToDownload(User user)
{
return user.Policy.EnableContentDownloading;
}
public bool CanDownload(User user)
{
return CanDownload() && IsAuthorizedToDownload(user);
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the date created.
/// </summary>
/// <value>The date created.</value>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public DateTime DateCreated { get; set; }
/// <summary>
/// Gets or sets the date modified.
/// </summary>
/// <value>The date modified.</value>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public DateTime DateModified { get; set; }
2016-03-18 07:36:58 +01:00
[IgnoreDataMember]
public DateTime DateLastSaved { get; set; }
2015-10-14 07:02:30 +02:00
[IgnoreDataMember]
public DateTime DateLastRefreshed { get; set; }
2016-04-08 20:32:38 +02:00
[IgnoreDataMember]
public virtual bool EnableRefreshOnDateModifiedChange
2016-07-24 18:46:17 +02:00
{
get { return false; }
}
2016-04-08 20:32:38 +02:00
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; }
2014-10-12 17:18:26 +02:00
public static IImageProcessor ImageProcessor { get; set; }
public static IMediaSourceManager MediaSourceManager { 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;
}
2014-02-19 06:21:03 +01:00
[IgnoreDataMember]
2015-09-11 18:26:06 +02:00
public bool IsLocked { get; set; }
2015-10-19 12:51:20 +02:00
2013-06-09 16:15:59 +02:00
/// <summary>
/// Gets or sets the locked fields.
/// </summary>
/// <value>The locked fields.</value>
2016-03-18 07:36:58 +01:00
[IgnoreDataMember]
2013-06-09 16:15:59 +02:00
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
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
{
2016-03-31 23:14:03 +02:00
if (_sortName == null)
{
if (!string.IsNullOrWhiteSpace(ForcedSortName))
{
2016-04-02 18:47:23 +02:00
// Need the ToLower because that's what CreateSortName does
_sortName = ModifySortChunks(ForcedSortName).ToLower();
2016-03-31 23:14:03 +02:00
}
else
{
_sortName = CreateSortName();
}
}
return _sortName;
}
2015-08-28 06:19:08 +02:00
set
{
_sortName = value;
}
}
2014-09-28 17:27:26 +02:00
public string GetInternalMetadataPath()
{
var basePath = ConfigurationManager.ApplicationPaths.InternalMetadataPath;
return GetInternalMetadataPath(basePath);
2014-09-28 17:27:26 +02:00
}
protected virtual string GetInternalMetadataPath(string basePath)
{
2016-03-19 06:04:38 +01:00
if (SourceType == SourceType.Channel)
{
return System.IO.Path.Combine(basePath, "channels", ChannelId, Id.ToString("N"));
}
2016-03-24 21:27:44 +01:00
2014-09-28 17:27:26 +02:00
var idString = Id.ToString("N");
2016-01-12 21:07:33 +01:00
basePath = System.IO.Path.Combine(basePath, "library");
2014-10-29 23:01:02 +01:00
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
2015-07-14 21:04:16 +02:00
if (!EnableAlphaNumericSorting)
{
return Name.TrimStart();
}
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));
}
}
2016-03-24 21:27:44 +01:00
return ModifySortChunks(sortable);
}
private string ModifySortChunks(string name)
{
var chunks = GetSortChunks(name);
var builder = new StringBuilder();
foreach (var chunk in chunks)
{
var chunkBuilder = chunk.Item1;
// This chunk is numeric
if (chunk.Item2)
{
while (chunkBuilder.Length < 10)
{
chunkBuilder.Insert(0, '0');
}
}
builder.Append(chunkBuilder);
}
2016-03-24 21:28:21 +01:00
//Logger.Debug("ModifySortChunks Start: {0} End: {1}", name, builder.ToString());
return builder.ToString().RemoveDiacritics();
}
2013-02-21 02:33:05 +01:00
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2015-07-09 07:52:25 +02:00
public Guid ParentId { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the parent.
/// </summary>
/// <value>The parent.</value>
2015-08-22 04:59:10 +02:00
[IgnoreDataMember]
2015-07-12 21:33:00 +02:00
public Folder Parent
{
2016-01-12 21:07:33 +01:00
get { return GetParent() as Folder; }
2015-09-04 03:34:57 +02:00
set
{
2015-10-19 12:51:20 +02:00
2015-09-04 03:34:57 +02:00
}
2015-07-12 21:33:00 +02:00
}
2013-02-21 02:33:05 +01:00
2015-07-09 07:52:25 +02:00
public void SetParent(Folder parent)
{
ParentId = parent == null ? Guid.Empty : parent.Id;
}
[IgnoreDataMember]
public IEnumerable<Folder> Parents
{
2016-01-12 21:07:33 +01:00
get { return GetParents().OfType<Folder>(); }
}
public BaseItem GetParent()
{
if (ParentId != Guid.Empty)
{
2016-01-12 21:07:33 +01:00
return LibraryManager.GetItemById(ParentId);
}
2015-12-27 22:49:04 +01:00
2016-01-12 21:07:33 +01:00
return null;
}
2015-12-27 22:49:04 +01:00
2016-01-12 21:07:33 +01:00
public IEnumerable<BaseItem> GetParents()
{
var parent = GetParent();
while (parent != null)
{
yield return parent;
parent = parent.GetParent();
}
}
2015-04-26 05:25:07 +02:00
/// <summary>
/// Finds a parent of a given type
/// </summary>
/// <typeparam name="T"></typeparam>
/// <returns>``0.</returns>
2015-05-06 01:15:47 +02:00
public T FindParent<T>()
2015-04-26 05:25:07 +02:00
where T : Folder
{
2016-01-12 21:07:33 +01:00
return GetParents().OfType<T>().FirstOrDefault();
2015-04-26 05:25:07 +02:00
}
2014-10-24 06:54:35 +02:00
[IgnoreDataMember]
2016-04-09 06:16:53 +02:00
public virtual Guid? DisplayParentId
2014-10-24 06:54:35 +02:00
{
2016-04-09 06:16:53 +02:00
get
{
if (ParentId == Guid.Empty)
{
return null;
}
return ParentId;
}
}
[IgnoreDataMember]
public BaseItem DisplayParent
{
get
{
var id = DisplayParentId;
2016-04-11 06:24:16 +02:00
if (!id.HasValue || id.Value == Guid.Empty)
2016-04-09 06:16:53 +02:00
{
return null;
}
return LibraryManager.GetItemById(id.Value);
}
2014-10-24 06:54:35 +02:00
}
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public DateTime? PremiereDate { get; set; }
/// <summary>
/// Gets or sets the end date.
/// </summary>
/// <value>The end date.</value>
2015-09-10 05:22:52 +02:00
[IgnoreDataMember]
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-08-03 15:24:23 +02:00
public string OfficialRating { get; set; }
2013-02-21 02:33:05 +01:00
2016-08-26 19:24:04 +02:00
[IgnoreDataMember]
public int InheritedParentalRatingValue { get; set; }
2016-09-21 23:09:14 +02:00
[IgnoreDataMember]
public List<string> InheritedTags { get; set; }
2016-03-25 03:54:38 +01:00
/// <summary>
/// Gets or sets the critic rating.
/// </summary>
/// <value>The critic rating.</value>
2016-05-06 06:50:39 +02:00
[IgnoreDataMember]
2016-03-25 03:54:38 +01:00
public float? CriticRating { get; set; }
/// <summary>
/// Gets or sets the critic rating summary.
/// </summary>
/// <value>The critic rating summary.</value>
2016-05-06 06:50:39 +02:00
[IgnoreDataMember]
2016-03-25 03:54:38 +01:00
public string CriticRatingSummary { get; set; }
/// <summary>
/// Gets or sets the official rating description.
/// </summary>
/// <value>The official rating description.</value>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public string Overview { get; set; }
/// <summary>
/// Gets or sets the studios.
/// </summary>
/// <value>The studios.</value>
2016-03-18 07:36:58 +01:00
[IgnoreDataMember]
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-08-07 19:11:02 +02:00
public List<string> Genres { get; set; }
2013-02-21 02:33:05 +01:00
2016-01-12 21:07:33 +01:00
/// <summary>
/// Gets or sets the tags.
/// </summary>
/// <value>The tags.</value>
2016-03-18 07:36:58 +01:00
[IgnoreDataMember]
2016-01-12 21:07:33 +01:00
public List<string> Tags { get; set; }
public List<string> Keywords { get; set; }
2016-10-09 09:18:43 +02:00
public List<string> ProductionLocations { get; set; }
/// <summary>
/// Gets or sets the home page URL.
/// </summary>
/// <value>The home page URL.</value>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public long? RunTimeTicks { get; set; }
/// <summary>
/// Gets or sets the production year.
/// </summary>
/// <value>The production year.</value>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
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>
2016-01-12 21:07:33 +01:00
[IgnoreDataMember]
2013-02-21 02:33:05 +01:00
public int? ParentIndexNumber { get; set; }
2015-11-09 19:18:37 +01:00
[IgnoreDataMember]
2016-01-12 21:07:33 +01:00
public string OfficialRatingForComparison
2013-08-03 15:24:23 +02:00
{
2016-01-12 21:07:33 +01:00
get
{
if (!string.IsNullOrWhiteSpace(OfficialRating))
{
return OfficialRating;
}
var parent = DisplayParent;
if (parent != null)
{
return parent.OfficialRatingForComparison;
}
return null;
}
2013-08-03 15:24:23 +02:00
}
[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
{
2015-10-19 12:51:20 +02:00
if (!string.IsNullOrWhiteSpace(CustomRating))
2014-02-06 16:58:49 +01:00
{
return CustomRating;
}
2014-10-24 06:54:35 +02:00
var parent = DisplayParent;
2014-02-06 16:58:49 +01:00
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)
{
2014-12-20 07:06:27 +01:00
if (!user.Policy.EnableMediaPlayback)
2014-02-21 06:35:56 +01:00
{
return PlayAccess.None;
}
//if (!user.IsParentalScheduleAllowed())
//{
// return PlayAccess.None;
//}
2014-02-21 06:35:56 +01:00
return PlayAccess.Full;
}
2013-04-24 18:03:10 +02:00
/// <summary>
/// Loads the theme songs.
/// </summary>
/// <returns>List{Audio.Audio}.</returns>
2016-10-09 09:18:43 +02:00
private static IEnumerable<Audio.Audio> LoadThemeSongs(List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
2013-04-24 18:03:10 +02:00
{
2015-10-21 00:42:22 +02:00
var files = fileSystemChildren.Where(i => i.IsDirectory)
.Where(i => string.Equals(i.Name, ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
2015-10-19 12:51:20 +02:00
.SelectMany(i => directoryService.GetFiles(i.FullName))
.ToList();
2013-04-24 18:03:10 +02:00
// Support plex/xbmc convention
2015-10-04 05:38:46 +02:00
files.AddRange(fileSystemChildren
.Where(i => !i.IsDirectory && string.Equals(FileSystem.GetFileNameWithoutExtension(i), ThemeSongFilename, StringComparison.OrdinalIgnoreCase))
);
2013-04-24 18:03:10 +02:00
return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())
2014-12-04 06:24:41 +01:00
.OfType<Audio.Audio>()
.Select(audio =>
2016-01-12 21:03:06 +01:00
{
2016-01-12 21:07:33 +01:00
// Try to retrieve it from the db. If we don't find it, use the resolved version
var dbItem = LibraryManager.GetItemById(audio.Id) as Audio.Audio;
2016-01-12 21:07:33 +01:00
if (dbItem != null)
{
audio = dbItem;
}
2015-11-21 06:01:16 +01:00
2016-10-31 06:51:43 +01:00
audio.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeSong;
2015-12-27 22:49:04 +01:00
2016-01-12 21:07:33 +01: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>
2016-10-09 09:18:43 +02:00
private static IEnumerable<Video> LoadThemeVideos(IEnumerable<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
2013-04-28 18:25:14 +02:00
{
2015-10-21 00:42:22 +02:00
var files = fileSystemChildren.Where(i => i.IsDirectory)
.Where(i => string.Equals(i.Name, ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
2015-10-19 12:51:20 +02:00
.SelectMany(i => directoryService.GetFiles(i.FullName));
2013-04-28 18:25:14 +02:00
return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())
2014-12-04 06:24:41 +01:00
.OfType<Video>()
.Select(item =>
2016-01-12 21:03:06 +01:00
{
2016-01-12 21:07:33 +01:00
// 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)
{
item = dbItem;
}
2013-04-28 18:25:14 +02:00
2016-10-31 06:51:43 +01:00
item.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeVideo;
2014-09-22 23:56:54 +02:00
2016-01-12 21:07:33 +01:00
return item;
2016-01-12 21:07:33 +01:00
// 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)
{
2016-08-06 06:48:00 +02:00
return RefreshMetadata(new MetadataRefreshOptions(new DirectoryService(Logger, FileSystem)), 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<ItemUpdateType> 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;
2015-01-28 22:29:02 +01:00
if (SupportsOwnedItems)
{
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() :
2015-10-04 05:38:46 +02:00
new List<FileSystemMetadata>();
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
var refreshOptions = requiresSave
? new MetadataRefreshOptions(options)
{
ForceSave = true
}
: options;
2014-02-10 19:39:41 +01:00
2016-05-25 04:06:56 +02:00
return await ProviderManager.RefreshSingleItem(this, refreshOptions, cancellationToken).ConfigureAwait(false);
}
2015-01-28 22:29:02 +01:00
[IgnoreDataMember]
protected virtual bool SupportsOwnedItems
{
2016-01-12 21:07:33 +01:00
get { return IsFolder || GetParent() != null; }
2015-01-28 22:29:02 +01:00
}
2015-06-29 03:10:45 +02:00
[IgnoreDataMember]
public virtual bool SupportsPeople
{
get { return true; }
}
2016-10-09 09:18:43 +02:00
[IgnoreDataMember]
public virtual bool SupportsThemeMedia
{
get { return 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>
2015-10-04 05:38:46 +02:00
protected virtual async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemMetadata> 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
2016-01-12 21:07:33 +01:00
if (LocationType == LocationType.FileSystem && GetParent() != null)
2013-06-17 22:35:43 +02:00
{
2016-10-09 09:18:43 +02:00
if (SupportsThemeMedia)
{
2016-10-07 17:08:13 +02:00
if (!DetectIsInMixedFolder())
{
2016-10-09 09:18:43 +02:00
themeSongsChanged = await RefreshThemeSongs(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
2013-06-17 22:35:43 +02:00
2016-10-09 09:18:43 +02:00
themeVideosChanged = await RefreshThemeVideos(this, 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
2015-10-04 05:38:46 +02:00
protected virtual IEnumerable<FileSystemMetadata> 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
}
2015-10-04 05:38:46 +02:00
private async Task<bool> RefreshLocalTrailers(IHasTrailers item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
{
var newItems = LibraryManager.FindTrailers(this, 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);
2016-10-16 19:11:32 +02:00
var tasks = newItems.Select(i => RefreshMetadataForOwnedItem(i, true, options, cancellationToken));
await Task.WhenAll(tasks).ConfigureAwait(false);
2013-12-02 17:46:25 +01:00
item.LocalTrailerIds = newItemIds;
return itemsChanged;
}
2016-10-16 19:11:32 +02:00
private async Task<bool> RefreshThemeVideos(BaseItem item, MetadataRefreshOptions options, IEnumerable<FileSystemMetadata> 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)
{
2016-10-31 06:51:43 +01:00
i.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeVideo;
2014-08-26 04:30:52 +02:00
subOptions.ForceSave = true;
}
2016-10-16 19:11:32 +02:00
return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);
2014-08-26 04:30:52 +02:00
});
await Task.WhenAll(tasks).ConfigureAwait(false);
item.ThemeVideoIds = newThemeVideoIds;
return themeVideosChanged;
}
/// <summary>
/// Refreshes the theme songs.
/// </summary>
2016-10-16 19:11:32 +02:00
private async Task<bool> RefreshThemeSongs(BaseItem item, MetadataRefreshOptions options, List<FileSystemMetadata> 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)
{
2016-10-31 06:51:43 +01:00
i.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeSong;
2014-08-26 04:30:52 +02:00
subOptions.ForceSave = true;
}
2016-10-16 19:11:32 +02:00
return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);
2014-08-26 04:30:52 +02:00
});
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; }
[IgnoreDataMember]
public virtual Folder LatestItemsIndexContainer
{
get { return null; }
}
public virtual string CreatePresentationUniqueKey()
{
return Id.ToString("N");
}
2016-05-02 00:11:24 +02:00
[IgnoreDataMember]
public string PresentationUniqueKey { get; set; }
public string GetPresentationUniqueKey()
2016-05-02 00:11:24 +02:00
{
return PresentationUniqueKey ?? CreatePresentationUniqueKey();
2016-05-02 00:11:24 +02:00
}
2016-05-09 05:13:38 +02:00
public virtual bool RequiresRefresh()
{
return false;
}
2016-05-01 01:05:21 +02:00
public virtual List<string> GetUserDataKeys()
2013-02-21 02:33:05 +01:00
{
2016-05-01 01:05:21 +02:00
var list = new List<string>();
2016-03-19 06:04:38 +01:00
if (SourceType == SourceType.Channel)
{
if (!string.IsNullOrWhiteSpace(ExternalId))
{
2016-05-01 01:05:21 +02:00
list.Add(ExternalId);
2016-03-19 06:04:38 +01:00
}
}
2016-05-01 01:05:21 +02:00
list.Add(Id.ToString());
return list;
2013-02-21 02:33:05 +01:00
}
2014-12-03 04:13:03 +01:00
internal virtual bool IsValidFromResolver(BaseItem newItem)
{
var current = this;
2016-10-07 17:08:13 +02:00
if (!SupportsIsInMixedFolderDetection)
{
if (current.IsInMixedFolder != newItem.IsInMixedFolder)
{
return false;
}
}
return true;
2014-12-03 04:13:03 +01:00
}
2015-01-27 07:50:40 +01:00
public void AfterMetadataRefresh()
{
_sortName = null;
}
/// <summary>
/// Gets the preferred metadata language.
/// </summary>
/// <returns>System.String.</returns>
2013-12-28 17:58:13 +01:00
public string GetPreferredMetadataLanguage()
{
2015-09-29 19:35:23 +02:00
string lang = PreferredMetadataLanguage;
2015-02-15 04:36:07 +01:00
if (string.IsNullOrWhiteSpace(lang))
2013-12-28 17:58:13 +01:00
{
2016-01-12 21:07:33 +01:00
lang = GetParents()
2013-12-28 17:58:13 +01:00
.Select(i => i.PreferredMetadataLanguage)
2015-02-15 04:36:07 +01:00
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
2013-12-28 17:58:13 +01:00
}
2015-02-15 04:36:07 +01:00
if (string.IsNullOrWhiteSpace(lang))
{
lang = LibraryManager.GetCollectionFolders(this)
.Select(i => i.PreferredMetadataLanguage)
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
}
2017-01-22 00:37:38 +01:00
if (string.IsNullOrWhiteSpace(lang))
{
lang = LibraryManager.GetLibraryOptions(this).PreferredMetadataLanguage;
}
2015-02-15 04:36:07 +01:00
if (string.IsNullOrWhiteSpace(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()
{
2015-09-29 19:35:23 +02:00
string lang = PreferredMetadataCountryCode;
2013-12-28 17:58:13 +01:00
2015-02-15 04:36:07 +01:00
if (string.IsNullOrWhiteSpace(lang))
2013-12-28 17:58:13 +01:00
{
2016-01-12 21:07:33 +01:00
lang = GetParents()
2013-12-28 17:58:13 +01:00
.Select(i => i.PreferredMetadataCountryCode)
2015-02-15 04:36:07 +01:00
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
}
if (string.IsNullOrWhiteSpace(lang))
{
lang = LibraryManager.GetCollectionFolders(this)
.Select(i => i.PreferredMetadataCountryCode)
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
2013-12-28 17:58:13 +01:00
}
2017-01-22 00:37:38 +01:00
if (string.IsNullOrWhiteSpace(lang))
{
lang = LibraryManager.GetLibraryOptions(this).MetadataCountryCode;
}
2015-02-15 04:36:07 +01:00
if (string.IsNullOrWhiteSpace(lang))
2013-12-28 17:58:13 +01:00
{
lang = ConfigurationManager.Configuration.MetadataCountryCode;
}
return lang;
}
public virtual bool IsSaveLocalMetadataEnabled()
{
2016-03-19 06:04:38 +01:00
if (SourceType == SourceType.Channel)
{
return false;
}
2016-03-24 21:27:44 +01:00
var libraryOptions = LibraryManager.GetLibraryOptions(this);
return libraryOptions.SaveLocalMetadata;
}
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");
}
2014-11-29 03:40:46 +01:00
if (!IsVisibleViaTags(user))
{
return false;
}
2014-12-20 07:06:27 +01:00
var maxAllowedRating = user.Policy.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
{
2015-11-09 19:18:37 +01: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
{
2014-12-20 07:06:27 +01:00
return !GetBlockUnratedValue(user.Policy);
2013-05-23 17:07:25 +02:00
}
var value = LocalizationManager.GetRatingLevel(rating);
// Could not determine the integer value
if (!value.HasValue)
{
2015-10-19 12:51:20 +02:00
var isAllowed = !GetBlockUnratedValue(user.Policy);
if (!isAllowed)
{
Logger.Debug("{0} has an unrecognized parental rating of {1}.", Name, rating);
}
return isAllowed;
}
return value.Value <= maxAllowedRating.Value;
2013-02-21 02:33:05 +01:00
}
2015-07-28 14:33:30 +02:00
public int? GetParentalRatingValue()
2016-01-12 21:07:33 +01:00
{
var rating = CustomRating;
if (string.IsNullOrWhiteSpace(rating))
{
rating = OfficialRating;
}
if (string.IsNullOrWhiteSpace(rating))
{
return null;
}
return LocalizationManager.GetRatingLevel(rating);
}
public int? GetInheritedParentalRatingValue()
2015-07-28 14:33:30 +02:00
{
var rating = CustomRatingForComparison;
if (string.IsNullOrWhiteSpace(rating))
{
2015-11-09 19:18:37 +01:00
rating = OfficialRatingForComparison;
2015-07-28 14:33:30 +02:00
}
2015-07-28 21:42:24 +02:00
if (string.IsNullOrWhiteSpace(rating))
{
return null;
}
2015-07-28 14:33:30 +02:00
return LocalizationManager.GetRatingLevel(rating);
}
2016-04-15 04:39:39 +02:00
public List<string> GetInheritedTags()
{
var list = new List<string>();
list.AddRange(Tags);
foreach (var parent in GetParents())
{
list.AddRange(parent.Tags);
}
return list.Distinct(StringComparer.OrdinalIgnoreCase).ToList();
}
2014-11-29 03:40:46 +01:00
private bool IsVisibleViaTags(User user)
{
2016-06-02 19:43:29 +02:00
var policy = user.Policy;
if (policy.BlockedTags.Any(i => Tags.Contains(i, StringComparer.OrdinalIgnoreCase)))
2014-11-29 03:40:46 +01:00
{
2016-06-02 19:43:29 +02:00
return false;
2015-02-09 07:17:11 +01:00
}
return true;
}
2015-02-09 07:56:45 +01:00
protected virtual bool IsAllowTagFilterEnforced()
2015-02-09 07:17:11 +01:00
{
return true;
}
2016-01-12 21:07:33 +01:00
public virtual UnratedItem GetBlockUnratedType()
{
2016-03-19 06:04:38 +01:00
if (SourceType == SourceType.Channel)
{
return UnratedItem.ChannelContent;
}
2016-01-12 21:07:33 +01:00
return UnratedItem.Other;
}
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>
2014-12-20 07:06:27 +01:00
protected virtual bool GetBlockUnratedValue(UserPolicy config)
2013-12-26 17:53:23 +01:00
{
2015-10-26 17:21:00 +01:00
// Don't block plain folders that are unrated. Let the media underneath get blocked
// Special folders like series and albums will override this method.
if (IsFolder)
{
return false;
}
if (this is IItemByName)
{
return false;
}
2016-01-12 21:07:33 +01:00
return config.BlockUnratedItems.Contains(GetBlockUnratedType());
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
}
2015-02-03 22:06:56 +01:00
public virtual bool IsVisibleStandalone(User user)
2015-04-10 16:49:03 +02:00
{
2016-03-19 06:04:38 +01:00
if (SourceType == SourceType.Channel)
{
2016-03-19 06:14:47 +01:00
return IsVisibleStandaloneInternal(user, false) && Channel.IsChannelVisible(this, user);
2016-03-19 06:04:38 +01:00
}
2015-04-10 16:49:03 +02:00
return IsVisibleStandaloneInternal(user, true);
}
2016-11-21 09:54:53 +01:00
[IgnoreDataMember]
public virtual bool SupportsInheritedParentImages
{
get { return false; }
}
2015-04-10 16:49:03 +02:00
protected bool IsVisibleStandaloneInternal(User user, bool checkFolders)
2015-02-03 22:06:56 +01:00
{
if (!IsVisible(user))
{
return false;
}
2016-01-12 21:07:33 +01:00
if (GetParents().Any(i => !i.IsVisible(user)))
2015-02-03 22:06:56 +01:00
{
return false;
}
2015-04-10 16:49:03 +02:00
if (checkFolders)
2015-04-06 05:47:01 +02:00
{
2016-01-12 21:07:33 +01:00
var topParent = GetParents().LastOrDefault() ?? this;
2015-04-06 05:47:01 +02:00
2015-04-10 16:49:03 +02:00
if (string.IsNullOrWhiteSpace(topParent.Path))
{
return true;
}
2015-04-06 05:47:01 +02:00
var itemCollectionFolders = LibraryManager.GetCollectionFolders(this).Select(i => i.Id).ToList();
2015-04-10 16:49:03 +02:00
if (itemCollectionFolders.Count > 0)
2015-04-10 16:49:03 +02:00
{
var userCollectionFolders = user.RootFolder.GetChildren(user, true).Select(i => i.Id).ToList();
if (!itemCollectionFolders.Any(userCollectionFolders.Contains))
{
return false;
}
2015-04-10 16:49:03 +02:00
}
}
return true;
2015-02-03 22:06:56 +01:00
}
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;
}
}
2017-01-06 05:38:03 +01:00
[IgnoreDataMember]
public virtual bool IsDisplayedAsFolder
{
get
{
return false;
}
}
2013-11-21 21:48:26 +01:00
public virtual string GetClientTypeName()
{
2016-04-09 06:16:53 +02:00
if (IsFolder && SourceType == SourceType.Channel && !(this is Channel))
2016-03-19 16:38:05 +01:00
{
return "ChannelFolderItem";
}
2013-11-21 21:48:26 +01:00
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.IsNullOrEmpty(info.Path))
{
2016-04-27 19:53:23 +02:00
var itemByPath = LibraryManager.FindByPath(info.Path, null);
if (itemByPath == null)
{
2016-04-27 04:59:43 +02:00
//Logger.Warn("Unable to find linked item at path {0}", info.Path);
}
return itemByPath;
}
return null;
}
[IgnoreDataMember]
public virtual bool EnableRememberingTrackSelections
{
get
{
return true;
}
}
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>
2014-10-25 20:32:58 +02:00
/// <param name="resetPosition">if set to <c>true</c> [reset position].</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException"></exception>
2014-12-03 04:13:03 +01:00
public virtual async Task MarkPlayed(User user,
2014-10-25 20:32:58 +02:00
DateTime? datePlayed,
bool resetPosition)
2013-02-21 02:33:05 +01:00
{
if (user == null)
{
throw new ArgumentNullException();
}
2016-05-01 00:05:13 +02:00
var data = UserDataManager.GetUserData(user, this);
2013-02-21 02:33:05 +01:00
if (datePlayed.HasValue)
{
2016-07-01 17:51:35 +02:00
// Increment
data.PlayCount++;
}
// Ensure it's at least one
data.PlayCount = Math.Max(data.PlayCount, 1);
2014-10-25 20:32:58 +02:00
if (resetPosition)
{
data.PlaybackPositionTicks = 0;
}
2016-07-01 17:51:35 +02:00
data.LastPlayedDate = datePlayed ?? data.LastPlayedDate ?? DateTime.UtcNow;
data.Played = true;
2014-10-25 20:32:58 +02:00
await UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None).ConfigureAwait(false);
}
/// <summary>
/// Marks the unplayed.
/// </summary>
/// <param name="user">The user.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException"></exception>
2014-10-25 20:32:58 +02:00
public virtual async Task MarkUnplayed(User user)
{
if (user == null)
2013-02-21 02:33:05 +01:00
{
throw new ArgumentNullException();
2013-02-21 02:33:05 +01:00
}
2016-05-01 00:05:13 +02:00
var data = UserDataManager.GetUserData(user, this);
//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
2014-10-25 20:32:58 +02:00
await UserDataManager.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()
{
2015-10-19 12:51:20 +02:00
ProviderManager.QueueRefresh(Id, new MetadataRefreshOptions(FileSystem));
2015-03-14 05:50:23 +01:00
return Task.FromResult(true);
2013-02-21 02:33:05 +01:00
}
/// <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
}
2015-10-16 19:06:31 +02:00
public void SetImage(ItemImageInfo image, int index)
{
if (image.Type == ImageType.Chapter)
{
throw new ArgumentException("Cannot set chapter images using SetImagePath");
}
var existingImage = GetImageInfo(image.Type, index);
if (existingImage != null)
{
ImageInfos.Remove(existingImage);
}
ImageInfos.Add(image);
}
2015-10-04 05:38:46 +02:00
public void SetImagePath(ImageType type, int index, FileSystemMetadata 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-10-12 17:18:26 +02:00
ImageInfos.Add(GetImageInfo(file, type));
2013-02-21 02:33:05 +01:00
}
else
{
2014-10-12 17:18:26 +02:00
var imageInfo = GetImageInfo(file, type);
2014-02-07 21:30:41 +01:00
image.Path = file.FullName;
2014-10-12 17:18:26 +02:00
image.DateModified = imageInfo.DateModified;
2015-11-21 01:27:34 +01:00
image.IsPlaceholder = false;
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
2015-04-11 03:42:37 +02:00
RemoveImage(info);
2015-10-16 19:06:31 +02:00
if (info.IsLocalFile)
{
2016-11-09 18:24:57 +01:00
FileSystem.DeleteFile(info.Path);
}
2014-02-07 21:30:41 +01:00
return UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None);
}
2015-04-11 03:42:37 +02:00
public void RemoveImage(ItemImageInfo image)
{
ImageInfos.Remove(image);
}
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)
{
2015-10-16 19:06:31 +02:00
var allFiles = ImageInfos
.Where(i => i.IsLocalFile)
.Select(i => System.IO.Path.GetDirectoryName(i.Path))
.Distinct(StringComparer.OrdinalIgnoreCase)
.SelectMany(directoryService.GetFiles)
.Select(i => i.FullName)
.ToList();
2014-02-08 23:38:02 +01:00
2014-02-07 21:30:41 +01:00
var deletedImages = ImageInfos
2015-10-16 19:06:31 +02:00
.Where(image => image.IsLocalFile && !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,
2016-07-06 19:44:44 +02:00
DateModified = chapter.ImageDateModified,
2015-04-19 21:17:17 +02:00
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
}
/// <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>
2015-10-04 05:38:46 +02:00
public bool AddImages(ImageType imageType, List<FileSystemMetadata> 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();
2015-10-04 05:38:46 +02:00
var newImageList = new List<FileSystemMetadata>();
2015-04-11 03:42:37 +02:00
var imageAdded = false;
2014-05-14 02:46:45 +02:00
foreach (var newImage in images)
{
if (newImage == null)
{
throw new ArgumentException("null image found in list");
}
2014-05-14 02:46:45 +02:00
var existing = existingImages
.FirstOrDefault(i => string.Equals(i.Path, newImage.FullName, StringComparison.OrdinalIgnoreCase));
if (existing == null)
{
newImageList.Add(newImage);
2015-04-11 03:42:37 +02:00
imageAdded = true;
2014-05-14 02:46:45 +02:00
}
else
{
2015-10-16 19:06:31 +02:00
if (existing.IsLocalFile)
{
existing.DateModified = FileSystem.GetLastWriteTimeUtc(newImage);
}
2014-05-14 02:46:45 +02:00
}
}
2014-02-07 21:30:41 +01:00
2015-04-11 03:42:37 +02:00
if (imageAdded || images.Count != existingImages.Count)
{
var newImagePaths = images.Select(i => i.FullName).ToList();
var deleted = existingImages
2015-10-19 12:51:20 +02:00
.Where(i => i.IsLocalFile && !newImagePaths.Contains(i.Path, StringComparer.OrdinalIgnoreCase) && !FileSystem.FileExists(i.Path))
2015-04-11 03:42:37 +02:00
.ToList();
ImageInfos = ImageInfos.Except(deleted).ToList();
}
2014-10-12 17:18:26 +02:00
ImageInfos.AddRange(newImageList.Select(i => GetImageInfo(i, imageType)));
2014-02-07 21:30:41 +01:00
2014-05-14 02:46:45 +02:00
return newImageList.Count > 0;
2013-09-18 20:49:06 +02:00
}
2015-10-04 05:38:46 +02:00
private ItemImageInfo GetImageInfo(FileSystemMetadata file, ImageType type)
2014-10-12 17:18:26 +02:00
{
return new ItemImageInfo
2014-10-12 17:18:26 +02:00
{
Path = file.FullName,
Type = type,
2015-04-19 21:17:17 +02:00
DateModified = FileSystem.GetLastWriteTimeUtc(file)
2014-10-12 17:18:26 +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);
}
2015-10-16 19:06:31 +02:00
if (!info1.IsLocalFile || !info2.IsLocalFile)
{
// TODO: Not supported yet
return Task.FromResult(true);
}
2014-02-07 21:30:41 +01:00
var path1 = info1.Path;
var path2 = info2.Path;
FileSystem.SwapFiles(path1, path2);
2014-02-09 22:23:55 +01:00
// Refresh these values
2015-04-19 21:17:17 +02: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)
{
2016-05-01 00:05:13 +02:00
var userdata = UserDataManager.GetUserData(user, this);
2014-01-15 23:19:37 +01:00
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)
{
2016-05-01 00:05:13 +02:00
var userdata = UserDataManager.GetUserData(user, this);
2014-05-18 23:23:03 +02:00
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");
}
2016-05-01 00:05:13 +02:00
var userdata = UserDataManager.GetUserData(user, this);
2014-01-18 06:55:21 +01:00
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(),
2016-11-15 18:55:26 +01:00
Name = GetNameForMetadataLookup(),
2014-02-07 04:10:13 +01:00
ProviderIds = ProviderIds,
IndexNumber = IndexNumber,
2014-12-14 01:42:22 +01:00
ParentIndexNumber = ParentIndexNumber,
Year = ProductionYear,
PremiereDate = PremiereDate
2014-02-07 04:10:13 +01:00
};
}
2014-02-10 19:39:41 +01:00
2016-11-15 18:55:26 +01:00
protected virtual string GetNameForMetadataLookup()
{
return Name;
}
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
{
2015-01-24 23:33:26 +01:00
_sortName = null;
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(BaseItem item, string path, LocationType locationType)
2014-06-03 04:01:30 +02:00
{
if (locationType == LocationType.FileSystem || locationType == LocationType.Offline)
{
return LibraryManager.GetPathAfterNetworkSubstitution(path, item);
2014-06-03 04:01:30 +02:00
}
return path;
}
2016-12-13 08:36:30 +01:00
public virtual Task FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, BaseItemDto itemDto, User user, List<ItemFields> itemFields)
{
if (RunTimeTicks.HasValue)
{
double pct = RunTimeTicks.Value;
if (pct > 0)
{
pct = userData.PlaybackPositionTicks / pct;
2014-11-30 20:01:33 +01:00
if (pct > 0)
{
dto.PlayedPercentage = 100 * pct;
}
}
}
2016-06-19 08:18:29 +02:00
return Task.FromResult(true);
}
2014-12-03 04:13:03 +01:00
2016-10-16 19:11:32 +02:00
protected Task RefreshMetadataForOwnedItem(BaseItem ownedItem, bool copyTitleMetadata, MetadataRefreshOptions options, CancellationToken cancellationToken)
2014-12-03 04:13:03 +01:00
{
2016-10-16 19:11:32 +02:00
var newOptions = new MetadataRefreshOptions(options);
newOptions.SearchResult = null;
var item = this;
if (copyTitleMetadata)
2014-12-03 04:13:03 +01:00
{
2016-10-16 19:11:32 +02:00
// Take some data from the main item, for querying purposes
if (!item.Genres.SequenceEqual(ownedItem.Genres, StringComparer.Ordinal))
{
newOptions.ForceSave = true;
ownedItem.Genres = item.Genres.ToList();
}
if (!item.Studios.SequenceEqual(ownedItem.Studios, StringComparer.Ordinal))
{
newOptions.ForceSave = true;
ownedItem.Studios = item.Studios.ToList();
}
if (!item.ProductionLocations.SequenceEqual(ownedItem.ProductionLocations, StringComparer.Ordinal))
{
newOptions.ForceSave = true;
ownedItem.ProductionLocations = item.ProductionLocations.ToList();
}
if (!item.Keywords.SequenceEqual(ownedItem.Keywords, StringComparer.Ordinal))
{
newOptions.ForceSave = true;
ownedItem.Keywords = item.Keywords.ToList();
}
if (item.CommunityRating != ownedItem.CommunityRating)
{
ownedItem.CommunityRating = item.CommunityRating;
newOptions.ForceSave = true;
}
if (item.CriticRating != ownedItem.CriticRating)
{
ownedItem.CriticRating = item.CriticRating;
newOptions.ForceSave = true;
}
if (!string.Equals(item.Overview, ownedItem.Overview, StringComparison.Ordinal))
{
ownedItem.Overview = item.Overview;
newOptions.ForceSave = true;
}
if (!string.Equals(item.OfficialRating, ownedItem.OfficialRating, StringComparison.Ordinal))
{
ownedItem.OfficialRating = item.OfficialRating;
newOptions.ForceSave = true;
}
if (!string.Equals(item.CustomRating, ownedItem.CustomRating, StringComparison.Ordinal))
{
ownedItem.CustomRating = item.CustomRating;
newOptions.ForceSave = true;
}
if (!string.Equals(item.CriticRatingSummary, ownedItem.CriticRatingSummary, StringComparison.Ordinal))
{
ownedItem.CriticRatingSummary = item.CriticRatingSummary;
newOptions.ForceSave = true;
}
if (!string.Equals(item.OfficialRatingDescription, ownedItem.OfficialRatingDescription, StringComparison.Ordinal))
{
ownedItem.OfficialRatingDescription = item.OfficialRatingDescription;
newOptions.ForceSave = true;
}
}
return ownedItem.RefreshMetadata(newOptions, cancellationToken);
}
protected Task RefreshMetadataForOwnedVideo(MetadataRefreshOptions options, bool copyTitleMetadata, string path, CancellationToken cancellationToken)
{
var newOptions = new MetadataRefreshOptions(options);
newOptions.SearchResult = null;
2014-12-03 04:13:03 +01:00
var id = LibraryManager.GetNewItemId(path, typeof(Video));
// Try to retrieve it from the db. If we don't find it, use the resolved version
var video = LibraryManager.GetItemById(id) as Video;
if (video == null)
{
2015-10-04 05:38:46 +02:00
video = LibraryManager.ResolvePath(FileSystem.GetFileSystemInfo(path)) as Video;
2014-12-03 04:13:03 +01:00
newOptions.ForceSave = true;
}
if (video == null)
{
return Task.FromResult(true);
}
2016-10-16 19:11:32 +02:00
return RefreshMetadataForOwnedItem(video, copyTitleMetadata, newOptions, cancellationToken);
2014-12-03 04:13:03 +01:00
}
2015-04-14 05:45:17 +02:00
2015-04-15 17:41:42 +02:00
public string GetEtag(User user)
2015-04-14 05:45:17 +02:00
{
2015-04-15 17:41:42 +02:00
return string.Join("|", GetEtagValues(user).ToArray()).GetMD5().ToString("N");
2015-04-14 05:45:17 +02:00
}
2015-04-15 17:41:42 +02:00
protected virtual List<string> GetEtagValues(User user)
2015-04-14 05:45:17 +02:00
{
return new List<string>
{
DateLastSaved.Ticks.ToString(CultureInfo.InvariantCulture)
};
}
2016-01-12 21:07:33 +01:00
public virtual IEnumerable<Guid> GetAncestorIds()
{
return GetParents().Select(i => i.Id).Concat(LibraryManager.GetCollectionFolders(this).Select(i => i.Id));
}
public BaseItem GetTopParent()
{
if (IsTopParent)
{
return this;
}
return GetParents().FirstOrDefault(i => i.IsTopParent);
}
[IgnoreDataMember]
public virtual bool IsTopParent
{
get
{
2016-11-21 09:54:53 +01:00
if (this is BasePluginFolder || this is Channel)
2016-01-12 21:07:33 +01:00
{
return true;
}
var view = this as UserView;
2016-11-21 09:54:53 +01:00
if (view != null)
2016-01-12 21:07:33 +01:00
{
2016-11-21 09:54:53 +01:00
if (string.Equals(view.ViewType, CollectionType.LiveTv, StringComparison.OrdinalIgnoreCase))
{
return true;
}
if (string.Equals(view.ViewType, CollectionType.Channels, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2016-01-12 21:07:33 +01:00
}
2016-11-21 09:54:53 +01:00
if (GetParent() is AggregateFolder)
2016-03-30 05:31:11 +02:00
{
return true;
}
2016-01-12 21:07:33 +01:00
return false;
}
}
[IgnoreDataMember]
public virtual bool SupportsAncestors
{
get
{
return true;
}
}
2016-08-14 23:29:35 +02:00
[IgnoreDataMember]
public virtual bool StopRefreshIfLocalMetadataFound
{
get
{
return true;
}
}
2016-01-12 21:07:33 +01:00
public virtual IEnumerable<Guid> GetIdsForAncestorQuery()
{
return new[] { Id };
}
2016-02-12 05:54:00 +01:00
public virtual Task Delete(DeleteOptions options)
{
return LibraryManager.DeleteItem(this, options);
}
public virtual Task OnFileDeleted()
{
// Remove from database
return Delete(new DeleteOptions
{
DeleteFileLocation = false
});
}
2016-05-29 08:03:09 +02:00
public virtual List<ExternalUrl> GetRelatedUrls()
{
return new List<ExternalUrl>();
}
2013-02-21 02:33:05 +01:00
}
2016-01-12 21:07:33 +01:00
}