2015-04-17 03:31:19 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
2014-09-01 20:10:54 +00:00
|
|
|
|
using MediaBrowser.Controller.Channels;
|
2014-10-08 01:37:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Collections;
|
2013-08-25 17:18:56 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2014-10-12 15:18:26 +00:00
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-08-14 13:24:30 +00:00
|
|
|
|
using MediaBrowser.Controller.LiveTv;
|
2013-04-13 18:02:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-12-26 16:53:23 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2014-07-04 02:22:57 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-02-21 05:35:56 +00:00
|
|
|
|
using MediaBrowser.Model.Library;
|
2013-02-22 01:26:35 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2014-12-27 22:52:41 +00:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2015-04-17 03:31:19 +00:00
|
|
|
|
using System.Globalization;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2016-03-24 20:27:44 +00:00
|
|
|
|
using System.Text;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2017-05-26 06:48:54 +00:00
|
|
|
|
|
2017-05-21 07:25:49 +00:00
|
|
|
|
using MediaBrowser.Controller.Dto;
|
2016-10-23 19:14:57 +00:00
|
|
|
|
using MediaBrowser.Controller.Extensions;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
2016-03-24 20:27:44 +00:00
|
|
|
|
using MediaBrowser.Controller.Sorting;
|
2016-10-23 19:47:34 +00:00
|
|
|
|
using MediaBrowser.Model.Extensions;
|
2016-10-24 02:45:23 +00:00
|
|
|
|
using MediaBrowser.Model.Globalization;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-01-12 20:07:33 +00:00
|
|
|
|
using MediaBrowser.Model.LiveTv;
|
2016-05-29 06:03:09 +00:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2016-12-13 07:36:30 +00:00
|
|
|
|
using MediaBrowser.Model.Querying;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class BaseItem
|
|
|
|
|
/// </summary>
|
2016-10-17 16:35:29 +00:00
|
|
|
|
public abstract class BaseItem : IHasProviderIds, IHasImages, IHasUserData, IHasMetadata, IHasLookupInfo<ItemLookupInfo>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-04-22 04:38:03 +00:00
|
|
|
|
protected BaseItem()
|
|
|
|
|
{
|
2016-10-09 07:18:43 +00:00
|
|
|
|
ThemeSongIds = new List<Guid>();
|
|
|
|
|
ThemeVideoIds = new List<Guid>();
|
2016-05-31 18:07:54 +00:00
|
|
|
|
Keywords = new List<string>();
|
2016-01-12 20:07:33 +00:00
|
|
|
|
Tags = new List<string>();
|
2013-04-22 04:38:03 +00:00
|
|
|
|
Genres = new List<string>();
|
|
|
|
|
Studios = new List<string>();
|
2013-05-02 22:32:15 +00:00
|
|
|
|
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
2013-06-09 14:16:43 +00:00
|
|
|
|
LockedFields = new List<MetadataFields>();
|
2014-02-07 20:30:41 +00:00
|
|
|
|
ImageInfos = new List<ItemImageInfo>();
|
2016-09-21 21:09:14 +00:00
|
|
|
|
InheritedTags = new List<string>();
|
2016-10-09 07:18:43 +00:00
|
|
|
|
ProductionLocations = new List<string>();
|
2013-04-22 04:38:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-05-06 04:50:39 +00:00
|
|
|
|
public static readonly char[] SlugReplaceChars = { '?', '/', '&' };
|
|
|
|
|
public static char SlugChar = '-';
|
|
|
|
|
|
2013-05-30 22:22:15 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The supported image extensions
|
|
|
|
|
/// </summary>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
public static readonly string[] SupportedImageExtensions = { ".png", ".jpg", ".jpeg", ".tbn", ".gif" };
|
2013-06-13 18:17:42 +00:00
|
|
|
|
|
2014-12-19 04:20:07 +00:00
|
|
|
|
public static readonly List<string> SupportedImageExtensionsList = SupportedImageExtensions.ToList();
|
|
|
|
|
|
2013-03-15 19:13:22 +00:00
|
|
|
|
/// <summary>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// The trailer folder name
|
|
|
|
|
/// </summary>
|
2014-09-22 21:56:54 +00: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 07:18:43 +00:00
|
|
|
|
public List<Guid> ThemeSongIds { get; set; }
|
|
|
|
|
public List<Guid> ThemeVideoIds { get; set; }
|
|
|
|
|
|
2016-03-18 06:36:58 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-09-29 17:35:23 +00:00
|
|
|
|
public string PreferredMetadataCountryCode { get; set; }
|
2016-03-18 06:36:58 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-09-29 17:35:23 +00:00
|
|
|
|
public string PreferredMetadataLanguage { get; set; }
|
2015-10-19 10:51:20 +00:00
|
|
|
|
|
2016-06-17 13:06:13 +00:00
|
|
|
|
public long? Size { get; set; }
|
|
|
|
|
public string Container { get; set; }
|
2017-05-06 19:45:23 +00:00
|
|
|
|
|
2016-10-08 05:57:38 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string Tagline { get; set; }
|
2016-06-17 13:06:13 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
public List<ItemImageInfo> ImageInfos { get; set; }
|
|
|
|
|
|
2016-06-12 05:03:52 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool IsVirtualItem { get; set; }
|
|
|
|
|
|
2016-05-09 03:13:38 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the album.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The album.</value>
|
2016-06-02 04:41:12 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-05-09 03:13:38 +00:00
|
|
|
|
public string Album { get; set; }
|
|
|
|
|
|
2015-06-01 14:49:23 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the channel identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The channel identifier.</value>
|
2015-09-10 03:22:52 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 14:49:23 +00:00
|
|
|
|
public string ChannelId { get; set; }
|
|
|
|
|
|
2014-08-30 14:26:29 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-08-05 23:59:24 +00:00
|
|
|
|
public virtual bool SupportsAddingToPlaylist
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-20 03:04:45 +00:00
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool AlwaysScanInternalMetadataPath
|
|
|
|
|
{
|
|
|
|
|
get { return false; }
|
|
|
|
|
}
|
2014-08-05 23:59:24 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00: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 06:36:58 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-08-15 19:09:52 +00:00
|
|
|
|
public bool IsInMixedFolder { get; set; }
|
2013-09-04 13:19:03 +00:00
|
|
|
|
|
2016-10-07 15:08:13 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
protected virtual bool SupportsIsInMixedFolderDetection
|
|
|
|
|
{
|
|
|
|
|
get { return false; }
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 06:46:59 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool SupportsPlayedStatus
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-12 05:49:19 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool SupportsPositionTicksResume
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 15:08:13 +00:00
|
|
|
|
public bool DetectIsInMixedFolder()
|
|
|
|
|
{
|
|
|
|
|
if (SupportsIsInMixedFolderDetection)
|
|
|
|
|
{
|
2017-02-18 08:32:17 +00:00
|
|
|
|
|
2016-10-07 15:08:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return IsInMixedFolder;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-14 13:24:30 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool SupportsRemoteImageDownloading
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-06 02:40:12 +00:00
|
|
|
|
private string _name;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual string Name
|
2013-05-06 02:40:12 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _name;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
_name = value;
|
|
|
|
|
|
2017-06-03 07:36:32 +00:00
|
|
|
|
// lazy load this again
|
|
|
|
|
_sortName = null;
|
2013-05-06 02:40:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2016-05-06 04:50:39 +00: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 14:36:28 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool IsUnaired
|
|
|
|
|
{
|
|
|
|
|
get { return PremiereDate.HasValue && PremiereDate.Value.ToLocalTime().Date >= DateTime.Now.Date; }
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-31 05:51:43 +00:00
|
|
|
|
public int? TotalBitrate { get; set; }
|
|
|
|
|
public ExtraType? ExtraType { get; set; }
|
|
|
|
|
|
2016-10-31 04:28:23 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-10-31 05:51:43 +00:00
|
|
|
|
public bool IsThemeMedia
|
2016-10-31 04:28:23 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-10-31 05:51:43 +00:00
|
|
|
|
return ExtraType.HasValue && (ExtraType.Value == Model.Entities.ExtraType.ThemeSong || ExtraType.Value == Model.Entities.ExtraType.ThemeVideo);
|
2016-10-31 04:28:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
2016-04-20 05:21:40 +00:00
|
|
|
|
public string OriginalTitle { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The id.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-06-13 18:17:42 +00:00
|
|
|
|
public Guid Id { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2015-10-04 18:10:50 +00: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 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-10-04 18:10:50 +00:00
|
|
|
|
public bool? IsHD { get; set; }
|
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the audio.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The audio.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public ProgramAudio? Audio { get; set; }
|
|
|
|
|
|
2013-08-25 17:18:56 +00: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 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The path.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public virtual string Path { get; set; }
|
|
|
|
|
|
2016-03-19 04:05:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2017-06-03 07:36:32 +00:00
|
|
|
|
public virtual SourceType SourceType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(ChannelId))
|
|
|
|
|
{
|
|
|
|
|
return SourceType.Channel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return SourceType.Library;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-03-19 04:05:33 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00: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;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-04 18:14:45 +00:00
|
|
|
|
return FileSystem.GetDirectoryName(Path);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 21:17:08 +00: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 18:10:50 +00:00
|
|
|
|
/// <summary>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
/// If this content came from an external service, the id of the content on that service
|
2015-10-04 18:10:50 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
[IgnoreDataMember]
|
2016-11-13 21:04:21 +00:00
|
|
|
|
public string ExternalId { get; set; }
|
2015-10-04 18:10:50 +00:00
|
|
|
|
|
2016-09-19 15:41:35 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-10-01 07:06:00 +00:00
|
|
|
|
public string ExternalSeriesId { get; set; }
|
|
|
|
|
|
2015-10-04 18:10:50 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the etag.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The etag.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string ExternalEtag { get; set; }
|
2015-10-19 10:51:20 +00:00
|
|
|
|
|
2014-03-07 15:53:23 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool IsHidden
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public virtual bool IsOwnedItem
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
|
|
|
|
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 16:02:41 +00:00
|
|
|
|
return !IsFolder && ParentId == Guid.Empty && LocationType == LocationType.FileSystem;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the type of the location.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the location.</value>
|
2013-12-02 02:24:14 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public virtual LocationType LocationType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-08-24 06:13:15 +00:00
|
|
|
|
//if (IsOffline)
|
|
|
|
|
//{
|
|
|
|
|
// return LocationType.Offline;
|
|
|
|
|
//}
|
2013-07-05 14:54:14 +00:00
|
|
|
|
|
2014-11-04 12:41:12 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(Path))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2016-04-01 05:02:29 +00:00
|
|
|
|
if (SourceType == SourceType.Channel)
|
|
|
|
|
{
|
|
|
|
|
return LocationType.Remote;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
return LocationType.Virtual;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-04 12:41:12 +00:00
|
|
|
|
return FileSystem.IsPathFile(Path) ? LocationType.FileSystem : LocationType.Remote;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-30 14:26:29 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-10 20:11:46 +00:00
|
|
|
|
public virtual bool SupportsLocalMetadata
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-03-19 05:04:38 +00:00
|
|
|
|
if (SourceType == SourceType.Channel)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 20:11:46 +00:00
|
|
|
|
var locationType = LocationType;
|
|
|
|
|
|
2014-02-17 21:35:08 +00:00
|
|
|
|
return locationType != LocationType.Remote && locationType != LocationType.Virtual;
|
2014-02-10 20:11:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-09 04:57:18 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual string FileNameWithoutExtension
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (LocationType == LocationType.FileSystem)
|
|
|
|
|
{
|
|
|
|
|
return System.IO.Path.GetFileNameWithoutExtension(Path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-14 19:04:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool EnableAlphaNumericSorting
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-09 04:16:53 +00:00
|
|
|
|
private List<Tuple<StringBuilder, bool>> GetSortChunks(string s1)
|
2016-03-24 20:27:44 +00:00
|
|
|
|
{
|
|
|
|
|
var list = new List<Tuple<StringBuilder, bool>>();
|
|
|
|
|
|
|
|
|
|
int thisMarker = 0, thisNumericChunk = 0;
|
|
|
|
|
|
2016-03-27 21:11:27 +00:00
|
|
|
|
while (thisMarker < s1.Length)
|
2016-03-24 20:27:44 +00: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 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is just a helper for convenience
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The primary image path.</value>
|
|
|
|
|
[IgnoreDataMember]
|
2013-04-05 04:12:05 +00:00
|
|
|
|
public string PrimaryImagePath
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-12-19 21:51:32 +00:00
|
|
|
|
get { return this.GetImagePath(ImageType.Primary); }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-14 20:00:32 +00:00
|
|
|
|
public virtual bool IsInternetMetadataEnabled()
|
|
|
|
|
{
|
2016-10-02 04:31:47 +00:00
|
|
|
|
return LibraryManager.GetLibraryOptions(this).EnableInternetProviders;
|
2015-03-14 20:00:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-06 05:39:07 +00:00
|
|
|
|
public virtual bool CanDelete()
|
|
|
|
|
{
|
2016-03-19 05:04:38 +00:00
|
|
|
|
if (SourceType == SourceType.Channel)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-06 05:39:07 +00: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 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the date created.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The date created.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public DateTime DateCreated { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the date modified.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The date modified.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public DateTime DateModified { get; set; }
|
|
|
|
|
|
2016-03-18 06:36:58 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-06 15:59:40 +00:00
|
|
|
|
public DateTime DateLastSaved { get; set; }
|
2014-01-01 18:26:31 +00:00
|
|
|
|
|
2015-10-14 05:02:30 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public DateTime DateLastRefreshed { get; set; }
|
|
|
|
|
|
2016-04-08 18:32:38 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-08-13 05:49:00 +00:00
|
|
|
|
public virtual bool EnableRefreshOnDateModifiedChange
|
2016-07-24 16:46:17 +00:00
|
|
|
|
{
|
|
|
|
|
get { return false; }
|
|
|
|
|
}
|
2016-04-08 18:32:38 +00:00
|
|
|
|
|
2013-02-21 20:26:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The logger
|
|
|
|
|
/// </summary>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
public static ILogger Logger { get; set; }
|
|
|
|
|
public static ILibraryManager LibraryManager { get; set; }
|
|
|
|
|
public static IServerConfigurationManager ConfigurationManager { get; set; }
|
|
|
|
|
public static IProviderManager ProviderManager { get; set; }
|
2013-06-10 17:46:11 +00:00
|
|
|
|
public static ILocalizationManager LocalizationManager { get; set; }
|
2013-06-20 16:44:24 +00:00
|
|
|
|
public static IItemRepository ItemRepository { get; set; }
|
2013-10-30 14:40:14 +00:00
|
|
|
|
public static IFileSystem FileSystem { get; set; }
|
2014-01-15 22:19:37 +00:00
|
|
|
|
public static IUserDataManager UserDataManager { get; set; }
|
2014-08-14 13:24:30 +00:00
|
|
|
|
public static ILiveTvManager LiveTvManager { get; set; }
|
2014-09-01 20:10:54 +00:00
|
|
|
|
public static IChannelManager ChannelManager { get; set; }
|
2014-10-08 01:37:45 +00:00
|
|
|
|
public static ICollectionManager CollectionManager { get; set; }
|
2014-10-12 15:18:26 +00:00
|
|
|
|
public static IImageProcessor ImageProcessor { get; set; }
|
2015-02-07 21:03:09 +00:00
|
|
|
|
public static IMediaSourceManager MediaSourceManager { get; set; }
|
2013-02-21 20:26:35 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00: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 05:21:03 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-09-11 16:26:06 +00:00
|
|
|
|
public bool IsLocked { get; set; }
|
2015-10-19 10:51:20 +00:00
|
|
|
|
|
2013-06-09 14:15:59 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the locked fields.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The locked fields.</value>
|
2016-03-18 06:36:58 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-06-09 14:15:59 +00:00
|
|
|
|
public List<MetadataFields> LockedFields { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00: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]
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public virtual IEnumerable<string> PhysicalLocations
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
var locationType = LocationType;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-02-07 03:10:13 +00:00
|
|
|
|
if (locationType == LocationType.Remote || locationType == LocationType.Virtual)
|
2013-05-24 17:48:48 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
return new string[] { };
|
2013-05-24 17:48:48 +00:00
|
|
|
|
}
|
2014-01-01 18:26:31 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
return new[] { Path };
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-03 07:36:32 +00:00
|
|
|
|
private string _forcedSortName;
|
2013-03-12 01:46:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name of the forced sort.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the forced sort.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-29 05:17:58 +00:00
|
|
|
|
public string ForcedSortName
|
|
|
|
|
{
|
2017-06-03 07:36:32 +00:00
|
|
|
|
get { return _forcedSortName; }
|
|
|
|
|
set { _forcedSortName = value; _sortName = null; }
|
2014-01-29 05:17:58 +00:00
|
|
|
|
}
|
2013-03-12 01:46:46 +00:00
|
|
|
|
|
|
|
|
|
private string _sortName;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
2014-02-08 20:02:35 +00:00
|
|
|
|
/// Gets the name of the sort.
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the sort.</value>
|
2013-03-12 01:46:46 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string SortName
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2016-03-31 21:14:03 +00:00
|
|
|
|
if (_sortName == null)
|
|
|
|
|
{
|
2017-06-03 07:36:32 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(ForcedSortName))
|
|
|
|
|
{
|
|
|
|
|
// Need the ToLower because that's what CreateSortName does
|
|
|
|
|
_sortName = ModifySortChunks(ForcedSortName).ToLower();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_sortName = CreateSortName();
|
|
|
|
|
}
|
2016-03-31 21:14:03 +00:00
|
|
|
|
}
|
|
|
|
|
return _sortName;
|
2013-03-12 01:46:46 +00:00
|
|
|
|
}
|
2015-08-28 04:19:08 +00:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
_sortName = value;
|
|
|
|
|
}
|
2013-03-12 01:46:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-28 15:27:26 +00:00
|
|
|
|
public string GetInternalMetadataPath()
|
|
|
|
|
{
|
2015-01-13 03:46:44 +00:00
|
|
|
|
var basePath = ConfigurationManager.ApplicationPaths.InternalMetadataPath;
|
|
|
|
|
|
|
|
|
|
return GetInternalMetadataPath(basePath);
|
2014-09-28 15:27:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected virtual string GetInternalMetadataPath(string basePath)
|
|
|
|
|
{
|
2016-03-19 05:04:38 +00:00
|
|
|
|
if (SourceType == SourceType.Channel)
|
|
|
|
|
{
|
|
|
|
|
return System.IO.Path.Combine(basePath, "channels", ChannelId, Id.ToString("N"));
|
|
|
|
|
}
|
2016-03-24 20:27:44 +00:00
|
|
|
|
|
2014-09-28 15:27:26 +00:00
|
|
|
|
var idString = Id.ToString("N");
|
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
basePath = System.IO.Path.Combine(basePath, "library");
|
2014-10-29 22:01:02 +00:00
|
|
|
|
|
|
|
|
|
return System.IO.Path.Combine(basePath, idString.Substring(0, 2), idString);
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-12 01:46:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the name of the sort.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2017-06-03 07:36:32 +00:00
|
|
|
|
protected virtual string CreateSortName()
|
2013-03-12 01:46:46 +00:00
|
|
|
|
{
|
2017-06-03 07:36:32 +00:00
|
|
|
|
if (Name == null) return null; //some items may not have name filled in properly
|
|
|
|
|
|
2015-07-14 19:04:16 +00:00
|
|
|
|
if (!EnableAlphaNumericSorting)
|
|
|
|
|
{
|
|
|
|
|
return Name.TrimStart();
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-12 01:46:46 +00:00
|
|
|
|
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 20:27:44 +00: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 20:28:21 +00:00
|
|
|
|
//Logger.Debug("ModifySortChunks Start: {0} End: {1}", name, builder.ToString());
|
2016-04-25 17:35:49 +00:00
|
|
|
|
return builder.ToString().RemoveDiacritics();
|
2013-03-12 01:46:46 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-07-09 05:52:25 +00:00
|
|
|
|
public Guid ParentId { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the parent.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The parent.</value>
|
2015-08-22 02:59:10 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-07-12 19:33:00 +00:00
|
|
|
|
public Folder Parent
|
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
get { return GetParent() as Folder; }
|
2015-09-04 01:34:57 +00:00
|
|
|
|
set
|
|
|
|
|
{
|
2015-10-19 10:51:20 +00:00
|
|
|
|
|
2015-09-04 01:34:57 +00:00
|
|
|
|
}
|
2015-07-12 19:33:00 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2015-07-09 05:52:25 +00:00
|
|
|
|
public void SetParent(Folder parent)
|
|
|
|
|
{
|
|
|
|
|
ParentId = parent == null ? Guid.Empty : parent.Id;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-20 03:15:48 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public IEnumerable<Folder> Parents
|
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
get { return GetParents().OfType<Folder>(); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BaseItem GetParent()
|
|
|
|
|
{
|
|
|
|
|
if (ParentId != Guid.Empty)
|
2013-11-20 03:15:48 +00:00
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
return LibraryManager.GetItemById(ParentId);
|
|
|
|
|
}
|
2015-12-27 21:49:04 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
return null;
|
|
|
|
|
}
|
2015-12-27 21:49:04 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
public IEnumerable<BaseItem> GetParents()
|
|
|
|
|
{
|
|
|
|
|
var parent = GetParent();
|
|
|
|
|
|
|
|
|
|
while (parent != null)
|
|
|
|
|
{
|
|
|
|
|
yield return parent;
|
|
|
|
|
|
|
|
|
|
parent = parent.GetParent();
|
2013-11-20 03:15:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-26 03:25:07 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Finds a parent of a given type
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
/// <returns>``0.</returns>
|
2015-05-05 23:15:47 +00:00
|
|
|
|
public T FindParent<T>()
|
2015-04-26 03:25:07 +00:00
|
|
|
|
where T : Folder
|
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
return GetParents().OfType<T>().FirstOrDefault();
|
2015-04-26 03:25:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-24 04:54:35 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-04-09 04:16:53 +00:00
|
|
|
|
public virtual Guid? DisplayParentId
|
2014-10-24 04:54:35 +00:00
|
|
|
|
{
|
2016-04-09 04:16:53 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (ParentId == Guid.Empty)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return ParentId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public BaseItem DisplayParent
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var id = DisplayParentId;
|
2016-04-11 04:24:16 +00:00
|
|
|
|
if (!id.HasValue || id.Value == Guid.Empty)
|
2016-04-09 04:16:53 +00:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return LibraryManager.GetItemById(id.Value);
|
|
|
|
|
}
|
2014-10-24 04:54:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00: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 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public DateTime? PremiereDate { get; set; }
|
|
|
|
|
|
2013-04-12 14:13:47 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the end date.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The end date.</value>
|
2015-09-10 03:22:52 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-04-12 14:13:47 +00:00
|
|
|
|
public DateTime? EndDate { get; set; }
|
2013-04-13 23:43:41 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the display type of the media.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The display type of the media.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-06-14 12:18:40 +00:00
|
|
|
|
public string DisplayMediaType { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the official rating.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The official rating.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-08-03 13:24:23 +00:00
|
|
|
|
public string OfficialRating { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2016-08-26 17:24:04 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public int InheritedParentalRatingValue { get; set; }
|
|
|
|
|
|
2016-09-21 21:09:14 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public List<string> InheritedTags { get; set; }
|
|
|
|
|
|
2016-03-25 02:54:38 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the critic rating.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The critic rating.</value>
|
2016-05-06 04:50:39 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-03-25 02:54:38 +00:00
|
|
|
|
public float? CriticRating { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the custom rating.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The custom rating.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-08-03 13:24:23 +00:00
|
|
|
|
public string CustomRating { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the overview.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The overview.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public string Overview { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the studios.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The studios.</value>
|
2016-03-18 06:36:58 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-08-07 15:59:13 +00:00
|
|
|
|
public List<string> Studios { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the genres.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The genres.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-08-07 17:11:02 +00:00
|
|
|
|
public List<string> Genres { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the tags.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The tags.</value>
|
2016-03-18 06:36:58 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-01-12 20:07:33 +00:00
|
|
|
|
public List<string> Tags { get; set; }
|
|
|
|
|
|
2016-05-31 18:07:54 +00:00
|
|
|
|
public List<string> Keywords { get; set; }
|
2016-10-09 07:18:43 +00:00
|
|
|
|
public List<string> ProductionLocations { get; set; }
|
2016-05-31 18:07:54 +00:00
|
|
|
|
|
2013-04-12 14:13:47 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the home page URL.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The home page URL.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-04-12 14:13:47 +00:00
|
|
|
|
public string HomePageUrl { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the community rating.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The community rating.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public float? CommunityRating { get; set; }
|
2013-07-05 17:40:51 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the run time ticks.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The run time ticks.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public long? RunTimeTicks { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the production year.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The production year.</value>
|
2016-01-12 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-08-07 15:59:13 +00:00
|
|
|
|
public int? ProductionYear { get; set; }
|
2013-02-21 01:33:05 +00: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 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00: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 20:07:33 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public int? ParentIndexNumber { get; set; }
|
|
|
|
|
|
2015-11-09 18:18:37 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-01-12 20:07:33 +00:00
|
|
|
|
public string OfficialRatingForComparison
|
2013-08-03 13:24:23 +00:00
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(OfficialRating))
|
|
|
|
|
{
|
|
|
|
|
return OfficialRating;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var parent = DisplayParent;
|
|
|
|
|
if (parent != null)
|
|
|
|
|
{
|
|
|
|
|
return parent.OfficialRatingForComparison;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2013-08-03 13:24:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
2014-02-06 15:58:49 +00:00
|
|
|
|
public string CustomRatingForComparison
|
2013-08-03 13:24:23 +00:00
|
|
|
|
{
|
2014-02-06 15:58:49 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
2015-10-19 10:51:20 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(CustomRating))
|
2014-02-06 15:58:49 +00:00
|
|
|
|
{
|
|
|
|
|
return CustomRating;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-24 04:54:35 +00:00
|
|
|
|
var parent = DisplayParent;
|
2014-02-06 15:58:49 +00:00
|
|
|
|
if (parent != null)
|
|
|
|
|
{
|
|
|
|
|
return parent.CustomRatingForComparison;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2013-08-03 13:24:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-21 05:35:56 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the play access.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
|
/// <returns>PlayAccess.</returns>
|
|
|
|
|
public PlayAccess GetPlayAccess(User user)
|
|
|
|
|
{
|
2014-12-20 06:06:27 +00:00
|
|
|
|
if (!user.Policy.EnableMediaPlayback)
|
2014-02-21 05:35:56 +00:00
|
|
|
|
{
|
|
|
|
|
return PlayAccess.None;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-15 00:05:09 +00:00
|
|
|
|
//if (!user.IsParentalScheduleAllowed())
|
|
|
|
|
//{
|
|
|
|
|
// return PlayAccess.None;
|
|
|
|
|
//}
|
|
|
|
|
|
2014-02-21 05:35:56 +00:00
|
|
|
|
return PlayAccess.Full;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-24 16:03:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Loads the theme songs.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>List{Audio.Audio}.</returns>
|
2016-10-09 07:18:43 +00:00
|
|
|
|
private static IEnumerable<Audio.Audio> LoadThemeSongs(List<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
|
2013-04-24 16:03:10 +00:00
|
|
|
|
{
|
2015-10-20 22:42:22 +00:00
|
|
|
|
var files = fileSystemChildren.Where(i => i.IsDirectory)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
.Where(i => string.Equals(i.Name, ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
|
2015-10-19 10:51:20 +00:00
|
|
|
|
.SelectMany(i => directoryService.GetFiles(i.FullName))
|
2014-02-06 04:39:16 +00:00
|
|
|
|
.ToList();
|
2013-04-24 16:03:10 +00:00
|
|
|
|
|
2013-05-30 18:19:30 +00:00
|
|
|
|
// Support plex/xbmc convention
|
2015-10-04 03:38:46 +00:00
|
|
|
|
files.AddRange(fileSystemChildren
|
|
|
|
|
.Where(i => !i.IsDirectory && string.Equals(FileSystem.GetFileNameWithoutExtension(i), ThemeSongFilename, StringComparison.OrdinalIgnoreCase))
|
2013-05-30 18:19:30 +00:00
|
|
|
|
);
|
2013-04-24 16:03:10 +00:00
|
|
|
|
|
2016-08-13 05:49:00 +00:00
|
|
|
|
return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())
|
2014-12-04 05:24:41 +00:00
|
|
|
|
.OfType<Audio.Audio>()
|
|
|
|
|
.Select(audio =>
|
2016-01-12 20:03:06 +00:00
|
|
|
|
{
|
2016-01-12 20:07:33 +00: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;
|
2014-02-06 16:46:26 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
if (dbItem != null)
|
|
|
|
|
{
|
|
|
|
|
audio = dbItem;
|
|
|
|
|
}
|
2015-11-21 05:01:16 +00:00
|
|
|
|
|
2016-10-31 05:51:43 +00:00
|
|
|
|
audio.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeSong;
|
2015-12-27 21:49:04 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
return audio;
|
|
|
|
|
|
|
|
|
|
// Sort them so that the list can be easily compared for changes
|
|
|
|
|
}).OrderBy(i => i.Path).ToList();
|
2013-04-24 16:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-28 16:25:14 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Loads the video backdrops.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>List{Video}.</returns>
|
2016-10-09 07:18:43 +00:00
|
|
|
|
private static IEnumerable<Video> LoadThemeVideos(IEnumerable<FileSystemMetadata> fileSystemChildren, IDirectoryService directoryService)
|
2013-04-28 16:25:14 +00:00
|
|
|
|
{
|
2015-10-20 22:42:22 +00:00
|
|
|
|
var files = fileSystemChildren.Where(i => i.IsDirectory)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
.Where(i => string.Equals(i.Name, ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
|
2015-10-19 10:51:20 +00:00
|
|
|
|
.SelectMany(i => directoryService.GetFiles(i.FullName));
|
2013-04-28 16:25:14 +00:00
|
|
|
|
|
2016-08-13 05:49:00 +00:00
|
|
|
|
return LibraryManager.ResolvePaths(files, directoryService, null, new LibraryOptions())
|
2014-12-04 05:24:41 +00:00
|
|
|
|
.OfType<Video>()
|
|
|
|
|
.Select(item =>
|
2016-01-12 20:03:06 +00:00
|
|
|
|
{
|
2016-01-12 20:07:33 +00: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 16:25:14 +00:00
|
|
|
|
|
2016-10-31 05:51:43 +00:00
|
|
|
|
item.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeVideo;
|
2014-09-22 21:56:54 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
return item;
|
2014-02-06 16:46:26 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
// Sort them so that the list can be easily compared for changes
|
|
|
|
|
}).OrderBy(i => i.Path).ToList();
|
2013-04-28 16:25:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public Task RefreshMetadata(CancellationToken cancellationToken)
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
2016-08-06 04:48:00 +00:00
|
|
|
|
return RefreshMetadata(new MetadataRefreshOptions(new DirectoryService(Logger, FileSystem)), cancellationToken);
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Overrides the base implementation to refresh metadata for local trailers
|
|
|
|
|
/// </summary>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <param name="options">The options.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>true if a provider reports we changed</returns>
|
2015-03-11 02:07:07 +00:00
|
|
|
|
public async Task<ItemUpdateType> RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
var locationType = LocationType;
|
|
|
|
|
|
2014-02-10 18:39:41 +00:00
|
|
|
|
var requiresSave = false;
|
|
|
|
|
|
2015-01-28 21:29:02 +00:00
|
|
|
|
if (SupportsOwnedItems)
|
2013-06-20 19:07:58 +00:00
|
|
|
|
{
|
2014-02-13 05:11:54 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2014-02-17 21:35:08 +00:00
|
|
|
|
var files = locationType != LocationType.Remote && locationType != LocationType.Virtual ?
|
2014-02-13 05:11:54 +00:00
|
|
|
|
GetFileSystemChildren(options.DirectoryService).ToList() :
|
2015-10-04 03:38:46 +00:00
|
|
|
|
new List<FileSystemMetadata>();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-02-13 05:11:54 +00:00
|
|
|
|
var ownedItemsChanged = await RefreshedOwnedItems(options, files, cancellationToken).ConfigureAwait(false);
|
2014-02-10 18:39:41 +00:00
|
|
|
|
|
2014-02-13 05:11:54 +00:00
|
|
|
|
if (ownedItemsChanged)
|
|
|
|
|
{
|
|
|
|
|
requiresSave = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
2014-02-10 18:39:41 +00:00
|
|
|
|
{
|
2014-02-13 05:11:54 +00:00
|
|
|
|
Logger.ErrorException("Error refreshing owned items for {0}", ex, Path ?? Name);
|
2014-02-10 18:39:41 +00:00
|
|
|
|
}
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
2014-02-03 05:35:43 +00:00
|
|
|
|
|
2015-03-11 02:07:07 +00:00
|
|
|
|
var refreshOptions = requiresSave
|
|
|
|
|
? new MetadataRefreshOptions(options)
|
|
|
|
|
{
|
|
|
|
|
ForceSave = true
|
|
|
|
|
}
|
|
|
|
|
: options;
|
2014-02-10 18:39:41 +00:00
|
|
|
|
|
2016-05-25 02:06:56 +00:00
|
|
|
|
return await ProviderManager.RefreshSingleItem(this, refreshOptions, cancellationToken).ConfigureAwait(false);
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-28 21:29:02 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
protected virtual bool SupportsOwnedItems
|
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
get { return IsFolder || GetParent() != null; }
|
2015-01-28 21:29:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-29 01:10:45 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool SupportsPeople
|
|
|
|
|
{
|
|
|
|
|
get { return true; }
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-09 07:18:43 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool SupportsThemeMedia
|
|
|
|
|
{
|
|
|
|
|
get { return false; }
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 18:39:41 +00: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 03:38:46 +00:00
|
|
|
|
protected virtual async Task<bool> RefreshedOwnedItems(MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
|
2014-02-03 05:35:43 +00:00
|
|
|
|
{
|
2013-06-17 20:35:43 +00:00
|
|
|
|
var themeSongsChanged = false;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-06-17 20:35:43 +00:00
|
|
|
|
var themeVideosChanged = false;
|
2013-04-28 16:25:14 +00:00
|
|
|
|
|
2013-06-17 20:35:43 +00:00
|
|
|
|
var localTrailersChanged = false;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
if (LocationType == LocationType.FileSystem && GetParent() != null)
|
2013-06-17 20:35:43 +00:00
|
|
|
|
{
|
2016-10-09 07:18:43 +00:00
|
|
|
|
if (SupportsThemeMedia)
|
2013-12-05 16:50:21 +00:00
|
|
|
|
{
|
2016-10-07 15:08:13 +00:00
|
|
|
|
if (!DetectIsInMixedFolder())
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
2016-10-09 07:18:43 +00:00
|
|
|
|
themeSongsChanged = await RefreshThemeSongs(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
|
2013-06-17 20:35:43 +00:00
|
|
|
|
|
2016-10-09 07:18:43 +00:00
|
|
|
|
themeVideosChanged = await RefreshThemeVideos(this, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
2013-12-05 16:50:21 +00:00
|
|
|
|
}
|
2013-06-17 20:35:43 +00:00
|
|
|
|
|
2013-12-02 16:46:25 +00:00
|
|
|
|
var hasTrailers = this as IHasTrailers;
|
|
|
|
|
if (hasTrailers != null)
|
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
localTrailersChanged = await RefreshLocalTrailers(hasTrailers, options, fileSystemChildren, cancellationToken).ConfigureAwait(false);
|
2013-12-02 16:46:25 +00:00
|
|
|
|
}
|
2013-06-17 20:35:43 +00:00
|
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
2014-02-10 18:39:41 +00:00
|
|
|
|
return themeSongsChanged || themeVideosChanged || localTrailersChanged;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
protected virtual IEnumerable<FileSystemMetadata> GetFileSystemChildren(IDirectoryService directoryService)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
|
|
|
|
var path = ContainingFolderPath;
|
|
|
|
|
|
2014-02-08 22:38:02 +00:00
|
|
|
|
return directoryService.GetFileSystemEntries(path);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
private async Task<bool> RefreshLocalTrailers(IHasTrailers item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
|
2013-05-08 20:58:52 +00:00
|
|
|
|
{
|
2014-12-01 18:42:07 +00:00
|
|
|
|
var newItems = LibraryManager.FindTrailers(this, fileSystemChildren, options.DirectoryService).ToList();
|
|
|
|
|
|
2013-05-08 20:58:52 +00:00
|
|
|
|
var newItemIds = newItems.Select(i => i.Id).ToList();
|
|
|
|
|
|
2013-12-02 16:46:25 +00:00
|
|
|
|
var itemsChanged = !item.LocalTrailerIds.SequenceEqual(newItemIds);
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2016-10-16 17:11:32 +00:00
|
|
|
|
var tasks = newItems.Select(i => RefreshMetadataForOwnedItem(i, true, options, cancellationToken));
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
await Task.WhenAll(tasks).ConfigureAwait(false);
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2013-12-02 16:46:25 +00:00
|
|
|
|
item.LocalTrailerIds = newItemIds;
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
return itemsChanged;
|
2013-05-08 20:58:52 +00:00
|
|
|
|
}
|
2013-06-13 18:17:42 +00:00
|
|
|
|
|
2016-10-16 17:11:32 +00:00
|
|
|
|
private async Task<bool> RefreshThemeVideos(BaseItem item, MetadataRefreshOptions options, IEnumerable<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
|
2013-05-08 20:58:52 +00:00
|
|
|
|
{
|
2014-02-13 05:11:54 +00:00
|
|
|
|
var newThemeVideos = LoadThemeVideos(fileSystemChildren, options.DirectoryService).ToList();
|
2014-02-06 16:46:26 +00:00
|
|
|
|
|
2013-05-08 20:58:52 +00:00
|
|
|
|
var newThemeVideoIds = newThemeVideos.Select(i => i.Id).ToList();
|
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
var themeVideosChanged = !item.ThemeVideoIds.SequenceEqual(newThemeVideoIds);
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2014-08-26 02:30:52 +00:00
|
|
|
|
var tasks = newThemeVideos.Select(i =>
|
|
|
|
|
{
|
|
|
|
|
var subOptions = new MetadataRefreshOptions(options);
|
|
|
|
|
|
|
|
|
|
if (!i.IsThemeMedia)
|
|
|
|
|
{
|
2016-10-31 05:51:43 +00:00
|
|
|
|
i.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeVideo;
|
2014-08-26 02:30:52 +00:00
|
|
|
|
subOptions.ForceSave = true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-16 17:11:32 +00:00
|
|
|
|
return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);
|
2014-08-26 02:30:52 +00:00
|
|
|
|
});
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
await Task.WhenAll(tasks).ConfigureAwait(false);
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
item.ThemeVideoIds = newThemeVideoIds;
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
return themeVideosChanged;
|
2013-05-08 20:58:52 +00:00
|
|
|
|
}
|
2013-06-13 18:17:42 +00:00
|
|
|
|
|
2013-05-08 20:58:52 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Refreshes the theme songs.
|
|
|
|
|
/// </summary>
|
2016-10-16 17:11:32 +00:00
|
|
|
|
private async Task<bool> RefreshThemeSongs(BaseItem item, MetadataRefreshOptions options, List<FileSystemMetadata> fileSystemChildren, CancellationToken cancellationToken)
|
2013-05-08 20:58:52 +00:00
|
|
|
|
{
|
2014-02-13 05:11:54 +00:00
|
|
|
|
var newThemeSongs = LoadThemeSongs(fileSystemChildren, options.DirectoryService).ToList();
|
2013-05-08 20:58:52 +00:00
|
|
|
|
var newThemeSongIds = newThemeSongs.Select(i => i.Id).ToList();
|
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
var themeSongsChanged = !item.ThemeSongIds.SequenceEqual(newThemeSongIds);
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2014-08-26 02:30:52 +00:00
|
|
|
|
var tasks = newThemeSongs.Select(i =>
|
|
|
|
|
{
|
|
|
|
|
var subOptions = new MetadataRefreshOptions(options);
|
|
|
|
|
|
|
|
|
|
if (!i.IsThemeMedia)
|
|
|
|
|
{
|
2016-10-31 05:51:43 +00:00
|
|
|
|
i.ExtraType = MediaBrowser.Model.Entities.ExtraType.ThemeSong;
|
2014-08-26 02:30:52 +00:00
|
|
|
|
subOptions.ForceSave = true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-16 17:11:32 +00:00
|
|
|
|
return RefreshMetadataForOwnedItem(i, true, subOptions, cancellationToken);
|
2014-08-26 02:30:52 +00:00
|
|
|
|
});
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
await Task.WhenAll(tasks).ConfigureAwait(false);
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
item.ThemeSongIds = newThemeSongIds;
|
2013-05-08 20:58:52 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
return themeSongsChanged;
|
2013-05-08 20:58:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the provider ids.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The provider ids.</value>
|
|
|
|
|
public Dictionary<string, string> ProviderIds { get; set; }
|
|
|
|
|
|
2014-07-05 05:21:13 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual Folder LatestItemsIndexContainer
|
|
|
|
|
{
|
|
|
|
|
get { return null; }
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-10 20:06:52 +00:00
|
|
|
|
public virtual double? GetDefaultPrimaryImageAspectRatio()
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-12 19:11:45 +00:00
|
|
|
|
public virtual string CreatePresentationUniqueKey()
|
|
|
|
|
{
|
|
|
|
|
return Id.ToString("N");
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-01 22:11:24 +00:00
|
|
|
|
[IgnoreDataMember]
|
2016-08-12 19:11:45 +00:00
|
|
|
|
public string PresentationUniqueKey { get; set; }
|
|
|
|
|
|
|
|
|
|
public string GetPresentationUniqueKey()
|
2016-05-01 22:11:24 +00:00
|
|
|
|
{
|
2016-08-12 19:11:45 +00:00
|
|
|
|
return PresentationUniqueKey ?? CreatePresentationUniqueKey();
|
2016-05-01 22:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-05-09 03:13:38 +00:00
|
|
|
|
public virtual bool RequiresRefresh()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 23:05:21 +00:00
|
|
|
|
public virtual List<string> GetUserDataKeys()
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2016-04-30 23:05:21 +00:00
|
|
|
|
var list = new List<string>();
|
|
|
|
|
|
2016-03-19 05:04:38 +00:00
|
|
|
|
if (SourceType == SourceType.Channel)
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(ExternalId))
|
|
|
|
|
{
|
2016-04-30 23:05:21 +00:00
|
|
|
|
list.Add(ExternalId);
|
2016-03-19 05:04:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-30 23:05:21 +00:00
|
|
|
|
|
|
|
|
|
list.Add(Id.ToString());
|
|
|
|
|
return list;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-03 03:13:03 +00:00
|
|
|
|
internal virtual bool IsValidFromResolver(BaseItem newItem)
|
|
|
|
|
{
|
|
|
|
|
var current = this;
|
|
|
|
|
|
2016-10-07 15:08:13 +00:00
|
|
|
|
if (!SupportsIsInMixedFolderDetection)
|
|
|
|
|
{
|
|
|
|
|
if (current.IsInMixedFolder != newItem.IsInMixedFolder)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
2014-12-03 03:13:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-27 06:50:40 +00:00
|
|
|
|
public void AfterMetadataRefresh()
|
|
|
|
|
{
|
2017-06-03 07:36:32 +00:00
|
|
|
|
_sortName = null;
|
2015-01-27 06:50:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 00:23:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the preferred metadata language.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2013-12-28 16:58:13 +00:00
|
|
|
|
public string GetPreferredMetadataLanguage()
|
2013-12-27 00:23:58 +00:00
|
|
|
|
{
|
2015-09-29 17:35:23 +00:00
|
|
|
|
string lang = PreferredMetadataLanguage;
|
2013-12-27 00:23:58 +00:00
|
|
|
|
|
2015-02-15 03:36:07 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(lang))
|
2013-12-28 16:58:13 +00:00
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
lang = GetParents()
|
2013-12-28 16:58:13 +00:00
|
|
|
|
.Select(i => i.PreferredMetadataLanguage)
|
2015-02-15 03:36:07 +00:00
|
|
|
|
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
|
2013-12-28 16:58:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-15 03:36:07 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(lang))
|
|
|
|
|
{
|
|
|
|
|
lang = LibraryManager.GetCollectionFolders(this)
|
|
|
|
|
.Select(i => i.PreferredMetadataLanguage)
|
|
|
|
|
.FirstOrDefault(i => !string.IsNullOrWhiteSpace(i));
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-21 23:37:38 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(lang))
|
|
|
|
|
{
|
|
|
|
|
lang = LibraryManager.GetLibraryOptions(this).PreferredMetadataLanguage;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-15 03:36:07 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(lang))
|
2013-12-27 00:23:58 +00:00
|
|
|
|
{
|
|
|
|
|
lang = ConfigurationManager.Configuration.PreferredMetadataLanguage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return lang;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-28 16:58:13 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the preferred metadata language.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public string GetPreferredMetadataCountryCode()
|
|
|
|
|
{
|
2015-09-29 17:35:23 +00:00
|
|
|
|
string lang = PreferredMetadataCountryCode;
|
2013-12-28 16:58:13 +00:00
|
|
|
|
|
2015-02-15 03:36:07 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(lang))
|
2013-12-28 16:58:13 +00:00
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
lang = GetParents()
|
2013-12-28 16:58:13 +00:00
|
|
|
|
.Select(i => i.PreferredMetadataCountryCode)
|
2015-02-15 03:36:07 +00: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 16:58:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-21 23:37:38 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(lang))
|
|
|
|
|
{
|
|
|
|
|
lang = LibraryManager.GetLibraryOptions(this).MetadataCountryCode;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-15 03:36:07 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(lang))
|
2013-12-28 16:58:13 +00:00
|
|
|
|
{
|
|
|
|
|
lang = ConfigurationManager.Configuration.MetadataCountryCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return lang;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-01 18:26:31 +00:00
|
|
|
|
public virtual bool IsSaveLocalMetadataEnabled()
|
|
|
|
|
{
|
2016-03-19 05:04:38 +00:00
|
|
|
|
if (SourceType == SourceType.Channel)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2016-03-24 20:27:44 +00:00
|
|
|
|
|
2016-10-02 04:31:47 +00:00
|
|
|
|
var libraryOptions = LibraryManager.GetLibraryOptions(this);
|
|
|
|
|
|
|
|
|
|
return libraryOptions.SaveLocalMetadata;
|
2014-01-01 18:26:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00: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>
|
2013-06-10 17:46:11 +00:00
|
|
|
|
/// <exception cref="System.ArgumentNullException">user</exception>
|
2014-01-01 18:26:31 +00:00
|
|
|
|
public bool IsParentalAllowed(User user)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
2013-04-22 15:38:38 +00:00
|
|
|
|
throw new ArgumentNullException("user");
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-29 02:40:46 +00:00
|
|
|
|
if (!IsVisibleViaTags(user))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-20 06:06:27 +00:00
|
|
|
|
var maxAllowedRating = user.Policy.MaxParentalRating;
|
2013-09-18 23:33:21 +00:00
|
|
|
|
|
|
|
|
|
if (maxAllowedRating == null)
|
2013-04-22 15:38:38 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-03 13:24:23 +00:00
|
|
|
|
var rating = CustomRatingForComparison;
|
2013-06-10 17:46:11 +00:00
|
|
|
|
|
2014-09-23 04:05:29 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(rating))
|
2013-07-16 17:18:32 +00:00
|
|
|
|
{
|
2015-11-09 18:18:37 +00:00
|
|
|
|
rating = OfficialRatingForComparison;
|
2013-07-16 17:18:32 +00:00
|
|
|
|
}
|
2013-08-07 15:59:13 +00:00
|
|
|
|
|
2014-09-23 04:05:29 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(rating))
|
2013-05-23 15:07:25 +00:00
|
|
|
|
{
|
2014-12-20 06:06:27 +00:00
|
|
|
|
return !GetBlockUnratedValue(user.Policy);
|
2013-05-23 15:07:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-01 18:26:31 +00:00
|
|
|
|
var value = LocalizationManager.GetRatingLevel(rating);
|
2013-06-10 17:46:11 +00:00
|
|
|
|
|
|
|
|
|
// Could not determine the integer value
|
|
|
|
|
if (!value.HasValue)
|
|
|
|
|
{
|
2015-10-19 10:51:20 +00:00
|
|
|
|
var isAllowed = !GetBlockUnratedValue(user.Policy);
|
|
|
|
|
|
|
|
|
|
if (!isAllowed)
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("{0} has an unrecognized parental rating of {1}.", Name, rating);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return isAllowed;
|
2013-06-10 17:46:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-18 23:33:21 +00:00
|
|
|
|
return value.Value <= maxAllowedRating.Value;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-28 12:33:30 +00:00
|
|
|
|
public int? GetParentalRatingValue()
|
2016-01-12 20:07:33 +00: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 12:33:30 +00:00
|
|
|
|
{
|
|
|
|
|
var rating = CustomRatingForComparison;
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(rating))
|
|
|
|
|
{
|
2015-11-09 18:18:37 +00:00
|
|
|
|
rating = OfficialRatingForComparison;
|
2015-07-28 12:33:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-28 19:42:24 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(rating))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-28 12:33:30 +00:00
|
|
|
|
return LocalizationManager.GetRatingLevel(rating);
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-15 02:39:39 +00: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 02:40:46 +00:00
|
|
|
|
private bool IsVisibleViaTags(User user)
|
|
|
|
|
{
|
2016-06-02 17:43:29 +00:00
|
|
|
|
var policy = user.Policy;
|
|
|
|
|
if (policy.BlockedTags.Any(i => Tags.Contains(i, StringComparer.OrdinalIgnoreCase)))
|
2014-11-29 02:40:46 +00:00
|
|
|
|
{
|
2016-06-02 17:43:29 +00:00
|
|
|
|
return false;
|
2015-02-09 06:17:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-09 06:56:45 +00:00
|
|
|
|
protected virtual bool IsAllowTagFilterEnforced()
|
2015-02-09 06:17:11 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
public virtual UnratedItem GetBlockUnratedType()
|
|
|
|
|
{
|
2016-03-19 05:04:38 +00:00
|
|
|
|
if (SourceType == SourceType.Channel)
|
|
|
|
|
{
|
|
|
|
|
return UnratedItem.ChannelContent;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
return UnratedItem.Other;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-26 16:53:23 +00: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 06:06:27 +00:00
|
|
|
|
protected virtual bool GetBlockUnratedValue(UserPolicy config)
|
2013-12-26 16:53:23 +00:00
|
|
|
|
{
|
2015-10-26 16:21:00 +00: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 20:07:33 +00:00
|
|
|
|
return config.BlockUnratedItems.Contains(GetBlockUnratedType());
|
2013-12-26 16:53:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00: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");
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-01 18:26:31 +00:00
|
|
|
|
return IsParentalAllowed(user);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-03 21:06:56 +00:00
|
|
|
|
public virtual bool IsVisibleStandalone(User user)
|
2015-04-10 14:49:03 +00:00
|
|
|
|
{
|
2016-03-19 05:04:38 +00:00
|
|
|
|
if (SourceType == SourceType.Channel)
|
|
|
|
|
{
|
2016-03-19 05:14:47 +00:00
|
|
|
|
return IsVisibleStandaloneInternal(user, false) && Channel.IsChannelVisible(this, user);
|
2016-03-19 05:04:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-10 14:49:03 +00:00
|
|
|
|
return IsVisibleStandaloneInternal(user, true);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-21 08:54:53 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool SupportsInheritedParentImages
|
|
|
|
|
{
|
|
|
|
|
get { return false; }
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-10 14:49:03 +00:00
|
|
|
|
protected bool IsVisibleStandaloneInternal(User user, bool checkFolders)
|
2015-02-03 21:06:56 +00:00
|
|
|
|
{
|
|
|
|
|
if (!IsVisible(user))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
if (GetParents().Any(i => !i.IsVisible(user)))
|
2015-02-03 21:06:56 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-10 14:49:03 +00:00
|
|
|
|
if (checkFolders)
|
2015-04-06 03:47:01 +00:00
|
|
|
|
{
|
2016-01-12 20:07:33 +00:00
|
|
|
|
var topParent = GetParents().LastOrDefault() ?? this;
|
2015-04-06 03:47:01 +00:00
|
|
|
|
|
2015-04-10 14:49:03 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(topParent.Path))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2015-04-06 03:47:01 +00:00
|
|
|
|
|
2017-01-20 18:30:22 +00:00
|
|
|
|
var itemCollectionFolders = LibraryManager.GetCollectionFolders(this).Select(i => i.Id).ToList();
|
2015-04-10 14:49:03 +00:00
|
|
|
|
|
2017-01-20 18:30:22 +00:00
|
|
|
|
if (itemCollectionFolders.Count > 0)
|
2015-04-10 14:49:03 +00:00
|
|
|
|
{
|
2017-01-20 18:30:22 +00:00
|
|
|
|
var userCollectionFolders = user.RootFolder.GetChildren(user, true).Select(i => i.Id).ToList();
|
|
|
|
|
if (!itemCollectionFolders.Any(userCollectionFolders.Contains))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-04-10 14:49:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
2015-02-03 21:06:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00: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 04:38:03 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool IsDisplayedAsFolder
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-21 20:48:26 +00:00
|
|
|
|
public virtual string GetClientTypeName()
|
|
|
|
|
{
|
2016-04-09 04:16:53 +00:00
|
|
|
|
if (IsFolder && SourceType == SourceType.Channel && !(this is Channel))
|
2016-03-19 15:38:05 +00:00
|
|
|
|
{
|
|
|
|
|
return "ChannelFolderItem";
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-21 20:48:26 +00:00
|
|
|
|
return GetType().Name;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-15 22:52:43 +00:00
|
|
|
|
/// <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)
|
|
|
|
|
{
|
2017-05-30 18:24:50 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(info.Path))
|
2014-03-15 22:52:43 +00:00
|
|
|
|
{
|
2016-04-27 17:53:23 +00:00
|
|
|
|
var itemByPath = LibraryManager.FindByPath(info.Path, null);
|
2014-03-15 22:52:43 +00:00
|
|
|
|
|
|
|
|
|
if (itemByPath == null)
|
|
|
|
|
{
|
2016-04-27 02:59:43 +00:00
|
|
|
|
//Logger.Warn("Unable to find linked item at path {0}", info.Path);
|
2014-03-15 22:52:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return itemByPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-27 18:44:08 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool EnableRememberingTrackSelections
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00: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 04:12:05 +00:00
|
|
|
|
throw new ArgumentNullException("name");
|
2013-02-21 01:33:05 +00: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))
|
|
|
|
|
{
|
2013-04-12 14:13:47 +00:00
|
|
|
|
throw new ArgumentNullException("name");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!Genres.Contains(name, StringComparer.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
Genres.Add(name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-09-21 19:24:50 +00:00
|
|
|
|
/// Marks the played.
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
2013-09-21 19:24:50 +00:00
|
|
|
|
/// <param name="datePlayed">The date played.</param>
|
2014-10-25 18:32:58 +00:00
|
|
|
|
/// <param name="resetPosition">if set to <c>true</c> [reset position].</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
/// <exception cref="System.ArgumentNullException"></exception>
|
2014-12-03 03:13:03 +00:00
|
|
|
|
public virtual async Task MarkPlayed(User user,
|
2014-10-25 18:32:58 +00:00
|
|
|
|
DateTime? datePlayed,
|
|
|
|
|
bool resetPosition)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException();
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 22:05:13 +00:00
|
|
|
|
var data = UserDataManager.GetUserData(user, this);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-10-28 14:56:57 +00:00
|
|
|
|
if (datePlayed.HasValue)
|
|
|
|
|
{
|
2016-07-01 15:51:35 +00:00
|
|
|
|
// Increment
|
2013-10-28 14:56:57 +00:00
|
|
|
|
data.PlayCount++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Ensure it's at least one
|
2013-09-21 19:24:50 +00:00
|
|
|
|
data.PlayCount = Math.Max(data.PlayCount, 1);
|
|
|
|
|
|
2014-10-25 18:32:58 +00:00
|
|
|
|
if (resetPosition)
|
|
|
|
|
{
|
|
|
|
|
data.PlaybackPositionTicks = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-01 15:51:35 +00:00
|
|
|
|
data.LastPlayedDate = datePlayed ?? data.LastPlayedDate ?? DateTime.UtcNow;
|
2013-09-21 19:24:50 +00:00
|
|
|
|
data.Played = true;
|
|
|
|
|
|
2014-10-25 18:32:58 +00:00
|
|
|
|
await UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None).ConfigureAwait(false);
|
2013-09-21 19:24:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Marks the unplayed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
/// <exception cref="System.ArgumentNullException"></exception>
|
2014-10-25 18:32:58 +00:00
|
|
|
|
public virtual async Task MarkUnplayed(User user)
|
2013-09-21 19:24:50 +00:00
|
|
|
|
{
|
|
|
|
|
if (user == null)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-09-21 19:24:50 +00:00
|
|
|
|
throw new ArgumentNullException();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 22:05:13 +00:00
|
|
|
|
var data = UserDataManager.GetUserData(user, this);
|
2013-09-21 19:24:50 +00:00
|
|
|
|
|
|
|
|
|
//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 01:33:05 +00:00
|
|
|
|
|
2014-10-25 18:32:58 +00:00
|
|
|
|
await UserDataManager.SaveUserData(user.Id, this, data, UserDataSaveReason.TogglePlayed, CancellationToken.None).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Do whatever refreshing is necessary when the filesystem pertaining to this item has changed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task.</returns>
|
2017-05-27 07:19:09 +00:00
|
|
|
|
public virtual void ChangedExternally()
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2017-05-27 07:19:09 +00:00
|
|
|
|
ProviderManager.QueueRefresh(Id, new MetadataRefreshOptions(FileSystem)
|
|
|
|
|
{
|
|
|
|
|
ValidateChildren = true,
|
|
|
|
|
|
|
|
|
|
}, RefreshPriority.High);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets an image
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="type">The type.</param>
|
2013-12-19 21:51:32 +00:00
|
|
|
|
/// <param name="imageIndex">Index of the image.</param>
|
2013-02-21 01:33:05 +00: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 21:51:32 +00:00
|
|
|
|
public bool HasImage(ImageType type, int imageIndex)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
return GetImageInfo(type, imageIndex) != null;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 17:06:31 +00: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 03:38:46 +00:00
|
|
|
|
public void SetImagePath(ImageType type, int index, FileSystemMetadata file)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (type == ImageType.Chapter)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
throw new ArgumentException("Cannot set chapter images using SetImagePath");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
var image = GetImageInfo(type, index);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (image == null)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-10-12 15:18:26 +00:00
|
|
|
|
ImageInfos.Add(GetImageInfo(file, type));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-10-12 15:18:26 +00:00
|
|
|
|
var imageInfo = GetImageInfo(file, type);
|
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
image.Path = file.FullName;
|
2014-10-12 15:18:26 +00:00
|
|
|
|
image.DateModified = imageInfo.DateModified;
|
2015-11-21 00:27:34 +00:00
|
|
|
|
image.IsPlaceholder = false;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Deletes the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="type">The type.</param>
|
2013-05-05 04:49:49 +00:00
|
|
|
|
/// <param name="index">The index.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <returns>Task.</returns>
|
2014-02-07 20:30:41 +00:00
|
|
|
|
public Task DeleteImage(ImageType type, int index)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
var info = GetImageInfo(type, index);
|
2013-05-05 04:49:49 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (info == null)
|
2013-05-05 04:49:49 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
// Nothing to do
|
|
|
|
|
return Task.FromResult(true);
|
2013-05-05 04:49:49 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
// Remove it from the item
|
2015-04-11 01:42:37 +00:00
|
|
|
|
RemoveImage(info);
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2015-10-16 17:06:31 +00:00
|
|
|
|
if (info.IsLocalFile)
|
2013-10-22 19:03:21 +00:00
|
|
|
|
{
|
2016-11-09 17:24:57 +00:00
|
|
|
|
FileSystem.DeleteFile(info.Path);
|
2013-10-22 19:03:21 +00:00
|
|
|
|
}
|
2014-02-07 20:30:41 +00:00
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
return UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-11 01:42:37 +00:00
|
|
|
|
public void RemoveImage(ItemImageInfo image)
|
|
|
|
|
{
|
|
|
|
|
ImageInfos.Remove(image);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public virtual Task UpdateToRepository(ItemUpdateType updateReason, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2014-02-15 16:36:09 +00:00
|
|
|
|
return LibraryManager.UpdateItem(this, updateReason, cancellationToken);
|
2013-10-22 19:03:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 18:56:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Validates that images within the item are still on the file system
|
|
|
|
|
/// </summary>
|
2014-02-10 18:39:41 +00:00
|
|
|
|
public bool ValidateImages(IDirectoryService directoryService)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
{
|
2015-10-16 17:06:31 +00:00
|
|
|
|
var allFiles = ImageInfos
|
|
|
|
|
.Where(i => i.IsLocalFile)
|
2017-05-04 18:14:45 +00:00
|
|
|
|
.Select(i => FileSystem.GetDirectoryName(i.Path))
|
2015-10-16 17:06:31 +00:00
|
|
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
2017-03-29 06:26:48 +00:00
|
|
|
|
.SelectMany(directoryService.GetFilePaths)
|
2015-10-16 17:06:31 +00:00
|
|
|
|
.ToList();
|
2014-02-08 22:38:02 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
var deletedImages = ImageInfos
|
2015-10-16 17:06:31 +00:00
|
|
|
|
.Where(image => image.IsLocalFile && !allFiles.Contains(image.Path, StringComparer.OrdinalIgnoreCase))
|
2013-09-10 18:56:00 +00:00
|
|
|
|
.ToList();
|
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (deletedImages.Count > 0)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
ImageInfos = ImageInfos.Except(deletedImages).ToList();
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
return deletedImages.Count > 0;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-02-07 20:30:41 +00:00
|
|
|
|
/// Gets the image path.
|
2013-09-10 18:56:00 +00:00
|
|
|
|
/// </summary>
|
2014-02-07 20:30:41 +00: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)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
var info = GetImageInfo(imageType, imageIndex);
|
2013-10-22 19:03:21 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
return info == null ? null : info.Path;
|
2013-10-22 19:03:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-10 18:56:00 +00:00
|
|
|
|
/// <summary>
|
2014-02-07 20:30:41 +00:00
|
|
|
|
/// Gets the image information.
|
2013-09-10 18:56:00 +00:00
|
|
|
|
/// </summary>
|
2014-02-07 20:30:41 +00: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)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (imageType == ImageType.Chapter)
|
|
|
|
|
{
|
|
|
|
|
var chapter = ItemRepository.GetChapter(Id, imageIndex);
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (chapter == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
var path = chapter.ImagePath;
|
2013-12-05 16:50:21 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(path))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
return new ItemImageInfo
|
|
|
|
|
{
|
|
|
|
|
Path = path,
|
2016-07-06 17:44:44 +00:00
|
|
|
|
DateModified = chapter.ImageDateModified,
|
2015-04-19 19:17:17 +00:00
|
|
|
|
Type = imageType
|
2014-02-07 20:30:41 +00:00
|
|
|
|
};
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
return GetImages(imageType)
|
|
|
|
|
.ElementAtOrDefault(imageIndex);
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
2013-09-18 18:49:06 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
public IEnumerable<ItemImageInfo> GetImages(ImageType imageType)
|
2013-09-18 18:49:06 +00:00
|
|
|
|
{
|
|
|
|
|
if (imageType == ImageType.Chapter)
|
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
throw new ArgumentException("No image info for chapter images");
|
2013-09-18 18:49:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
return ImageInfos.Where(i => i.Type == imageType);
|
2013-09-18 18:49:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-02-07 20:30:41 +00:00
|
|
|
|
/// Adds the images.
|
2013-09-18 18:49:06 +00:00
|
|
|
|
/// </summary>
|
2014-02-07 20:30:41 +00: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 03:38:46 +00:00
|
|
|
|
public bool AddImages(ImageType imageType, List<FileSystemMetadata> images)
|
2013-09-18 18:49:06 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (imageType == ImageType.Chapter)
|
2013-09-18 18:49:06 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
throw new ArgumentException("Cannot call AddImages with chapter images");
|
2013-09-18 18:49:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-14 00:46:45 +00:00
|
|
|
|
var existingImages = GetImages(imageType)
|
2014-02-07 20:30:41 +00:00
|
|
|
|
.ToList();
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
var newImageList = new List<FileSystemMetadata>();
|
2015-04-11 01:42:37 +00:00
|
|
|
|
var imageAdded = false;
|
2014-05-14 00:46:45 +00:00
|
|
|
|
|
|
|
|
|
foreach (var newImage in images)
|
|
|
|
|
{
|
2015-01-04 05:55:34 +00:00
|
|
|
|
if (newImage == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("null image found in list");
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-14 00:46:45 +00:00
|
|
|
|
var existing = existingImages
|
|
|
|
|
.FirstOrDefault(i => string.Equals(i.Path, newImage.FullName, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
|
|
|
|
|
if (existing == null)
|
|
|
|
|
{
|
|
|
|
|
newImageList.Add(newImage);
|
2015-04-11 01:42:37 +00:00
|
|
|
|
imageAdded = true;
|
2014-05-14 00:46:45 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-10-16 17:06:31 +00:00
|
|
|
|
if (existing.IsLocalFile)
|
|
|
|
|
{
|
|
|
|
|
existing.DateModified = FileSystem.GetLastWriteTimeUtc(newImage);
|
|
|
|
|
}
|
2014-05-14 00:46:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-07 20:30:41 +00:00
|
|
|
|
|
2015-04-11 01:42:37 +00:00
|
|
|
|
if (imageAdded || images.Count != existingImages.Count)
|
|
|
|
|
{
|
|
|
|
|
var newImagePaths = images.Select(i => i.FullName).ToList();
|
|
|
|
|
|
|
|
|
|
var deleted = existingImages
|
2015-10-19 10:51:20 +00:00
|
|
|
|
.Where(i => i.IsLocalFile && !newImagePaths.Contains(i.Path, StringComparer.OrdinalIgnoreCase) && !FileSystem.FileExists(i.Path))
|
2015-04-11 01:42:37 +00:00
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
ImageInfos = ImageInfos.Except(deleted).ToList();
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-12 15:18:26 +00:00
|
|
|
|
ImageInfos.AddRange(newImageList.Select(i => GetImageInfo(i, imageType)));
|
2014-02-07 20:30:41 +00:00
|
|
|
|
|
2014-05-14 00:46:45 +00:00
|
|
|
|
return newImageList.Count > 0;
|
2013-09-18 18:49:06 +00:00
|
|
|
|
}
|
2013-12-01 19:31:58 +00:00
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
private ItemImageInfo GetImageInfo(FileSystemMetadata file, ImageType type)
|
2014-10-12 15:18:26 +00:00
|
|
|
|
{
|
2014-10-15 00:05:09 +00:00
|
|
|
|
return new ItemImageInfo
|
2014-10-12 15:18:26 +00:00
|
|
|
|
{
|
|
|
|
|
Path = file.FullName,
|
|
|
|
|
Type = type,
|
2015-04-19 19:17:17 +00:00
|
|
|
|
DateModified = FileSystem.GetLastWriteTimeUtc(file)
|
2014-10-12 15:18:26 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-01 19:31:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the file system path to delete when the item is to be deleted
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
2017-02-18 08:32:17 +00:00
|
|
|
|
public virtual IEnumerable<FileSystemMetadata> GetDeletePaths()
|
|
|
|
|
{
|
|
|
|
|
return new[] {
|
|
|
|
|
new FileSystemMetadata
|
|
|
|
|
{
|
|
|
|
|
FullName = Path,
|
|
|
|
|
IsDirectory = IsFolder
|
|
|
|
|
}
|
|
|
|
|
}.Concat(GetLocalMetadataFilesToDelete());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected List<FileSystemMetadata> GetLocalMetadataFilesToDelete()
|
2013-12-01 19:31:58 +00:00
|
|
|
|
{
|
2017-02-18 08:32:17 +00:00
|
|
|
|
if (IsFolder || !IsInMixedFolder)
|
|
|
|
|
{
|
|
|
|
|
return new List<FileSystemMetadata>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var filename = System.IO.Path.GetFileNameWithoutExtension(Path);
|
|
|
|
|
var extensions = new[] { ".nfo", ".xml", ".srt" }.ToList();
|
|
|
|
|
extensions.AddRange(SupportedImageExtensionsList);
|
|
|
|
|
|
2017-05-04 18:14:45 +00:00
|
|
|
|
return FileSystem.GetFiles(FileSystem.GetDirectoryName(Path), extensions.ToArray(), false, false)
|
2017-03-29 06:26:48 +00:00
|
|
|
|
.Where(i => System.IO.Path.GetFileNameWithoutExtension(i.FullName).StartsWith(filename, StringComparison.OrdinalIgnoreCase))
|
2017-02-18 08:32:17 +00:00
|
|
|
|
.ToList();
|
2013-12-01 19:31:58 +00:00
|
|
|
|
}
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
public bool AllowsMultipleImages(ImageType type)
|
|
|
|
|
{
|
|
|
|
|
return type == ImageType.Backdrop || type == ImageType.Screenshot || type == ImageType.Chapter;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 21:51:32 +00:00
|
|
|
|
public Task SwapImages(ImageType type, int index1, int index2)
|
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (!AllowsMultipleImages(type))
|
2013-12-19 21:51:32 +00:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("The change index operation is only applicable to backdrops and screenshots");
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
var info1 = GetImageInfo(type, index1);
|
|
|
|
|
var info2 = GetImageInfo(type, index2);
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
if (info1 == null || info2 == null)
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
// Nothing to do
|
|
|
|
|
return Task.FromResult(true);
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 17:06:31 +00:00
|
|
|
|
if (!info1.IsLocalFile || !info2.IsLocalFile)
|
|
|
|
|
{
|
|
|
|
|
// TODO: Not supported yet
|
|
|
|
|
return Task.FromResult(true);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
var path1 = info1.Path;
|
|
|
|
|
var path2 = info2.Path;
|
|
|
|
|
|
|
|
|
|
FileSystem.SwapFiles(path1, path2);
|
|
|
|
|
|
2014-02-09 21:23:55 +00:00
|
|
|
|
// Refresh these values
|
2015-04-19 19:17:17 +00:00
|
|
|
|
info1.DateModified = FileSystem.GetLastWriteTimeUtc(info1.Path);
|
|
|
|
|
info2.DateModified = FileSystem.GetLastWriteTimeUtc(info2.Path);
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
return UpdateToRepository(ItemUpdateType.ImageUpdate, CancellationToken.None);
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
2014-01-15 22:19:37 +00:00
|
|
|
|
|
|
|
|
|
public virtual bool IsPlayed(User user)
|
|
|
|
|
{
|
2016-04-30 22:05:13 +00:00
|
|
|
|
var userdata = UserDataManager.GetUserData(user, this);
|
2014-01-15 22:19:37 +00:00
|
|
|
|
|
|
|
|
|
return userdata != null && userdata.Played;
|
|
|
|
|
}
|
2014-01-18 05:55:21 +00:00
|
|
|
|
|
2014-05-18 21:23:03 +00:00
|
|
|
|
public bool IsFavoriteOrLiked(User user)
|
|
|
|
|
{
|
2016-04-30 22:05:13 +00:00
|
|
|
|
var userdata = UserDataManager.GetUserData(user, this);
|
2014-05-18 21:23:03 +00:00
|
|
|
|
|
|
|
|
|
return userdata != null && (userdata.IsFavorite || (userdata.Likes ?? false));
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 05:55:21 +00:00
|
|
|
|
public virtual bool IsUnplayed(User user)
|
|
|
|
|
{
|
2014-07-11 04:27:46 +00:00
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("user");
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 22:05:13 +00:00
|
|
|
|
var userdata = UserDataManager.GetUserData(user, this);
|
2014-01-18 05:55:21 +00:00
|
|
|
|
|
|
|
|
|
return userdata == null || !userdata.Played;
|
|
|
|
|
}
|
2014-02-07 03:10:13 +00: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 17:55:26 +00:00
|
|
|
|
Name = GetNameForMetadataLookup(),
|
2014-02-07 03:10:13 +00:00
|
|
|
|
ProviderIds = ProviderIds,
|
|
|
|
|
IndexNumber = IndexNumber,
|
2014-12-14 00:42:22 +00:00
|
|
|
|
ParentIndexNumber = ParentIndexNumber,
|
2016-03-08 02:59:21 +00:00
|
|
|
|
Year = ProductionYear,
|
|
|
|
|
PremiereDate = PremiereDate
|
2014-02-07 03:10:13 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2014-02-10 18:39:41 +00:00
|
|
|
|
|
2016-11-15 17:55:26 +00:00
|
|
|
|
protected virtual string GetNameForMetadataLookup()
|
|
|
|
|
{
|
|
|
|
|
return Name;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 18:39:41 +00:00
|
|
|
|
/// <summary>
|
2014-02-13 05:11:54 +00:00
|
|
|
|
/// This is called before any metadata refresh and returns true or false indicating if changes were made
|
2014-02-10 18:39:41 +00:00
|
|
|
|
/// </summary>
|
2014-02-13 05:11:54 +00:00
|
|
|
|
public virtual bool BeforeMetadataRefresh()
|
2014-02-10 18:39:41 +00:00
|
|
|
|
{
|
2017-06-03 07:36:32 +00:00
|
|
|
|
_sortName = null;
|
|
|
|
|
|
2014-02-13 05:11:54 +00:00
|
|
|
|
var hasChanges = false;
|
2014-02-10 18:39:41 +00:00
|
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(Path))
|
|
|
|
|
{
|
2014-07-26 17:30:15 +00:00
|
|
|
|
Name = FileSystem.GetFileNameWithoutExtension(Path);
|
2014-02-13 05:11:54 +00:00
|
|
|
|
hasChanges = true;
|
2014-02-10 18:39:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-13 05:11:54 +00:00
|
|
|
|
return hasChanges;
|
2014-02-10 18:39:41 +00:00
|
|
|
|
}
|
2014-06-03 02:01:30 +00:00
|
|
|
|
|
2016-09-23 06:21:54 +00:00
|
|
|
|
protected static string GetMappedPath(BaseItem item, string path, LocationType locationType)
|
2014-06-03 02:01:30 +00:00
|
|
|
|
{
|
|
|
|
|
if (locationType == LocationType.FileSystem || locationType == LocationType.Offline)
|
|
|
|
|
{
|
2016-09-23 06:21:54 +00:00
|
|
|
|
return LibraryManager.GetPathAfterNetworkSubstitution(path, item);
|
2014-06-03 02:01:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return path;
|
|
|
|
|
}
|
2014-07-04 02:22:57 +00:00
|
|
|
|
|
2017-05-26 06:48:54 +00:00
|
|
|
|
public virtual void FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, BaseItemDto itemDto, User user, List<ItemFields> fields)
|
2014-07-04 02:22:57 +00:00
|
|
|
|
{
|
|
|
|
|
if (RunTimeTicks.HasValue)
|
|
|
|
|
{
|
|
|
|
|
double pct = RunTimeTicks.Value;
|
|
|
|
|
|
|
|
|
|
if (pct > 0)
|
|
|
|
|
{
|
|
|
|
|
pct = userData.PlaybackPositionTicks / pct;
|
2014-11-30 19:01:33 +00:00
|
|
|
|
|
|
|
|
|
if (pct > 0)
|
|
|
|
|
{
|
|
|
|
|
dto.PlayedPercentage = 100 * pct;
|
|
|
|
|
}
|
2014-07-04 02:22:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-12-03 03:13:03 +00:00
|
|
|
|
|
2016-10-16 17:11:32 +00:00
|
|
|
|
protected Task RefreshMetadataForOwnedItem(BaseItem ownedItem, bool copyTitleMetadata, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
2014-12-03 03:13:03 +00:00
|
|
|
|
{
|
2016-10-16 17:11:32 +00:00
|
|
|
|
var newOptions = new MetadataRefreshOptions(options);
|
|
|
|
|
newOptions.SearchResult = null;
|
|
|
|
|
|
|
|
|
|
var item = this;
|
|
|
|
|
|
|
|
|
|
if (copyTitleMetadata)
|
2014-12-03 03:13:03 +00:00
|
|
|
|
{
|
2016-10-16 17:11:32 +00: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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 03:13:03 +00: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 03:38:46 +00:00
|
|
|
|
video = LibraryManager.ResolvePath(FileSystem.GetFileSystemInfo(path)) as Video;
|
2014-12-03 03:13:03 +00:00
|
|
|
|
|
|
|
|
|
newOptions.ForceSave = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (video == null)
|
|
|
|
|
{
|
|
|
|
|
return Task.FromResult(true);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-16 17:11:32 +00:00
|
|
|
|
return RefreshMetadataForOwnedItem(video, copyTitleMetadata, newOptions, cancellationToken);
|
2014-12-03 03:13:03 +00:00
|
|
|
|
}
|
2015-04-14 03:45:17 +00:00
|
|
|
|
|
2015-04-15 15:41:42 +00:00
|
|
|
|
public string GetEtag(User user)
|
2015-04-14 03:45:17 +00:00
|
|
|
|
{
|
2015-04-15 15:41:42 +00:00
|
|
|
|
return string.Join("|", GetEtagValues(user).ToArray()).GetMD5().ToString("N");
|
2015-04-14 03:45:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-15 15:41:42 +00:00
|
|
|
|
protected virtual List<string> GetEtagValues(User user)
|
2015-04-14 03:45:17 +00:00
|
|
|
|
{
|
|
|
|
|
return new List<string>
|
|
|
|
|
{
|
|
|
|
|
DateLastSaved.Ticks.ToString(CultureInfo.InvariantCulture)
|
|
|
|
|
};
|
|
|
|
|
}
|
2016-01-12 20:07:33 +00: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 08:54:53 +00:00
|
|
|
|
if (this is BasePluginFolder || this is Channel)
|
2016-01-12 20:07:33 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var view = this as UserView;
|
2016-11-21 08:54:53 +00:00
|
|
|
|
if (view != null)
|
2016-01-12 20:07:33 +00:00
|
|
|
|
{
|
2016-11-21 08:54:53 +00: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 20:07:33 +00:00
|
|
|
|
}
|
2016-11-21 08:54:53 +00:00
|
|
|
|
|
|
|
|
|
if (GetParent() is AggregateFolder)
|
2016-03-30 03:31:11 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-01-12 20:07:33 +00:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool SupportsAncestors
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-14 21:29:35 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public virtual bool StopRefreshIfLocalMetadataFound
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-12 20:07:33 +00:00
|
|
|
|
public virtual IEnumerable<Guid> GetIdsForAncestorQuery()
|
|
|
|
|
{
|
|
|
|
|
return new[] { Id };
|
|
|
|
|
}
|
2016-02-12 04:54:00 +00:00
|
|
|
|
|
|
|
|
|
public virtual Task Delete(DeleteOptions options)
|
|
|
|
|
{
|
|
|
|
|
return LibraryManager.DeleteItem(this, options);
|
|
|
|
|
}
|
2016-03-08 02:59:21 +00:00
|
|
|
|
|
|
|
|
|
public virtual Task OnFileDeleted()
|
|
|
|
|
{
|
|
|
|
|
// Remove from database
|
|
|
|
|
return Delete(new DeleteOptions
|
|
|
|
|
{
|
|
|
|
|
DeleteFileLocation = false
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-05-29 06:03:09 +00:00
|
|
|
|
|
|
|
|
|
public virtual List<ExternalUrl> GetRelatedUrls()
|
|
|
|
|
{
|
|
|
|
|
return new List<ExternalUrl>();
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2016-01-12 20:07:33 +00:00
|
|
|
|
}
|