2016-07-29 19:18:03 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-07 20:30:41 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
using System.Collections.Generic;
|
2015-10-16 17:06:31 +00:00
|
|
|
|
using System.Threading;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Controller.IO;
|
2015-10-16 17:06:31 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public interface IHasImages : IHasProviderIds, IHasId
|
2013-12-19 21:51:32 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
string Name { get; set; }
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The path.</value>
|
2014-01-01 18:26:31 +00:00
|
|
|
|
string Path { get; set; }
|
|
|
|
|
|
2014-12-09 04:57:18 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the file name without extension.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The file name without extension.</value>
|
|
|
|
|
string FileNameWithoutExtension { get; }
|
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the type of the location.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the location.</value>
|
|
|
|
|
LocationType LocationType { get; }
|
|
|
|
|
|
2014-10-04 18:05:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the locked fields.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The locked fields.</value>
|
|
|
|
|
List<MetadataFields> LockedFields { get; }
|
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the images.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="imageType">Type of the image.</param>
|
|
|
|
|
/// <returns>IEnumerable{ItemImageInfo}.</returns>
|
|
|
|
|
IEnumerable<ItemImageInfo> GetImages(ImageType imageType);
|
|
|
|
|
|
2013-12-19 21:51:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="imageType">Type of the image.</param>
|
|
|
|
|
/// <param name="imageIndex">Index of the image.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string GetImagePath(ImageType imageType, int imageIndex);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-02-07 20:30:41 +00:00
|
|
|
|
/// Gets the image information.
|
2013-12-19 21:51:32 +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>
|
|
|
|
|
ItemImageInfo GetImageInfo(ImageType imageType, int imageIndex);
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="index">The index.</param>
|
2014-02-07 20:30:41 +00:00
|
|
|
|
/// <param name="file">The file.</param>
|
2015-10-04 03:38:46 +00:00
|
|
|
|
void SetImagePath(ImageType type, int index, FileSystemMetadata file);
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the specified type has image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="imageIndex">Index of the image.</param>
|
|
|
|
|
/// <returns><c>true</c> if the specified type has image; otherwise, <c>false</c>.</returns>
|
|
|
|
|
bool HasImage(ImageType type, int imageIndex);
|
|
|
|
|
|
2014-02-07 20:30:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Allowses the multiple images.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
|
|
|
|
|
bool AllowsMultipleImages(ImageType type);
|
|
|
|
|
|
2013-12-19 21:51:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Swaps the images.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="index1">The index1.</param>
|
|
|
|
|
/// <param name="index2">The index2.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task SwapImages(ImageType type, int index1, int index2);
|
2013-12-21 18:37:34 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the display type of the media.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The display type of the media.</value>
|
|
|
|
|
string DisplayMediaType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the primary image path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The primary image path.</value>
|
2014-02-01 06:18:16 +00:00
|
|
|
|
string PrimaryImagePath { get; }
|
2013-12-27 00:23:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the preferred metadata language.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string GetPreferredMetadataLanguage();
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Validates the images and returns true or false indicating if any were removed.
|
|
|
|
|
/// </summary>
|
2014-02-10 18:39:41 +00:00
|
|
|
|
bool ValidateImages(IDirectoryService directoryService);
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is owned item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is owned item; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool IsOwnedItem { get; }
|
2014-02-06 05:17:00 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the containing folder path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The containing folder path.</value>
|
|
|
|
|
string ContainingFolderPath { get; }
|
2014-02-07 20:30:41 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds the images.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <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>
|
2015-10-04 03:38:46 +00:00
|
|
|
|
bool AddImages(ImageType imageType, List<FileSystemMetadata> images);
|
2014-02-08 20:02:35 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether [is save local metadata enabled].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns><c>true</c> if [is save local metadata enabled]; otherwise, <c>false</c>.</returns>
|
|
|
|
|
bool IsSaveLocalMetadataEnabled();
|
2014-02-10 20:11:46 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [supports local metadata].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [supports local metadata]; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool SupportsLocalMetadata { get; }
|
2014-02-15 22:42:06 +00:00
|
|
|
|
|
2016-10-07 15:08:13 +00:00
|
|
|
|
bool DetectIsInMixedFolder();
|
2014-02-19 05:21:03 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is locked.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is locked; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool IsLocked { get; }
|
2014-08-14 13:24:30 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [supports remote image downloading].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [supports remote image downloading]; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool SupportsRemoteImageDownloading { get; }
|
2014-09-28 15:27:26 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the internal metadata path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string GetInternalMetadataPath();
|
2014-10-20 03:04:45 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [always scan internal metadata path].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [always scan internal metadata path]; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool AlwaysScanInternalMetadataPath { get; }
|
2015-03-14 20:00:32 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether [is internet metadata enabled].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns><c>true</c> if [is internet metadata enabled]; otherwise, <c>false</c>.</returns>
|
|
|
|
|
bool IsInternetMetadataEnabled();
|
2015-04-11 01:42:37 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Removes the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="image">The image.</param>
|
|
|
|
|
void RemoveImage(ItemImageInfo image);
|
2015-10-16 17:06:31 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates to repository.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="updateReason">The update reason.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task UpdateToRepository(ItemUpdateType updateReason, CancellationToken cancellationToken);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="image">The image.</param>
|
|
|
|
|
/// <param name="index">The index.</param>
|
|
|
|
|
void SetImage(ItemImageInfo image, int index);
|
2017-02-10 20:06:52 +00:00
|
|
|
|
|
|
|
|
|
double? GetDefaultPrimaryImageAspectRatio();
|
2017-03-12 19:27:26 +00:00
|
|
|
|
|
|
|
|
|
int? ProductionYear { get; set; }
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class HasImagesExtensions
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="imageType">Type of the image.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public static string GetImagePath(this IHasImages item, ImageType imageType)
|
|
|
|
|
{
|
|
|
|
|
return item.GetImagePath(imageType, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool HasImage(this IHasImages item, ImageType imageType)
|
|
|
|
|
{
|
|
|
|
|
return item.HasImage(imageType, 0);
|
|
|
|
|
}
|
2014-01-01 18:26:31 +00:00
|
|
|
|
|
2013-12-19 21:51:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the image path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="imageType">Type of the image.</param>
|
2014-02-07 20:30:41 +00:00
|
|
|
|
/// <param name="file">The file.</param>
|
2015-10-04 03:38:46 +00:00
|
|
|
|
public static void SetImagePath(this IHasImages item, ImageType imageType, FileSystemMetadata file)
|
2013-12-19 21:51:32 +00:00
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
item.SetImagePath(imageType, 0, file);
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
2014-02-10 18:39:41 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the image path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="imageType">Type of the image.</param>
|
|
|
|
|
/// <param name="file">The file.</param>
|
|
|
|
|
public static void SetImagePath(this IHasImages item, ImageType imageType, string file)
|
|
|
|
|
{
|
2015-10-25 17:13:30 +00:00
|
|
|
|
if (file.StartsWith("http", System.StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
item.SetImage(new ItemImageInfo
|
|
|
|
|
{
|
|
|
|
|
Path = file,
|
|
|
|
|
Type = imageType
|
|
|
|
|
}, 0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
item.SetImagePath(imageType, BaseItem.FileSystem.GetFileInfo(file));
|
|
|
|
|
}
|
2014-02-10 18:39:41 +00:00
|
|
|
|
}
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|